Class: Google::Apis::PubsubV1beta2::ListTopicsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::PubsubV1beta2::ListTopicsResponse
 
- 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
- 
  
    
      #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::PubsubV1beta2::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. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListTopicsResponse
Returns a new instance of ListTopicsResponse
| 173 174 175 | # File 'generated/google/apis/pubsub_v1beta2/classes.rb', line 173 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
| 166 167 168 | # File 'generated/google/apis/pubsub_v1beta2/classes.rb', line 166 def next_page_token @next_page_token end | 
#topics ⇒ Array<Google::Apis::PubsubV1beta2::Topic>
The resulting topics.
Corresponds to the JSON property topics
| 171 172 173 | # File 'generated/google/apis/pubsub_v1beta2/classes.rb', line 171 def topics @topics end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 178 179 180 181 | # File 'generated/google/apis/pubsub_v1beta2/classes.rb', line 178 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @topics = args[:topics] if args.key?(:topics) end |