com.azure.resourcemanager.network.fluent.models.PrivateEndpointPropertiesInner 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.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.resourcemanager.network.models.CustomDnsConfigPropertiesFormat;
import com.azure.resourcemanager.network.models.PrivateEndpointIpConfiguration;
import com.azure.resourcemanager.network.models.PrivateLinkServiceConnection;
import com.azure.resourcemanager.network.models.ProvisioningState;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* Properties of the private endpoint.
*/
@Fluent
public final class PrivateEndpointPropertiesInner {
/*
* The ID of the subnet from which the private IP will be allocated.
*/
@JsonProperty(value = "subnet")
private SubnetInner subnet;
/*
* An array of references to the network interfaces created for this private endpoint.
*/
@JsonProperty(value = "networkInterfaces", access = JsonProperty.Access.WRITE_ONLY)
private List networkInterfaces;
/*
* The provisioning state of the private endpoint resource.
*/
@JsonProperty(value = "provisioningState", access = JsonProperty.Access.WRITE_ONLY)
private ProvisioningState provisioningState;
/*
* A grouping of information about the connection to the remote resource.
*/
@JsonProperty(value = "privateLinkServiceConnections")
private List privateLinkServiceConnections;
/*
* A grouping of information about the connection to the remote resource. Used when the network admin does not have access to approve connections to the remote resource.
*/
@JsonProperty(value = "manualPrivateLinkServiceConnections")
private List manualPrivateLinkServiceConnections;
/*
* An array of custom dns configurations.
*/
@JsonProperty(value = "customDnsConfigs")
private List customDnsConfigs;
/*
* Application security groups in which the private endpoint IP configuration is included.
*/
@JsonProperty(value = "applicationSecurityGroups")
private List applicationSecurityGroups;
/*
* A list of IP configurations of the private endpoint. This will be used to map to the First Party Service's endpoints.
*/
@JsonProperty(value = "ipConfigurations")
private List ipConfigurations;
/*
* The custom name of the network interface attached to the private endpoint.
*/
@JsonProperty(value = "customNetworkInterfaceName")
private String customNetworkInterfaceName;
/**
* Creates an instance of PrivateEndpointPropertiesInner class.
*/
public PrivateEndpointPropertiesInner() {
}
/**
* Get the subnet property: The ID of the subnet from which the private IP will be allocated.
*
* @return the subnet value.
*/
public SubnetInner subnet() {
return this.subnet;
}
/**
* Set the subnet property: The ID of the subnet from which the private IP will be allocated.
*
* @param subnet the subnet value to set.
* @return the PrivateEndpointPropertiesInner object itself.
*/
public PrivateEndpointPropertiesInner withSubnet(SubnetInner subnet) {
this.subnet = subnet;
return this;
}
/**
* Get the networkInterfaces property: An array of references to the network interfaces created for this private
* endpoint.
*
* @return the networkInterfaces value.
*/
public List networkInterfaces() {
return this.networkInterfaces;
}
/**
* Get the provisioningState property: The provisioning state of the private endpoint resource.
*
* @return the provisioningState value.
*/
public ProvisioningState provisioningState() {
return this.provisioningState;
}
/**
* Get the privateLinkServiceConnections property: A grouping of information about the connection to the remote
* resource.
*
* @return the privateLinkServiceConnections value.
*/
public List privateLinkServiceConnections() {
return this.privateLinkServiceConnections;
}
/**
* Set the privateLinkServiceConnections property: A grouping of information about the connection to the remote
* resource.
*
* @param privateLinkServiceConnections the privateLinkServiceConnections value to set.
* @return the PrivateEndpointPropertiesInner object itself.
*/
public PrivateEndpointPropertiesInner
withPrivateLinkServiceConnections(List privateLinkServiceConnections) {
this.privateLinkServiceConnections = privateLinkServiceConnections;
return this;
}
/**
* Get the manualPrivateLinkServiceConnections property: A grouping of information about the connection to the
* remote resource. Used when the network admin does not have access to approve connections to the remote resource.
*
* @return the manualPrivateLinkServiceConnections value.
*/
public List manualPrivateLinkServiceConnections() {
return this.manualPrivateLinkServiceConnections;
}
/**
* Set the manualPrivateLinkServiceConnections property: A grouping of information about the connection to the
* remote resource. Used when the network admin does not have access to approve connections to the remote resource.
*
* @param manualPrivateLinkServiceConnections the manualPrivateLinkServiceConnections value to set.
* @return the PrivateEndpointPropertiesInner object itself.
*/
public PrivateEndpointPropertiesInner withManualPrivateLinkServiceConnections(
List manualPrivateLinkServiceConnections) {
this.manualPrivateLinkServiceConnections = manualPrivateLinkServiceConnections;
return this;
}
/**
* Get the customDnsConfigs property: An array of custom dns configurations.
*
* @return the customDnsConfigs value.
*/
public List customDnsConfigs() {
return this.customDnsConfigs;
}
/**
* Set the customDnsConfigs property: An array of custom dns configurations.
*
* @param customDnsConfigs the customDnsConfigs value to set.
* @return the PrivateEndpointPropertiesInner object itself.
*/
public PrivateEndpointPropertiesInner withCustomDnsConfigs(List customDnsConfigs) {
this.customDnsConfigs = customDnsConfigs;
return this;
}
/**
* Get the applicationSecurityGroups property: Application security groups in which the private endpoint IP
* configuration is included.
*
* @return the applicationSecurityGroups value.
*/
public List applicationSecurityGroups() {
return this.applicationSecurityGroups;
}
/**
* Set the applicationSecurityGroups property: Application security groups in which the private endpoint IP
* configuration is included.
*
* @param applicationSecurityGroups the applicationSecurityGroups value to set.
* @return the PrivateEndpointPropertiesInner object itself.
*/
public PrivateEndpointPropertiesInner
withApplicationSecurityGroups(List applicationSecurityGroups) {
this.applicationSecurityGroups = applicationSecurityGroups;
return this;
}
/**
* Get the ipConfigurations property: A list of IP configurations of the private endpoint. This will be used to map
* to the First Party Service's endpoints.
*
* @return the ipConfigurations value.
*/
public List ipConfigurations() {
return this.ipConfigurations;
}
/**
* Set the ipConfigurations property: A list of IP configurations of the private endpoint. This will be used to map
* to the First Party Service's endpoints.
*
* @param ipConfigurations the ipConfigurations value to set.
* @return the PrivateEndpointPropertiesInner object itself.
*/
public PrivateEndpointPropertiesInner withIpConfigurations(List ipConfigurations) {
this.ipConfigurations = ipConfigurations;
return this;
}
/**
* Get the customNetworkInterfaceName property: The custom name of the network interface attached to the private
* endpoint.
*
* @return the customNetworkInterfaceName value.
*/
public String customNetworkInterfaceName() {
return this.customNetworkInterfaceName;
}
/**
* Set the customNetworkInterfaceName property: The custom name of the network interface attached to the private
* endpoint.
*
* @param customNetworkInterfaceName the customNetworkInterfaceName value to set.
* @return the PrivateEndpointPropertiesInner object itself.
*/
public PrivateEndpointPropertiesInner withCustomNetworkInterfaceName(String customNetworkInterfaceName) {
this.customNetworkInterfaceName = customNetworkInterfaceName;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (subnet() != null) {
subnet().validate();
}
if (networkInterfaces() != null) {
networkInterfaces().forEach(e -> e.validate());
}
if (privateLinkServiceConnections() != null) {
privateLinkServiceConnections().forEach(e -> e.validate());
}
if (manualPrivateLinkServiceConnections() != null) {
manualPrivateLinkServiceConnections().forEach(e -> e.validate());
}
if (customDnsConfigs() != null) {
customDnsConfigs().forEach(e -> e.validate());
}
if (applicationSecurityGroups() != null) {
applicationSecurityGroups().forEach(e -> e.validate());
}
if (ipConfigurations() != null) {
ipConfigurations().forEach(e -> e.validate());
}
}
}