mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-08 18:45:13 +00:00
77 lines
2.6 KiB
Text
77 lines
2.6 KiB
Text
NAME
|
|
gcloud recommender recommendations mark-failed - mark a recommendation's
|
|
state as FAILED
|
|
|
|
SYNOPSIS
|
|
gcloud recommender recommendations mark-failed RECOMMENDATION --etag=ETAG
|
|
--location=LOCATION --recommender=RECOMMENDER
|
|
(--billing-account=BILLING_ACCOUNT | --folder=FOLDER_ID
|
|
| --organization=ORGANIZATION_ID | --project=PROJECT_ID)
|
|
[--state-metadata=KEY=VALUE,[KEY=VALUE,...]] [GCLOUD_WIDE_FLAG ...]
|
|
|
|
DESCRIPTION
|
|
Mark a recommendation's state as FAILED. Can be applied to recommendations
|
|
in ACTIVE, CLAIMED, SUCCEEDED, or FAILED state.
|
|
|
|
EXAMPLES
|
|
To mark a recommendation as FAILED:
|
|
|
|
$ gcloud recommender recommendations mark-failed abcd-1234 \
|
|
--project=project-id --location=global \
|
|
--recommender=google.compute.instance.MachineTypeRecommender \
|
|
--etag=abc123 --state-metadata=key1=value1,key2=value2
|
|
|
|
POSITIONAL ARGUMENTS
|
|
RECOMMENDATION
|
|
Recommendation id which will be marked as FAILED.
|
|
|
|
REQUIRED FLAGS
|
|
--etag=ETAG
|
|
Etag of a recommendation.
|
|
|
|
--location=LOCATION
|
|
Location.
|
|
|
|
--recommender=RECOMMENDER
|
|
Recommender of recommendation.
|
|
|
|
Resource that is associated with cloud entity type. Currently four
|
|
mutually exclusive flags are supported, --project, --billing-account,
|
|
--folder, --organization.
|
|
|
|
Exactly one of these must be specified:
|
|
|
|
--billing-account=BILLING_ACCOUNT
|
|
The Google Cloud Platform billing account ID to use for this
|
|
invocation.
|
|
|
|
--folder=FOLDER_ID
|
|
The Google Cloud Platform folder ID to use for this invocation.
|
|
|
|
--organization=ORGANIZATION_ID
|
|
The Google Cloud Platform organization ID to use for this invocation.
|
|
|
|
--project=PROJECT_ID
|
|
The Google Cloud Platform project ID. Overrides the default
|
|
core/project property value for this command invocation.
|
|
|
|
OPTIONAL FLAGS
|
|
--state-metadata=KEY=VALUE,[KEY=VALUE,...]
|
|
State metadata for recommendation, in format of
|
|
--state-metadata=key1=value1,key2=value2
|
|
|
|
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.
|
|
|
|
NOTES
|
|
These variants are also available:
|
|
|
|
$ gcloud alpha recommender recommendations mark-failed
|
|
|
|
$ gcloud beta recommender recommendations mark-failed
|
|
|