mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-08 10:35:03 +00:00
67 lines
2.4 KiB
Text
67 lines
2.4 KiB
Text
NAME
|
|
gcloud scc bqexports delete - delete a Cloud Security Command Center
|
|
BigQuery export
|
|
|
|
SYNOPSIS
|
|
gcloud scc bqexports delete BIG_QUERY_EXPORT
|
|
[--folder=FOLDER | --organization=ORGANIZATION | --project=PROJECT]
|
|
[GCLOUD_WIDE_FLAG ...]
|
|
|
|
DESCRIPTION
|
|
Delete a Cloud Security Command Center BigQuery export.
|
|
|
|
EXAMPLES
|
|
To delete a BigQuery export given organization 123 with id my-bq-export,
|
|
run:
|
|
|
|
$ gcloud scc bqexports delete my-bq-export \
|
|
--organization=organizations/123
|
|
$ gcloud scc bqexports delete my-bq-export --organization=123
|
|
$ gcloud scc bqexports delete \
|
|
organizations/123/bigQueryExports/my-bq-export
|
|
|
|
To delete a BigQuery export given folder 456 with id my-bq-export, run:
|
|
|
|
$ gcloud scc bqexports delete my-bq-export --folder=folders/456
|
|
$ gcloud scc bqexports delete my-bq-export --folder=456
|
|
$ gcloud scc bqexports delete \
|
|
folders/456/bigQueryExports/my-bq-export
|
|
|
|
To delete a BigQuery export given project 789 with id my-bq-export, run:
|
|
|
|
$ gcloud scc bqexports delete my-bq-export --project=projects/789
|
|
$ gcloud scc bqexports delete my-bq-export --project=789
|
|
$ gcloud scc bqexports delete \
|
|
projects/789/bigQueryExports/my-bq-export
|
|
|
|
POSITIONAL ARGUMENTS
|
|
BIG_QUERY_EXPORT
|
|
ID of the BigQuery export or the full resource name of the BigQuery
|
|
export.
|
|
|
|
FLAGS
|
|
At most one of these can be specified:
|
|
|
|
--folder=FOLDER
|
|
Folder where the BigQuery export resides. Formatted as folders/456 or
|
|
just 456.
|
|
|
|
--organization=ORGANIZATION
|
|
Organization where the BigQuery export resides. Formatted as
|
|
organizations/123 or just 123.
|
|
|
|
--project=PROJECT
|
|
Project (id or number) where the BigQuery export resides. Formatted
|
|
as projects/789 or just 789.
|
|
|
|
GCLOUD WIDE FLAGS
|
|
These flags are available to all commands: --access-token-file, --account,
|
|
--billing-project, --configuration, --flags-file, --flatten, --format,
|
|
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
|
--trace-token, --user-output-enabled, --verbosity.
|
|
|
|
Run $ gcloud help for details.
|
|
|
|
API REFERENCE
|
|
This command uses the securitycenter/v1 API. The full documentation for
|
|
this API can be found at: https://cloud.google.com/security-command-center
|