Class: Google::Apis::MlV1::GoogleCloudMlV1ListLocationsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::MlV1::GoogleCloudMlV1ListLocationsResponse
 
- 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
Instance Attribute Summary collapse
- 
  
    
      #locations  ⇒ Array<Google::Apis::MlV1::GoogleCloudMlV1Location> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Locations where at least one type of CMLE capability is available. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudMlV1ListLocationsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudMlV1ListLocationsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudMlV1ListLocationsResponse
Returns a new instance of GoogleCloudMlV1ListLocationsResponse
| 483 484 485 | # File 'generated/google/apis/ml_v1/classes.rb', line 483 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#locations ⇒ Array<Google::Apis::MlV1::GoogleCloudMlV1Location>
Locations where at least one type of CMLE capability is available.
Corresponds to the JSON property locations
| 475 476 477 | # File 'generated/google/apis/ml_v1/classes.rb', line 475 def locations @locations 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
| 481 482 483 | # File 'generated/google/apis/ml_v1/classes.rb', line 481 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 488 489 490 491 | # File 'generated/google/apis/ml_v1/classes.rb', line 488 def update!(**args) @locations = args[:locations] if args.key?(:locations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |