mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 06:47:12 +00:00
gcloud: Wed May 18 08:41:01 UTC 2022
This commit is contained in:
parent
379049f21a
commit
9f95235d93
258 changed files with 7569 additions and 441 deletions
51
gcloud/compute/backend-services/add-service-bindings
Normal file
51
gcloud/compute/backend-services/add-service-bindings
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
NAME
|
||||
gcloud compute backend-services add-service-bindings - add service bindings
|
||||
to a backend service
|
||||
|
||||
SYNOPSIS
|
||||
gcloud compute backend-services add-service-bindings BACKEND_SERVICE_NAME
|
||||
--service-bindings=SERVICE_BINDING,[...] [--global | --region=REGION]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Add service bindings to a backend service.
|
||||
|
||||
EXAMPLES
|
||||
To add a service binding to a backend service, run:
|
||||
|
||||
$ gcloud compute backend-services add-service-bindings NAME \
|
||||
--service-bindings=SERVICE_BINDING1 --global
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
BACKEND_SERVICE_NAME
|
||||
Name of the backend service to operate on.
|
||||
|
||||
REQUIRED FLAGS
|
||||
--service-bindings=SERVICE_BINDING,[...]
|
||||
List of service binding names to be added to the backend service.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
At most one of these can be specified:
|
||||
|
||||
--global
|
||||
If set, the backend service is global.
|
||||
|
||||
--region=REGION
|
||||
Region of the backend service to operate on. Overrides the default
|
||||
compute/region property value for this command invocation.
|
||||
|
||||
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 compute backend-services add-service-bindings
|
||||
|
||||
$ gcloud beta compute backend-services add-service-bindings
|
||||
|
||||
|
|
@ -29,6 +29,7 @@ SYNOPSIS
|
|||
[--[no-]negative-caching] [--negative-caching-policy=[[CODE=TTL],...]]
|
||||
[--network=NETWORK] [--port-name=PORT_NAME] [--protocol=PROTOCOL]
|
||||
[--[no-]request-coalescing] [--serve-while-stale=SERVE_WHILE_STALE]
|
||||
[--service-bindings=SERVICE_BINDING,[...]]
|
||||
[--session-affinity=SESSION_AFFINITY]
|
||||
[--signed-url-cache-max-age=SIGNED_URL_CACHE_MAX_AGE]
|
||||
[--subsetting-policy=SUBSETTING_POLICY; default="NONE"]
|
||||
|
|
@ -477,6 +478,11 @@ FLAGS
|
|||
|
||||
Set this to zero (0) to disable serve-while-stale.
|
||||
|
||||
--service-bindings=SERVICE_BINDING,[...]
|
||||
List of service bindings to be attached to this backend service. Can
|
||||
only be set if load balancing scheme is INTERNAL_SELF_MANAGED. If set,
|
||||
lists of backends and health checks must be both empty.
|
||||
|
||||
--session-affinity=SESSION_AFFINITY
|
||||
The type of session affinity to use. Supports both TCP and UDP.
|
||||
SESSION_AFFINITY must be one of:
|
||||
|
|
|
|||
|
|
@ -27,6 +27,9 @@ COMMANDS
|
|||
add-backend
|
||||
Add a backend to a backend service.
|
||||
|
||||
add-service-bindings
|
||||
Add service bindings to a backend service.
|
||||
|
||||
add-signed-url-key
|
||||
Add Cloud CDN Signed URL key to a backend service.
|
||||
|
||||
|
|
@ -60,6 +63,9 @@ COMMANDS
|
|||
remove-backend
|
||||
Remove a backend from a backend service.
|
||||
|
||||
remove-service-bindings
|
||||
Remove service bindings from a backend service.
|
||||
|
||||
update
|
||||
Update a backend service.
|
||||
|
||||
|
|
|
|||
51
gcloud/compute/backend-services/remove-service-bindings
Normal file
51
gcloud/compute/backend-services/remove-service-bindings
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
NAME
|
||||
gcloud compute backend-services remove-service-bindings - remove service
|
||||
bindings from a backend service
|
||||
|
||||
SYNOPSIS
|
||||
gcloud compute backend-services remove-service-bindings
|
||||
BACKEND_SERVICE_NAME --service-bindings=SERVICE_BINDING,[...]
|
||||
[--global | --region=REGION] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Remove service bindings from a backend service.
|
||||
|
||||
EXAMPLES
|
||||
To remove a service binding from a backend service, run:
|
||||
|
||||
$ gcloud compute backend-services remove-service-bindings NAME \
|
||||
--service-bindings=SERVICE_BINDING1 --global
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
BACKEND_SERVICE_NAME
|
||||
Name of the backend service to operate on.
|
||||
|
||||
REQUIRED FLAGS
|
||||
--service-bindings=SERVICE_BINDING,[...]
|
||||
List of service binding names to be removed from the backend service.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
At most one of these can be specified:
|
||||
|
||||
--global
|
||||
If set, the backend service is global.
|
||||
|
||||
--region=REGION
|
||||
Region of the backend service to operate on. Overrides the default
|
||||
compute/region property value for this command invocation.
|
||||
|
||||
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 compute backend-services remove-service-bindings
|
||||
|
||||
$ gcloud beta compute backend-services remove-service-bindings
|
||||
|
||||
|
|
@ -42,6 +42,7 @@ SYNOPSIS
|
|||
[--[no-]negative-caching | --no-negative-caching-policies
|
||||
| --negative-caching-policy=[[CODE=TTL],...]]
|
||||
[--serve-while-stale=SERVE_WHILE_STALE | --no-serve-while-stale]
|
||||
[--service-bindings=SERVICE_BINDING,[...] | --no-service-bindings]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
|
|
@ -687,6 +688,16 @@ FLAGS
|
|||
--no-serve-while-stale
|
||||
Clears serve while stale value.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--service-bindings=SERVICE_BINDING,[...]
|
||||
List of service bindings to be attached to this backend service. Can
|
||||
only be set if load balancing scheme is INTERNAL_SELF_MANAGED. If
|
||||
set, lists of backends and health checks must be both empty.
|
||||
|
||||
--no-service-bindings
|
||||
No service bindings should be attached to the backend service.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue