Class: Google::Apis::PubsubV1::SeekRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/pubsub_v1/classes.rb,
generated/google/apis/pubsub_v1/representations.rb,
generated/google/apis/pubsub_v1/representations.rb

Overview

Request for the Seek method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SeekRequest

Returns a new instance of SeekRequest.



939
940
941
# File 'generated/google/apis/pubsub_v1/classes.rb', line 939

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#snapshotString

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`. Corresponds to the JSON propertysnapshot`

Returns:

  • (String)


922
923
924
# File 'generated/google/apis/pubsub_v1/classes.rb', line 922

def snapshot
  @snapshot
end

#timeString

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. Corresponds to the JSON property time

Returns:

  • (String)


937
938
939
# File 'generated/google/apis/pubsub_v1/classes.rb', line 937

def time
  @time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



944
945
946
947
# File 'generated/google/apis/pubsub_v1/classes.rb', line 944

def update!(**args)
  @snapshot = args[:snapshot] if args.key?(:snapshot)
  @time = args[:time] if args.key?(:time)
end