Class: Google::Apis::MlV1::GoogleCloudMlV1ListJobsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::MlV1::GoogleCloudMlV1ListJobsResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/ml_v1/classes.rb,
 generated/google/apis/ml_v1/representations.rb,
 generated/google/apis/ml_v1/representations.rb
Overview
Response message for the ListJobs method.
Instance Attribute Summary collapse
- 
  
    
      #jobs  ⇒ Array<Google::Apis::MlV1::GoogleCloudMlV1Job> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of jobs. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudMlV1ListJobsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudMlV1ListJobsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudMlV1ListJobsResponse
Returns a new instance of GoogleCloudMlV1ListJobsResponse
| 457 458 459 | # File 'generated/google/apis/ml_v1/classes.rb', line 457 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#jobs ⇒ Array<Google::Apis::MlV1::GoogleCloudMlV1Job>
The list of jobs.
Corresponds to the JSON property jobs
| 449 450 451 | # File 'generated/google/apis/ml_v1/classes.rb', line 449 def jobs @jobs end | 
#next_page_token ⇒ String
Optional. Pass this token as the page_token field of the request for a
subsequent call.
Corresponds to the JSON property nextPageToken
| 455 456 457 | # File 'generated/google/apis/ml_v1/classes.rb', line 455 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 462 463 464 465 | # File 'generated/google/apis/ml_v1/classes.rb', line 462 def update!(**args) @jobs = args[:jobs] if args.key?(:jobs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |