featurebyte.GCSStorageCredential¶ class GCSStorageCredential( *, type: StorageCredentialType="GCS", service_account_info: Dict[str, str] ) Description¶ Data class for a GCS storage credential. Parameters¶ type: StorageCredentialType default: "GCS" service_account_info: Dict[str, str] Service account information used for connecting to your GCS store. Examples¶ >>> gcs_storage_credential = GCSStorageCredential( ... service_account_info={"type": "service_account", "private_key": "private_key"} ... )