featurebyte.GCSStorageCredential¶ class GCSStorageCredential( *, type: Literal["GCS"]="GCS", service_account_info: Union[Dict[str, str], str] ) Description¶ Data class for a GCS storage credential. Parameters¶ type: Literal["GCS"] default: "GCS" service_account_info: Union[Dict[str, 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"} ... )