Class: Google::Apis::ClouddeployV1::RepairRolloutRule

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/clouddeploy_v1/classes.rb,
lib/google/apis/clouddeploy_v1/representations.rb,
lib/google/apis/clouddeploy_v1/representations.rb

Overview

The RepairRolloutRule automation rule will automatically repair a failed Rollout.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RepairRolloutRule

Returns a new instance of RepairRolloutRule.



3989
3990
3991
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 3989

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

Instance Attribute Details

#conditionGoogle::Apis::ClouddeployV1::AutomationRuleCondition

AutomationRuleCondition contains conditions relevant to an Automation rule. Corresponds to the JSON property condition



3971
3972
3973
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 3971

def condition
  @condition
end

#idString

Required. ID of the rule. This id must be unique in the Automation resource to which this rule belongs. The format is [a-z]([a-z0-9-]0,61[a-z0-9])?. Corresponds to the JSON property id

Returns:

  • (String)


3977
3978
3979
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 3977

def id
  @id
end

#jobsArray<String>

Optional. Jobs to repair. Proceeds only after job name matched any one in the list, or for all jobs if unspecified or empty. The phase that includes the job must match the phase ID specified in source_phase. This value must consist of lower-case letters, numbers, and hyphens, start with a letter and end with a letter or a number, and have a max length of 63 characters. In other words, it must match the following regex: ^[a-z]([a-z0-9-]0,61[a-z0-9])?$. Corresponds to the JSON property jobs

Returns:

  • (Array<String>)


3987
3988
3989
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 3987

def jobs
  @jobs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3994
3995
3996
3997
3998
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 3994

def update!(**args)
  @condition = args[:condition] if args.key?(:condition)
  @id = args[:id] if args.key?(:id)
  @jobs = args[:jobs] if args.key?(:jobs)
end