library
turbot/gcp
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Remove Labels from Storage Bucket

This pipeline removes labels from a Google Cloud Storage bucket using gcloud.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run gcp.pipeline.remove_labels_from_storage_bucket \
--arg 'project_id=<string>' \
--arg 'bucket_name=<string>' \
--arg 'labels=<list(string)>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = gcp.pipeline.remove_labels_from_storage_bucket
args = {
project_id = <string>
bucket_name = <string>
labels = <list(string)>
}
}

Params

NameTypeRequiredDescriptionDefault
conn
connection.gcp
YesName of GCP connection to use. If not provided, the default GCP connection will be used.connection.gcp.default
project_id
string
YesThe GCP project ID.-
bucket_name
string
YesThe GCP storage bucket name.-
labels
list(string)
YesThe GCP labels to remove.-

Outputs

NameDescription
bucketInformation about the bucket with removed labels.