
com.pulumi.azurenative.powerbi.inputs.GetPrivateEndpointConnectionPlainArgs 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.powerbi.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetPrivateEndpointConnectionPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetPrivateEndpointConnectionPlainArgs Empty = new GetPrivateEndpointConnectionPlainArgs();
/**
* The name of the Azure resource.
*
*/
@Import(name="azureResourceName", required=true)
private String azureResourceName;
/**
* @return The name of the Azure resource.
*
*/
public String azureResourceName() {
return this.azureResourceName;
}
/**
* The name of the private endpoint.
*
*/
@Import(name="privateEndpointName", required=true)
private String privateEndpointName;
/**
* @return The name of the private endpoint.
*
*/
public String privateEndpointName() {
return this.privateEndpointName;
}
/**
* The name of the resource group.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
private GetPrivateEndpointConnectionPlainArgs() {}
private GetPrivateEndpointConnectionPlainArgs(GetPrivateEndpointConnectionPlainArgs $) {
this.azureResourceName = $.azureResourceName;
this.privateEndpointName = $.privateEndpointName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetPrivateEndpointConnectionPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetPrivateEndpointConnectionPlainArgs $;
public Builder() {
$ = new GetPrivateEndpointConnectionPlainArgs();
}
public Builder(GetPrivateEndpointConnectionPlainArgs defaults) {
$ = new GetPrivateEndpointConnectionPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param azureResourceName The name of the Azure resource.
*
* @return builder
*
*/
public Builder azureResourceName(String azureResourceName) {
$.azureResourceName = azureResourceName;
return this;
}
/**
* @param privateEndpointName The name of the private endpoint.
*
* @return builder
*
*/
public Builder privateEndpointName(String privateEndpointName) {
$.privateEndpointName = privateEndpointName;
return this;
}
/**
* @param resourceGroupName The name of the resource group.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
public GetPrivateEndpointConnectionPlainArgs build() {
if ($.azureResourceName == null) {
throw new MissingRequiredPropertyException("GetPrivateEndpointConnectionPlainArgs", "azureResourceName");
}
if ($.privateEndpointName == null) {
throw new MissingRequiredPropertyException("GetPrivateEndpointConnectionPlainArgs", "privateEndpointName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetPrivateEndpointConnectionPlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy