VirtualMachineScaleSetPublicIpAddressConfiguration.java
// 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.annotation.JsonFlatten;
import com.azure.core.management.SubResource;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/** Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration. */
@JsonFlatten
@Fluent
public class VirtualMachineScaleSetPublicIpAddressConfiguration {
@JsonIgnore
private final ClientLogger logger = new ClientLogger(VirtualMachineScaleSetPublicIpAddressConfiguration.class);
/*
* The publicIP address configuration name.
*/
@JsonProperty(value = "name", required = true)
private String name;
/*
* The idle timeout of the public IP address.
*/
@JsonProperty(value = "properties.idleTimeoutInMinutes")
private Integer idleTimeoutInMinutes;
/*
* The dns settings to be applied on the publicIP addresses .
*/
@JsonProperty(value = "properties.dnsSettings")
private VirtualMachineScaleSetPublicIpAddressConfigurationDnsSettings dnsSettings;
/*
* The list of IP tags associated with the public IP address.
*/
@JsonProperty(value = "properties.ipTags")
private List<VirtualMachineScaleSetIpTag> ipTags;
/*
* The PublicIPPrefix from which to allocate publicIP addresses.
*/
@JsonProperty(value = "properties.publicIPPrefix")
private SubResource publicIpPrefix;
/*
* Available from Api-Version 2019-07-01 onwards, it represents whether the
* specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4.
* Possible values are: 'IPv4' and 'IPv6'.
*/
@JsonProperty(value = "properties.publicIPAddressVersion")
private IpVersion publicIpAddressVersion;
/**
* Get the name property: The publicIP address configuration name.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: The publicIP address configuration name.
*
* @param name the name value to set.
* @return the VirtualMachineScaleSetPublicIpAddressConfiguration object itself.
*/
public VirtualMachineScaleSetPublicIpAddressConfiguration withName(String name) {
this.name = name;
return this;
}
/**
* Get the idleTimeoutInMinutes property: The idle timeout of the public IP address.
*
* @return the idleTimeoutInMinutes value.
*/
public Integer idleTimeoutInMinutes() {
return this.idleTimeoutInMinutes;
}
/**
* Set the idleTimeoutInMinutes property: The idle timeout of the public IP address.
*
* @param idleTimeoutInMinutes the idleTimeoutInMinutes value to set.
* @return the VirtualMachineScaleSetPublicIpAddressConfiguration object itself.
*/
public VirtualMachineScaleSetPublicIpAddressConfiguration withIdleTimeoutInMinutes(Integer idleTimeoutInMinutes) {
this.idleTimeoutInMinutes = idleTimeoutInMinutes;
return this;
}
/**
* Get the dnsSettings property: The dns settings to be applied on the publicIP addresses .
*
* @return the dnsSettings value.
*/
public VirtualMachineScaleSetPublicIpAddressConfigurationDnsSettings dnsSettings() {
return this.dnsSettings;
}
/**
* Set the dnsSettings property: The dns settings to be applied on the publicIP addresses .
*
* @param dnsSettings the dnsSettings value to set.
* @return the VirtualMachineScaleSetPublicIpAddressConfiguration object itself.
*/
public VirtualMachineScaleSetPublicIpAddressConfiguration withDnsSettings(
VirtualMachineScaleSetPublicIpAddressConfigurationDnsSettings dnsSettings) {
this.dnsSettings = dnsSettings;
return this;
}
/**
* Get the ipTags property: The list of IP tags associated with the public IP address.
*
* @return the ipTags value.
*/
public List<VirtualMachineScaleSetIpTag> ipTags() {
return this.ipTags;
}
/**
* Set the ipTags property: The list of IP tags associated with the public IP address.
*
* @param ipTags the ipTags value to set.
* @return the VirtualMachineScaleSetPublicIpAddressConfiguration object itself.
*/
public VirtualMachineScaleSetPublicIpAddressConfiguration withIpTags(List<VirtualMachineScaleSetIpTag> ipTags) {
this.ipTags = ipTags;
return this;
}
/**
* Get the publicIpPrefix property: The PublicIPPrefix from which to allocate publicIP addresses.
*
* @return the publicIpPrefix value.
*/
public SubResource publicIpPrefix() {
return this.publicIpPrefix;
}
/**
* Set the publicIpPrefix property: The PublicIPPrefix from which to allocate publicIP addresses.
*
* @param publicIpPrefix the publicIpPrefix value to set.
* @return the VirtualMachineScaleSetPublicIpAddressConfiguration object itself.
*/
public VirtualMachineScaleSetPublicIpAddressConfiguration withPublicIpPrefix(SubResource publicIpPrefix) {
this.publicIpPrefix = publicIpPrefix;
return this;
}
/**
* Get the publicIpAddressVersion property: Available from Api-Version 2019-07-01 onwards, it represents whether the
* specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
*
* @return the publicIpAddressVersion value.
*/
public IpVersion publicIpAddressVersion() {
return this.publicIpAddressVersion;
}
/**
* Set the publicIpAddressVersion property: Available from Api-Version 2019-07-01 onwards, it represents whether the
* specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
*
* @param publicIpAddressVersion the publicIpAddressVersion value to set.
* @return the VirtualMachineScaleSetPublicIpAddressConfiguration object itself.
*/
public VirtualMachineScaleSetPublicIpAddressConfiguration withPublicIpAddressVersion(
IpVersion publicIpAddressVersion) {
this.publicIpAddressVersion = publicIpAddressVersion;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (name() == null) {
throw logger
.logExceptionAsError(
new IllegalArgumentException(
"Missing required property name in model VirtualMachineScaleSetPublicIpAddressConfiguration"));
}
if (dnsSettings() != null) {
dnsSettings().validate();
}
if (ipTags() != null) {
ipTags().forEach(e -> e.validate());
}
}
}