Class: Azure::Compute::Mgmt::V2016_03_30::Models::VirtualMachineScaleSetExtension
- Inherits:
-
SubResource
- Object
- SubResource
- Azure::Compute::Mgmt::V2016_03_30::Models::VirtualMachineScaleSetExtension
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-03-30/generated/azure_mgmt_compute/models/virtual_machine_scale_set_extension.rb
Overview
Describes a Virtual Machine Scale Set Extension.
Instance Attribute Summary collapse
-
#auto_upgrade_minor_version ⇒ Boolean
upgraded across minor versions.
-
#name ⇒ String
The name of the extension.
-
#protected_settings ⇒ Object
Json formatted protected settings for the extension.
-
#provisioning_state ⇒ String
response.
-
#publisher ⇒ String
The name of the extension handler publisher.
-
#settings ⇒ Object
Json formatted public settings for the extension.
-
#type ⇒ String
The type of the extension handler.
-
#type_handler_version ⇒ String
The type version of the extension handler.
Attributes inherited from SubResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for VirtualMachineScaleSetExtension class as Ruby Hash.
Instance Attribute Details
#auto_upgrade_minor_version ⇒ Boolean
upgraded across minor versions.
29 30 31 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/virtual_machine_scale_set_extension.rb', line 29 def auto_upgrade_minor_version @auto_upgrade_minor_version end |
#name ⇒ String
Returns The name of the extension.
16 17 18 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/virtual_machine_scale_set_extension.rb', line 16 def name @name end |
#protected_settings ⇒ Object
Returns Json formatted protected settings for the extension.
35 36 37 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/virtual_machine_scale_set_extension.rb', line 35 def protected_settings @protected_settings end |
#provisioning_state ⇒ String
response.
39 40 41 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/virtual_machine_scale_set_extension.rb', line 39 def provisioning_state @provisioning_state end |
#publisher ⇒ String
Returns The name of the extension handler publisher.
19 20 21 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/virtual_machine_scale_set_extension.rb', line 19 def publisher @publisher end |
#settings ⇒ Object
Returns Json formatted public settings for the extension.
32 33 34 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/virtual_machine_scale_set_extension.rb', line 32 def settings @settings end |
#type ⇒ String
Returns The type of the extension handler.
22 23 24 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/virtual_machine_scale_set_extension.rb', line 22 def type @type end |
#type_handler_version ⇒ String
Returns The type version of the extension handler.
25 26 27 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/virtual_machine_scale_set_extension.rb', line 25 def type_handler_version @type_handler_version end |
Class Method Details
.mapper ⇒ Object
Mapper for VirtualMachineScaleSetExtension class as Ruby Hash. This will be used for serialization/deserialization.
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/virtual_machine_scale_set_extension.rb', line 46 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'VirtualMachineScaleSetExtension', type: { name: 'Composite', class_name: 'VirtualMachineScaleSetExtension', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, publisher: { client_side_validation: true, required: false, serialized_name: 'properties.publisher', type: { name: 'String' } }, type: { client_side_validation: true, required: false, serialized_name: 'properties.type', type: { name: 'String' } }, type_handler_version: { client_side_validation: true, required: false, serialized_name: 'properties.typeHandlerVersion', type: { name: 'String' } }, auto_upgrade_minor_version: { client_side_validation: true, required: false, serialized_name: 'properties.autoUpgradeMinorVersion', type: { name: 'Boolean' } }, settings: { client_side_validation: true, required: false, serialized_name: 'properties.settings', type: { name: 'Object' } }, protected_settings: { client_side_validation: true, required: false, serialized_name: 'properties.protectedSettings', type: { name: 'Object' } }, provisioning_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.provisioningState', type: { name: 'String' } } } } } end |