Struct google_pubsub1::PushConfig[][src]

pub struct PushConfig {
    pub attributes: Option<HashMap<String, String>>,
    pub push_endpoint: Option<String>,
}

Configuration for a push delivery endpoint.

This type is not used in any activity, and only used as part of another schema.

Fields

Endpoint configuration attributes.

Every endpoint has a set of API supported attributes that can be used to control different aspects of the message delivery.

The 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). The endpoint version is based on the version of the Pub/Sub API.

If not present during the CreateSubscription call, it will default to the version of the API used to make such call. If not present during 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 possible values for this 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.

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

Trait Implementations

impl Default for PushConfig
[src]

Returns the "default value" for a type. Read more

impl Clone for PushConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PushConfig
[src]

Formats the value using the given formatter. Read more

impl Part for PushConfig
[src]

Auto Trait Implementations

impl Send for PushConfig

impl Sync for PushConfig