class Google::Apis::PubsubV1::ListTopicSnapshotsResponse
Response for the `ListTopicSnapshots` method.
Attributes
next_page_token[RW]
If not empty, indicates that there may be more snapshots that match the request; this value should be passed in a new `ListTopicSnapshotsRequest` to get more snapshots. Corresponds to the JSON property `nextPageToken` @return [String]
snapshots[RW]
The names of the snapshots that match the request. Corresponds to the JSON property `snapshots` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/pubsub_v1/classes.rb, line 452 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/pubsub_v1/classes.rb, line 457 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @snapshots = args[:snapshots] if args.key?(:snapshots) end