com.azure.resourcemanager.network.models.PrivateEndpointIpConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-network Show documentation
Show all versions of azure-resourcemanager-network Show documentation
This package contains Microsoft Azure Network 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.network.models;
import com.azure.core.annotation.Fluent;
import com.azure.resourcemanager.network.fluent.models.PrivateEndpointIpConfigurationProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* An IP Configuration of the private endpoint.
*/
@Fluent
public final class PrivateEndpointIpConfiguration {
/*
* Properties of private endpoint IP configurations.
*/
@JsonProperty(value = "properties")
private PrivateEndpointIpConfigurationProperties innerProperties;
/*
* The name of the resource that is unique within a resource group.
*/
@JsonProperty(value = "name")
private String name;
/*
* The resource type.
*/
@JsonProperty(value = "type", access = JsonProperty.Access.WRITE_ONLY)
private String type;
/*
* A unique read-only string that changes whenever the resource is updated.
*/
@JsonProperty(value = "etag", access = JsonProperty.Access.WRITE_ONLY)
private String etag;
/**
* Creates an instance of PrivateEndpointIpConfiguration class.
*/
public PrivateEndpointIpConfiguration() {
}
/**
* Get the innerProperties property: Properties of private endpoint IP configurations.
*
* @return the innerProperties value.
*/
private PrivateEndpointIpConfigurationProperties innerProperties() {
return this.innerProperties;
}
/**
* Get the name property: The name of the resource that is unique within a resource group.
*
* @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.
*
* @param name the name value to set.
* @return the PrivateEndpointIpConfiguration object itself.
*/
public PrivateEndpointIpConfiguration withName(String name) {
this.name = name;
return this;
}
/**
* Get the type property: The resource type.
*
* @return the type value.
*/
public String type() {
return this.type;
}
/**
* 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 groupId property: The ID of a group obtained from the remote resource that this private endpoint should
* connect to.
*
* @return the groupId value.
*/
public String groupId() {
return this.innerProperties() == null ? null : this.innerProperties().groupId();
}
/**
* Set the groupId property: The ID of a group obtained from the remote resource that this private endpoint should
* connect to.
*
* @param groupId the groupId value to set.
* @return the PrivateEndpointIpConfiguration object itself.
*/
public PrivateEndpointIpConfiguration withGroupId(String groupId) {
if (this.innerProperties() == null) {
this.innerProperties = new PrivateEndpointIpConfigurationProperties();
}
this.innerProperties().withGroupId(groupId);
return this;
}
/**
* Get the memberName property: The member name of a group obtained from the remote resource that this private
* endpoint should connect to.
*
* @return the memberName value.
*/
public String memberName() {
return this.innerProperties() == null ? null : this.innerProperties().memberName();
}
/**
* Set the memberName property: The member name of a group obtained from the remote resource that this private
* endpoint should connect to.
*
* @param memberName the memberName value to set.
* @return the PrivateEndpointIpConfiguration object itself.
*/
public PrivateEndpointIpConfiguration withMemberName(String memberName) {
if (this.innerProperties() == null) {
this.innerProperties = new PrivateEndpointIpConfigurationProperties();
}
this.innerProperties().withMemberName(memberName);
return this;
}
/**
* Get the privateIpAddress property: A private ip address obtained from the private endpoint's subnet.
*
* @return the privateIpAddress value.
*/
public String privateIpAddress() {
return this.innerProperties() == null ? null : this.innerProperties().privateIpAddress();
}
/**
* Set the privateIpAddress property: A private ip address obtained from the private endpoint's subnet.
*
* @param privateIpAddress the privateIpAddress value to set.
* @return the PrivateEndpointIpConfiguration object itself.
*/
public PrivateEndpointIpConfiguration withPrivateIpAddress(String privateIpAddress) {
if (this.innerProperties() == null) {
this.innerProperties = new PrivateEndpointIpConfigurationProperties();
}
this.innerProperties().withPrivateIpAddress(privateIpAddress);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (innerProperties() != null) {
innerProperties().validate();
}
}
}