Class: Google::Apis::PubsubV1beta2::ListTopicsResponse

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

Overview

Response for the ListTopics method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListTopicsResponse

Returns a new instance of ListTopicsResponse.



256
257
258
# File 'generated/google/apis/pubsub_v1beta2/classes.rb', line 256

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

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


249
250
251
# File 'generated/google/apis/pubsub_v1beta2/classes.rb', line 249

def next_page_token
  @next_page_token
end

#topicsArray<Google::Apis::PubsubV1beta2::Topic>

The resulting topics. Corresponds to the JSON property topics



254
255
256
# File 'generated/google/apis/pubsub_v1beta2/classes.rb', line 254

def topics
  @topics
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



261
262
263
264
# File 'generated/google/apis/pubsub_v1beta2/classes.rb', line 261

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