com.pulumi.azurenative.web.outputs.GetStaticSitePrivateEndpointConnectionResult 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.web.outputs;
import com.pulumi.azurenative.web.outputs.ArmIdWrapperResponse;
import com.pulumi.azurenative.web.outputs.PrivateLinkConnectionStateResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetStaticSitePrivateEndpointConnectionResult {
/**
* @return Resource Id.
*
*/
private String id;
/**
* @return Private IPAddresses mapped to the remote private endpoint
*
*/
private @Nullable List ipAddresses;
/**
* @return Kind of resource.
*
*/
private @Nullable String kind;
/**
* @return Resource Name.
*
*/
private String name;
/**
* @return PrivateEndpoint of a remote private endpoint connection
*
*/
private @Nullable ArmIdWrapperResponse privateEndpoint;
/**
* @return The state of a private link connection
*
*/
private @Nullable PrivateLinkConnectionStateResponse privateLinkServiceConnectionState;
private String provisioningState;
/**
* @return Resource type.
*
*/
private String type;
private GetStaticSitePrivateEndpointConnectionResult() {}
/**
* @return Resource Id.
*
*/
public String id() {
return this.id;
}
/**
* @return Private IPAddresses mapped to the remote private endpoint
*
*/
public List ipAddresses() {
return this.ipAddresses == null ? List.of() : this.ipAddresses;
}
/**
* @return Kind of resource.
*
*/
public Optional kind() {
return Optional.ofNullable(this.kind);
}
/**
* @return Resource Name.
*
*/
public String name() {
return this.name;
}
/**
* @return PrivateEndpoint of a remote private endpoint connection
*
*/
public Optional privateEndpoint() {
return Optional.ofNullable(this.privateEndpoint);
}
/**
* @return The state of a private link connection
*
*/
public Optional privateLinkServiceConnectionState() {
return Optional.ofNullable(this.privateLinkServiceConnectionState);
}
public String provisioningState() {
return this.provisioningState;
}
/**
* @return Resource type.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetStaticSitePrivateEndpointConnectionResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String id;
private @Nullable List ipAddresses;
private @Nullable String kind;
private String name;
private @Nullable ArmIdWrapperResponse privateEndpoint;
private @Nullable PrivateLinkConnectionStateResponse privateLinkServiceConnectionState;
private String provisioningState;
private String type;
public Builder() {}
public Builder(GetStaticSitePrivateEndpointConnectionResult defaults) {
Objects.requireNonNull(defaults);
this.id = defaults.id;
this.ipAddresses = defaults.ipAddresses;
this.kind = defaults.kind;
this.name = defaults.name;
this.privateEndpoint = defaults.privateEndpoint;
this.privateLinkServiceConnectionState = defaults.privateLinkServiceConnectionState;
this.provisioningState = defaults.provisioningState;
this.type = defaults.type;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetStaticSitePrivateEndpointConnectionResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder ipAddresses(@Nullable List ipAddresses) {
this.ipAddresses = ipAddresses;
return this;
}
public Builder ipAddresses(String... ipAddresses) {
return ipAddresses(List.of(ipAddresses));
}
@CustomType.Setter
public Builder kind(@Nullable String kind) {
this.kind = kind;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetStaticSitePrivateEndpointConnectionResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder privateEndpoint(@Nullable ArmIdWrapperResponse privateEndpoint) {
this.privateEndpoint = privateEndpoint;
return this;
}
@CustomType.Setter
public Builder privateLinkServiceConnectionState(@Nullable PrivateLinkConnectionStateResponse privateLinkServiceConnectionState) {
this.privateLinkServiceConnectionState = privateLinkServiceConnectionState;
return this;
}
@CustomType.Setter
public Builder provisioningState(String provisioningState) {
if (provisioningState == null) {
throw new MissingRequiredPropertyException("GetStaticSitePrivateEndpointConnectionResult", "provisioningState");
}
this.provisioningState = provisioningState;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetStaticSitePrivateEndpointConnectionResult", "type");
}
this.type = type;
return this;
}
public GetStaticSitePrivateEndpointConnectionResult build() {
final var _resultValue = new GetStaticSitePrivateEndpointConnectionResult();
_resultValue.id = id;
_resultValue.ipAddresses = ipAddresses;
_resultValue.kind = kind;
_resultValue.name = name;
_resultValue.privateEndpoint = privateEndpoint;
_resultValue.privateLinkServiceConnectionState = privateLinkServiceConnectionState;
_resultValue.provisioningState = provisioningState;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy