![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.compute.models.VirtualMachineScaleSetIpConfiguration 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.VirtualMachineScaleSetIpConfigurationProperties;
import java.io.IOException;
import java.util.List;
/**
* Describes a virtual machine scale set network profile's IP configuration.
*/
@Fluent
public final class VirtualMachineScaleSetIpConfiguration
implements JsonSerializable {
/*
* The IP configuration name.
*/
private String name;
/*
* Describes a virtual machine scale set network profile's IP configuration properties.
*/
private VirtualMachineScaleSetIpConfigurationProperties innerProperties;
/**
* Creates an instance of VirtualMachineScaleSetIpConfiguration class.
*/
public VirtualMachineScaleSetIpConfiguration() {
}
/**
* Get the name property: The IP configuration name.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: The IP configuration name.
*
* @param name the name value to set.
* @return the VirtualMachineScaleSetIpConfiguration object itself.
*/
public VirtualMachineScaleSetIpConfiguration withName(String name) {
this.name = name;
return this;
}
/**
* Get the innerProperties property: Describes a virtual machine scale set network profile's IP configuration
* properties.
*
* @return the innerProperties value.
*/
private VirtualMachineScaleSetIpConfigurationProperties innerProperties() {
return this.innerProperties;
}
/**
* Get the subnet property: Specifies the identifier of the subnet.
*
* @return the subnet value.
*/
public ApiEntityReference subnet() {
return this.innerProperties() == null ? null : this.innerProperties().subnet();
}
/**
* Set the subnet property: Specifies the identifier of the subnet.
*
* @param subnet the subnet value to set.
* @return the VirtualMachineScaleSetIpConfiguration object itself.
*/
public VirtualMachineScaleSetIpConfiguration withSubnet(ApiEntityReference subnet) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineScaleSetIpConfigurationProperties();
}
this.innerProperties().withSubnet(subnet);
return this;
}
/**
* 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 VirtualMachineScaleSetIpConfiguration object itself.
*/
public VirtualMachineScaleSetIpConfiguration withPrimary(Boolean primary) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineScaleSetIpConfigurationProperties();
}
this.innerProperties().withPrimary(primary);
return this;
}
/**
* Get the publicIpAddressConfiguration property: The publicIPAddressConfiguration.
*
* @return the publicIpAddressConfiguration value.
*/
public VirtualMachineScaleSetPublicIpAddressConfiguration publicIpAddressConfiguration() {
return this.innerProperties() == null ? null : this.innerProperties().publicIpAddressConfiguration();
}
/**
* Set the publicIpAddressConfiguration property: The publicIPAddressConfiguration.
*
* @param publicIpAddressConfiguration the publicIpAddressConfiguration value to set.
* @return the VirtualMachineScaleSetIpConfiguration object itself.
*/
public VirtualMachineScaleSetIpConfiguration withPublicIpAddressConfiguration(
VirtualMachineScaleSetPublicIpAddressConfiguration publicIpAddressConfiguration) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineScaleSetIpConfigurationProperties();
}
this.innerProperties().withPublicIpAddressConfiguration(publicIpAddressConfiguration);
return this;
}
/**
* Get the privateIpAddressVersion property: Available from Api-Version 2017-03-30 onwards, it represents whether
* the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
*
* @return the privateIpAddressVersion value.
*/
public IpVersion privateIpAddressVersion() {
return this.innerProperties() == null ? null : this.innerProperties().privateIpAddressVersion();
}
/**
* Set the privateIpAddressVersion property: Available from Api-Version 2017-03-30 onwards, it represents whether
* the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
*
* @param privateIpAddressVersion the privateIpAddressVersion value to set.
* @return the VirtualMachineScaleSetIpConfiguration object itself.
*/
public VirtualMachineScaleSetIpConfiguration withPrivateIpAddressVersion(IpVersion privateIpAddressVersion) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineScaleSetIpConfigurationProperties();
}
this.innerProperties().withPrivateIpAddressVersion(privateIpAddressVersion);
return this;
}
/**
* Get the applicationGatewayBackendAddressPools property: Specifies an array of references to backend address pools
* of application gateways. A scale set can reference backend address pools of multiple application gateways.
* Multiple scale sets cannot use the same application gateway.
*
* @return the applicationGatewayBackendAddressPools value.
*/
public List applicationGatewayBackendAddressPools() {
return this.innerProperties() == null ? null : this.innerProperties().applicationGatewayBackendAddressPools();
}
/**
* Set the applicationGatewayBackendAddressPools property: Specifies an array of references to backend address pools
* of application gateways. A scale set can reference backend address pools of multiple application gateways.
* Multiple scale sets cannot use the same application gateway.
*
* @param applicationGatewayBackendAddressPools the applicationGatewayBackendAddressPools value to set.
* @return the VirtualMachineScaleSetIpConfiguration object itself.
*/
public VirtualMachineScaleSetIpConfiguration
withApplicationGatewayBackendAddressPools(List applicationGatewayBackendAddressPools) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineScaleSetIpConfigurationProperties();
}
this.innerProperties().withApplicationGatewayBackendAddressPools(applicationGatewayBackendAddressPools);
return this;
}
/**
* Get the applicationSecurityGroups property: Specifies an array of references to application security group.
*
* @return the applicationSecurityGroups value.
*/
public List applicationSecurityGroups() {
return this.innerProperties() == null ? null : this.innerProperties().applicationSecurityGroups();
}
/**
* Set the applicationSecurityGroups property: Specifies an array of references to application security group.
*
* @param applicationSecurityGroups the applicationSecurityGroups value to set.
* @return the VirtualMachineScaleSetIpConfiguration object itself.
*/
public VirtualMachineScaleSetIpConfiguration
withApplicationSecurityGroups(List applicationSecurityGroups) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineScaleSetIpConfigurationProperties();
}
this.innerProperties().withApplicationSecurityGroups(applicationSecurityGroups);
return this;
}
/**
* Get the loadBalancerBackendAddressPools property: Specifies an array of references to backend address pools of
* load balancers. A scale set can reference backend address pools of one public and one internal load balancer.
* Multiple scale sets cannot use the same basic sku load balancer.
*
* @return the loadBalancerBackendAddressPools value.
*/
public List loadBalancerBackendAddressPools() {
return this.innerProperties() == null ? null : this.innerProperties().loadBalancerBackendAddressPools();
}
/**
* Set the loadBalancerBackendAddressPools property: Specifies an array of references to backend address pools of
* load balancers. A scale set can reference backend address pools of one public and one internal load balancer.
* Multiple scale sets cannot use the same basic sku load balancer.
*
* @param loadBalancerBackendAddressPools the loadBalancerBackendAddressPools value to set.
* @return the VirtualMachineScaleSetIpConfiguration object itself.
*/
public VirtualMachineScaleSetIpConfiguration
withLoadBalancerBackendAddressPools(List loadBalancerBackendAddressPools) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineScaleSetIpConfigurationProperties();
}
this.innerProperties().withLoadBalancerBackendAddressPools(loadBalancerBackendAddressPools);
return this;
}
/**
* Get the loadBalancerInboundNatPools property: Specifies an array of references to inbound Nat pools of the load
* balancers. A scale set can reference inbound nat pools of one public and one internal load balancer. Multiple
* scale sets cannot use the same basic sku load balancer.
*
* @return the loadBalancerInboundNatPools value.
*/
public List loadBalancerInboundNatPools() {
return this.innerProperties() == null ? null : this.innerProperties().loadBalancerInboundNatPools();
}
/**
* Set the loadBalancerInboundNatPools property: Specifies an array of references to inbound Nat pools of the load
* balancers. A scale set can reference inbound nat pools of one public and one internal load balancer. Multiple
* scale sets cannot use the same basic sku load balancer.
*
* @param loadBalancerInboundNatPools the loadBalancerInboundNatPools value to set.
* @return the VirtualMachineScaleSetIpConfiguration object itself.
*/
public VirtualMachineScaleSetIpConfiguration
withLoadBalancerInboundNatPools(List loadBalancerInboundNatPools) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineScaleSetIpConfigurationProperties();
}
this.innerProperties().withLoadBalancerInboundNatPools(loadBalancerInboundNatPools);
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 VirtualMachineScaleSetIpConfiguration"));
}
if (innerProperties() != null) {
innerProperties().validate();
}
}
private static final ClientLogger LOGGER = new ClientLogger(VirtualMachineScaleSetIpConfiguration.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 VirtualMachineScaleSetIpConfiguration from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of VirtualMachineScaleSetIpConfiguration 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 VirtualMachineScaleSetIpConfiguration.
*/
public static VirtualMachineScaleSetIpConfiguration fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
VirtualMachineScaleSetIpConfiguration deserializedVirtualMachineScaleSetIpConfiguration
= new VirtualMachineScaleSetIpConfiguration();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("name".equals(fieldName)) {
deserializedVirtualMachineScaleSetIpConfiguration.name = reader.getString();
} else if ("properties".equals(fieldName)) {
deserializedVirtualMachineScaleSetIpConfiguration.innerProperties
= VirtualMachineScaleSetIpConfigurationProperties.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedVirtualMachineScaleSetIpConfiguration;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy