class Azure::Compute::Mgmt::V2020_12_01::Models::AutomaticRepairsPolicy
Specifies the configuration parameters for automatic repairs on the virtual machine scale set.
Attributes
@return [Boolean] Specifies whether automatic repairs should be enabled on the virtual machine scale set. The default value is false.
@return [String] The amount of time for which automatic repairs are suspended due to a state change on VM. The grace time starts after the state change has completed. This helps avoid premature or accidental repairs. The time duration should be specified in ISO 8601 format. The minimum allowed grace period is 30 minutes (PT30M), which is also the default value. The maximum allowed grace period is 90 minutes (PT90M).
Private Class Methods
Mapper for AutomaticRepairsPolicy
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-12-01/generated/azure_mgmt_compute/models/automatic_repairs_policy.rb, line 33 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AutomaticRepairsPolicy', type: { name: 'Composite', class_name: 'AutomaticRepairsPolicy', model_properties: { enabled: { client_side_validation: true, required: false, serialized_name: 'enabled', type: { name: 'Boolean' } }, grace_period: { client_side_validation: true, required: false, serialized_name: 'gracePeriod', type: { name: 'String' } } } } } end