Class: Azure::Compute::Mgmt::V2019_03_01::Models::VirtualMachineScaleSetUpdateOSProfile
- Inherits:
-
Object
- Object
- Azure::Compute::Mgmt::V2019_03_01::Models::VirtualMachineScaleSetUpdateOSProfile
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-03-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_update_osprofile.rb
Overview
Describes a virtual machine scale set OS profile.
Instance Attribute Summary collapse
-
#custom_data ⇒ String
A base-64 encoded string of custom data.
-
#linux_configuration ⇒ LinuxConfiguration
The Linux Configuration of the OS profile.
-
#secrets ⇒ Array<VaultSecretGroup>
to the VM.
-
#windows_configuration ⇒ WindowsConfiguration
profile.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for VirtualMachineScaleSetUpdateOSProfile class as Ruby Hash.
Instance Attribute Details
#custom_data ⇒ String
Returns A base-64 encoded string of custom data.
16 17 18 |
# File 'lib/2019-03-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_update_osprofile.rb', line 16 def custom_data @custom_data end |
#linux_configuration ⇒ LinuxConfiguration
Returns The Linux Configuration of the OS profile.
23 24 25 |
# File 'lib/2019-03-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_update_osprofile.rb', line 23 def linux_configuration @linux_configuration end |
#secrets ⇒ Array<VaultSecretGroup>
to the VM.
27 28 29 |
# File 'lib/2019-03-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_update_osprofile.rb', line 27 def secrets @secrets end |
#windows_configuration ⇒ WindowsConfiguration
profile.
20 21 22 |
# File 'lib/2019-03-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_update_osprofile.rb', line 20 def windows_configuration @windows_configuration end |
Class Method Details
.mapper ⇒ Object
Mapper for VirtualMachineScaleSetUpdateOSProfile class as Ruby Hash. This will be used for serialization/deserialization.
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 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 |
# File 'lib/2019-03-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_update_osprofile.rb', line 34 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'VirtualMachineScaleSetUpdateOSProfile', type: { name: 'Composite', class_name: 'VirtualMachineScaleSetUpdateOSProfile', model_properties: { custom_data: { client_side_validation: true, required: false, serialized_name: 'customData', type: { name: 'String' } }, windows_configuration: { client_side_validation: true, required: false, serialized_name: 'windowsConfiguration', type: { name: 'Composite', class_name: 'WindowsConfiguration' } }, linux_configuration: { client_side_validation: true, required: false, serialized_name: 'linuxConfiguration', type: { name: 'Composite', class_name: 'LinuxConfiguration' } }, secrets: { client_side_validation: true, required: false, serialized_name: 'secrets', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'VaultSecretGroupElementType', type: { name: 'Composite', class_name: 'VaultSecretGroup' } } } } } } } end |