Class: Azure::Compute::Mgmt::V2020_12_01::Models::AutomaticRepairsPolicy
- Inherits:
-
Object
- Object
- Azure::Compute::Mgmt::V2020_12_01::Models::AutomaticRepairsPolicy
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-12-01/generated/azure_mgmt_compute/models/automatic_repairs_policy.rb
Overview
Specifies the configuration parameters for automatic repairs on the virtual machine scale set.
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
on the virtual machine scale set.
-
#grace_period ⇒ String
suspended due to a state change on VM.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AutomaticRepairsPolicy class as Ruby Hash.
Instance Attribute Details
#enabled ⇒ Boolean
on the virtual machine scale set. The default value is false.
18 19 20 |
# File 'lib/2020-12-01/generated/azure_mgmt_compute/models/automatic_repairs_policy.rb', line 18 def enabled @enabled end |
#grace_period ⇒ String
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).
26 27 28 |
# File 'lib/2020-12-01/generated/azure_mgmt_compute/models/automatic_repairs_policy.rb', line 26 def grace_period @grace_period end |
Class Method Details
.mapper ⇒ Object
Mapper for AutomaticRepairsPolicy class as Ruby Hash. This will be used for serialization/deserialization.
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# 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 |