Class: Google::Apis::ComputeBeta::PreviewFeatureRolloutOperationRolloutInput
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::PreviewFeatureRolloutOperationRolloutInput
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Overview
Represents the input for the rollout operation.
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the rollout plan Ex.
-
#predefined_rollout_plan ⇒ String
Predefined rollout plan.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PreviewFeatureRolloutOperationRolloutInput
constructor
A new instance of PreviewFeatureRolloutOperationRolloutInput.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PreviewFeatureRolloutOperationRolloutInput
Returns a new instance of PreviewFeatureRolloutOperationRolloutInput.
47938 47939 47940 |
# File 'lib/google/apis/compute_beta/classes.rb', line 47938 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
The name of the rollout plan
Ex.
organizations//locations/global/rolloutPlans/
Ex.
folders//locations/global/rolloutPlans/
Ex.
projects//locations/global/rolloutPlans/.
Corresponds to the JSON property name
47931 47932 47933 |
# File 'lib/google/apis/compute_beta/classes.rb', line 47931 def name @name end |
#predefined_rollout_plan ⇒ String
Predefined rollout plan.
Corresponds to the JSON property predefinedRolloutPlan
47936 47937 47938 |
# File 'lib/google/apis/compute_beta/classes.rb', line 47936 def predefined_rollout_plan @predefined_rollout_plan end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
47943 47944 47945 47946 |
# File 'lib/google/apis/compute_beta/classes.rb', line 47943 def update!(**args) @name = args[:name] if args.key?(:name) @predefined_rollout_plan = args[:predefined_rollout_plan] if args.key?(:predefined_rollout_plan) end |