Class: Google::Apis::ComputeAlpha::RolloutPlanWaveSelectorResourceHierarchySelector
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::RolloutPlanWaveSelectorResourceHierarchySelector
- 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
Roll out to resources by Cloud Resource Manager resource hierarchy nodes such as projects, folders, orgs.
Instance Attribute Summary collapse
-
#included_folders ⇒ Array<String>
Optional.
-
#included_organizations ⇒ Array<String>
Optional.
-
#included_projects ⇒ Array<String>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RolloutPlanWaveSelectorResourceHierarchySelector
constructor
A new instance of RolloutPlanWaveSelectorResourceHierarchySelector.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RolloutPlanWaveSelectorResourceHierarchySelector
Returns a new instance of RolloutPlanWaveSelectorResourceHierarchySelector.
60887 60888 60889 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 60887 def initialize(**args) update!(**args) end |
Instance Attribute Details
#included_folders ⇒ Array<String>
Optional. Format: "folders/folder_id"
Corresponds to the JSON property includedFolders
60875 60876 60877 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 60875 def included_folders @included_folders end |
#included_organizations ⇒ Array<String>
Optional. Format: "organizations/organization_id"
Corresponds to the JSON property includedOrganizations
60880 60881 60882 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 60880 def included_organizations @included_organizations end |
#included_projects ⇒ Array<String>
Optional. Format: "projects/project_id"
Corresponds to the JSON property includedProjects
60885 60886 60887 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 60885 def included_projects @included_projects end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
60892 60893 60894 60895 60896 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 60892 def update!(**args) @included_folders = args[:included_folders] if args.key?(:included_folders) @included_organizations = args[:included_organizations] if args.key?(:included_organizations) @included_projects = args[:included_projects] if args.key?(:included_projects) end |