Class: Google::Apis::ComputeAlpha::RolloutPlanWaveSelector

Inherits:
Object
  • Object
show all
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 selector which specifies what resource(s) are included in a given wave.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RolloutPlanWaveSelector

Returns a new instance of RolloutPlanWaveSelector.



64445
64446
64447
# File 'lib/google/apis/compute_alpha/classes.rb', line 64445

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#location_selectorGoogle::Apis::ComputeAlpha::RolloutPlanWaveSelectorLocationSelector

Roll out to resources by location. Corresponds to the JSON property locationSelector



64437
64438
64439
# File 'lib/google/apis/compute_alpha/classes.rb', line 64437

def location_selector
  @location_selector
end

#resource_hierarchy_selectorGoogle::Apis::ComputeAlpha::RolloutPlanWaveSelectorResourceHierarchySelector

Roll out to resources by Cloud Resource Manager resource hierarchy nodes such as projects, folders, orgs. Corresponds to the JSON property resourceHierarchySelector



64443
64444
64445
# File 'lib/google/apis/compute_alpha/classes.rb', line 64443

def resource_hierarchy_selector
  @resource_hierarchy_selector
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



64450
64451
64452
64453
# File 'lib/google/apis/compute_alpha/classes.rb', line 64450

def update!(**args)
  @location_selector = args[:location_selector] if args.key?(:location_selector)
  @resource_hierarchy_selector = args[:resource_hierarchy_selector] if args.key?(:resource_hierarchy_selector)
end