Class NetworkInterfaceConfigurationProperties
- java.lang.Object
-
- org.jclouds.azurecompute.arm.domain.NetworkInterfaceConfigurationProperties
-
public abstract class NetworkInterfaceConfigurationProperties extends Object
-
-
Constructor Summary
Constructors Constructor Description NetworkInterfaceConfigurationProperties()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static NetworkInterfaceConfigurationProperties
create(Boolean primary, Boolean enableAcceleratedNetworking, VirtualMachineScaleSetNetworkSecurityGroup networkSecurityGroup, VirtualMachineScaleSetDNSSettings dnsSettings, List<VirtualMachineScaleSetIpConfiguration> ipConfigurations)
abstract VirtualMachineScaleSetDNSSettings
dnsSettings()
The dnsSettings of the NetworkInterfaceConfigurationPropertiesabstract Boolean
enableAcceleratedNetworking()
The enableAcceleratedNetworking of the NetworkInterfaceConfigurationPropertiesabstract List<VirtualMachineScaleSetIpConfiguration>
ipConfigurations()
The ipConfigurations of the NetworkInterfaceConfigurationPropertiesabstract VirtualMachineScaleSetNetworkSecurityGroup
networkSecurityGroup()
The networkSecurityGroup of the NetworkInterfaceConfigurationPropertiesabstract Boolean
primary()
The primary of the NetworkInterfaceConfigurationProperties
-
-
-
Method Detail
-
primary
@Nullable public abstract Boolean primary()
The primary of the NetworkInterfaceConfigurationProperties
-
enableAcceleratedNetworking
@Nullable public abstract Boolean enableAcceleratedNetworking()
The enableAcceleratedNetworking of the NetworkInterfaceConfigurationProperties
-
networkSecurityGroup
@Nullable public abstract VirtualMachineScaleSetNetworkSecurityGroup networkSecurityGroup()
The networkSecurityGroup of the NetworkInterfaceConfigurationProperties
-
dnsSettings
@Nullable public abstract VirtualMachineScaleSetDNSSettings dnsSettings()
The dnsSettings of the NetworkInterfaceConfigurationProperties
-
ipConfigurations
public abstract List<VirtualMachineScaleSetIpConfiguration> ipConfigurations()
The ipConfigurations of the NetworkInterfaceConfigurationProperties
-
create
public static NetworkInterfaceConfigurationProperties create(Boolean primary, Boolean enableAcceleratedNetworking, VirtualMachineScaleSetNetworkSecurityGroup networkSecurityGroup, VirtualMachineScaleSetDNSSettings dnsSettings, List<VirtualMachineScaleSetIpConfiguration> ipConfigurations)
-
-