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