Class: Google::Apis::PubsubV1::ListTopicSnapshotsResponse

Inherits:
Object
  • Object
show all
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 ListTopicSnapshots 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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListTopicSnapshotsResponse

Returns a new instance of ListTopicSnapshotsResponse



297
298
299
# File 'generated/google/apis/pubsub_v1/classes.rb', line 297

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

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


290
291
292
# File 'generated/google/apis/pubsub_v1/classes.rb', line 290

def next_page_token
  @next_page_token
end

#snapshotsArray<String>

The names of the snapshots that match the request. Corresponds to the JSON property snapshots

Returns:

  • (Array<String>)


295
296
297
# File 'generated/google/apis/pubsub_v1/classes.rb', line 295

def snapshots
  @snapshots
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



302
303
304
305
# File 'generated/google/apis/pubsub_v1/classes.rb', line 302

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