com.azure.resourcemanager.compute.models.VirtualMachineScaleSetNetworkConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-compute Show documentation
Show all versions of azure-resourcemanager-compute Show documentation
This package contains Microsoft Azure Compute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.compute.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.management.SubResource;
import com.azure.core.util.logging.ClientLogger;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.compute.fluent.models.VirtualMachineScaleSetNetworkConfigurationProperties;
import java.io.IOException;
import java.util.List;
/**
* Describes a virtual machine scale set network profile's network configurations.
*/
@Fluent
public final class VirtualMachineScaleSetNetworkConfiguration
implements JsonSerializable {
/*
* The network configuration name.
*/
private String name;
/*
* Describes a virtual machine scale set network profile's IP configuration.
*/
private VirtualMachineScaleSetNetworkConfigurationProperties innerProperties;
/**
* Creates an instance of VirtualMachineScaleSetNetworkConfiguration class.
*/
public VirtualMachineScaleSetNetworkConfiguration() {
}
/**
* Get the name property: The network configuration name.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: The network configuration name.
*
* @param name the name value to set.
* @return the VirtualMachineScaleSetNetworkConfiguration object itself.
*/
public VirtualMachineScaleSetNetworkConfiguration withName(String name) {
this.name = name;
return this;
}
/**
* Get the innerProperties property: Describes a virtual machine scale set network profile's IP configuration.
*
* @return the innerProperties value.
*/
private VirtualMachineScaleSetNetworkConfigurationProperties innerProperties() {
return this.innerProperties;
}
/**
* Get the primary property: Specifies the primary network interface in case the virtual machine has more than 1
* network interface.
*
* @return the primary value.
*/
public Boolean primary() {
return this.innerProperties() == null ? null : this.innerProperties().primary();
}
/**
* Set the primary property: Specifies the primary network interface in case the virtual machine has more than 1
* network interface.
*
* @param primary the primary value to set.
* @return the VirtualMachineScaleSetNetworkConfiguration object itself.
*/
public VirtualMachineScaleSetNetworkConfiguration withPrimary(Boolean primary) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineScaleSetNetworkConfigurationProperties();
}
this.innerProperties().withPrimary(primary);
return this;
}
/**
* Get the enableAcceleratedNetworking property: Specifies whether the network interface is accelerated
* networking-enabled.
*
* @return the enableAcceleratedNetworking value.
*/
public Boolean enableAcceleratedNetworking() {
return this.innerProperties() == null ? null : this.innerProperties().enableAcceleratedNetworking();
}
/**
* Set the enableAcceleratedNetworking property: Specifies whether the network interface is accelerated
* networking-enabled.
*
* @param enableAcceleratedNetworking the enableAcceleratedNetworking value to set.
* @return the VirtualMachineScaleSetNetworkConfiguration object itself.
*/
public VirtualMachineScaleSetNetworkConfiguration
withEnableAcceleratedNetworking(Boolean enableAcceleratedNetworking) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineScaleSetNetworkConfigurationProperties();
}
this.innerProperties().withEnableAcceleratedNetworking(enableAcceleratedNetworking);
return this;
}
/**
* Get the disableTcpStateTracking property: Specifies whether the network interface is disabled for tcp state
* tracking.
*
* @return the disableTcpStateTracking value.
*/
public Boolean disableTcpStateTracking() {
return this.innerProperties() == null ? null : this.innerProperties().disableTcpStateTracking();
}
/**
* Set the disableTcpStateTracking property: Specifies whether the network interface is disabled for tcp state
* tracking.
*
* @param disableTcpStateTracking the disableTcpStateTracking value to set.
* @return the VirtualMachineScaleSetNetworkConfiguration object itself.
*/
public VirtualMachineScaleSetNetworkConfiguration withDisableTcpStateTracking(Boolean disableTcpStateTracking) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineScaleSetNetworkConfigurationProperties();
}
this.innerProperties().withDisableTcpStateTracking(disableTcpStateTracking);
return this;
}
/**
* Get the enableFpga property: Specifies whether the network interface is FPGA networking-enabled.
*
* @return the enableFpga value.
*/
public Boolean enableFpga() {
return this.innerProperties() == null ? null : this.innerProperties().enableFpga();
}
/**
* Set the enableFpga property: Specifies whether the network interface is FPGA networking-enabled.
*
* @param enableFpga the enableFpga value to set.
* @return the VirtualMachineScaleSetNetworkConfiguration object itself.
*/
public VirtualMachineScaleSetNetworkConfiguration withEnableFpga(Boolean enableFpga) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineScaleSetNetworkConfigurationProperties();
}
this.innerProperties().withEnableFpga(enableFpga);
return this;
}
/**
* Get the networkSecurityGroup property: The network security group.
*
* @return the networkSecurityGroup value.
*/
public SubResource networkSecurityGroup() {
return this.innerProperties() == null ? null : this.innerProperties().networkSecurityGroup();
}
/**
* Set the networkSecurityGroup property: The network security group.
*
* @param networkSecurityGroup the networkSecurityGroup value to set.
* @return the VirtualMachineScaleSetNetworkConfiguration object itself.
*/
public VirtualMachineScaleSetNetworkConfiguration withNetworkSecurityGroup(SubResource networkSecurityGroup) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineScaleSetNetworkConfigurationProperties();
}
this.innerProperties().withNetworkSecurityGroup(networkSecurityGroup);
return this;
}
/**
* Get the dnsSettings property: The dns settings to be applied on the network interfaces.
*
* @return the dnsSettings value.
*/
public VirtualMachineScaleSetNetworkConfigurationDnsSettings dnsSettings() {
return this.innerProperties() == null ? null : this.innerProperties().dnsSettings();
}
/**
* Set the dnsSettings property: The dns settings to be applied on the network interfaces.
*
* @param dnsSettings the dnsSettings value to set.
* @return the VirtualMachineScaleSetNetworkConfiguration object itself.
*/
public VirtualMachineScaleSetNetworkConfiguration
withDnsSettings(VirtualMachineScaleSetNetworkConfigurationDnsSettings dnsSettings) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineScaleSetNetworkConfigurationProperties();
}
this.innerProperties().withDnsSettings(dnsSettings);
return this;
}
/**
* Get the ipConfigurations property: Specifies the IP configurations of the network interface.
*
* @return the ipConfigurations value.
*/
public List ipConfigurations() {
return this.innerProperties() == null ? null : this.innerProperties().ipConfigurations();
}
/**
* Set the ipConfigurations property: Specifies the IP configurations of the network interface.
*
* @param ipConfigurations the ipConfigurations value to set.
* @return the VirtualMachineScaleSetNetworkConfiguration object itself.
*/
public VirtualMachineScaleSetNetworkConfiguration
withIpConfigurations(List ipConfigurations) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineScaleSetNetworkConfigurationProperties();
}
this.innerProperties().withIpConfigurations(ipConfigurations);
return this;
}
/**
* Get the enableIpForwarding property: Whether IP forwarding enabled on this NIC.
*
* @return the enableIpForwarding value.
*/
public Boolean enableIpForwarding() {
return this.innerProperties() == null ? null : this.innerProperties().enableIpForwarding();
}
/**
* Set the enableIpForwarding property: Whether IP forwarding enabled on this NIC.
*
* @param enableIpForwarding the enableIpForwarding value to set.
* @return the VirtualMachineScaleSetNetworkConfiguration object itself.
*/
public VirtualMachineScaleSetNetworkConfiguration withEnableIpForwarding(Boolean enableIpForwarding) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineScaleSetNetworkConfigurationProperties();
}
this.innerProperties().withEnableIpForwarding(enableIpForwarding);
return this;
}
/**
* Get the deleteOption property: Specify what happens to the network interface when the VM is deleted.
*
* @return the deleteOption value.
*/
public DeleteOptions deleteOption() {
return this.innerProperties() == null ? null : this.innerProperties().deleteOption();
}
/**
* Set the deleteOption property: Specify what happens to the network interface when the VM is deleted.
*
* @param deleteOption the deleteOption value to set.
* @return the VirtualMachineScaleSetNetworkConfiguration object itself.
*/
public VirtualMachineScaleSetNetworkConfiguration withDeleteOption(DeleteOptions deleteOption) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineScaleSetNetworkConfigurationProperties();
}
this.innerProperties().withDeleteOption(deleteOption);
return this;
}
/**
* Get the auxiliaryMode property: Specifies whether the Auxiliary mode is enabled for the Network Interface
* resource.
*
* @return the auxiliaryMode value.
*/
public NetworkInterfaceAuxiliaryMode auxiliaryMode() {
return this.innerProperties() == null ? null : this.innerProperties().auxiliaryMode();
}
/**
* Set the auxiliaryMode property: Specifies whether the Auxiliary mode is enabled for the Network Interface
* resource.
*
* @param auxiliaryMode the auxiliaryMode value to set.
* @return the VirtualMachineScaleSetNetworkConfiguration object itself.
*/
public VirtualMachineScaleSetNetworkConfiguration withAuxiliaryMode(NetworkInterfaceAuxiliaryMode auxiliaryMode) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineScaleSetNetworkConfigurationProperties();
}
this.innerProperties().withAuxiliaryMode(auxiliaryMode);
return this;
}
/**
* Get the auxiliarySku property: Specifies whether the Auxiliary sku is enabled for the Network Interface resource.
*
* @return the auxiliarySku value.
*/
public NetworkInterfaceAuxiliarySku auxiliarySku() {
return this.innerProperties() == null ? null : this.innerProperties().auxiliarySku();
}
/**
* Set the auxiliarySku property: Specifies whether the Auxiliary sku is enabled for the Network Interface resource.
*
* @param auxiliarySku the auxiliarySku value to set.
* @return the VirtualMachineScaleSetNetworkConfiguration object itself.
*/
public VirtualMachineScaleSetNetworkConfiguration withAuxiliarySku(NetworkInterfaceAuxiliarySku auxiliarySku) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineScaleSetNetworkConfigurationProperties();
}
this.innerProperties().withAuxiliarySku(auxiliarySku);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (name() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException(
"Missing required property name in model VirtualMachineScaleSetNetworkConfiguration"));
}
if (innerProperties() != null) {
innerProperties().validate();
}
}
private static final ClientLogger LOGGER = new ClientLogger(VirtualMachineScaleSetNetworkConfiguration.class);
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("name", this.name);
jsonWriter.writeJsonField("properties", this.innerProperties);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of VirtualMachineScaleSetNetworkConfiguration from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of VirtualMachineScaleSetNetworkConfiguration if the JsonReader was pointing to an instance
* of it, or null if it was pointing to JSON null.
* @throws IllegalStateException If the deserialized JSON object was missing any required properties.
* @throws IOException If an error occurs while reading the VirtualMachineScaleSetNetworkConfiguration.
*/
public static VirtualMachineScaleSetNetworkConfiguration fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
VirtualMachineScaleSetNetworkConfiguration deserializedVirtualMachineScaleSetNetworkConfiguration
= new VirtualMachineScaleSetNetworkConfiguration();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("name".equals(fieldName)) {
deserializedVirtualMachineScaleSetNetworkConfiguration.name = reader.getString();
} else if ("properties".equals(fieldName)) {
deserializedVirtualMachineScaleSetNetworkConfiguration.innerProperties
= VirtualMachineScaleSetNetworkConfigurationProperties.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedVirtualMachineScaleSetNetworkConfiguration;
});
}
}