1. Packages
  2. Azure Native v2
  3. API Docs
  4. keyvault
  5. MHSMPrivateEndpointConnection
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.82.0 published on Friday, Jan 10, 2025 by Pulumi

azure-native-v2.keyvault.MHSMPrivateEndpointConnection

Explore with Pulumi AI

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

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var mhsmPrivateEndpointConnection = new AzureNative.KeyVault.MHSMPrivateEndpointConnection("mhsmPrivateEndpointConnection", new()
    {
        Name = "sample-mhsm",
        PrivateEndpointConnectionName = "sample-pec",
        PrivateLinkServiceConnectionState = new AzureNative.KeyVault.Inputs.MHSMPrivateLinkServiceConnectionStateArgs
        {
            Description = "My name is Joe and I'm approving this.",
            Status = AzureNative.KeyVault.PrivateEndpointServiceConnectionStatus.Approved,
        },
        ResourceGroupName = "sample-group",
    });

});
Copy
package main

import (
	keyvault "github.com/pulumi/pulumi-azure-native-sdk/keyvault/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := keyvault.NewMHSMPrivateEndpointConnection(ctx, "mhsmPrivateEndpointConnection", &keyvault.MHSMPrivateEndpointConnectionArgs{
			Name:                          pulumi.String("sample-mhsm"),
			PrivateEndpointConnectionName: pulumi.String("sample-pec"),
			PrivateLinkServiceConnectionState: &keyvault.MHSMPrivateLinkServiceConnectionStateArgs{
				Description: pulumi.String("My name is Joe and I'm approving this."),
				Status:      pulumi.String(keyvault.PrivateEndpointServiceConnectionStatusApproved),
			},
			ResourceGroupName: pulumi.String("sample-group"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const mhsmPrivateEndpointConnection = new azure_native.keyvault.MHSMPrivateEndpointConnection("mhsmPrivateEndpointConnection", {
    name: "sample-mhsm",
    privateEndpointConnectionName: "sample-pec",
    privateLinkServiceConnectionState: {
        description: "My name is Joe and I'm approving this.",
        status: azure_native.keyvault.PrivateEndpointServiceConnectionStatus.Approved,
    },
    resourceGroupName: "sample-group",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

mhsm_private_endpoint_connection = azure_native.keyvault.MHSMPrivateEndpointConnection("mhsmPrivateEndpointConnection",
    name="sample-mhsm",
    private_endpoint_connection_name="sample-pec",
    private_link_service_connection_state={
        "description": "My name is Joe and I'm approving this.",
        "status": azure_native.keyvault.PrivateEndpointServiceConnectionStatus.APPROVED,
    },
    resource_group_name="sample-group")
Copy
resources:
  mhsmPrivateEndpointConnection:
    type: azure-native:keyvault:MHSMPrivateEndpointConnection
    properties:
      name: sample-mhsm
      privateEndpointConnectionName: sample-pec
      privateLinkServiceConnectionState:
        description: My name is Joe and I'm approving this.
        status: Approved
      resourceGroupName: sample-group
Copy

Create MHSMPrivateEndpointConnection Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new MHSMPrivateEndpointConnection(name: string, args: MHSMPrivateEndpointConnectionArgs, opts?: CustomResourceOptions);
@overload
def MHSMPrivateEndpointConnection(resource_name: str,
                                  args: MHSMPrivateEndpointConnectionArgs,
                                  opts: Optional[ResourceOptions] = None)

@overload
def MHSMPrivateEndpointConnection(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  name: Optional[str] = None,
                                  resource_group_name: Optional[str] = None,
                                  location: Optional[str] = None,
                                  private_endpoint_connection_name: Optional[str] = None,
                                  private_link_service_connection_state: Optional[MHSMPrivateLinkServiceConnectionStateArgs] = None,
                                  sku: Optional[ManagedHsmSkuArgs] = None,
                                  tags: Optional[Mapping[str, str]] = None)
func NewMHSMPrivateEndpointConnection(ctx *Context, name string, args MHSMPrivateEndpointConnectionArgs, opts ...ResourceOption) (*MHSMPrivateEndpointConnection, error)
public MHSMPrivateEndpointConnection(string name, MHSMPrivateEndpointConnectionArgs args, CustomResourceOptions? opts = null)
public MHSMPrivateEndpointConnection(String name, MHSMPrivateEndpointConnectionArgs args)
public MHSMPrivateEndpointConnection(String name, MHSMPrivateEndpointConnectionArgs args, CustomResourceOptions options)
type: azure-native:keyvault:MHSMPrivateEndpointConnection
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. MHSMPrivateEndpointConnectionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. MHSMPrivateEndpointConnectionArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. MHSMPrivateEndpointConnectionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. MHSMPrivateEndpointConnectionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. MHSMPrivateEndpointConnectionArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var mhsmprivateEndpointConnectionResource = new AzureNative.Keyvault.MHSMPrivateEndpointConnection("mhsmprivateEndpointConnectionResource", new()
{
    Name = "string",
    ResourceGroupName = "string",
    Location = "string",
    PrivateEndpointConnectionName = "string",
    PrivateLinkServiceConnectionState = 
    {
        { "actionsRequired", "string" },
        { "description", "string" },
        { "status", "string" },
    },
    Sku = 
    {
        { "family", "string" },
        { "name", "Standard_B1" },
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := keyvault.NewMHSMPrivateEndpointConnection(ctx, "mhsmprivateEndpointConnectionResource", &keyvault.MHSMPrivateEndpointConnectionArgs{
	Name:                          "string",
	ResourceGroupName:             "string",
	Location:                      "string",
	PrivateEndpointConnectionName: "string",
	PrivateLinkServiceConnectionState: map[string]interface{}{
		"actionsRequired": "string",
		"description":     "string",
		"status":          "string",
	},
	Sku: map[string]interface{}{
		"family": "string",
		"name":   "Standard_B1",
	},
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var mhsmprivateEndpointConnectionResource = new MHSMPrivateEndpointConnection("mhsmprivateEndpointConnectionResource", MHSMPrivateEndpointConnectionArgs.builder()
    .name("string")
    .resourceGroupName("string")
    .location("string")
    .privateEndpointConnectionName("string")
    .privateLinkServiceConnectionState(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
mhsmprivate_endpoint_connection_resource = azure_native.keyvault.MHSMPrivateEndpointConnection("mhsmprivateEndpointConnectionResource",
    name=string,
    resource_group_name=string,
    location=string,
    private_endpoint_connection_name=string,
    private_link_service_connection_state={
        actionsRequired: string,
        description: string,
        status: string,
    },
    sku={
        family: string,
        name: Standard_B1,
    },
    tags={
        string: string,
    })
Copy
const mhsmprivateEndpointConnectionResource = new azure_native.keyvault.MHSMPrivateEndpointConnection("mhsmprivateEndpointConnectionResource", {
    name: "string",
    resourceGroupName: "string",
    location: "string",
    privateEndpointConnectionName: "string",
    privateLinkServiceConnectionState: {
        actionsRequired: "string",
        description: "string",
        status: "string",
    },
    sku: {
        family: "string",
        name: "Standard_B1",
    },
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:keyvault:MHSMPrivateEndpointConnection
properties:
    location: string
    name: string
    privateEndpointConnectionName: string
    privateLinkServiceConnectionState:
        actionsRequired: string
        description: string
        status: string
    resourceGroupName: string
    sku:
        family: string
        name: Standard_B1
    tags:
        string: string
Copy

MHSMPrivateEndpointConnection Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The MHSMPrivateEndpointConnection resource accepts the following input properties:

Name
This property is required.
Changes to this property will trigger replacement.
string
Name of the managed HSM Pool
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the resource group that contains the managed HSM pool.
Location Changes to this property will trigger replacement. string
The supported Azure location where the managed HSM Pool should be created.
PrivateEndpointConnectionName Changes to this property will trigger replacement. string
Name of the private endpoint connection associated with the managed hsm pool.
PrivateLinkServiceConnectionState Pulumi.AzureNative.KeyVault.Inputs.MHSMPrivateLinkServiceConnectionState
Approval state of the private link connection.
Sku Pulumi.AzureNative.KeyVault.Inputs.ManagedHsmSku
SKU details
Tags Dictionary<string, string>
Resource tags
Name
This property is required.
Changes to this property will trigger replacement.
string
Name of the managed HSM Pool
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the resource group that contains the managed HSM pool.
Location Changes to this property will trigger replacement. string
The supported Azure location where the managed HSM Pool should be created.
PrivateEndpointConnectionName Changes to this property will trigger replacement. string
Name of the private endpoint connection associated with the managed hsm pool.
PrivateLinkServiceConnectionState MHSMPrivateLinkServiceConnectionStateArgs
Approval state of the private link connection.
Sku ManagedHsmSkuArgs
SKU details
Tags map[string]string
Resource tags
name
This property is required.
Changes to this property will trigger replacement.
String
Name of the managed HSM Pool
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of the resource group that contains the managed HSM pool.
location Changes to this property will trigger replacement. String
The supported Azure location where the managed HSM Pool should be created.
privateEndpointConnectionName Changes to this property will trigger replacement. String
Name of the private endpoint connection associated with the managed hsm pool.
privateLinkServiceConnectionState MHSMPrivateLinkServiceConnectionState
Approval state of the private link connection.
sku ManagedHsmSku
SKU details
tags Map<String,String>
Resource tags
name
This property is required.
Changes to this property will trigger replacement.
string
Name of the managed HSM Pool
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the resource group that contains the managed HSM pool.
location Changes to this property will trigger replacement. string
The supported Azure location where the managed HSM Pool should be created.
privateEndpointConnectionName Changes to this property will trigger replacement. string
Name of the private endpoint connection associated with the managed hsm pool.
privateLinkServiceConnectionState MHSMPrivateLinkServiceConnectionState
Approval state of the private link connection.
sku ManagedHsmSku
SKU details
tags {[key: string]: string}
Resource tags
name
This property is required.
Changes to this property will trigger replacement.
str
Name of the managed HSM Pool
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
Name of the resource group that contains the managed HSM pool.
location Changes to this property will trigger replacement. str
The supported Azure location where the managed HSM Pool should be created.
private_endpoint_connection_name Changes to this property will trigger replacement. str
Name of the private endpoint connection associated with the managed hsm pool.
private_link_service_connection_state MHSMPrivateLinkServiceConnectionStateArgs
Approval state of the private link connection.
sku ManagedHsmSkuArgs
SKU details
tags Mapping[str, str]
Resource tags
name
This property is required.
Changes to this property will trigger replacement.
String
Name of the managed HSM Pool
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of the resource group that contains the managed HSM pool.
location Changes to this property will trigger replacement. String
The supported Azure location where the managed HSM Pool should be created.
privateEndpointConnectionName Changes to this property will trigger replacement. String
Name of the private endpoint connection associated with the managed hsm pool.
privateLinkServiceConnectionState Property Map
Approval state of the private link connection.
sku Property Map
SKU details
tags Map<String>
Resource tags

Outputs

All input properties are implicitly available as output properties. Additionally, the MHSMPrivateEndpointConnection resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
ProvisioningState string
Provisioning state of the private endpoint connection.
SystemData Pulumi.AzureNative.KeyVault.Outputs.SystemDataResponse
Metadata pertaining to creation and last modification of the key vault resource.
Type string
The resource type of the managed HSM Pool.
Etag string
Modified whenever there is a change in the state of private endpoint connection.
PrivateEndpoint Pulumi.AzureNative.KeyVault.Outputs.MHSMPrivateEndpointResponse
Properties of the private endpoint object.
Id string
The provider-assigned unique ID for this managed resource.
ProvisioningState string
Provisioning state of the private endpoint connection.
SystemData SystemDataResponse
Metadata pertaining to creation and last modification of the key vault resource.
Type string
The resource type of the managed HSM Pool.
Etag string
Modified whenever there is a change in the state of private endpoint connection.
PrivateEndpoint MHSMPrivateEndpointResponse
Properties of the private endpoint object.
id String
The provider-assigned unique ID for this managed resource.
provisioningState String
Provisioning state of the private endpoint connection.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the key vault resource.
type String
The resource type of the managed HSM Pool.
etag String
Modified whenever there is a change in the state of private endpoint connection.
privateEndpoint MHSMPrivateEndpointResponse
Properties of the private endpoint object.
id string
The provider-assigned unique ID for this managed resource.
provisioningState string
Provisioning state of the private endpoint connection.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the key vault resource.
type string
The resource type of the managed HSM Pool.
etag string
Modified whenever there is a change in the state of private endpoint connection.
privateEndpoint MHSMPrivateEndpointResponse
Properties of the private endpoint object.
id str
The provider-assigned unique ID for this managed resource.
provisioning_state str
Provisioning state of the private endpoint connection.
system_data SystemDataResponse
Metadata pertaining to creation and last modification of the key vault resource.
type str
The resource type of the managed HSM Pool.
etag str
Modified whenever there is a change in the state of private endpoint connection.
private_endpoint MHSMPrivateEndpointResponse
Properties of the private endpoint object.
id String
The provider-assigned unique ID for this managed resource.
provisioningState String
Provisioning state of the private endpoint connection.
systemData Property Map
Metadata pertaining to creation and last modification of the key vault resource.
type String
The resource type of the managed HSM Pool.
etag String
Modified whenever there is a change in the state of private endpoint connection.
privateEndpoint Property Map
Properties of the private endpoint object.

Supporting Types

ActionsRequired
, ActionsRequiredArgs

None
None
ActionsRequiredNone
None
None
None
None
None
NONE
None
"None"
None

MHSMPrivateEndpointResponse
, MHSMPrivateEndpointResponseArgs

Id This property is required. string
Full identifier of the private endpoint resource.
Id This property is required. string
Full identifier of the private endpoint resource.
id This property is required. String
Full identifier of the private endpoint resource.
id This property is required. string
Full identifier of the private endpoint resource.
id This property is required. str
Full identifier of the private endpoint resource.
id This property is required. String
Full identifier of the private endpoint resource.

MHSMPrivateLinkServiceConnectionState
, MHSMPrivateLinkServiceConnectionStateArgs

ActionsRequired string | Pulumi.AzureNative.KeyVault.ActionsRequired
A message indicating if changes on the service provider require any updates on the consumer.
Description string
The reason for approval or rejection.
Status string | Pulumi.AzureNative.KeyVault.PrivateEndpointServiceConnectionStatus
Indicates whether the connection has been approved, rejected or removed by the key vault owner.
ActionsRequired string | ActionsRequired
A message indicating if changes on the service provider require any updates on the consumer.
Description string
The reason for approval or rejection.
Status string | PrivateEndpointServiceConnectionStatus
Indicates whether the connection has been approved, rejected or removed by the key vault owner.
actionsRequired String | ActionsRequired
A message indicating if changes on the service provider require any updates on the consumer.
description String
The reason for approval or rejection.
status String | PrivateEndpointServiceConnectionStatus
Indicates whether the connection has been approved, rejected or removed by the key vault owner.
actionsRequired string | ActionsRequired
A message indicating if changes on the service provider require any updates on the consumer.
description string
The reason for approval or rejection.
status string | PrivateEndpointServiceConnectionStatus
Indicates whether the connection has been approved, rejected or removed by the key vault owner.
actions_required str | ActionsRequired
A message indicating if changes on the service provider require any updates on the consumer.
description str
The reason for approval or rejection.
status str | PrivateEndpointServiceConnectionStatus
Indicates whether the connection has been approved, rejected or removed by the key vault owner.
actionsRequired String | "None"
A message indicating if changes on the service provider require any updates on the consumer.
description String
The reason for approval or rejection.
status String | "Pending" | "Approved" | "Rejected" | "Disconnected"
Indicates whether the connection has been approved, rejected or removed by the key vault owner.

MHSMPrivateLinkServiceConnectionStateResponse
, MHSMPrivateLinkServiceConnectionStateResponseArgs

ActionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
Description string
The reason for approval or rejection.
Status string
Indicates whether the connection has been approved, rejected or removed by the key vault owner.
ActionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
Description string
The reason for approval or rejection.
Status string
Indicates whether the connection has been approved, rejected or removed by the key vault owner.
actionsRequired String
A message indicating if changes on the service provider require any updates on the consumer.
description String
The reason for approval or rejection.
status String
Indicates whether the connection has been approved, rejected or removed by the key vault owner.
actionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
description string
The reason for approval or rejection.
status string
Indicates whether the connection has been approved, rejected or removed by the key vault owner.
actions_required str
A message indicating if changes on the service provider require any updates on the consumer.
description str
The reason for approval or rejection.
status str
Indicates whether the connection has been approved, rejected or removed by the key vault owner.
actionsRequired String
A message indicating if changes on the service provider require any updates on the consumer.
description String
The reason for approval or rejection.
status String
Indicates whether the connection has been approved, rejected or removed by the key vault owner.

ManagedHsmSku
, ManagedHsmSkuArgs

Family This property is required. string | Pulumi.AzureNative.KeyVault.ManagedHsmSkuFamily
SKU Family of the managed HSM Pool
Name This property is required. Pulumi.AzureNative.KeyVault.ManagedHsmSkuName
SKU of the managed HSM Pool
Family This property is required. string | ManagedHsmSkuFamily
SKU Family of the managed HSM Pool
Name This property is required. ManagedHsmSkuName
SKU of the managed HSM Pool
family This property is required. String | ManagedHsmSkuFamily
SKU Family of the managed HSM Pool
name This property is required. ManagedHsmSkuName
SKU of the managed HSM Pool
family This property is required. string | ManagedHsmSkuFamily
SKU Family of the managed HSM Pool
name This property is required. ManagedHsmSkuName
SKU of the managed HSM Pool
family This property is required. str | ManagedHsmSkuFamily
SKU Family of the managed HSM Pool
name This property is required. ManagedHsmSkuName
SKU of the managed HSM Pool
family This property is required. String | "B"
SKU Family of the managed HSM Pool
name This property is required. "Standard_B1" | "Custom_B32" | "Custom_B6"
SKU of the managed HSM Pool

ManagedHsmSkuFamily
, ManagedHsmSkuFamilyArgs

B
B
ManagedHsmSkuFamilyB
B
B
B
B
B
B
B
"B"
B

ManagedHsmSkuName
, ManagedHsmSkuNameArgs

Standard_B1
Standard_B1
Custom_B32
Custom_B32
Custom_B6
Custom_B6
ManagedHsmSkuName_Standard_B1
Standard_B1
ManagedHsmSkuName_Custom_B32
Custom_B32
ManagedHsmSkuName_Custom_B6
Custom_B6
Standard_B1
Standard_B1
Custom_B32
Custom_B32
Custom_B6
Custom_B6
Standard_B1
Standard_B1
Custom_B32
Custom_B32
Custom_B6
Custom_B6
STANDARD_B1
Standard_B1
CUSTOM_B32
Custom_B32
CUSTOM_B6
Custom_B6
"Standard_B1"
Standard_B1
"Custom_B32"
Custom_B32
"Custom_B6"
Custom_B6

ManagedHsmSkuResponse
, ManagedHsmSkuResponseArgs

Family This property is required. string
SKU Family of the managed HSM Pool
Name This property is required. string
SKU of the managed HSM Pool
Family This property is required. string
SKU Family of the managed HSM Pool
Name This property is required. string
SKU of the managed HSM Pool
family This property is required. String
SKU Family of the managed HSM Pool
name This property is required. String
SKU of the managed HSM Pool
family This property is required. string
SKU Family of the managed HSM Pool
name This property is required. string
SKU of the managed HSM Pool
family This property is required. str
SKU Family of the managed HSM Pool
name This property is required. str
SKU of the managed HSM Pool
family This property is required. String
SKU Family of the managed HSM Pool
name This property is required. String
SKU of the managed HSM Pool

PrivateEndpointServiceConnectionStatus
, PrivateEndpointServiceConnectionStatusArgs

Pending
Pending
Approved
Approved
Rejected
Rejected
Disconnected
Disconnected
PrivateEndpointServiceConnectionStatusPending
Pending
PrivateEndpointServiceConnectionStatusApproved
Approved
PrivateEndpointServiceConnectionStatusRejected
Rejected
PrivateEndpointServiceConnectionStatusDisconnected
Disconnected
Pending
Pending
Approved
Approved
Rejected
Rejected
Disconnected
Disconnected
Pending
Pending
Approved
Approved
Rejected
Rejected
Disconnected
Disconnected
PENDING
Pending
APPROVED
Approved
REJECTED
Rejected
DISCONNECTED
Disconnected
"Pending"
Pending
"Approved"
Approved
"Rejected"
Rejected
"Disconnected"
Disconnected

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of the key vault resource creation (UTC).
CreatedBy string
The identity that created the key vault resource.
CreatedByType string
The type of identity that created the key vault resource.
LastModifiedAt string
The timestamp of the key vault resource last modification (UTC).
LastModifiedBy string
The identity that last modified the key vault resource.
LastModifiedByType string
The type of identity that last modified the key vault resource.
CreatedAt string
The timestamp of the key vault resource creation (UTC).
CreatedBy string
The identity that created the key vault resource.
CreatedByType string
The type of identity that created the key vault resource.
LastModifiedAt string
The timestamp of the key vault resource last modification (UTC).
LastModifiedBy string
The identity that last modified the key vault resource.
LastModifiedByType string
The type of identity that last modified the key vault resource.
createdAt String
The timestamp of the key vault resource creation (UTC).
createdBy String
The identity that created the key vault resource.
createdByType String
The type of identity that created the key vault resource.
lastModifiedAt String
The timestamp of the key vault resource last modification (UTC).
lastModifiedBy String
The identity that last modified the key vault resource.
lastModifiedByType String
The type of identity that last modified the key vault resource.
createdAt string
The timestamp of the key vault resource creation (UTC).
createdBy string
The identity that created the key vault resource.
createdByType string
The type of identity that created the key vault resource.
lastModifiedAt string
The timestamp of the key vault resource last modification (UTC).
lastModifiedBy string
The identity that last modified the key vault resource.
lastModifiedByType string
The type of identity that last modified the key vault resource.
created_at str
The timestamp of the key vault resource creation (UTC).
created_by str
The identity that created the key vault resource.
created_by_type str
The type of identity that created the key vault resource.
last_modified_at str
The timestamp of the key vault resource last modification (UTC).
last_modified_by str
The identity that last modified the key vault resource.
last_modified_by_type str
The type of identity that last modified the key vault resource.
createdAt String
The timestamp of the key vault resource creation (UTC).
createdBy String
The identity that created the key vault resource.
createdByType String
The type of identity that created the key vault resource.
lastModifiedAt String
The timestamp of the key vault resource last modification (UTC).
lastModifiedBy String
The identity that last modified the key vault resource.
lastModifiedByType String
The type of identity that last modified the key vault resource.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:keyvault:MHSMPrivateEndpointConnection sample-pec /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/managedHSMs/{name}/privateEndpointConnections/{privateEndpointConnectionName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0