Class: Google::Apis::PubsubV1::ListSnapshotsResponse
- Inherits:
-
Object
- Object
- Google::Apis::PubsubV1::ListSnapshotsResponse
- 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
-
#next_page_token ⇒ String
Optional.
-
#snapshots ⇒ Array<Google::Apis::PubsubV1::Snapshot>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListSnapshotsResponse
constructor
A new instance of ListSnapshotsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListSnapshotsResponse
Returns a new instance of ListSnapshotsResponse.
812 813 814 |
# File 'lib/google/apis/pubsub_v1/classes.rb', line 812 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
805 806 807 |
# File 'lib/google/apis/pubsub_v1/classes.rb', line 805 def next_page_token @next_page_token end |
#snapshots ⇒ Array<Google::Apis::PubsubV1::Snapshot>
Optional. The resulting snapshots.
Corresponds to the JSON property snapshots
810 811 812 |
# File 'lib/google/apis/pubsub_v1/classes.rb', line 810 def snapshots @snapshots end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
817 818 819 820 |
# File 'lib/google/apis/pubsub_v1/classes.rb', line 817 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @snapshots = args[:snapshots] if args.key?(:snapshots) end |