Class: Google::Apis::ContainerV1beta1::Location
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1beta1::Location
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/container_v1beta1/classes.rb,
generated/google/apis/container_v1beta1/representations.rb,
generated/google/apis/container_v1beta1/representations.rb
Overview
Location returns the location name, and if the location is recommended for GKE cluster scheduling.
Instance Attribute Summary collapse
-
#name ⇒ String
Contains the name of the resource requested.
-
#recommended ⇒ Boolean
(also: #recommended?)
Whether the location is recomended for GKE cluster scheduling.
-
#type ⇒ String
Contains the type of location this Location is for.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Location
constructor
A new instance of Location.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Location
Returns a new instance of Location.
2249 2250 2251 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 2249 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Contains the name of the resource requested. Specified in the format projects/
*/locations/*
.
Corresponds to the JSON property name
2236 2237 2238 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 2236 def name @name end |
#recommended ⇒ Boolean Also known as: recommended?
Whether the location is recomended for GKE cluster scheduling.
Corresponds to the JSON property recommended
2241 2242 2243 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 2241 def recommended @recommended end |
#type ⇒ String
Contains the type of location this Location is for. Regional or Zonal.
Corresponds to the JSON property type
2247 2248 2249 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 2247 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2254 2255 2256 2257 2258 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 2254 def update!(**args) @name = args[:name] if args.key?(:name) @recommended = args[:recommended] if args.key?(:recommended) @type = args[:type] if args.key?(:type) end |