IpConfigurationInner.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.network.fluent.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.azure.resourcemanager.network.models.IpAllocationMethod;
import com.azure.resourcemanager.network.models.ProvisioningState;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
/** IP configuration. */
@JsonFlatten
@Fluent
public class IpConfigurationInner extends SubResource {
@JsonIgnore private final ClientLogger logger = new ClientLogger(IpConfigurationInner.class);
/*
* The name of the resource that is unique within a resource group. This
* name can be used to access the resource.
*/
@JsonProperty(value = "name")
private String name;
/*
* A unique read-only string that changes whenever the resource is updated.
*/
@JsonProperty(value = "etag", access = JsonProperty.Access.WRITE_ONLY)
private String etag;
/*
* The private IP address of the IP configuration.
*/
@JsonProperty(value = "properties.privateIPAddress")
private String privateIpAddress;
/*
* The private IP address allocation method.
*/
@JsonProperty(value = "properties.privateIPAllocationMethod")
private IpAllocationMethod privateIpAllocationMethod;
/*
* The reference to the subnet resource.
*/
@JsonProperty(value = "properties.subnet")
private SubnetInner subnet;
/*
* The reference to the public IP resource.
*/
@JsonProperty(value = "properties.publicIPAddress")
private PublicIpAddressInner publicIpAddress;
/*
* The provisioning state of the IP configuration resource.
*/
@JsonProperty(value = "properties.provisioningState", access = JsonProperty.Access.WRITE_ONLY)
private ProvisioningState provisioningState;
/**
* Get the name property: The name of the resource that is unique within a resource group. This name can be used to
* access the resource.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: The name of the resource that is unique within a resource group. This name can be used to
* access the resource.
*
* @param name the name value to set.
* @return the IpConfigurationInner object itself.
*/
public IpConfigurationInner withName(String name) {
this.name = name;
return this;
}
/**
* Get the etag property: A unique read-only string that changes whenever the resource is updated.
*
* @return the etag value.
*/
public String etag() {
return this.etag;
}
/**
* Get the privateIpAddress property: The private IP address of the IP configuration.
*
* @return the privateIpAddress value.
*/
public String privateIpAddress() {
return this.privateIpAddress;
}
/**
* Set the privateIpAddress property: The private IP address of the IP configuration.
*
* @param privateIpAddress the privateIpAddress value to set.
* @return the IpConfigurationInner object itself.
*/
public IpConfigurationInner withPrivateIpAddress(String privateIpAddress) {
this.privateIpAddress = privateIpAddress;
return this;
}
/**
* Get the privateIpAllocationMethod property: The private IP address allocation method.
*
* @return the privateIpAllocationMethod value.
*/
public IpAllocationMethod privateIpAllocationMethod() {
return this.privateIpAllocationMethod;
}
/**
* Set the privateIpAllocationMethod property: The private IP address allocation method.
*
* @param privateIpAllocationMethod the privateIpAllocationMethod value to set.
* @return the IpConfigurationInner object itself.
*/
public IpConfigurationInner withPrivateIpAllocationMethod(IpAllocationMethod privateIpAllocationMethod) {
this.privateIpAllocationMethod = privateIpAllocationMethod;
return this;
}
/**
* Get the subnet property: The reference to the subnet resource.
*
* @return the subnet value.
*/
public SubnetInner subnet() {
return this.subnet;
}
/**
* Set the subnet property: The reference to the subnet resource.
*
* @param subnet the subnet value to set.
* @return the IpConfigurationInner object itself.
*/
public IpConfigurationInner withSubnet(SubnetInner subnet) {
this.subnet = subnet;
return this;
}
/**
* Get the publicIpAddress property: The reference to the public IP resource.
*
* @return the publicIpAddress value.
*/
public PublicIpAddressInner publicIpAddress() {
return this.publicIpAddress;
}
/**
* Set the publicIpAddress property: The reference to the public IP resource.
*
* @param publicIpAddress the publicIpAddress value to set.
* @return the IpConfigurationInner object itself.
*/
public IpConfigurationInner withPublicIpAddress(PublicIpAddressInner publicIpAddress) {
this.publicIpAddress = publicIpAddress;
return this;
}
/**
* Get the provisioningState property: The provisioning state of the IP configuration resource.
*
* @return the provisioningState value.
*/
public ProvisioningState provisioningState() {
return this.provisioningState;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (subnet() != null) {
subnet().validate();
}
if (publicIpAddress() != null) {
publicIpAddress().validate();
}
}
}