Class: Google::Apis::GenomicsV1alpha2::ListPipelinesResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::GenomicsV1alpha2::ListPipelinesResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/genomics_v1alpha2/classes.rb,
 generated/google/apis/genomics_v1alpha2/representations.rb,
 generated/google/apis/genomics_v1alpha2/representations.rb
Overview
The response of ListPipelines. Contains at most pageSize
pipelines. If it contains pageSize pipelines, and more pipelines
exist, then nextPageToken will be populated and should be
used as the pageToken argument to a subsequent ListPipelines
request.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The token to use to get the next page of results. 
- 
  
    
      #pipelines  ⇒ Array<Google::Apis::GenomicsV1alpha2::Pipeline> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The matched pipelines. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListPipelinesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListPipelinesResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListPipelinesResponse
Returns a new instance of ListPipelinesResponse
| 507 508 509 | # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 507 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#next_page_token ⇒ String
The token to use to get the next page of results.
Corresponds to the JSON property nextPageToken
| 500 501 502 | # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 500 def next_page_token @next_page_token end | 
#pipelines ⇒ Array<Google::Apis::GenomicsV1alpha2::Pipeline>
The matched pipelines.
Corresponds to the JSON property pipelines
| 505 506 507 | # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 505 def pipelines @pipelines end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 512 513 514 515 | # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 512 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @pipelines = args[:pipelines] if args.key?(:pipelines) end |