1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 14:56:05 +00:00

gcloud: Wed Jul 2 11:05:25 UTC 2025

This commit is contained in:
Automated 2025-07-02 11:05:25 +00:00
parent f645b4c02d
commit e53f7148d8
197 changed files with 6280 additions and 495 deletions

View file

@ -4,25 +4,18 @@ NAME
SYNOPSIS
gcloud beta network-services service-bindings create
(SERVICE_BINDING : --location=LOCATION)
--service-directory-namespace=SERVICE_DIRECTORY_NAMESPACE
--service-directory-region=SERVICE_DIRECTORY_REGION
--service-directory-service=SERVICE_DIRECTORY_SERVICE [--async]
(SERVICE_BINDING : --location=LOCATION) [--async]
[--description=DESCRIPTION] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Create a new service binding with the given name.
EXAMPLES
Create a service binding with the name 'my-service-binding',
service-directory-region 'my-region', service-directory-namespace
'my-namespace', service-directory-service 'my-service' and location
Create a service binding with the name 'my-service-binding' and location
'global'.
$ gcloud beta network-services service-bindings create \
my-service-binding --service-directory-region="my-region" \
--service-directory-namespace="my-namespace" \
--service-directory-service="my-service" --location="global"
my-service-binding --location=global
POSITIONAL ARGUMENTS
Service binding resource - Name of the service binding to be created. The
@ -56,17 +49,7 @@ POSITIONAL ARGUMENTS
fully specified name;
▸ provide the argument --location on the command line.
REQUIRED FLAGS
--service-directory-namespace=SERVICE_DIRECTORY_NAMESPACE
Namespace of the Service Directory service.
--service-directory-region=SERVICE_DIRECTORY_REGION
Region of the Service Directory service.
--service-directory-service=SERVICE_DIRECTORY_SERVICE
Service name of the Service Directory service.
OPTIONAL FLAGS
FLAGS
--async
Return immediately, without waiting for the operation in progress to
complete.

View file

@ -0,0 +1,79 @@
NAME
gcloud beta network-services service-bindings export - export a service
binding
SYNOPSIS
gcloud beta network-services service-bindings export
(SERVICE_BINDING : --location=LOCATION) [--destination=DESTINATION]
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Export a service binding to a YAML file.
EXAMPLES
To export a service binding named 'my-service-binding' to a YAML file, run:
$ gcloud beta network-services service-bindings export \
my-service-binding --destination=my-service-binding.yaml \
--location=global
POSITIONAL ARGUMENTS
Service binding resource - Name of the service binding to export. The
arguments in this group can be used to specify the attributes of this
resource. (NOTE) Some attributes are not given arguments in this group but
can be set in other ways.
To set the project attribute:
◆ provide the argument service_binding on the command line with a fully
specified name;
◆ provide the argument --project on the command line;
◆ set the property core/project.
This must be specified.
SERVICE_BINDING
ID of the service binding or fully qualified identifier for the
service binding.
To set the service_binding attribute:
▸ provide the argument service_binding on the command line.
This positional argument must be specified if any of the other
arguments in this group are specified.
--location=LOCATION
The location Id.
To set the location attribute:
▸ provide the argument service_binding on the command line with a
fully specified name;
▸ provide the argument --location on the command line.
FLAGS
--destination=DESTINATION
Path to a YAML file where the configuration will be exported. The
exported data will not contain any output-only fields. Alternatively,
you may omit this flag to write to standard output. For a schema
describing the export/import format, see
$CLOUDSDKROOT/lib/googlecloudsdk/schemas/...
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 networkservices/v1beta1 API. The full documentation
for this API can be found at: https://cloud.google.com/networking
NOTES
This command is currently in beta and might change without notice. These
variants are also available:
$ gcloud network-services service-bindings export
$ gcloud alpha network-services service-bindings export

View file

@ -26,9 +26,18 @@ COMMANDS
describe
(BETA) Describe a service binding.
export
(BETA) Export a service binding.
import
(BETA) Import a service binding.
list
(BETA) List service bindings.
update
(BETA) Update a service binding.
NOTES
This command is currently in beta and might change without notice. These
variants are also available:

