
com.pulumi.azurenative.network.outputs.PrivateEndpointIPConfigurationResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.network.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class PrivateEndpointIPConfigurationResponse {
/**
* @return A unique read-only string that changes whenever the resource is updated.
*
*/
private String etag;
/**
* @return The ID of a group obtained from the remote resource that this private endpoint should connect to.
*
*/
private @Nullable String groupId;
/**
* @return The member name of a group obtained from the remote resource that this private endpoint should connect to.
*
*/
private @Nullable String memberName;
/**
* @return The name of the resource that is unique within a resource group.
*
*/
private @Nullable String name;
/**
* @return A private ip address obtained from the private endpoint's subnet.
*
*/
private @Nullable String privateIPAddress;
/**
* @return The resource type.
*
*/
private String type;
private PrivateEndpointIPConfigurationResponse() {}
/**
* @return A unique read-only string that changes whenever the resource is updated.
*
*/
public String etag() {
return this.etag;
}
/**
* @return The ID of a group obtained from the remote resource that this private endpoint should connect to.
*
*/
public Optional groupId() {
return Optional.ofNullable(this.groupId);
}
/**
* @return The member name of a group obtained from the remote resource that this private endpoint should connect to.
*
*/
public Optional memberName() {
return Optional.ofNullable(this.memberName);
}
/**
* @return The name of the resource that is unique within a resource group.
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
/**
* @return A private ip address obtained from the private endpoint's subnet.
*
*/
public Optional privateIPAddress() {
return Optional.ofNullable(this.privateIPAddress);
}
/**
* @return The resource type.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(PrivateEndpointIPConfigurationResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String etag;
private @Nullable String groupId;
private @Nullable String memberName;
private @Nullable String name;
private @Nullable String privateIPAddress;
private String type;
public Builder() {}
public Builder(PrivateEndpointIPConfigurationResponse defaults) {
Objects.requireNonNull(defaults);
this.etag = defaults.etag;
this.groupId = defaults.groupId;
this.memberName = defaults.memberName;
this.name = defaults.name;
this.privateIPAddress = defaults.privateIPAddress;
this.type = defaults.type;
}
@CustomType.Setter
public Builder etag(String etag) {
if (etag == null) {
throw new MissingRequiredPropertyException("PrivateEndpointIPConfigurationResponse", "etag");
}
this.etag = etag;
return this;
}
@CustomType.Setter
public Builder groupId(@Nullable String groupId) {
this.groupId = groupId;
return this;
}
@CustomType.Setter
public Builder memberName(@Nullable String memberName) {
this.memberName = memberName;
return this;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
@CustomType.Setter
public Builder privateIPAddress(@Nullable String privateIPAddress) {
this.privateIPAddress = privateIPAddress;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("PrivateEndpointIPConfigurationResponse", "type");
}
this.type = type;
return this;
}
public PrivateEndpointIPConfigurationResponse build() {
final var _resultValue = new PrivateEndpointIPConfigurationResponse();
_resultValue.etag = etag;
_resultValue.groupId = groupId;
_resultValue.memberName = memberName;
_resultValue.name = name;
_resultValue.privateIPAddress = privateIPAddress;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy