gcloud_beta_app_versions_stop (1)
NAME
- gcloud beta app versions stop - stop serving specified versions
SYNOPSIS
-
gcloud beta app versions stop VERSIONS [VERSIONS ...] [--service=SERVICE, -s SERVICE] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) This command stops serving the specified versions. It may only be
POSITIONAL ARGUMENTS
-
- VERSIONS [VERSIONS ...]
-
The versions to stop (optionally filtered by the --service flag).
FLAGS
-
- --service=SERVICE, -s SERVICE
-
If specified, only stop versions from the given service.
GCLOUD WIDE FLAGS
These flags are available to all commands: --account, --configuration, --flags-file, --flatten, --format, --help, --log-http, --project, --quiet, --trace-token, --user-output-enabled, --verbosity. Run $ gcloud help for details.
EXAMPLES
To stop a specific version across all services, run:
- $ gcloud beta app versions stop v1
To stop multiple named versions across all services, run:
- $ gcloud beta app versions stop v1 v2
To stop a single version on a single service, run:
- $ gcloud beta app versions stop --service servicename v1
To stop multiple versions in a single service, run:
- $ gcloud beta app versions stop --service servicename v1 v2
Note that that last example may be more simply written using the services stop command (see its documentation for details).
NOTES
This command is currently in BETA and may change without notice. This variant is also available:
- $ gcloud app versions stop