View file

@ -0,0 +1,86 @@
NAME
gcloud beta network-services service-bindings import - import a service
binding
SYNOPSIS
gcloud beta network-services service-bindings import
(SERVICE_BINDING : --location=LOCATION) [--async] [--source=SOURCE]
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Import a service binding from a YAML file.
EXAMPLES
To import a service binding named my-service-binding from a YAML file, run:
$ gcloud beta network-services service-bindings import \
my-service-binding --source=my-service-binding.yaml \
--location=global
POSITIONAL ARGUMENTS
Service binding resource - Name of the service binding to import. The
arguments in this group can be used to specify the attributes of this
resource. (NOTE) Some attributes are not given arguments in this group but
can be set in other ways.
To set the project attribute:
◆ provide the argument service_binding on the command line with a fully
specified name;
◆ provide the argument --project on the command line;
◆ set the property core/project.
This must be specified.
SERVICE_BINDING
ID of the service binding or fully qualified identifier for the
service binding.
To set the service_binding attribute:
▸ provide the argument service_binding on the command line.
This positional argument must be specified if any of the other
arguments in this group are specified.
--location=LOCATION
The location Id.
To set the location attribute:
▸ provide the argument service_binding on the command line with a
fully specified name;
▸ provide the argument --location on the command line.
FLAGS
--async
Return immediately, without waiting for the operation in progress to
complete.
--source=SOURCE
Path to a YAML file containing the configuration export data. The YAML
file must not contain any output-only fields. Alternatively, you may
omit this flag to read from standard input. For a schema describing the
export/import format, see: $CLOUDSDKROOT/lib/googlecloudsdk/schemas/...
$CLOUDSDKROOT is can be obtained with the following command:
$ gcloud info --format='value(installation.sdk_root)'
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 networkservices/v1beta1 API. The full documentation
for this API can be found at: https://cloud.google.com/networking
NOTES
This command is currently in beta and might change without notice. These
variants are also available:
$ gcloud network-services service-bindings import
$ gcloud alpha network-services service-bindings import

View file

@ -11,7 +11,7 @@ DESCRIPTION
project.
EXAMPLES
To list the service bindings in the current project, run:
To list all the global service bindings in the current project, run:
$ gcloud beta network-services service-bindings list \
--location=global

View file

@ -0,0 +1,79 @@
NAME
gcloud beta network-services service-bindings update - update a service
binding
SYNOPSIS
gcloud beta network-services service-bindings update
(SERVICE_BINDING : --location=LOCATION) [--async]
[--description=DESCRIPTION] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Update a service binding with the given name.
EXAMPLES
Update a service binding with the name 'my-service-binding' and location
'global'.
$ gcloud beta network-services service-bindings update \
my-service-binding --location=global
POSITIONAL ARGUMENTS
Service binding resource - Name of the service binding to be updated. The
arguments in this group can be used to specify the attributes of this
resource. (NOTE) Some attributes are not given arguments in this group but
can be set in other ways.
To set the project attribute:
◆ provide the argument service_binding on the command line with a fully
specified name;
◆ provide the argument --project on the command line;
◆ set the property core/project.
This must be specified.
SERVICE_BINDING
ID of the service binding or fully qualified identifier for the
service binding.
To set the service_binding attribute:
▸ provide the argument service_binding on the command line.
This positional argument must be specified if any of the other
arguments in this group are specified.
--location=LOCATION
The location Id.
To set the location attribute:
▸ provide the argument service_binding on the command line with a
fully specified name;
▸ provide the argument --location on the command line.
FLAGS
--async
Return immediately, without waiting for the operation in progress to
complete.
--description=DESCRIPTION
The description for the service binding.
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 networkservices/v1beta1 API. The full documentation
for this API can be found at: https://cloud.google.com/networking
NOTES
This command is currently in beta and might change without notice. These
variants are also available:
$ gcloud network-services service-bindings update
$ gcloud alpha network-services service-bindings update