
com.pulumi.azurenative.hardwaresecuritymodules.inputs.GetCloudHsmClusterPrivateEndpointConnectionArgs 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.hardwaresecuritymodules.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 GetCloudHsmClusterPrivateEndpointConnectionArgs extends com.pulumi.resources.InvokeArgs {
public static final GetCloudHsmClusterPrivateEndpointConnectionArgs Empty = new GetCloudHsmClusterPrivateEndpointConnectionArgs();
/**
* The name of the Cloud HSM Cluster within the specified resource group. Cloud HSM Cluster names must be between 3 and 24 characters in length.
*
*/
@Import(name="cloudHsmClusterName", required=true)
private Output cloudHsmClusterName;
/**
* @return The name of the Cloud HSM Cluster within the specified resource group. Cloud HSM Cluster names must be between 3 and 24 characters in length.
*
*/
public Output cloudHsmClusterName() {
return this.cloudHsmClusterName;
}
/**
* Name of the private endpoint connection associated with the Cloud HSM Cluster.
*
*/
@Import(name="peConnectionName", required=true)
private Output peConnectionName;
/**
* @return Name of the private endpoint connection associated with the Cloud HSM Cluster.
*
*/
public Output peConnectionName() {
return this.peConnectionName;
}
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
private GetCloudHsmClusterPrivateEndpointConnectionArgs() {}
private GetCloudHsmClusterPrivateEndpointConnectionArgs(GetCloudHsmClusterPrivateEndpointConnectionArgs $) {
this.cloudHsmClusterName = $.cloudHsmClusterName;
this.peConnectionName = $.peConnectionName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetCloudHsmClusterPrivateEndpointConnectionArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetCloudHsmClusterPrivateEndpointConnectionArgs $;
public Builder() {
$ = new GetCloudHsmClusterPrivateEndpointConnectionArgs();
}
public Builder(GetCloudHsmClusterPrivateEndpointConnectionArgs defaults) {
$ = new GetCloudHsmClusterPrivateEndpointConnectionArgs(Objects.requireNonNull(defaults));
}
/**
* @param cloudHsmClusterName The name of the Cloud HSM Cluster within the specified resource group. Cloud HSM Cluster names must be between 3 and 24 characters in length.
*
* @return builder
*
*/
public Builder cloudHsmClusterName(Output cloudHsmClusterName) {
$.cloudHsmClusterName = cloudHsmClusterName;
return this;
}
/**
* @param cloudHsmClusterName The name of the Cloud HSM Cluster within the specified resource group. Cloud HSM Cluster names must be between 3 and 24 characters in length.
*
* @return builder
*
*/
public Builder cloudHsmClusterName(String cloudHsmClusterName) {
return cloudHsmClusterName(Output.of(cloudHsmClusterName));
}
/**
* @param peConnectionName Name of the private endpoint connection associated with the Cloud HSM Cluster.
*
* @return builder
*
*/
public Builder peConnectionName(Output peConnectionName) {
$.peConnectionName = peConnectionName;
return this;
}
/**
* @param peConnectionName Name of the private endpoint connection associated with the Cloud HSM Cluster.
*
* @return builder
*
*/
public Builder peConnectionName(String peConnectionName) {
return peConnectionName(Output.of(peConnectionName));
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
public GetCloudHsmClusterPrivateEndpointConnectionArgs build() {
if ($.cloudHsmClusterName == null) {
throw new MissingRequiredPropertyException("GetCloudHsmClusterPrivateEndpointConnectionArgs", "cloudHsmClusterName");
}
if ($.peConnectionName == null) {
throw new MissingRequiredPropertyException("GetCloudHsmClusterPrivateEndpointConnectionArgs", "peConnectionName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetCloudHsmClusterPrivateEndpointConnectionArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy