com.pulumi.azurenative.deviceupdate.inputs.GetPrivateEndpointConnectionProxyArgs 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.
The newest version!
// *** 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.deviceupdate.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetPrivateEndpointConnectionProxyArgs extends com.pulumi.resources.InvokeArgs {
public static final GetPrivateEndpointConnectionProxyArgs Empty = new GetPrivateEndpointConnectionProxyArgs();
/**
* Account name.
*
*/
@Import(name="accountName", required=true)
private Output accountName;
/**
* @return Account name.
*
*/
public Output accountName() {
return this.accountName;
}
/**
* The ID of the private endpoint connection proxy object.
*
*/
@Import(name="privateEndpointConnectionProxyId", required=true)
private Output privateEndpointConnectionProxyId;
/**
* @return The ID of the private endpoint connection proxy object.
*
*/
public Output privateEndpointConnectionProxyId() {
return this.privateEndpointConnectionProxyId;
}
/**
* The resource group name.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The resource group name.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
private GetPrivateEndpointConnectionProxyArgs() {}
private GetPrivateEndpointConnectionProxyArgs(GetPrivateEndpointConnectionProxyArgs $) {
this.accountName = $.accountName;
this.privateEndpointConnectionProxyId = $.privateEndpointConnectionProxyId;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetPrivateEndpointConnectionProxyArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetPrivateEndpointConnectionProxyArgs $;
public Builder() {
$ = new GetPrivateEndpointConnectionProxyArgs();
}
public Builder(GetPrivateEndpointConnectionProxyArgs defaults) {
$ = new GetPrivateEndpointConnectionProxyArgs(Objects.requireNonNull(defaults));
}
/**
* @param accountName Account name.
*
* @return builder
*
*/
public Builder accountName(Output accountName) {
$.accountName = accountName;
return this;
}
/**
* @param accountName Account name.
*
* @return builder
*
*/
public Builder accountName(String accountName) {
return accountName(Output.of(accountName));
}
/**
* @param privateEndpointConnectionProxyId The ID of the private endpoint connection proxy object.
*
* @return builder
*
*/
public Builder privateEndpointConnectionProxyId(Output privateEndpointConnectionProxyId) {
$.privateEndpointConnectionProxyId = privateEndpointConnectionProxyId;
return this;
}
/**
* @param privateEndpointConnectionProxyId The ID of the private endpoint connection proxy object.
*
* @return builder
*
*/
public Builder privateEndpointConnectionProxyId(String privateEndpointConnectionProxyId) {
return privateEndpointConnectionProxyId(Output.of(privateEndpointConnectionProxyId));
}
/**
* @param resourceGroupName The resource group name.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The resource group name.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
public GetPrivateEndpointConnectionProxyArgs build() {
if ($.accountName == null) {
throw new MissingRequiredPropertyException("GetPrivateEndpointConnectionProxyArgs", "accountName");
}
if ($.privateEndpointConnectionProxyId == null) {
throw new MissingRequiredPropertyException("GetPrivateEndpointConnectionProxyArgs", "privateEndpointConnectionProxyId");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetPrivateEndpointConnectionProxyArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy