API documentation for pubsub_v1.publisher.client
module.
Classes
Client
Client
(
batch_settings
=
(),
**
kwargs
)
A publisher client for Google Cloud Pub/Sub.
This creates an object that is capable of publishing messages. Generally, you can instantiate this client with no arguments, and you get sensible defaults.
kwargs
dict Example: .. code-block:: python from google.cloud import pubsub_v1 publisher_client = pubsub_v1.PublisherClient( # Optional batch_settings = pubsub_v1.types.BatchSettings( max_bytes=1024, # One kilobyte max_latency=1, # One second ), # Optional client_config = { "interfaces": { "google.pubsub.v1.Publisher": { "retry_params": { "messaging": { 'total_timeout_millis': 650000, # default: 600000 } } } } }, # Optional client_options = { "api_endpoint": REGIONAL_ENDPOINT } )
Any additional arguments provided are sent as keyword arguments to the underlying PublisherClient
. Generally you should not need to set additional keyword arguments. Optionally, publish retry settings can be set via client_config
where user-provided retry configurations are applied to default retry settings. And regional endpoints can be set via client_options
that takes a single key-value pair that defines the endpoint.
batch_settings