1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-08 10:35:03 +00:00

gcloud: Wed Jul 26 10:48:49 UTC 2023

This commit is contained in:
Automated 2023-07-26 10:48:49 +00:00
parent 64e67b443c
commit 4558a00e48
204 changed files with 2787 additions and 1591 deletions

View file

@ -4,7 +4,7 @@ NAME
SYNOPSIS
gcloud transcoder jobs create [--input-uri=INPUT_URI]
[--labels=[KEY=VALUE,...]] [--location=LOCATION] [--mode=MODE]
[--output-uri=OUTPUT_URI]
[--optimization=OPTIMIZATION] [--output-uri=OUTPUT_URI]
[--file=FILE | --json=JSON | --template-id=TEMPLATE_ID]
[GCLOUD_WIDE_FLAG ...]
@ -40,9 +40,16 @@ EXAMPLES
$ gcloud transcoder jobs create --location=us-central1 \
--file="config.json" --labels=key=value
To create a transcoder job in batch mode: $ gcloud transcoder jobs create --location=us-central1 \
To create a transcoder job in batch mode:
$ gcloud transcoder jobs create --location=us-central1 \
--file="config.json" --mode=PROCESSING_MODE_BATCH
To create a transcoder job with optimizations disabled:
$ gcloud transcoder jobs create --location=us-central1 \
--file="config.json" --optimization=DISABLED
FLAGS
--input-uri=INPUT_URI
Google Cloud Storage URI. This value will override input URI in job
@ -79,6 +86,11 @@ FLAGS
config. MODE must be one of: PROCESSING_MODE_INTERACTIVE,
PROCESSING_MODE_BATCH.
--optimization=OPTIMIZATION
Optimization strategy of transcode job. This value will override
optimization in job config. OPTIMIZATION must be one of: AUTODETECT,
DISABLED.
--output-uri=OUTPUT_URI
Google Cloud Storage directory URI (followed by a trailing forward
slash). This value will override output URI in job config.