#[non_exhaustive]pub struct RepairRolloutRule {
pub id: String,
pub phases: Vec<String>,
pub jobs: Vec<String>,
pub condition: Option<AutomationRuleCondition>,
pub repair_phases: Vec<RepairPhaseConfig>,
/* private fields */
}
Expand description
The RepairRolloutRule
automation rule will automatically repair a failed
Rollout
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: String
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])?
.
phases: Vec<String>
Optional. Phases within which jobs are subject to automatic repair actions
on failure. Proceeds only after phase name matched any one in the list, or
for all phases if unspecified. 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])?$
.
jobs: Vec<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])?$
.
condition: Option<AutomationRuleCondition>
Output only. Information around the state of the ‘Automation’ rule.
repair_phases: Vec<RepairPhaseConfig>
Required. Defines the types of automatic repair phases for failed jobs.
Implementations§
Source§impl RepairRolloutRule
impl RepairRolloutRule
pub fn new() -> Self
Sourcepub fn set_phases<T, V>(self, v: T) -> Self
pub fn set_phases<T, V>(self, v: T) -> Self
Sets the value of phases.
Sourcepub fn set_condition<T>(self, v: T) -> Selfwhere
T: Into<AutomationRuleCondition>,
pub fn set_condition<T>(self, v: T) -> Selfwhere
T: Into<AutomationRuleCondition>,
Sets the value of condition.
Sourcepub fn set_or_clear_condition<T>(self, v: Option<T>) -> Selfwhere
T: Into<AutomationRuleCondition>,
pub fn set_or_clear_condition<T>(self, v: Option<T>) -> Selfwhere
T: Into<AutomationRuleCondition>,
Sets or clears the value of condition.
Sourcepub fn set_repair_phases<T, V>(self, v: T) -> Self
pub fn set_repair_phases<T, V>(self, v: T) -> Self
Sets the value of repair_phases.
Trait Implementations§
Source§impl Clone for RepairRolloutRule
impl Clone for RepairRolloutRule
Source§fn clone(&self) -> RepairRolloutRule
fn clone(&self) -> RepairRolloutRule
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more