com.pulumi.azurenative.keyvault.inputs.GetMHSMPrivateEndpointConnectionPlainArgs 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.keyvault.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetMHSMPrivateEndpointConnectionPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetMHSMPrivateEndpointConnectionPlainArgs Empty = new GetMHSMPrivateEndpointConnectionPlainArgs();
/**
* Name of the managed HSM Pool
*
*/
@Import(name="name", required=true)
private String name;
/**
* @return Name of the managed HSM Pool
*
*/
public String name() {
return this.name;
}
/**
* Name of the private endpoint connection associated with the managed hsm pool.
*
*/
@Import(name="privateEndpointConnectionName", required=true)
private String privateEndpointConnectionName;
/**
* @return Name of the private endpoint connection associated with the managed hsm pool.
*
*/
public String privateEndpointConnectionName() {
return this.privateEndpointConnectionName;
}
/**
* Name of the resource group that contains the managed HSM pool.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return Name of the resource group that contains the managed HSM pool.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
private GetMHSMPrivateEndpointConnectionPlainArgs() {}
private GetMHSMPrivateEndpointConnectionPlainArgs(GetMHSMPrivateEndpointConnectionPlainArgs $) {
this.name = $.name;
this.privateEndpointConnectionName = $.privateEndpointConnectionName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetMHSMPrivateEndpointConnectionPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetMHSMPrivateEndpointConnectionPlainArgs $;
public Builder() {
$ = new GetMHSMPrivateEndpointConnectionPlainArgs();
}
public Builder(GetMHSMPrivateEndpointConnectionPlainArgs defaults) {
$ = new GetMHSMPrivateEndpointConnectionPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param name Name of the managed HSM Pool
*
* @return builder
*
*/
public Builder name(String name) {
$.name = name;
return this;
}
/**
* @param privateEndpointConnectionName Name of the private endpoint connection associated with the managed hsm pool.
*
* @return builder
*
*/
public Builder privateEndpointConnectionName(String privateEndpointConnectionName) {
$.privateEndpointConnectionName = privateEndpointConnectionName;
return this;
}
/**
* @param resourceGroupName Name of the resource group that contains the managed HSM pool.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
public GetMHSMPrivateEndpointConnectionPlainArgs build() {
if ($.name == null) {
throw new MissingRequiredPropertyException("GetMHSMPrivateEndpointConnectionPlainArgs", "name");
}
if ($.privateEndpointConnectionName == null) {
throw new MissingRequiredPropertyException("GetMHSMPrivateEndpointConnectionPlainArgs", "privateEndpointConnectionName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetMHSMPrivateEndpointConnectionPlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy