Pub/Sub Client Types

class google.cloud.pubsub_v1.types.AcknowledgeRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the Acknowledge method.

subscription()

Required. The subscription whose message is being acknowledged. Format is projects/{project}/subscriptions/{sub}.

ack_ids()

Required. The acknowledgment ID for the messages being acknowledged that was returned by the Pub/Sub system in the Pull response. Must not be empty.

  • Type

    Sequence[str]

class google.cloud.pubsub_v1.types.AuditConfig()

class google.cloud.pubsub_v1.types.AuditConfigDelta()

class google.cloud.pubsub_v1.types.AuditData()

class google.cloud.pubsub_v1.types.AuditLogConfig()

class google.cloud.pubsub_v1.types.BatchSettings(max_bytes: int = 1000000, max_latency: float = 0.01, max_messages: int = 100)

The settings for batch publishing the messages.

Create new instance of BatchSettings(max_bytes, max_latency, max_messages)

max_bytes(: [int](https://python.readthedocs.io/en/latest/library/functions.html#int )

The maximum total size of the messages to collect before automatically publishing the batch, including any byte size overhead of the publish request itself. The maximum value is bound by the server-side limit of 10_000_000 bytes.

max_latency(: [float](https://python.readthedocs.io/en/latest/library/functions.html#float )

The maximum number of seconds to wait for additional messages before automatically publishing the batch.

max_messages(: [int](https://python.readthedocs.io/en/latest/library/functions.html#int )

The maximum number of messages to collect before automatically publishing the batch.

class google.cloud.pubsub_v1.types.Binding()

class google.cloud.pubsub_v1.types.BindingDelta()

class google.cloud.pubsub_v1.types.CreateSnapshotRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the CreateSnapshot method.

name()

Required. User-provided name for this snapshot. If the name is not provided in the request, the server will assign a random name for this snapshot on the same project as the subscription. Note that for REST API requests, you must specify a name. See the resource name rules. Format is projects/{project}/snapshots/{snap}.

subscription()

Required. The subscription whose backlog the snapshot retains. Specifically, the created snapshot is guaranteed to retain: (a) The existing backlog on the subscription. More precisely, this is defined as the messages in the subscription’s backlog that are unacknowledged upon the successful completion of the CreateSnapshot request; as well as: (b) Any messages published to the subscription’s topic following the successful completion of the CreateSnapshot request. Format is projects/{project}/subscriptions/{sub}.

labels()

See a href=”[https://cloud.google.com/pubsub/docs/labels](https://cloud.google.com/pubsub/docs/labels)” Creating and managing labels.

  • Type

    Sequence[google.pubsub_v1.types.CreateSnapshotRequest.LabelsEntry]

class LabelsEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)

class google.cloud.pubsub_v1.types.CustomHttpPattern()

class google.cloud.pubsub_v1.types.DeadLetterPolicy(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Dead lettering is done on a best effort basis. The same message might be dead lettered multiple times.

If validation on any of the fields fails at subscription creation/updation, the create/update subscription request will fail.

dead_letter_topic()

The name of the topic to which dead letter messages should be published. Format is projects/{project}/topics/{topic}.The Cloud Pub/Sub service account associated with the enclosing subscription’s parent project (i.e., service-{project_number}@gcp-sa-pubsub.iam.gserviceaccount.com) must have permission to Publish() to this topic.

The operation will fail if the topic does not exist. Users should ensure that there is a subscription attached to this topic since messages published to a topic with no subscriptions are lost.

max_delivery_attempts()

The maximum number of delivery attempts for any message. The value must be between 5 and 100.

The number of delivery attempts is defined as 1 + (the sum of number of NACKs and number of times the acknowledgement deadline has been exceeded for the message).

A NACK is any call to ModifyAckDeadline with a 0 deadline. Note that client libraries may automatically extend ack_deadlines.

This field will be honored on a best effort basis.

If this parameter is 0, a default value of 5 is used.

class google.cloud.pubsub_v1.types.DeleteSnapshotRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the DeleteSnapshot method.

snapshot()

Required. The name of the snapshot to delete. Format is projects/{project}/snapshots/{snap}.

class google.cloud.pubsub_v1.types.DeleteSubscriptionRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the DeleteSubscription method.

subscription()

Required. The subscription to delete. Format is projects/{project}/subscriptions/{sub}.

class google.cloud.pubsub_v1.types.DeleteTopicRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the DeleteTopic method.

topic()

Required. Name of the topic to delete. Format is projects/{project}/topics/{topic}.

class google.cloud.pubsub_v1.types.DescriptorProto()

class ExtensionRange()

DESCRIPTOR( = <google._upb._message.Descriptor object )

class ReservedRange()

DESCRIPTOR( = <google._upb._message.Descriptor object )

class google.cloud.pubsub_v1.types.DetachSubscriptionRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the DetachSubscription method.

subscription()

Required. The subscription to detach. Format is projects/{project}/subscriptions/{subscription}.

class google.cloud.pubsub_v1.types.DetachSubscriptionResponse(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Response for the DetachSubscription method. Reserved for future use.

class google.cloud.pubsub_v1.types.Duration()

class google.cloud.pubsub_v1.types.Empty()

class google.cloud.pubsub_v1.types.EnumDescriptorProto()

class EnumReservedRange()

DESCRIPTOR( = <google._upb._message.Descriptor object )

class google.cloud.pubsub_v1.types.EnumOptions()

class google.cloud.pubsub_v1.types.EnumValueDescriptorProto()

class google.cloud.pubsub_v1.types.EnumValueOptions()

class google.cloud.pubsub_v1.types.ExpirationPolicy(mapping=None, *, ignore_unknown_fields=False, **kwargs)

A policy that specifies the conditions for resource expiration (i.e., automatic resource deletion).

ttl()

Specifies the “time-to-live” duration for an associated resource. The resource expires if it is not active for a period of ttl. The definition of “activity” depends on the type of the associated resource. The minimum and maximum allowed values for ttl depend on the type of the associated resource, as well. If ttl is not set, the associated resource never expires.

class google.cloud.pubsub_v1.types.ExtensionRangeOptions()

class google.cloud.pubsub_v1.types.FieldDescriptorProto()

class google.cloud.pubsub_v1.types.FieldMask()

class google.cloud.pubsub_v1.types.FieldOptions()

class google.cloud.pubsub_v1.types.FileDescriptorProto()

class google.cloud.pubsub_v1.types.FileDescriptorSet()

class google.cloud.pubsub_v1.types.FileOptions()

class google.cloud.pubsub_v1.types.FlowControl(max_bytes: int = 104857600, max_messages: int = 1000, max_lease_duration: float = 3600, min_duration_per_lease_extension: float = 0, max_duration_per_lease_extension: float = 0)

The settings for controlling the rate at which messages are pulled with an asynchronous subscription.

Create new instance of FlowControl(max_bytes, max_messages, max_lease_duration, min_duration_per_lease_extension, max_duration_per_lease_extension)

max_bytes(: [int](https://python.readthedocs.io/en/latest/library/functions.html#int )

The maximum total size of received - but not yet processed - messages before pausing the message stream.

max_duration_per_lease_extension(: [float](https://python.readthedocs.io/en/latest/library/functions.html#float )

The max amount of time in seconds for a single lease extension attempt. Bounds the delay before a message redelivery if the subscriber fails to extend the deadline. Must be between 10 and 600 (inclusive). Ignored if set to 0.

max_lease_duration(: [float](https://python.readthedocs.io/en/latest/library/functions.html#float )

The maximum amount of time in seconds to hold a lease on a message before dropping it from the lease management.

max_messages(: [int](https://python.readthedocs.io/en/latest/library/functions.html#int )

The maximum number of received - but not yet processed - messages before pausing the message stream.

min_duration_per_lease_extension(: [float](https://python.readthedocs.io/en/latest/library/functions.html#float )

The min amount of time in seconds for a single lease extension attempt. Must be between 10 and 600 (inclusive). Ignored by default, but set to 60 seconds if the subscription has exactly-once delivery enabled.

class google.cloud.pubsub_v1.types.GeneratedCodeInfo()

class Annotation()

DESCRIPTOR( = <google._upb._message.Descriptor object )

class google.cloud.pubsub_v1.types.GetIamPolicyRequest()

class google.cloud.pubsub_v1.types.GetSnapshotRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the GetSnapshot method.

snapshot()

Required. The name of the snapshot to get. Format is projects/{project}/snapshots/{snap}.

class google.cloud.pubsub_v1.types.GetSubscriptionRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the GetSubscription method.

subscription()

Required. The name of the subscription to get. Format is projects/{project}/subscriptions/{sub}.

class google.cloud.pubsub_v1.types.GetTopicRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the GetTopic method.

topic()

Required. The name of the topic to get. Format is projects/{project}/topics/{topic}.

class google.cloud.pubsub_v1.types.Http()

class google.cloud.pubsub_v1.types.HttpRule()

class google.cloud.pubsub_v1.types.LimitExceededBehavior(value)

The possible actions when exceeding the publish flow control limits.

class google.cloud.pubsub_v1.types.ListSnapshotsRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the ListSnapshots method.

project()

Required. The name of the project in which to list snapshots. Format is projects/{project-id}.

page_size()

Maximum number of snapshots to return.

page_token()

The value returned by the last ListSnapshotsResponse; indicates that this is a continuation of a prior ListSnapshots call, and that the system should return the next page of data.

class google.cloud.pubsub_v1.types.ListSnapshotsResponse(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Response for the ListSnapshots method.

snapshots()

The resulting snapshots.

  • Type

    Sequence[google.pubsub_v1.types.Snapshot]

next_page_token()

If not empty, indicates that there may be more snapshot that match the request; this value should be passed in a new ListSnapshotsRequest.

class google.cloud.pubsub_v1.types.ListSubscriptionsRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the ListSubscriptions method.

project()

Required. The name of the project in which to list subscriptions. Format is projects/{project-id}.

page_size()

Maximum number of subscriptions to return.

page_token()

The value returned by the last ListSubscriptionsResponse; indicates that this is a continuation of a prior ListSubscriptions call, and that the system should return the next page of data.

class google.cloud.pubsub_v1.types.ListSubscriptionsResponse(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Response for the ListSubscriptions method.

subscriptions()

The subscriptions that match the request.

  • Type

    Sequence[google.pubsub_v1.types.Subscription]

next_page_token()

If not empty, indicates that there may be more subscriptions that match the request; this value should be passed in a new ListSubscriptionsRequest to get more subscriptions.

class google.cloud.pubsub_v1.types.ListTopicSnapshotsRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the ListTopicSnapshots method.

topic()

Required. The name of the topic that snapshots are attached to. Format is projects/{project}/topics/{topic}.

page_size()

Maximum number of snapshot names to return.

page_token()

The value returned by the last ListTopicSnapshotsResponse; indicates that this is a continuation of a prior ListTopicSnapshots call, and that the system should return the next page of data.

class google.cloud.pubsub_v1.types.ListTopicSnapshotsResponse(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Response for the ListTopicSnapshots method.

snapshots()

The names of the snapshots that match the request.

  • Type

    Sequence[str]

next_page_token()

If not empty, indicates that there may be more snapshots that match the request; this value should be passed in a new ListTopicSnapshotsRequest to get more snapshots.

class google.cloud.pubsub_v1.types.ListTopicSubscriptionsRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the ListTopicSubscriptions method.

topic()

Required. The name of the topic that subscriptions are attached to. Format is projects/{project}/topics/{topic}.

page_size()

Maximum number of subscription names to return.

page_token()

The value returned by the last ListTopicSubscriptionsResponse; indicates that this is a continuation of a prior ListTopicSubscriptions call, and that the system should return the next page of data.

class google.cloud.pubsub_v1.types.ListTopicSubscriptionsResponse(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Response for the ListTopicSubscriptions method.

subscriptions()

The names of subscriptions attached to the topic specified in the request.

  • Type

    Sequence[str]

next_page_token()

If not empty, indicates that there may be more subscriptions that match the request; this value should be passed in a new ListTopicSubscriptionsRequest to get more subscriptions.

class google.cloud.pubsub_v1.types.ListTopicsRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the ListTopics method.

project()

Required. The name of the project in which to list topics. Format is projects/{project-id}.

page_size()

Maximum number of topics to return.

page_token()

The value returned by the last ListTopicsResponse; indicates that this is a continuation of a prior ListTopics call, and that the system should return the next page of data.

class google.cloud.pubsub_v1.types.ListTopicsResponse(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Response for the ListTopics method.

topics()

The resulting topics.

  • Type

    Sequence[google.pubsub_v1.types.Topic]

next_page_token()

If not empty, indicates that there may be more topics that match the request; this value should be passed in a new ListTopicsRequest.

class google.cloud.pubsub_v1.types.MessageOptions()

class google.cloud.pubsub_v1.types.MessageStoragePolicy(mapping=None, *, ignore_unknown_fields=False, **kwargs)

A policy constraining the storage of messages published to the topic.

allowed_persistence_regions()

A list of IDs of GCP regions where messages that are published to the topic may be persisted in storage. Messages published by publishers running in non-allowed GCP regions (or running outside of GCP altogether) will be routed for storage in one of the allowed regions. An empty list means that no regions are allowed, and is not a valid configuration.

  • Type

    Sequence[str]

class google.cloud.pubsub_v1.types.MethodDescriptorProto()

class google.cloud.pubsub_v1.types.MethodOptions()

class google.cloud.pubsub_v1.types.ModifyAckDeadlineRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the ModifyAckDeadline method.

subscription()

Required. The name of the subscription. Format is projects/{project}/subscriptions/{sub}.

ack_ids()

Required. List of acknowledgment IDs.

  • Type

    Sequence[str]

ack_deadline_seconds()

Required. The new ack deadline with respect to the time this request was sent to the Pub/Sub system. For example, if the value is 10, the new ack deadline will expire 10 seconds after the ModifyAckDeadline call was made. Specifying zero might immediately make the message available for delivery to another subscriber client. This typically results in an increase in the rate of message redeliveries (that is, duplicates). The minimum deadline you can specify is 0 seconds. The maximum deadline you can specify is 600 seconds (10 minutes).

class google.cloud.pubsub_v1.types.ModifyPushConfigRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the ModifyPushConfig method.

subscription()

Required. The name of the subscription. Format is projects/{project}/subscriptions/{sub}.

push_config()

Required. The push configuration for future deliveries.

An empty pushConfig indicates that the Pub/Sub system should stop pushing messages from the given subscription and allow messages to be pulled and acknowledged - effectively pausing the subscription if Pull or StreamingPull is not called.

  • Type

    google.pubsub_v1.types.PushConfig

class google.cloud.pubsub_v1.types.OneofDescriptorProto()

class google.cloud.pubsub_v1.types.OneofOptions()

class google.cloud.pubsub_v1.types.Policy()

class google.cloud.pubsub_v1.types.PolicyDelta()

class google.cloud.pubsub_v1.types.PublishFlowControl(message_limit: int = 1000, byte_limit: int = 10000000, limit_exceeded_behavior: google.cloud.pubsub_v1.types.LimitExceededBehavior = <LimitExceededBehavior.IGNORE: 'ignore'>)

The client flow control settings for message publishing.

Create new instance of PublishFlowControl(message_limit, byte_limit, limit_exceeded_behavior)

byte_limit(: [int](https://python.readthedocs.io/en/latest/library/functions.html#int )

The maximum total size of messages awaiting to be published.

limit_exceeded_behavior(: google.cloud.pubsub_v1.types.LimitExceededBehavio )

The action to take when publish flow control limits are exceeded.

message_limit(: [int](https://python.readthedocs.io/en/latest/library/functions.html#int )

The maximum number of messages awaiting to be published.

class google.cloud.pubsub_v1.types.PublishRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the Publish method.

topic()

Required. The messages in the request will be published on this topic. Format is projects/{project}/topics/{topic}.

messages()

Required. The messages to publish.

  • Type

    Sequence[google.pubsub_v1.types.PubsubMessage]

class google.cloud.pubsub_v1.types.PublishResponse(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Response for the Publish method.

message_ids()

The server-assigned ID of each published message, in the same order as the messages in the request. IDs are guaranteed to be unique within the topic.

  • Type

    Sequence[str]

class google.cloud.pubsub_v1.types.PublisherOptions(enable_message_ordering: bool = False, flow_control: google.cloud.pubsub_v1.types.PublishFlowControl = PublishFlowControl(message_limit=1000, byte_limit=10000000, limit_exceeded_behavior=<LimitExceededBehavior.IGNORE: 'ignore'>), retry: OptionalRetry = <_MethodDefault._DEFAULT_VALUE:

The options for the publisher client.

Create new instance of PublisherOptions(enable_message_ordering, flow_control, retry, timeout)

enable_message_ordering(: [bool](https://python.readthedocs.io/en/latest/library/functions.html#bool )

Whether to order messages in a batch by a supplied ordering key.

flow_control(: google.cloud.pubsub_v1.types.PublishFlowContro )

Flow control settings for message publishing by the client. By default the publisher client does not do any throttling.

retry(: OptionalRetr )

Retry settings for message publishing by the client. This should be an instance of google.api_core.retry.Retry.

timeout(: OptionalTimeou )

Timeout settings for message publishing by the client. It should be compatible with TimeoutType.

class google.cloud.pubsub_v1.types.PubsubMessage(mapping=None, *, ignore_unknown_fields=False, **kwargs)

A message that is published by publishers and consumed by subscribers. The message must contain either a non-empty data field or at least one attribute. Note that client libraries represent this object differently depending on the language. See the corresponding client library documentation for more information. See quotas and limits for more information about message limits.

data()

The message data field. If this field is empty, the message must contain at least one attribute.

attributes()

Attributes for this message. If this field is empty, the message must contain non-empty data. This can be used to filter messages on the subscription.

  • Type

    Sequence[google.pubsub_v1.types.PubsubMessage.AttributesEntry]

message_id()

ID of this message, assigned by the server when the message is published. Guaranteed to be unique within the topic. This value may be read by a subscriber that receives a PubsubMessage via a Pull call or a push delivery. It must not be populated by the publisher in a Publish call.

publish_time()

The time at which the message was published, populated by the server when it receives the Publish call. It must not be populated by the publisher in a Publish call.

ordering_key()

If non-empty, identifies related messages for which publish order should be respected. If a Subscription has enable_message_ordering set to true, messages published with the same non-empty ordering_key value will be delivered to subscribers in the order in which they are received by the Pub/Sub system. All PubsubMessages published in a given PublishRequest must specify the same ordering_key value.

class AttributesEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)

class google.cloud.pubsub_v1.types.PullRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the Pull method.

subscription()

Required. The subscription from which messages should be pulled. Format is projects/{project}/subscriptions/{sub}.

return_immediately()

Optional. If this field set to true, the system will respond immediately even if it there are no messages available to return in the Pull response. Otherwise, the system may wait (for a bounded amount of time) until at least one message is available, rather than returning no messages. Warning: setting this field to true is discouraged because it adversely impacts the performance of Pull operations. We recommend that users do not set this field.

max_messages()

Required. The maximum number of messages to return for this request. Must be a positive integer. The Pub/Sub system may return fewer than the number specified.

class google.cloud.pubsub_v1.types.PullResponse(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Response for the Pull method.

received_messages()

Received Pub/Sub messages. The list will be empty if there are no more messages available in the backlog. For JSON, the response can be entirely empty. The Pub/Sub system may return fewer than the maxMessages requested even if there are more messages available in the backlog.

  • Type

    Sequence[google.pubsub_v1.types.ReceivedMessage]

class google.cloud.pubsub_v1.types.PushConfig(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Configuration for a push delivery endpoint.

push_endpoint()

A URL locating the endpoint to which messages should be pushed. For example, a Webhook endpoint might use https://example.com/push.

attributes()

Endpoint configuration attributes that can be used to control different aspects of the message delivery.

The only currently supported attribute is x-goog-version, which you can use to change the format of the pushed message. This attribute indicates the version of the data expected by the endpoint. This controls the shape of the pushed message (i.e., its fields and metadata).

If not present during the CreateSubscription call, it will default to the version of the Pub/Sub API used to make such call. If not present in a ModifyPushConfig call, its value will not be changed. GetSubscription calls will always return a valid version, even if the subscription was created without this attribute.

The only supported values for the x-goog-version attribute are:

  • v1beta1: uses the push format defined in the v1beta1 Pub/Sub API.

  • v1 or v1beta2: uses the push format defined in the v1 Pub/Sub API.

For example:

attributes { "x-goog-version": "v1" } 
  • Type

    Sequence[google.pubsub_v1.types.PushConfig.AttributesEntry]

oidc_token()

If specified, Pub/Sub will generate and attach an OIDC JWT token as an Authorization header in the HTTP request for every pushed message.

This field is a member of oneof authentication_method.

  • Type

    google.pubsub_v1.types.PushConfig.OidcToken

class AttributesEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)

class OidcToken(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Contains information needed for generating an OpenID Connect token.

service_account_email()

Service account email to be used for generating the OIDC token. The caller (for CreateSubscription, UpdateSubscription, and ModifyPushConfig RPCs) must have the iam.serviceAccounts.actAs permission for the service account.

audience()

Audience to be used when generating OIDC token. The audience claim identifies the recipients that the JWT is intended for. The audience value is a single case-sensitive string. Having multiple values (array) for the audience field is not supported. More info about the OIDC JWT token audience here: https://tools.ietf.org/html/rfc7519#section-4.1.3 Note: if not specified, the Push endpoint URL will be used.

class google.cloud.pubsub_v1.types.ReceivedMessage(mapping=None, *, ignore_unknown_fields=False, **kwargs)

A message and its corresponding acknowledgment ID.

ack_id()

This ID can be used to acknowledge the received message.

message()

The message.

  • Type

    google.pubsub_v1.types.PubsubMessage

delivery_attempt()

The approximate number of times that Cloud Pub/Sub has attempted to deliver the associated message to a subscriber.

More precisely, this is 1 + (number of NACKs) + (number of ack_deadline exceeds) for this message.

A NACK is any call to ModifyAckDeadline with a 0 deadline. An ack_deadline exceeds event is whenever a message is not acknowledged within ack_deadline. Note that ack_deadline is initially Subscription.ackDeadlineSeconds, but may get extended automatically by the client library.

Upon the first delivery of a given message, delivery_attempt will have a value of 1. The value is calculated at best effort and is approximate.

If a DeadLetterPolicy is not set on the subscription, this will be 0.

class google.cloud.pubsub_v1.types.RetryPolicy(mapping=None, *, ignore_unknown_fields=False, **kwargs)

A policy that specifies how Cloud Pub/Sub retries message delivery.

Retry delay will be exponential based on provided minimum and maximum backoffs. https://en.wikipedia.org/wiki/Exponential_backoff.

RetryPolicy will be triggered on NACKs or acknowledgement deadline exceeded events for a given message.

Retry Policy is implemented on a best effort basis. At times, the delay between consecutive deliveries may not match the configuration. That is, delay can be more or less than configured backoff.

minimum_backoff()

The minimum delay between consecutive deliveries of a given message. Value should be between 0 and 600 seconds. Defaults to 10 seconds.

maximum_backoff()

The maximum delay between consecutive deliveries of a given message. Value should be between 0 and 600 seconds. Defaults to 600 seconds.

class google.cloud.pubsub_v1.types.SchemaSettings(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Settings for validating messages published against a schema.

schema()

Required. The name of the schema that messages published should be validated against. Format is projects/{project}/schemas/{schema}. The value of this field will be _deleted-schema_ if the schema has been deleted.

encoding()

The encoding of messages validated against schema.

  • Type

    google.pubsub_v1.types.Encoding

class google.cloud.pubsub_v1.types.SeekRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the Seek method.

This message has oneof fields (mutually exclusive fields). For each oneof, at most one member field can be set at the same time. Setting any member of the oneof automatically clears all other members.

subscription()

Required. The subscription to affect.

time()

The time to seek to. Messages retained in the subscription that were published before this time are marked as acknowledged, and messages retained in the subscription that were published after this time are marked as unacknowledged. Note that this operation affects only those messages retained in the subscription (configured by the combination of message_retention_duration and retain_acked_messages). For example, if time corresponds to a point before the message retention window (or to a point before the system’s notion of the subscription creation time), only retained messages will be marked as unacknowledged, and already-expunged messages will not be restored.

This field is a member of oneof target.

snapshot()

The snapshot to seek to. The snapshot’s topic must be the same as that of the provided subscription. Format is projects/{project}/snapshots/{snap}.

This field is a member of oneof target.

class google.cloud.pubsub_v1.types.SeekResponse(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Response for the Seek method (this response is empty).

class google.cloud.pubsub_v1.types.ServiceDescriptorProto()

class google.cloud.pubsub_v1.types.ServiceOptions()

class google.cloud.pubsub_v1.types.SetIamPolicyRequest()

class google.cloud.pubsub_v1.types.Snapshot(mapping=None, *, ignore_unknown_fields=False, **kwargs)

A snapshot resource. Snapshots are used in Seek operations, which allow you to manage message acknowledgments in bulk. That is, you can set the acknowledgment state of messages in an existing subscription to the state captured by a snapshot.

name()

The name of the snapshot.

topic()

The name of the topic from which this snapshot is retaining messages.

expire_time()

The snapshot is guaranteed to exist up until this time. A newly-created snapshot expires no later than 7 days from the time of its creation. Its exact lifetime is determined at creation by the existing backlog in the source subscription. Specifically, the lifetime of the snapshot is 7 days - (age of oldest unacked message in the subscription). For example, consider a subscription whose oldest unacked message is 3 days old. If a snapshot is created from this subscription, the snapshot – which will always capture this 3-day-old backlog as long as the snapshot exists – will expire in 4 days. The service will refuse to create a snapshot that would expire in less than 1 hour after creation.

labels()

See Creating and managing labels.

  • Type

    Sequence[google.pubsub_v1.types.Snapshot.LabelsEntry]

class LabelsEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)

class google.cloud.pubsub_v1.types.SourceCodeInfo()

class Location()

DESCRIPTOR( = <google._upb._message.Descriptor object )

class google.cloud.pubsub_v1.types.StreamingPullRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the StreamingPull streaming RPC method. This request is used to establish the initial stream as well as to stream acknowledgements and ack deadline modifications from the client to the server.

subscription()

Required. The subscription for which to initialize the new stream. This must be provided in the first request on the stream, and must not be set in subsequent requests from client to server. Format is projects/{project}/subscriptions/{sub}.

ack_ids()

List of acknowledgement IDs for acknowledging previously received messages (received on this stream or a different stream). If an ack ID has expired, the corresponding message may be redelivered later. Acknowledging a message more than once will not result in an error. If the acknowledgement ID is malformed, the stream will be aborted with status INVALID_ARGUMENT.

  • Type

    Sequence[str]

modify_deadline_seconds()

The list of new ack deadlines for the IDs listed in modify_deadline_ack_ids. The size of this list must be the same as the size of modify_deadline_ack_ids. If it differs the stream will be aborted with INVALID_ARGUMENT. Each element in this list is applied to the element in the same position in modify_deadline_ack_ids. The new ack deadline is with respect to the time this request was sent to the Pub/Sub system. Must be >= 0. For example, if the value is 10, the new ack deadline will expire 10 seconds after this request is received. If the value is 0, the message is immediately made available for another streaming or non-streaming pull request. If the value is < 0 (an error), the stream will be aborted with status INVALID_ARGUMENT.

  • Type

    Sequence[int]

modify_deadline_ack_ids()

List of acknowledgement IDs whose deadline will be modified based on the corresponding element in modify_deadline_seconds. This field can be used to indicate that more time is needed to process a message by the subscriber, or to make the message available for redelivery if the processing was interrupted.

  • Type

    Sequence[str]

stream_ack_deadline_seconds()

Required. The ack deadline to use for the stream. This must be provided in the first request on the stream, but it can also be updated on subsequent requests from client to server. The minimum deadline you can specify is 10 seconds. The maximum deadline you can specify is 600 seconds (10 minutes).

client_id()

A unique identifier that is used to distinguish client instances from each other. Only needs to be provided on the initial request. When a stream disconnects and reconnects for the same stream, the client_id should be set to the same value so that state associated with the old stream can be transferred to the new stream. The same client_id should not be used for different client instances.

max_outstanding_messages()

Flow control settings for the maximum number of outstanding messages. When there are max_outstanding_messages or more currently sent to the streaming pull client that have not yet been acked or nacked, the server stops sending more messages. The sending of messages resumes once the number of outstanding messages is less than this value. If the value is <= 0, there is no limit to the number of outstanding messages. This property can only be set on the initial StreamingPullRequest. If it is set on a subsequent request, the stream will be aborted with status INVALID_ARGUMENT.

max_outstanding_bytes()

Flow control settings for the maximum number of outstanding bytes. When there are max_outstanding_bytes or more worth of messages currently sent to the streaming pull client that have not yet been acked or nacked, the server will stop sending more messages. The sending of messages resumes once the number of outstanding bytes is less than this value. If the value is <= 0, there is no limit to the number of outstanding bytes. This property can only be set on the initial StreamingPullRequest. If it is set on a subsequent request, the stream will be aborted with status INVALID_ARGUMENT.

class google.cloud.pubsub_v1.types.StreamingPullResponse(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Response for the StreamingPull method. This response is used to stream messages from the server to the client.

received_messages()

Received Pub/Sub messages. This will not be empty.

  • Type

    Sequence[google.pubsub_v1.types.ReceivedMessage]

acknowledge_confirmation()

This field will only be set if enable_exactly_once_delivery is set to true.

  • Type

    google.pubsub_v1.types.StreamingPullResponse.AcknowledgeConfirmation

modify_ack_deadline_confirmation()

This field will only be set if enable_exactly_once_delivery is set to true.

  • Type

    google.pubsub_v1.types.StreamingPullResponse.ModifyAckDeadlineConfirmation

subscription_properties()

Properties associated with this subscription.

  • Type

    google.pubsub_v1.types.StreamingPullResponse.SubscriptionProperties

class AcknowledgeConfirmation(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Acknowledgement IDs sent in one or more previous requests to acknowledge a previously received message.

ack_ids()

Successfully processed acknowledgement IDs.

  • Type

    Sequence[str]

invalid_ack_ids()

List of acknowledgement IDs that were malformed or whose acknowledgement deadline has expired.

  • Type

    Sequence[str]

unordered_ack_ids()

List of acknowledgement IDs that were out of order.

  • Type

    Sequence[str]

class ModifyAckDeadlineConfirmation(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Acknowledgement IDs sent in one or more previous requests to modify the deadline for a specific message.

ack_ids()

Successfully processed acknowledgement IDs.

  • Type

    Sequence[str]

invalid_ack_ids()

List of acknowledgement IDs that were malformed or whose acknowledgement deadline has expired.

  • Type

    Sequence[str]

class SubscriptionProperties(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Subscription properties sent as part of the response.

exactly_once_delivery_enabled()

True iff exactly once delivery is enabled for this subscription.

message_ordering_enabled()

True iff message ordering is enabled for this subscription.

class google.cloud.pubsub_v1.types.Subscription(mapping=None, *, ignore_unknown_fields=False, **kwargs)

A subscription resource.

name()

Required. The name of the subscription. It must have the format "projects/{project}/subscriptions/{subscription}". {subscription} must start with a letter, and contain only letters ([A-Za-z]), numbers ([0-9]), dashes (-), underscores (_), periods (.), tildes (~), plus (+) or percent signs (%). It must be between 3 and 255 characters in length, and it must not start with "goog".

topic()

Required. The name of the topic from which this subscription is receiving messages. Format is projects/{project}/topics/{topic}. The value of this field will be _deleted-topic_ if the topic has been deleted.

push_config()

If push delivery is used with this subscription, this field is used to configure it. An empty pushConfig signifies that the subscriber will pull and ack messages using API methods.

  • Type

    google.pubsub_v1.types.PushConfig

ack_deadline_seconds()

The approximate amount of time (on a best-effort basis) Pub/Sub waits for the subscriber to acknowledge receipt before resending the message. In the interval after the message is delivered and before it is acknowledged, it is considered to be outstanding. During that time period, the message will not be redelivered (on a best-effort basis).

For pull subscriptions, this value is used as the initial value for the ack deadline. To override this value for a given message, call ModifyAckDeadline with the corresponding ack_id if using non-streaming pull or send the ack_id in a StreamingModifyAckDeadlineRequest if using streaming pull. The minimum custom deadline you can specify is 10 seconds. The maximum custom deadline you can specify is 600 seconds (10 minutes). If this parameter is 0, a default value of 10 seconds is used.

For push delivery, this value is also used to set the request timeout for the call to the push endpoint.

If the subscriber never acknowledges the message, the Pub/Sub system will eventually redeliver the message.

retain_acked_messages()

Indicates whether to retain acknowledged messages. If true, then messages are not expunged from the subscription’s backlog, even if they are acknowledged, until they fall out of the message_retention_duration window. This must be true if you would like to Seek to a timestamp in the past to replay previously-acknowledged messages.

message_retention_duration()

How long to retain unacknowledged messages in the subscription’s backlog, from the moment a message is published. If retain_acked_messages is true, then this also configures the retention of acknowledged messages, and thus configures how far back in time a Seek can be done. Defaults to 7 days. Cannot be more than 7 days or less than 10 minutes.

labels()

See a href=”[https://cloud.google.com/pubsub/docs/labels](https://cloud.google.com/pubsub/docs/labels)” Creating and managing labels.

  • Type

    Sequence[google.pubsub_v1.types.Subscription.LabelsEntry]

enable_message_ordering()

If true, messages published with the same ordering_key in PubsubMessage will be delivered to the subscribers in the order in which they are received by the Pub/Sub system. Otherwise, they may be delivered in any order.

expiration_policy()

A policy that specifies the conditions for this subscription’s expiration. A subscription is considered active as long as any connected subscriber is successfully consuming messages from the subscription or is issuing operations on the subscription. If expiration_policy is not set, a default policy with ttl of 31 days will be used. The minimum allowed value for expiration_policy.ttl is 1 day.

  • Type

    google.pubsub_v1.types.ExpirationPolicy

filter()

An expression written in the Pub/Sub filter language. If non-empty, then only PubsubMessages whose attributes field matches the filter are delivered on this subscription. If empty, then no messages are filtered out.

dead_letter_policy()

A policy that specifies the conditions for dead lettering messages in this subscription. If dead_letter_policy is not set, dead lettering is disabled.

The Cloud Pub/Sub service account associated with this subscriptions’s parent project (i.e., service-{project_number}@gcp-sa-pubsub.iam.gserviceaccount.com) must have permission to Acknowledge() messages on this subscription.

  • Type

    google.pubsub_v1.types.DeadLetterPolicy

retry_policy()

A policy that specifies how Pub/Sub retries message delivery for this subscription.

If not set, the default retry policy is applied. This generally implies that messages will be retried as soon as possible for healthy subscribers. RetryPolicy will be triggered on NACKs or acknowledgement deadline exceeded events for a given message.

  • Type

    google.pubsub_v1.types.RetryPolicy

detached()

Indicates whether the subscription is detached from its topic. Detached subscriptions don’t receive messages from their topic and don’t retain any backlog. Pull and StreamingPull requests will return FAILED_PRECONDITION. If the subscription is a push subscription, pushes to the endpoint will not be made.

enable_exactly_once_delivery()

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.

Note that subscribers may still receive multiple copies of a message when enable_exactly_once_delivery is true if the message was published multiple times by a publisher client. These copies are considered distinct by Pub/Sub and have distinct message_id values.

topic_message_retention_duration()

Output only. Indicates the minimum duration for which a message is retained after it is published to the subscription’s topic. If this field is set, messages published to the subscription’s topic in the last topic_message_retention_duration are always available to subscribers. See the message_retention_duration field in Topic. This field is set only in responses from the server; it is ignored if it is set in any requests.

class LabelsEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)

class google.cloud.pubsub_v1.types.TestIamPermissionsRequest()

class google.cloud.pubsub_v1.types.TestIamPermissionsResponse()

class google.cloud.pubsub_v1.types.Timestamp()

class google.cloud.pubsub_v1.types.Topic(mapping=None, *, ignore_unknown_fields=False, **kwargs)

A topic resource.

name()

Required. The name of the topic. It must have the format "projects/{project}/topics/{topic}". {topic} must start with a letter, and contain only letters ([A-Za-z]), numbers ([0-9]), dashes (-), underscores (_), periods (.), tildes (~), plus (+) or percent signs (%). It must be between 3 and 255 characters in length, and it must not start with "goog".

labels()

See Creating and managing labels.

  • Type

    Sequence[google.pubsub_v1.types.Topic.LabelsEntry]

message_storage_policy()

Policy constraining the set of Google Cloud Platform regions where messages published to the topic may be stored. If not present, then no constraints are in effect.

  • Type

    google.pubsub_v1.types.MessageStoragePolicy

kms_key_name()

The resource name of the Cloud KMS CryptoKey to be used to protect access to messages published on this topic.

The expected format is projects/\*/locations/\*/keyRings/\*/cryptoKeys/\*.

schema_settings()

Settings for validating messages published against a schema.

  • Type

    google.pubsub_v1.types.SchemaSettings

satisfies_pzs()

Reserved for future use. This field is set only in responses from the server; it is ignored if it is set in any requests.

message_retention_duration()

Indicates the minimum duration to retain a message after it is published to the topic. If this field is set, messages published to the topic in the last message_retention_duration are always available to subscribers. For instance, it allows any attached subscription to seek to a timestamp that is up to message_retention_duration in the past. If this field is not set, message retention is controlled by settings on individual subscriptions. Cannot be more than 7 days or less than 10 minutes.

class LabelsEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)

class google.cloud.pubsub_v1.types.UninterpretedOption()

class NamePart()

DESCRIPTOR( = <google._upb._message.Descriptor object )

class google.cloud.pubsub_v1.types.UpdateSnapshotRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the UpdateSnapshot method.

snapshot()

Required. The updated snapshot object.

  • Type

    google.pubsub_v1.types.Snapshot

update_mask()

Required. Indicates which fields in the provided snapshot to update. Must be specified and non-empty.

class google.cloud.pubsub_v1.types.UpdateSubscriptionRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the UpdateSubscription method.

subscription()

Required. The updated subscription object.

  • Type

    google.pubsub_v1.types.Subscription

update_mask()

Required. Indicates which fields in the provided subscription to update. Must be specified and non-empty.

class google.cloud.pubsub_v1.types.UpdateTopicRequest(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Request for the UpdateTopic method.

topic()

Required. The updated topic object.

  • Type

    google.pubsub_v1.types.Topic

update_mask()

Required. Indicates which fields in the provided topic to update. Must be specified and non-empty. Note that if update_mask contains “message_storage_policy” but the message_storage_policy is not set in the topic provided above, then the updated value is determined by the policy configured at the project or organization level.