delete_object
Remove a specific object from a Cloud Storage bucket on GCP by specifying the project ID, bucket name, and file name. Streamlines storage management directly through natural language commands.
Instructions
Delete an object from a Cloud Storage bucket.
Args:
project_id: The ID of the GCP project
bucket_name: The name of the bucket to delete from
blob_name: The name of the file to delete
Returns:
Result of the delete operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blob_name | Yes | ||
bucket_name | Yes | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"blob_name": {
"title": "Blob Name",
"type": "string"
},
"bucket_name": {
"title": "Bucket Name",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id",
"bucket_name",
"blob_name"
],
"title": "delete_objectArguments",
"type": "object"
}