[][src]Struct google_storagetransfer1::NotificationConfig

pub struct NotificationConfig {
    pub event_types: Option<Vec<String>>,
    pub payload_format: Option<String>,
    pub pubsub_topic: Option<String>,
}

Specification to configure notifications published to Cloud Pub/Sub. Notifications will be published to the customer-provided topic using the following PubsubMessage.attributes:

  • "eventType": one of the EventType values
  • "payloadFormat": one of the PayloadFormat values
  • "projectId": the project_id of the TransferOperation
  • "transferJobName": the transfer_job_name of the TransferOperation
  • "transferOperationName": the name of the TransferOperation

The PubsubMessage.data will contain a TransferOperation resource formatted according to the specified PayloadFormat.

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

Fields

event_types: Option<Vec<String>>

Event types for which a notification is desired. If empty, send notifications for all event types.

payload_format: Option<String>

Required. The desired format of the notification message payloads.

pubsub_topic: Option<String>

Required. The Topic.name of the Cloud Pub/Sub topic to which to publish notifications. Must be of the format: projects/{project}/topics/{topic}. Not matching this format will result in an INVALID_ARGUMENT error.

Trait Implementations

impl Clone for NotificationConfig[src]

impl Debug for NotificationConfig[src]

impl Default for NotificationConfig[src]

impl<'de> Deserialize<'de> for NotificationConfig[src]

impl Part for NotificationConfig[src]

impl Serialize for NotificationConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any