Class: Google::Apis::MlV1::GoogleCloudMlV1ListModelsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::MlV1::GoogleCloudMlV1ListModelsResponse
 
- 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 ListModels method.
Instance Attribute Summary collapse
- 
  
    
      #models  ⇒ Array<Google::Apis::MlV1::GoogleCloudMlV1Model> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of models. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudMlV1ListModelsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudMlV1ListModelsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudMlV1ListModelsResponse
Returns a new instance of GoogleCloudMlV1ListModelsResponse
| 509 510 511 | # File 'generated/google/apis/ml_v1/classes.rb', line 509 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#models ⇒ Array<Google::Apis::MlV1::GoogleCloudMlV1Model>
The list of models.
Corresponds to the JSON property models
| 501 502 503 | # File 'generated/google/apis/ml_v1/classes.rb', line 501 def models @models 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
| 507 508 509 | # File 'generated/google/apis/ml_v1/classes.rb', line 507 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 514 515 516 517 | # File 'generated/google/apis/ml_v1/classes.rb', line 514 def update!(**args) @models = args[:models] if args.key?(:models) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |