Class: Azure::Compute::Mgmt::V2018_04_01::Models::VirtualMachineScaleSetUpdateVMProfile
- Inherits:
-
Object
- Object
- Azure::Compute::Mgmt::V2018_04_01::Models::VirtualMachineScaleSetUpdateVMProfile
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_update_vmprofile.rb
Overview
Describes a virtual machine scale set virtual machine profile.
Instance Attribute Summary collapse
-
#diagnostics_profile ⇒ DiagnosticsProfile
profile.
-
#extension_profile ⇒ VirtualMachineScaleSetExtensionProfile
scale set extension profile.
-
#license_type ⇒ String
scenario.
-
#network_profile ⇒ VirtualMachineScaleSetUpdateNetworkProfile
machine scale set network profile.
-
#os_profile ⇒ VirtualMachineScaleSetUpdateOSProfile
scale set OS profile.
-
#storage_profile ⇒ VirtualMachineScaleSetUpdateStorageProfile
machine scale set storage profile.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for VirtualMachineScaleSetUpdateVMProfile class as Ruby Hash.
Instance Attribute Details
#diagnostics_profile ⇒ DiagnosticsProfile
profile.
29 30 31 |
# File 'lib/2018-04-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_update_vmprofile.rb', line 29 def diagnostics_profile @diagnostics_profile end |
#extension_profile ⇒ VirtualMachineScaleSetExtensionProfile
scale set extension profile.
33 34 35 |
# File 'lib/2018-04-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_update_vmprofile.rb', line 33 def extension_profile @extension_profile end |
#license_type ⇒ String
scenario.
37 38 39 |
# File 'lib/2018-04-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_update_vmprofile.rb', line 37 def license_type @license_type end |
#network_profile ⇒ VirtualMachineScaleSetUpdateNetworkProfile
machine scale set network profile.
25 26 27 |
# File 'lib/2018-04-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_update_vmprofile.rb', line 25 def network_profile @network_profile end |
#os_profile ⇒ VirtualMachineScaleSetUpdateOSProfile
scale set OS profile.
17 18 19 |
# File 'lib/2018-04-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_update_vmprofile.rb', line 17 def os_profile @os_profile end |
#storage_profile ⇒ VirtualMachineScaleSetUpdateStorageProfile
machine scale set storage profile.
21 22 23 |
# File 'lib/2018-04-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_update_vmprofile.rb', line 21 def storage_profile @storage_profile end |
Class Method Details
.mapper ⇒ Object
Mapper for VirtualMachineScaleSetUpdateVMProfile class as Ruby Hash. This will be used for serialization/deserialization.
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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
# File 'lib/2018-04-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_update_vmprofile.rb', line 44 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'VirtualMachineScaleSetUpdateVMProfile', type: { name: 'Composite', class_name: 'VirtualMachineScaleSetUpdateVMProfile', model_properties: { os_profile: { client_side_validation: true, required: false, serialized_name: 'osProfile', type: { name: 'Composite', class_name: 'VirtualMachineScaleSetUpdateOSProfile' } }, storage_profile: { client_side_validation: true, required: false, serialized_name: 'storageProfile', type: { name: 'Composite', class_name: 'VirtualMachineScaleSetUpdateStorageProfile' } }, network_profile: { client_side_validation: true, required: false, serialized_name: 'networkProfile', type: { name: 'Composite', class_name: 'VirtualMachineScaleSetUpdateNetworkProfile' } }, diagnostics_profile: { client_side_validation: true, required: false, serialized_name: 'diagnosticsProfile', type: { name: 'Composite', class_name: 'DiagnosticsProfile' } }, extension_profile: { client_side_validation: true, required: false, serialized_name: 'extensionProfile', type: { name: 'Composite', class_name: 'VirtualMachineScaleSetExtensionProfile' } }, license_type: { client_side_validation: true, required: false, serialized_name: 'licenseType', type: { name: 'String' } } } } } end |