Class: Google::Apis::PubsubV1::ListSnapshotsResponse
- Inherits:
-
Object
- Object
- Google::Apis::PubsubV1::ListSnapshotsResponse
- 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
Response for the ListSnapshots
method.
BETA: This feature is part of a beta release. This API might be
changed in backward-incompatible ways and is not recommended for production
use. It is not subject to any SLA or deprecation policy.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
If not empty, indicates that there may be more snapshot that match the request; this value should be passed in a new
ListSnapshotsRequest
. -
#snapshots ⇒ Array<Google::Apis::PubsubV1::Snapshot>
The resulting snapshots.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListSnapshotsResponse
constructor
A new instance of ListSnapshotsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListSnapshotsResponse
Returns a new instance of ListSnapshotsResponse
240 241 242 |
# File 'generated/google/apis/pubsub_v1/classes.rb', line 240 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
233 234 235 |
# File 'generated/google/apis/pubsub_v1/classes.rb', line 233 def next_page_token @next_page_token end |
#snapshots ⇒ Array<Google::Apis::PubsubV1::Snapshot>
The resulting snapshots.
Corresponds to the JSON property snapshots
238 239 240 |
# File 'generated/google/apis/pubsub_v1/classes.rb', line 238 def snapshots @snapshots end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
245 246 247 248 |
# File 'generated/google/apis/pubsub_v1/classes.rb', line 245 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @snapshots = args[:snapshots] if args.key?(:snapshots) end |