Class: Google::Apis::AppengineV1alpha::Location
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AppengineV1alpha::Location
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/appengine_v1alpha/classes.rb,
 generated/google/apis/appengine_v1alpha/representations.rb,
 generated/google/apis/appengine_v1alpha/representations.rb
Overview
A resource that represents Google Cloud Platform location.
Instance Attribute Summary collapse
- 
  
    
      #display_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The friendly name for this location, typically a nearby city name. 
- 
  
    
      #labels  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Cross-service attributes for the location. 
- 
  
    
      #location_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The canonical id for this location. 
- 
  
    
      #metadata  ⇒ Hash<String,Object> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Service-specific metadata. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Resource name for the location, which may vary between implementations. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Location 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Location. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Location
Returns a new instance of Location
| 448 449 450 | # File 'generated/google/apis/appengine_v1alpha/classes.rb', line 448 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#display_name ⇒ String
The friendly name for this location, typically a nearby city name. For example,
"Tokyo".
Corresponds to the JSON property displayName
| 423 424 425 | # File 'generated/google/apis/appengine_v1alpha/classes.rb', line 423 def display_name @display_name end | 
#labels ⇒ Hash<String,String>
Cross-service attributes for the location. For example
"cloud.googleapis.com/region": "us-east1"
Corresponds to the JSON property labels
| 429 430 431 | # File 'generated/google/apis/appengine_v1alpha/classes.rb', line 429 def labels @labels end | 
#location_id ⇒ String
The canonical id for this location. For example: "us-east1".
Corresponds to the JSON property locationId
| 434 435 436 | # File 'generated/google/apis/appengine_v1alpha/classes.rb', line 434 def location_id @location_id end | 
#metadata ⇒ Hash<String,Object>
Service-specific metadata. For example the available capacity at the given
location.
Corresponds to the JSON property metadata
| 440 441 442 | # File 'generated/google/apis/appengine_v1alpha/classes.rb', line 440 def @metadata end | 
#name ⇒ String
Resource name for the location, which may vary between implementations. For
example: "projects/example-project/locations/us-east1"
Corresponds to the JSON property name
| 446 447 448 | # File 'generated/google/apis/appengine_v1alpha/classes.rb', line 446 def name @name end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 453 454 455 456 457 458 459 | # File 'generated/google/apis/appengine_v1alpha/classes.rb', line 453 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @labels = args[:labels] if args.key?(:labels) @location_id = args[:location_id] if args.key?(:location_id) @metadata = args[:metadata] if args.key?(:metadata) @name = args[:name] if args.key?(:name) end |