Class: Google::Apis::PubsubV1::ListSnapshotsResponse

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

Overview

Response for the ListSnapshots method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListSnapshotsResponse

Returns a new instance of ListSnapshotsResponse.



718
719
720
# File 'lib/google/apis/pubsub_v1/classes.rb', line 718

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

Instance Attribute Details

#next_page_tokenString

Optional. If not empty, indicates that there may be more snapshot that match the request; this value should be passed in a new ListSnapshotsRequest. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


711
712
713
# File 'lib/google/apis/pubsub_v1/classes.rb', line 711

def next_page_token
  @next_page_token
end

#snapshotsArray<Google::Apis::PubsubV1::Snapshot>

Optional. The resulting snapshots. Corresponds to the JSON property snapshots



716
717
718
# File 'lib/google/apis/pubsub_v1/classes.rb', line 716

def snapshots
  @snapshots
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



723
724
725
726
# File 'lib/google/apis/pubsub_v1/classes.rb', line 723

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