All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.keyvault.MHSMPrivateEndpointConnection Maven / Gradle / Ivy

There is a newer version: 2.82.0
Show 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.keyvault;

import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.keyvault.MHSMPrivateEndpointConnectionArgs;
import com.pulumi.azurenative.keyvault.outputs.MHSMPrivateEndpointResponse;
import com.pulumi.azurenative.keyvault.outputs.MHSMPrivateLinkServiceConnectionStateResponse;
import com.pulumi.azurenative.keyvault.outputs.ManagedHsmSkuResponse;
import com.pulumi.azurenative.keyvault.outputs.SystemDataResponse;
import com.pulumi.core.Alias;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * Private endpoint connection resource.
 * Azure REST API version: 2023-02-01. Prior API version in Azure Native 1.x: 2021-06-01-preview.
 * 
 * Other available API versions: 2023-07-01, 2024-04-01-preview.
 * 
 * ## Example Usage
 * ### ManagedHsmPutPrivateEndpointConnection
 * 
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azurenative.keyvault.MHSMPrivateEndpointConnection;
 * import com.pulumi.azurenative.keyvault.MHSMPrivateEndpointConnectionArgs;
 * import com.pulumi.azurenative.keyvault.inputs.MHSMPrivateLinkServiceConnectionStateArgs;
 * import java.util.List;
 * import java.util.ArrayList;
 * import java.util.Map;
 * import java.io.File;
 * import java.nio.file.Files;
 * import java.nio.file.Paths;
 * 
 * public class App {
 *     public static void main(String[] args) {
 *         Pulumi.run(App::stack);
 *     }
 * 
 *     public static void stack(Context ctx) {
 *         var mhsmPrivateEndpointConnection = new MHSMPrivateEndpointConnection("mhsmPrivateEndpointConnection", MHSMPrivateEndpointConnectionArgs.builder()
 *             .name("sample-mhsm")
 *             .privateEndpointConnectionName("sample-pec")
 *             .privateLinkServiceConnectionState(MHSMPrivateLinkServiceConnectionStateArgs.builder()
 *                 .description("My name is Joe and I'm approving this.")
 *                 .status("Approved")
 *                 .build())
 *             .resourceGroupName("sample-group")
 *             .build());
 * 
 *     }
 * }
 * 
 * }
 * 
* * ## Import * * An existing resource can be imported using its type token, name, and identifier, e.g. * * ```sh * $ pulumi import azure-native:keyvault:MHSMPrivateEndpointConnection sample-pec /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/managedHSMs/{name}/privateEndpointConnections/{privateEndpointConnectionName} * ``` * */ @ResourceType(type="azure-native:keyvault:MHSMPrivateEndpointConnection") public class MHSMPrivateEndpointConnection extends com.pulumi.resources.CustomResource { /** * Modified whenever there is a change in the state of private endpoint connection. * */ @Export(name="etag", refs={String.class}, tree="[0]") private Output etag; /** * @return Modified whenever there is a change in the state of private endpoint connection. * */ public Output> etag() { return Codegen.optional(this.etag); } /** * The supported Azure location where the managed HSM Pool should be created. * */ @Export(name="location", refs={String.class}, tree="[0]") private Output location; /** * @return The supported Azure location where the managed HSM Pool should be created. * */ public Output> location() { return Codegen.optional(this.location); } /** * The name of the managed HSM Pool. * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return The name of the managed HSM Pool. * */ public Output name() { return this.name; } /** * Properties of the private endpoint object. * */ @Export(name="privateEndpoint", refs={MHSMPrivateEndpointResponse.class}, tree="[0]") private Output privateEndpoint; /** * @return Properties of the private endpoint object. * */ public Output> privateEndpoint() { return Codegen.optional(this.privateEndpoint); } /** * Approval state of the private link connection. * */ @Export(name="privateLinkServiceConnectionState", refs={MHSMPrivateLinkServiceConnectionStateResponse.class}, tree="[0]") private Output privateLinkServiceConnectionState; /** * @return Approval state of the private link connection. * */ public Output> privateLinkServiceConnectionState() { return Codegen.optional(this.privateLinkServiceConnectionState); } /** * Provisioning state of the private endpoint connection. * */ @Export(name="provisioningState", refs={String.class}, tree="[0]") private Output provisioningState; /** * @return Provisioning state of the private endpoint connection. * */ public Output provisioningState() { return this.provisioningState; } /** * SKU details * */ @Export(name="sku", refs={ManagedHsmSkuResponse.class}, tree="[0]") private Output sku; /** * @return SKU details * */ public Output> sku() { return Codegen.optional(this.sku); } /** * Metadata pertaining to creation and last modification of the key vault resource. * */ @Export(name="systemData", refs={SystemDataResponse.class}, tree="[0]") private Output systemData; /** * @return Metadata pertaining to creation and last modification of the key vault resource. * */ public Output systemData() { return this.systemData; } /** * Resource tags * */ @Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]") private Output> tags; /** * @return Resource tags * */ public Output>> tags() { return Codegen.optional(this.tags); } /** * The resource type of the managed HSM Pool. * */ @Export(name="type", refs={String.class}, tree="[0]") private Output type; /** * @return The resource type of the managed HSM Pool. * */ public Output type() { return this.type; } /** * * @param name The _unique_ name of the resulting resource. */ public MHSMPrivateEndpointConnection(java.lang.String name) { this(name, MHSMPrivateEndpointConnectionArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public MHSMPrivateEndpointConnection(java.lang.String name, MHSMPrivateEndpointConnectionArgs args) { this(name, args, null); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. * @param options A bag of options that control this resource's behavior. */ public MHSMPrivateEndpointConnection(java.lang.String name, MHSMPrivateEndpointConnectionArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:keyvault:MHSMPrivateEndpointConnection", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private MHSMPrivateEndpointConnection(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:keyvault:MHSMPrivateEndpointConnection", name, null, makeResourceOptions(options, id), false); } private static MHSMPrivateEndpointConnectionArgs makeArgs(MHSMPrivateEndpointConnectionArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? MHSMPrivateEndpointConnectionArgs.Empty : args; } private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) { var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder() .version(Utilities.getVersion()) .aliases(List.of( Output.of(Alias.builder().type("azure-native:keyvault/v20210401preview:MHSMPrivateEndpointConnection").build()), Output.of(Alias.builder().type("azure-native:keyvault/v20210601preview:MHSMPrivateEndpointConnection").build()), Output.of(Alias.builder().type("azure-native:keyvault/v20211001:MHSMPrivateEndpointConnection").build()), Output.of(Alias.builder().type("azure-native:keyvault/v20211101preview:MHSMPrivateEndpointConnection").build()), Output.of(Alias.builder().type("azure-native:keyvault/v20220201preview:MHSMPrivateEndpointConnection").build()), Output.of(Alias.builder().type("azure-native:keyvault/v20220701:MHSMPrivateEndpointConnection").build()), Output.of(Alias.builder().type("azure-native:keyvault/v20221101:MHSMPrivateEndpointConnection").build()), Output.of(Alias.builder().type("azure-native:keyvault/v20230201:MHSMPrivateEndpointConnection").build()), Output.of(Alias.builder().type("azure-native:keyvault/v20230701:MHSMPrivateEndpointConnection").build()), Output.of(Alias.builder().type("azure-native:keyvault/v20240401preview:MHSMPrivateEndpointConnection").build()) )) .build(); return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id); } /** * Get an existing Host resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param options Optional settings to control the behavior of the CustomResource. */ public static MHSMPrivateEndpointConnection get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new MHSMPrivateEndpointConnection(name, id, options); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy