Class: Azure::Compute::Mgmt::V2020_06_01::Models::AutomaticRepairsPolicy

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-06-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

Class Method Summary collapse

Instance Attribute Details

#enabledBoolean

on the virtual machine scale set. The default value is false.

Returns:

  • (Boolean)

    Specifies whether automatic repairs should be enabled



18
19
20
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/automatic_repairs_policy.rb', line 18

def enabled
  @enabled
end

#grace_periodString

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).

Returns:

  • (String)

    The amount of time for which automatic repairs are



26
27
28
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/automatic_repairs_policy.rb', line 26

def grace_period
  @grace_period
end

Class Method Details

.mapperObject

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-06-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