com.pulumi.azurenative.streamanalytics.outputs.GetPrivateEndpointResult 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.streamanalytics.outputs;
import com.pulumi.azurenative.streamanalytics.outputs.PrivateLinkServiceConnectionResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class GetPrivateEndpointResult {
/**
* @return The date when this private endpoint was created.
*
*/
private String createdDate;
/**
* @return Unique opaque string (generally a GUID) that represents the metadata state of the resource (private endpoint) and changes whenever the resource is updated. Required on PUT (CreateOrUpdate) requests.
*
*/
private String etag;
/**
* @return Fully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*
*/
private String id;
/**
* @return A list of connections to the remote resource. Immutable after it is set.
*
*/
private @Nullable List manualPrivateLinkServiceConnections;
/**
* @return The name of the resource
*
*/
private String name;
/**
* @return The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
*
*/
private String type;
private GetPrivateEndpointResult() {}
/**
* @return The date when this private endpoint was created.
*
*/
public String createdDate() {
return this.createdDate;
}
/**
* @return Unique opaque string (generally a GUID) that represents the metadata state of the resource (private endpoint) and changes whenever the resource is updated. Required on PUT (CreateOrUpdate) requests.
*
*/
public String etag() {
return this.etag;
}
/**
* @return Fully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*
*/
public String id() {
return this.id;
}
/**
* @return A list of connections to the remote resource. Immutable after it is set.
*
*/
public List manualPrivateLinkServiceConnections() {
return this.manualPrivateLinkServiceConnections == null ? List.of() : this.manualPrivateLinkServiceConnections;
}
/**
* @return The name of the resource
*
*/
public String name() {
return this.name;
}
/**
* @return The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetPrivateEndpointResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String createdDate;
private String etag;
private String id;
private @Nullable List manualPrivateLinkServiceConnections;
private String name;
private String type;
public Builder() {}
public Builder(GetPrivateEndpointResult defaults) {
Objects.requireNonNull(defaults);
this.createdDate = defaults.createdDate;
this.etag = defaults.etag;
this.id = defaults.id;
this.manualPrivateLinkServiceConnections = defaults.manualPrivateLinkServiceConnections;
this.name = defaults.name;
this.type = defaults.type;
}
@CustomType.Setter
public Builder createdDate(String createdDate) {
if (createdDate == null) {
throw new MissingRequiredPropertyException("GetPrivateEndpointResult", "createdDate");
}
this.createdDate = createdDate;
return this;
}
@CustomType.Setter
public Builder etag(String etag) {
if (etag == null) {
throw new MissingRequiredPropertyException("GetPrivateEndpointResult", "etag");
}
this.etag = etag;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetPrivateEndpointResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder manualPrivateLinkServiceConnections(@Nullable List manualPrivateLinkServiceConnections) {
this.manualPrivateLinkServiceConnections = manualPrivateLinkServiceConnections;
return this;
}
public Builder manualPrivateLinkServiceConnections(PrivateLinkServiceConnectionResponse... manualPrivateLinkServiceConnections) {
return manualPrivateLinkServiceConnections(List.of(manualPrivateLinkServiceConnections));
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetPrivateEndpointResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetPrivateEndpointResult", "type");
}
this.type = type;
return this;
}
public GetPrivateEndpointResult build() {
final var _resultValue = new GetPrivateEndpointResult();
_resultValue.createdDate = createdDate;
_resultValue.etag = etag;
_resultValue.id = id;
_resultValue.manualPrivateLinkServiceConnections = manualPrivateLinkServiceConnections;
_resultValue.name = name;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy