Class: Google::Apis::ComputeAlpha::ResourcePolicyGroupPlacementPolicy
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::ResourcePolicyGroupPlacementPolicy
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Overview
A GroupPlacementPolicy specifies resource placement configuration. It specifies the failure bucket separation as well as network locality
Instance Attribute Summary collapse
-
#availability_domain_count ⇒ Fixnum
The number of availability domains to spread instances across.
-
#collocation ⇒ String
Specifies network collocation Corresponds to the JSON property
collocation. -
#locality ⇒ String
Specifies network locality Corresponds to the JSON property
locality. -
#scope ⇒ String
Scope specifies the availability domain to which the VMs should be spread.
-
#style ⇒ String
Specifies instances to hosts placement relationship Corresponds to the JSON property
style. -
#vm_count ⇒ Fixnum
Number of VMs in this placement group.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ResourcePolicyGroupPlacementPolicy
constructor
A new instance of ResourcePolicyGroupPlacementPolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ResourcePolicyGroupPlacementPolicy
Returns a new instance of ResourcePolicyGroupPlacementPolicy.
33743 33744 33745 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33743 def initialize(**args) update!(**args) end |
Instance Attribute Details
#availability_domain_count ⇒ Fixnum
The number of availability domains to spread instances across. If two
instances are in different availability domain, they are not in the same low
latency network.
Corresponds to the JSON property availabilityDomainCount
33714 33715 33716 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33714 def availability_domain_count @availability_domain_count end |
#collocation ⇒ String
Specifies network collocation
Corresponds to the JSON property collocation
33719 33720 33721 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33719 def collocation @collocation end |
#locality ⇒ String
Specifies network locality
Corresponds to the JSON property locality
33724 33725 33726 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33724 def locality @locality end |
#scope ⇒ String
Scope specifies the availability domain to which the VMs should be spread.
Corresponds to the JSON property scope
33729 33730 33731 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33729 def scope @scope end |
#style ⇒ String
Specifies instances to hosts placement relationship
Corresponds to the JSON property style
33734 33735 33736 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33734 def style @style end |
#vm_count ⇒ Fixnum
Number of VMs in this placement group. Google does not recommend that you use
this field unless you use a compact policy and you want your policy to work
only if it contains this exact number of VMs.
Corresponds to the JSON property vmCount
33741 33742 33743 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33741 def vm_count @vm_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
33748 33749 33750 33751 33752 33753 33754 33755 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33748 def update!(**args) @availability_domain_count = args[:availability_domain_count] if args.key?(:availability_domain_count) @collocation = args[:collocation] if args.key?(:collocation) @locality = args[:locality] if args.key?(:locality) @scope = args[:scope] if args.key?(:scope) @style = args[:style] if args.key?(:style) @vm_count = args[:vm_count] if args.key?(:vm_count) end |