Struct google_pubsub1::Snapshot[][src]

pub struct Snapshot {
    pub expire_time: Option<String>,
    pub topic: Option<String>,
    pub labels: Option<HashMap<String, String>>,
    pub name: Option<String>,
}

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.

BETA: This feature is part of a beta release. This API might be changed in backward-incompatible ways and is not recommended for production use. It is not subject to any SLA or deprecation policy.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

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.

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

The name of the snapshot.

Trait Implementations

impl Default for Snapshot
[src]

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

impl Clone for Snapshot
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Snapshot
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for Snapshot
[src]

Auto Trait Implementations

impl Send for Snapshot

impl Sync for Snapshot