Class: Google::Apis::PubsubV1::ListTopicSnapshotsResponse
- Inherits:
-
Object
- Object
- Google::Apis::PubsubV1::ListTopicSnapshotsResponse
- 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 ListTopicSnapshots
method.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Optional.
-
#snapshots ⇒ Array<String>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListTopicSnapshotsResponse
constructor
A new instance of ListTopicSnapshotsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListTopicSnapshotsResponse
Returns a new instance of ListTopicSnapshotsResponse.
866 867 868 |
# File 'lib/google/apis/pubsub_v1/classes.rb', line 866 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Optional. 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
859 860 861 |
# File 'lib/google/apis/pubsub_v1/classes.rb', line 859 def next_page_token @next_page_token end |
#snapshots ⇒ Array<String>
Optional. The names of the snapshots that match the request.
Corresponds to the JSON property snapshots
864 865 866 |
# File 'lib/google/apis/pubsub_v1/classes.rb', line 864 def snapshots @snapshots end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
871 872 873 874 |
# File 'lib/google/apis/pubsub_v1/classes.rb', line 871 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @snapshots = args[:snapshots] if args.key?(:snapshots) end |