gcloud transfer jobs list - list Transfer Service transfer jobs
gcloud transfer jobs list [--limit=LIMIT] [--page-size=PAGE_SIZE; default=256] [--job-names=[JOB_NAMES,...]] [--job-statuses=[JOB_STATUSES,...]] [--expand-table] [GCLOUD_WIDE_FLAG ...]
List Transfer Service transfer jobs in a given project to show their configurations and latest operations.
To list all jobs in your current project, run:
$ gcloud transfer jobs list
To list all disabled jobs in your project, run:
$ gcloud transfer jobs list --job-statuses=disabled
To list jobs 'foo' and 'bar', run:
$ gcloud transfer jobs list --job-names=foo,bar
To list all information about all jobs formatted as JSON, run:
$ gcloud transfer jobs list --format=json
To list all information about jobs 'foo' and 'bar' formatted as YAML, run:
$ gcloud transfer jobs list --job-names=foo,bar --format=YAML
- --limit=LIMIT
Return the first items from the API up to this limit.
- --page-size=PAGE_SIZE; default=256
Retrieve batches of this many items from the API.
- --job-names=[JOB_NAMES,...]
The names of the jobs you want to list. Separate multiple job names with commas (e.g., --job-names=foo,bar). If not specified, all jobs will be listed.
- --job-statuses=[JOB_STATUSES,...]
List only jobs with the statuses you specify. Options include 'enabled', 'disabled', 'deleted' (case insensitive). Separate multiple statuses with commas (e.g., --job-statuses=enabled,deleted). If not specified, all jobs will be listed.
- --expand-table
Include additional table columns (job name, source, destination, frequency, lastest operation name, job status) in command output. Tip: increase the size of your terminal before running the command.
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.
This variant is also available:
$ gcloud alpha transfer jobs list