mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-16 20:36:39 +00:00
gcloud: Fri Mar 22 09:56:14 UTC 2024
This commit is contained in:
parent
75379bf68b
commit
5b4fac9106
182 changed files with 4221 additions and 251 deletions
|
|
@ -5,6 +5,10 @@ SYNOPSIS
|
|||
gcloud beta pubsub topics create TOPIC [TOPIC ...]
|
||||
[--labels=[KEY=VALUE,...]]
|
||||
[--message-retention-duration=MESSAGE_RETENTION_DURATION]
|
||||
[--kinesis-ingestion-consumer-arn=KINESIS_INGESTION_CONSUMER_ARN
|
||||
--kinesis-ingestion-role-arn=KINESIS_INGESTION_ROLE_ARN
|
||||
--kinesis-ingestion-service-account=KINESIS_INGESTION_SERVICE_ACCOUNT
|
||||
--kinesis-ingestion-stream-arn=KINESIS_INGESTION_STREAM_ARN]
|
||||
[--message-encoding=ENCODING (--schema=SCHEMA
|
||||
: --schema-project=SCHEMA_PROJECT)
|
||||
: --first-revision-id=FIRST_REVISION_ID
|
||||
|
|
@ -65,6 +69,36 @@ FLAGS
|
|||
is one of "s", "m", "h", and "d" for seconds, minutes, hours, and days,
|
||||
respectively. If the unit is omitted, seconds is assumed.
|
||||
|
||||
The following flags are for specifying ingestion settings for an import
|
||||
topic from Amazon Web Services (AWS) Kinesis Data Streams
|
||||
|
||||
--kinesis-ingestion-consumer-arn=KINESIS_INGESTION_CONSUMER_ARN
|
||||
The Kinesis data streams consumer Amazon Resource Name (ARN) to use
|
||||
for ingestion.
|
||||
|
||||
This flag argument must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--kinesis-ingestion-role-arn=KINESIS_INGESTION_ROLE_ARN
|
||||
AWS role ARN to be used for Federated Identity authentication with
|
||||
Kinesis.
|
||||
|
||||
This flag argument must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--kinesis-ingestion-service-account=KINESIS_INGESTION_SERVICE_ACCOUNT
|
||||
The service account to be used for Federated Identity authentication
|
||||
with Kinesis.
|
||||
|
||||
This flag argument must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--kinesis-ingestion-stream-arn=KINESIS_INGESTION_STREAM_ARN
|
||||
The Kinesis data stream ARN from which to ingest data.
|
||||
|
||||
This flag argument must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
Schema settings. The schema that messages published to this topic must
|
||||
conform to and the expected message encoding.
|
||||
|
||||
|
|
|
|||
|
|
@ -3,6 +3,11 @@ NAME
|
|||
|
||||
SYNOPSIS
|
||||
gcloud beta pubsub topics update TOPIC [--update-labels=[KEY=VALUE,...]]
|
||||
[--clear-ingestion-data-source-settings
|
||||
| --kinesis-ingestion-consumer-arn=KINESIS_INGESTION_CONSUMER_ARN
|
||||
--kinesis-ingestion-role-arn=KINESIS_INGESTION_ROLE_ARN
|
||||
--kinesis-ingestion-service-account=KINESIS_INGESTION_SERVICE_ACCOUNT
|
||||
--kinesis-ingestion-stream-arn=KINESIS_INGESTION_STREAM_ARN]
|
||||
[--clear-labels | --remove-labels=[KEY,...]]
|
||||
[--clear-message-retention-duration
|
||||
| --message-retention-duration=MESSAGE_RETENTION_DURATION]
|
||||
|
|
@ -102,6 +107,45 @@ FLAGS
|
|||
contain only hyphens (-), underscores (_), lowercase characters, and
|
||||
numbers.
|
||||
|
||||
Specify either --clear-ingestion-data-source-settings or a new ingestion
|
||||
source.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--clear-ingestion-data-source-settings
|
||||
If set, clear the Ingestion Data Source Settings from the topic. Use
|
||||
--no-clear-ingestion-data-source-settings to disable this flag.
|
||||
|
||||
The following flags are for specifying ingestion settings for an import
|
||||
topic from Amazon Web Services (AWS) Kinesis Data Streams
|
||||
|
||||
--kinesis-ingestion-consumer-arn=KINESIS_INGESTION_CONSUMER_ARN
|
||||
The Kinesis data streams consumer Amazon Resource Name (ARN) to use
|
||||
for ingestion.
|
||||
|
||||
This flag argument must be specified if any of the other arguments
|
||||
in this group are specified.
|
||||
|
||||
--kinesis-ingestion-role-arn=KINESIS_INGESTION_ROLE_ARN
|
||||
AWS role ARN to be used for Federated Identity authentication with
|
||||
Kinesis.
|
||||
|
||||
This flag argument must be specified if any of the other arguments
|
||||
in this group are specified.
|
||||
|
||||
--kinesis-ingestion-service-account=KINESIS_INGESTION_SERVICE_ACCOUNT
|
||||
The service account to be used for Federated Identity
|
||||
authentication with Kinesis.
|
||||
|
||||
This flag argument must be specified if any of the other arguments
|
||||
in this group are specified.
|
||||
|
||||
--kinesis-ingestion-stream-arn=KINESIS_INGESTION_STREAM_ARN
|
||||
The Kinesis data stream ARN from which to ingest data.
|
||||
|
||||
This flag argument must be specified if any of the other arguments
|
||||
in this group are specified.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--clear-labels
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue