1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-08 02:25:19 +00:00
gcloud-help/gcloud/transfer/jobs/list
2022-03-16 08:47:18 +00:00

70 lines
2.3 KiB
Text

NAME
gcloud transfer jobs list - list Transfer Service transfer jobs
SYNOPSIS
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 ...]
DESCRIPTION
List Transfer Service transfer jobs in a given project to show their
configurations and latest operations.
EXAMPLES
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
FLAGS
--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.
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 jobs list