Class: Google::Apis::PubsubV1::ListTopicsResponse
- Inherits:
-
Object
- Object
- Google::Apis::PubsubV1::ListTopicsResponse
- 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 ListTopics method.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
If not empty, indicates that there may be more topics that match the request; this value should be passed in a new
ListTopicsRequest. -
#topics ⇒ Array<Google::Apis::PubsubV1::Topic>
The resulting topics.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListTopicsResponse
constructor
A new instance of ListTopicsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListTopicsResponse
Returns a new instance of ListTopicsResponse.
505 506 507 |
# File 'lib/google/apis/pubsub_v1/classes.rb', line 505 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
498 499 500 |
# File 'lib/google/apis/pubsub_v1/classes.rb', line 498 def next_page_token @next_page_token end |
#topics ⇒ Array<Google::Apis::PubsubV1::Topic>
The resulting topics.
Corresponds to the JSON property topics
503 504 505 |
# File 'lib/google/apis/pubsub_v1/classes.rb', line 503 def topics @topics end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
510 511 512 513 |
# File 'lib/google/apis/pubsub_v1/classes.rb', line 510 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @topics = args[:topics] if args.key?(:topics) end |