Class: Google::Apis::PubsubV1::ListTopicsResponse

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 ListTopics method.

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) ⇒ ListTopicsResponse

Returns a new instance of ListTopicsResponse.



434
435
436
# File 'generated/google/apis/pubsub_v1/classes.rb', line 434

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)


427
428
429
# File 'generated/google/apis/pubsub_v1/classes.rb', line 427

def next_page_token
  @next_page_token
end

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

The resulting topics. Corresponds to the JSON property topics

Returns:



432
433
434
# File 'generated/google/apis/pubsub_v1/classes.rb', line 432

def topics
  @topics
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



439
440
441
442
# File 'generated/google/apis/pubsub_v1/classes.rb', line 439

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