Class: Azure::Compute::Mgmt::V2019_03_01::Models::VirtualMachineScaleSetUpdateVMProfile
- Inherits:
-
Object
- Object
- Azure::Compute::Mgmt::V2019_03_01::Models::VirtualMachineScaleSetUpdateVMProfile
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-03-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
-
#billing_profile ⇒ BillingProfile
priority VMSS.
-
#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.
-
#scheduled_events_profile ⇒ ScheduledEventsProfile
configurations.
-
#storage_profile ⇒ VirtualMachineScaleSetUpdateStorageProfile
machine scale set storage profile.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for VirtualMachineScaleSetUpdateVMProfile class as Ruby Hash.
Instance Attribute Details
#billing_profile ⇒ BillingProfile
priority VMSS.
Minimum api-version: 2019-03-01.
41 42 43 |
# File 'lib/2019-03-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_update_vmprofile.rb', line 41 def billing_profile @billing_profile end |
#diagnostics_profile ⇒ DiagnosticsProfile
profile.
29 30 31 |
# File 'lib/2019-03-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/2019-03-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/2019-03-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/2019-03-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/2019-03-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_update_vmprofile.rb', line 17 def os_profile @os_profile end |
#scheduled_events_profile ⇒ ScheduledEventsProfile
configurations.
45 46 47 |
# File 'lib/2019-03-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_update_vmprofile.rb', line 45 def scheduled_events_profile @scheduled_events_profile end |
#storage_profile ⇒ VirtualMachineScaleSetUpdateStorageProfile
machine scale set storage profile.
21 22 23 |
# File 'lib/2019-03-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.
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 132 133 134 135 |
# File 'lib/2019-03-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_update_vmprofile.rb', line 52 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' } }, billing_profile: { client_side_validation: true, required: false, serialized_name: 'billingProfile', type: { name: 'Composite', class_name: 'BillingProfile' } }, scheduled_events_profile: { client_side_validation: true, required: false, serialized_name: 'scheduledEventsProfile', type: { name: 'Composite', class_name: 'ScheduledEventsProfile' } } } } } end |