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

gcloud: Tue Mar 1 21:43:54 UTC 2022

This commit is contained in:
Automated 2022-03-01 21:43:54 +00:00
parent c1c3b75313
commit 21878eea72
1018 changed files with 4838 additions and 3409 deletions

View file

@ -23,8 +23,8 @@ EXAMPLES
$ gcloud beta pubsub subscriptions add-iam-policy-binding \
my-subscription \
--member='serviceAccount:my-iam-account@my-project.iam.gserviceaccount.com' \
--role='roles/editor'
--member='serviceAccount:my-iam-account@my-project.iam.gservicea\
ccount.com' --role='roles/editor'
See https://cloud.google.com/iam/docs/managing-policies for details of
policy role and member types.

View file

@ -5,9 +5,9 @@ NAME
SYNOPSIS
gcloud beta pubsub subscriptions create SUBSCRIPTION [SUBSCRIPTION ...]
(--topic=TOPIC : --topic-project=TOPIC_PROJECT)
[--ack-deadline=ACK_DEADLINE] [--enable-message-ordering]
[--expiration-period=EXPIRATION_PERIOD] [--labels=[KEY=VALUE,...]]
[--message-filter=MESSAGE_FILTER]
[--ack-deadline=ACK_DEADLINE] [--enable-exactly-once-delivery]
[--enable-message-ordering] [--expiration-period=EXPIRATION_PERIOD]
[--labels=[KEY=VALUE,...]] [--message-filter=MESSAGE_FILTER]
[--message-retention-duration=MESSAGE_RETENTION_DURATION]
[--push-auth-service-account=SERVICE_ACCOUNT_EMAIL]
[--push-auth-token-audience=OPTIONAL_AUDIENCE_OVERRIDE]
@ -70,6 +70,14 @@ OPTIONAL FLAGS
The number of seconds the system will wait for a subscriber to
acknowledge receiving a message before re-attempting delivery.
--enable-exactly-once-delivery
Whether or not to enble exactly once delivery on the subscription. If
true, Pub/Sub provides the following guarantees for the delivery of a
message with a given value of message_id on this subscription: The
message sent to a subscriber is guaranteed not to be resent before the
message's acknowledgement deadline expires. An acknowledged message
will not be resent to a subscriber.
--enable-message-ordering
Whether to receive messages with the same ordering key in order. If
set, messages with the same ordering key are sent to subscribers in the

View file

@ -4,7 +4,8 @@ NAME
SYNOPSIS
gcloud beta pubsub subscriptions update SUBSCRIPTION
[--ack-deadline=ACK_DEADLINE] [--expiration-period=EXPIRATION_PERIOD]
[--ack-deadline=ACK_DEADLINE] [--enable-exactly-once-delivery]
[--expiration-period=EXPIRATION_PERIOD]
[--message-retention-duration=MESSAGE_RETENTION_DURATION]
[--push-auth-service-account=SERVICE_ACCOUNT_EMAIL]
[--push-auth-token-audience=OPTIONAL_AUDIENCE_OVERRIDE]
@ -43,6 +44,14 @@ FLAGS
The number of seconds the system will wait for a subscriber to
acknowledge receiving a message before re-attempting delivery.
--enable-exactly-once-delivery
Whether or not to enble exactly once delivery on the subscription. If
true, Pub/Sub provides the following guarantees for the delivery of a
message with a given value of message_id on this subscription: The
message sent to a subscriber is guaranteed not to be resent before the
message's acknowledgement deadline expires. An acknowledged message
will not be resent to a subscriber.
--expiration-period=EXPIRATION_PERIOD
The subscription will expire if it is inactive for the given period.
Valid values are strings of the form INTEGER[UNIT], where UNIT is one