
com.pulumi.azurenative.eventgrid.outputs.PrivateEndpointConnectionResponse 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.eventgrid.outputs;
import com.pulumi.azurenative.eventgrid.outputs.ConnectionStateResponse;
import com.pulumi.azurenative.eventgrid.outputs.PrivateEndpointResponse;
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 PrivateEndpointConnectionResponse {
/**
* @return GroupIds from the private link service resource.
*
*/
private @Nullable List groupIds;
/**
* @return Fully qualified identifier of the resource.
*
*/
private String id;
/**
* @return Name of the resource.
*
*/
private String name;
/**
* @return The Private Endpoint resource for this Connection.
*
*/
private @Nullable PrivateEndpointResponse privateEndpoint;
/**
* @return Details about the state of the connection.
*
*/
private @Nullable ConnectionStateResponse privateLinkServiceConnectionState;
/**
* @return Provisioning state of the Private Endpoint Connection.
*
*/
private @Nullable String provisioningState;
/**
* @return Type of the resource.
*
*/
private String type;
private PrivateEndpointConnectionResponse() {}
/**
* @return GroupIds from the private link service resource.
*
*/
public List groupIds() {
return this.groupIds == null ? List.of() : this.groupIds;
}
/**
* @return Fully qualified identifier of the resource.
*
*/
public String id() {
return this.id;
}
/**
* @return Name of the resource.
*
*/
public String name() {
return this.name;
}
/**
* @return The Private Endpoint resource for this Connection.
*
*/
public Optional privateEndpoint() {
return Optional.ofNullable(this.privateEndpoint);
}
/**
* @return Details about the state of the connection.
*
*/
public Optional privateLinkServiceConnectionState() {
return Optional.ofNullable(this.privateLinkServiceConnectionState);
}
/**
* @return Provisioning state of the Private Endpoint Connection.
*
*/
public Optional provisioningState() {
return Optional.ofNullable(this.provisioningState);
}
/**
* @return Type of the resource.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(PrivateEndpointConnectionResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List groupIds;
private String id;
private String name;
private @Nullable PrivateEndpointResponse privateEndpoint;
private @Nullable ConnectionStateResponse privateLinkServiceConnectionState;
private @Nullable String provisioningState;
private String type;
public Builder() {}
public Builder(PrivateEndpointConnectionResponse defaults) {
Objects.requireNonNull(defaults);
this.groupIds = defaults.groupIds;
this.id = defaults.id;
this.name = defaults.name;
this.privateEndpoint = defaults.privateEndpoint;
this.privateLinkServiceConnectionState = defaults.privateLinkServiceConnectionState;
this.provisioningState = defaults.provisioningState;
this.type = defaults.type;
}
@CustomType.Setter
public Builder groupIds(@Nullable List groupIds) {
this.groupIds = groupIds;
return this;
}
public Builder groupIds(String... groupIds) {
return groupIds(List.of(groupIds));
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("PrivateEndpointConnectionResponse", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("PrivateEndpointConnectionResponse", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder privateEndpoint(@Nullable PrivateEndpointResponse privateEndpoint) {
this.privateEndpoint = privateEndpoint;
return this;
}
@CustomType.Setter
public Builder privateLinkServiceConnectionState(@Nullable ConnectionStateResponse privateLinkServiceConnectionState) {
this.privateLinkServiceConnectionState = privateLinkServiceConnectionState;
return this;
}
@CustomType.Setter
public Builder provisioningState(@Nullable String provisioningState) {
this.provisioningState = provisioningState;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("PrivateEndpointConnectionResponse", "type");
}
this.type = type;
return this;
}
public PrivateEndpointConnectionResponse build() {
final var _resultValue = new PrivateEndpointConnectionResponse();
_resultValue.groupIds = groupIds;
_resultValue.id = id;
_resultValue.name = name;
_resultValue.privateEndpoint = privateEndpoint;
_resultValue.privateLinkServiceConnectionState = privateLinkServiceConnectionState;
_resultValue.provisioningState = provisioningState;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy