1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 06:47:12 +00:00

gcloud: Wed Mar 16 08:47:18 UTC 2022

This commit is contained in:
Automated 2022-03-16 08:47:18 +00:00
parent 7d82d0fc32
commit 971306823a
187 changed files with 3248 additions and 630 deletions

View file

@ -0,0 +1,59 @@
NAME
gcloud transfer agent-pools create - create a Transfer Service agent pool
SYNOPSIS
gcloud transfer agent-pools create NAME [--no-async]
[--bandwidth-limit=BANDWIDTH_LIMIT] [--display-name=DISPLAY_NAME]
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Create an agent pool -- a group of agents used to connect to a source or
destination filesystem.
EXAMPLES
To create an agent pool with name 'my-pool', display name 'daily backups',
and no bandwidth limit, run:
$ gcloud transfer agent-pools create my-pool \
--display-name='daily backups'
To create an agent pool with name 'my-pool', display name 'daily backups',
and a bandwidth limit of 50 MB/s, run:
$ gcloud transfer agent-pools create my-pool \
--display-name="daily backups" --bandwidth-limit=50
POSITIONAL ARGUMENTS
NAME
A unique, permanent identifier for this pool.
FLAGS
--no-async
Block other tasks in your terminal until the pool has been created. If
not included, pool creation will run asynchronously.
--bandwidth-limit=BANDWIDTH_LIMIT
Set how much of your bandwidth to make available to this pool's agents.
A bandwidth limit applies to all agents in a pool and can help prevent
the pool's transfer workload from disrupting other operations that
share your bandwidth. For example, enter '50' to set a bandwidth limit
of 50 MB/s. By leaving this flag unspecified, this flag unspecified,
this pool's agents will use all bandwidth available to them.
--display-name=DISPLAY_NAME
A modifiable name to help you identify this pool. You can include
details that might not fit in the pool's unique full resource name.
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
This variant is also available:
$ gcloud alpha transfer agent-pools create