Class: Google::Apis::PubsubV1::ListTopicSnapshotsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::PubsubV1::ListTopicSnapshotsResponse
 
- 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.
[ALPHA] This method is a part of a closed Alpha API.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    If not empty, indicates that there may be more snapshots that match the request; this value should be passed in a new ListTopicSnapshotsRequestto get more snapshots.
- 
  
    
      #snapshots  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The names of the snapshots that match the request. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListTopicSnapshotsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListTopicSnapshotsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListTopicSnapshotsResponse
Returns a new instance of ListTopicSnapshotsResponse
| 201 202 203 | # File 'generated/google/apis/pubsub_v1/classes.rb', line 201 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#next_page_token ⇒ String
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
| 194 195 196 | # File 'generated/google/apis/pubsub_v1/classes.rb', line 194 def next_page_token @next_page_token end | 
#snapshots ⇒ Array<String>
The names of the snapshots that match the request.
Corresponds to the JSON property snapshots
| 199 200 201 | # File 'generated/google/apis/pubsub_v1/classes.rb', line 199 def snapshots @snapshots end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 206 207 208 209 | # File 'generated/google/apis/pubsub_v1/classes.rb', line 206 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @snapshots = args[:snapshots] if args.key?(:snapshots) end |