Class: Azure::Compute::Mgmt::V2020_06_01::Models::VirtualMachineScaleSetNetworkConfiguration
- Inherits:
-
SubResource
- Object
- SubResource
- Azure::Compute::Mgmt::V2020_06_01::Models::VirtualMachineScaleSetNetworkConfiguration
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-06-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_network_configuration.rb
Overview
Describes a virtual machine scale set network profile's network configurations.
Instance Attribute Summary collapse
-
#dns_settings ⇒ VirtualMachineScaleSetNetworkConfigurationDnsSettings
settings to be applied on the network interfaces.
-
#enable_accelerated_networking ⇒ Boolean
accelerated networking-enabled.
-
#enable_fpga ⇒ Boolean
networking-enabled.
-
#enable_ipforwarding ⇒ Boolean
Whether IP forwarding enabled on this NIC.
-
#ip_configurations ⇒ Array<VirtualMachineScaleSetIPConfiguration>
configurations of the network interface.
-
#name ⇒ String
The network configuration name.
-
#network_security_group ⇒ SubResource
The network security group.
-
#primary ⇒ Boolean
virtual machine has more than 1 network interface.
Attributes inherited from SubResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for VirtualMachineScaleSetNetworkConfiguration class as Ruby Hash.
Instance Attribute Details
#dns_settings ⇒ VirtualMachineScaleSetNetworkConfigurationDnsSettings
settings to be applied on the network interfaces.
36 37 38 |
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_network_configuration.rb', line 36 def dns_settings @dns_settings end |
#enable_accelerated_networking ⇒ Boolean
accelerated networking-enabled.
25 26 27 |
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_network_configuration.rb', line 25 def enable_accelerated_networking @enable_accelerated_networking end |
#enable_fpga ⇒ Boolean
networking-enabled.
29 30 31 |
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_network_configuration.rb', line 29 def enable_fpga @enable_fpga end |
#enable_ipforwarding ⇒ Boolean
Returns Whether IP forwarding enabled on this NIC.
43 44 45 |
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_network_configuration.rb', line 43 def enable_ipforwarding @enable_ipforwarding end |
#ip_configurations ⇒ Array<VirtualMachineScaleSetIPConfiguration>
configurations of the network interface.
40 41 42 |
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_network_configuration.rb', line 40 def ip_configurations @ip_configurations end |
#name ⇒ String
Returns The network configuration name.
17 18 19 |
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_network_configuration.rb', line 17 def name @name end |
#network_security_group ⇒ SubResource
Returns The network security group.
32 33 34 |
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_network_configuration.rb', line 32 def network_security_group @network_security_group end |
#primary ⇒ Boolean
virtual machine has more than 1 network interface.
21 22 23 |
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_network_configuration.rb', line 21 def primary @primary end |
Class Method Details
.mapper ⇒ Object
Mapper for VirtualMachineScaleSetNetworkConfiguration class as Ruby Hash. This will be used for serialization/deserialization.
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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_network_configuration.rb', line 51 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'VirtualMachineScaleSetNetworkConfiguration', type: { name: 'Composite', class_name: 'VirtualMachineScaleSetNetworkConfiguration', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: true, serialized_name: 'name', type: { name: 'String' } }, primary: { client_side_validation: true, required: false, serialized_name: 'properties.primary', type: { name: 'Boolean' } }, enable_accelerated_networking: { client_side_validation: true, required: false, serialized_name: 'properties.enableAcceleratedNetworking', type: { name: 'Boolean' } }, enable_fpga: { client_side_validation: true, required: false, serialized_name: 'properties.enableFpga', type: { name: 'Boolean' } }, network_security_group: { client_side_validation: true, required: false, serialized_name: 'properties.networkSecurityGroup', type: { name: 'Composite', class_name: 'SubResource' } }, dns_settings: { client_side_validation: true, required: false, serialized_name: 'properties.dnsSettings', type: { name: 'Composite', class_name: 'VirtualMachineScaleSetNetworkConfigurationDnsSettings' } }, ip_configurations: { client_side_validation: true, required: true, serialized_name: 'properties.ipConfigurations', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'VirtualMachineScaleSetIPConfigurationElementType', type: { name: 'Composite', class_name: 'VirtualMachineScaleSetIPConfiguration' } } } }, enable_ipforwarding: { client_side_validation: true, required: false, serialized_name: 'properties.enableIPForwarding', type: { name: 'Boolean' } } } } } end |