azure-native.hardwaresecuritymodules.CloudHsmCluster
Resource information with extended details. Azure REST API version: 2022-08-31-preview.
Other available API versions: 2023-12-10-preview, 2024-06-30-preview.
Example Usage
CloudHsmCluster_CreateOrUpdate_MaximumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var cloudHsmCluster = new AzureNative.HardwareSecurityModules.CloudHsmCluster("cloudHsmCluster", new()
    {
        CloudHsmClusterName = "chsm1",
        Location = "eastus2",
        ResourceGroupName = "rgcloudhsm",
        SecurityDomain = new AzureNative.HardwareSecurityModules.Inputs.CloudHsmClusterSecurityDomainPropertiesArgs
        {
            FipsState = 2,
        },
        Sku = new AzureNative.HardwareSecurityModules.Inputs.CloudHsmClusterSkuArgs
        {
            Family = AzureNative.HardwareSecurityModules.CloudHsmClusterSkuFamily.B,
            Name = AzureNative.HardwareSecurityModules.CloudHsmClusterSkuName.Standard_B1,
        },
        Tags = 
        {
            { "Dept", "hsm" },
            { "Environment", "dogfood" },
        },
    });
});
package main
import (
	hardwaresecuritymodules "github.com/pulumi/pulumi-azure-native-sdk/hardwaresecuritymodules/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := hardwaresecuritymodules.NewCloudHsmCluster(ctx, "cloudHsmCluster", &hardwaresecuritymodules.CloudHsmClusterArgs{
			CloudHsmClusterName: pulumi.String("chsm1"),
			Location:            pulumi.String("eastus2"),
			ResourceGroupName:   pulumi.String("rgcloudhsm"),
			SecurityDomain: &hardwaresecuritymodules.CloudHsmClusterSecurityDomainPropertiesArgs{
				FipsState: pulumi.Int(2),
			},
			Sku: &hardwaresecuritymodules.CloudHsmClusterSkuArgs{
				Family: pulumi.String(hardwaresecuritymodules.CloudHsmClusterSkuFamilyB),
				Name:   hardwaresecuritymodules.CloudHsmClusterSkuName_Standard_B1,
			},
			Tags: pulumi.StringMap{
				"Dept":        pulumi.String("hsm"),
				"Environment": pulumi.String("dogfood"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.hardwaresecuritymodules.CloudHsmCluster;
import com.pulumi.azurenative.hardwaresecuritymodules.CloudHsmClusterArgs;
import com.pulumi.azurenative.hardwaresecuritymodules.inputs.CloudHsmClusterSecurityDomainPropertiesArgs;
import com.pulumi.azurenative.hardwaresecuritymodules.inputs.CloudHsmClusterSkuArgs;
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 cloudHsmCluster = new CloudHsmCluster("cloudHsmCluster", CloudHsmClusterArgs.builder()
            .cloudHsmClusterName("chsm1")
            .location("eastus2")
            .resourceGroupName("rgcloudhsm")
            .securityDomain(CloudHsmClusterSecurityDomainPropertiesArgs.builder()
                .fipsState(2)
                .build())
            .sku(CloudHsmClusterSkuArgs.builder()
                .family("B")
                .name("Standard_B1")
                .build())
            .tags(Map.ofEntries(
                Map.entry("Dept", "hsm"),
                Map.entry("Environment", "dogfood")
            ))
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const cloudHsmCluster = new azure_native.hardwaresecuritymodules.CloudHsmCluster("cloudHsmCluster", {
    cloudHsmClusterName: "chsm1",
    location: "eastus2",
    resourceGroupName: "rgcloudhsm",
    securityDomain: {
        fipsState: 2,
    },
    sku: {
        family: azure_native.hardwaresecuritymodules.CloudHsmClusterSkuFamily.B,
        name: azure_native.hardwaresecuritymodules.CloudHsmClusterSkuName.Standard_B1,
    },
    tags: {
        Dept: "hsm",
        Environment: "dogfood",
    },
});
import pulumi
import pulumi_azure_native as azure_native
cloud_hsm_cluster = azure_native.hardwaresecuritymodules.CloudHsmCluster("cloudHsmCluster",
    cloud_hsm_cluster_name="chsm1",
    location="eastus2",
    resource_group_name="rgcloudhsm",
    security_domain={
        "fips_state": 2,
    },
    sku={
        "family": azure_native.hardwaresecuritymodules.CloudHsmClusterSkuFamily.B,
        "name": azure_native.hardwaresecuritymodules.CloudHsmClusterSkuName.STANDARD_B1,
    },
    tags={
        "Dept": "hsm",
        "Environment": "dogfood",
    })
resources:
  cloudHsmCluster:
    type: azure-native:hardwaresecuritymodules:CloudHsmCluster
    properties:
      cloudHsmClusterName: chsm1
      location: eastus2
      resourceGroupName: rgcloudhsm
      securityDomain:
        fipsState: 2
      sku:
        family: B
        name: Standard_B1
      tags:
        Dept: hsm
        Environment: dogfood
Create CloudHsmCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CloudHsmCluster(name: string, args: CloudHsmClusterArgs, opts?: CustomResourceOptions);@overload
def CloudHsmCluster(resource_name: str,
                    args: CloudHsmClusterArgs,
                    opts: Optional[ResourceOptions] = None)
@overload
def CloudHsmCluster(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    resource_group_name: Optional[str] = None,
                    auto_generated_domain_name_label_scope: Optional[str] = None,
                    cloud_hsm_cluster_name: Optional[str] = None,
                    hsms: Optional[Sequence[CloudHsmPropertiesArgs]] = None,
                    location: Optional[str] = None,
                    private_endpoint_connections: Optional[Sequence[PrivateEndpointConnectionArgs]] = None,
                    provisioning_state: Optional[Union[str, ProvisioningState]] = None,
                    public_network_access: Optional[str] = None,
                    security_domain: Optional[CloudHsmClusterSecurityDomainPropertiesArgs] = None,
                    sku: Optional[CloudHsmClusterSkuArgs] = None,
                    tags: Optional[Mapping[str, str]] = None)func NewCloudHsmCluster(ctx *Context, name string, args CloudHsmClusterArgs, opts ...ResourceOption) (*CloudHsmCluster, error)public CloudHsmCluster(string name, CloudHsmClusterArgs args, CustomResourceOptions? opts = null)
public CloudHsmCluster(String name, CloudHsmClusterArgs args)
public CloudHsmCluster(String name, CloudHsmClusterArgs args, CustomResourceOptions options)
type: azure-native:hardwaresecuritymodules:CloudHsmCluster
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args CloudHsmClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args CloudHsmClusterArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args CloudHsmClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CloudHsmClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CloudHsmClusterArgs
- 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 cloudHsmClusterResource = new AzureNative.HardwareSecurityModules.CloudHsmCluster("cloudHsmClusterResource", new()
{
    ResourceGroupName = "string",
    AutoGeneratedDomainNameLabelScope = "string",
    CloudHsmClusterName = "string",
    Hsms = new[]
    {
        new AzureNative.HardwareSecurityModules.Inputs.CloudHsmPropertiesArgs
        {
            Fqdn = "string",
            State = "string",
            StateMessage = "string",
        },
    },
    Location = "string",
    PrivateEndpointConnections = new[]
    {
        new AzureNative.HardwareSecurityModules.Inputs.PrivateEndpointConnectionArgs
        {
            PrivateLinkServiceConnectionState = new AzureNative.HardwareSecurityModules.Inputs.PrivateLinkServiceConnectionStateArgs
            {
                ActionsRequired = "string",
                Description = "string",
                Status = "string",
            },
            Etag = "string",
        },
    },
    ProvisioningState = "string",
    PublicNetworkAccess = "string",
    SecurityDomain = new AzureNative.HardwareSecurityModules.Inputs.CloudHsmClusterSecurityDomainPropertiesArgs
    {
        ActivationStatus = "string",
        FipsState = 0,
    },
    Sku = new AzureNative.HardwareSecurityModules.Inputs.CloudHsmClusterSkuArgs
    {
        Family = "string",
        Name = AzureNative.HardwareSecurityModules.CloudHsmClusterSkuName.Standard_B1,
        Capacity = 0,
    },
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := hardwaresecuritymodules.NewCloudHsmCluster(ctx, "cloudHsmClusterResource", &hardwaresecuritymodules.CloudHsmClusterArgs{
	ResourceGroupName:                 pulumi.String("string"),
	AutoGeneratedDomainNameLabelScope: pulumi.String("string"),
	CloudHsmClusterName:               pulumi.String("string"),
	Hsms: hardwaresecuritymodules.CloudHsmPropertiesArray{
		&hardwaresecuritymodules.CloudHsmPropertiesArgs{
			Fqdn:         pulumi.String("string"),
			State:        pulumi.String("string"),
			StateMessage: pulumi.String("string"),
		},
	},
	Location: pulumi.String("string"),
	PrivateEndpointConnections: hardwaresecuritymodules.PrivateEndpointConnectionArray{
		&hardwaresecuritymodules.PrivateEndpointConnectionArgs{
			PrivateLinkServiceConnectionState: &hardwaresecuritymodules.PrivateLinkServiceConnectionStateArgs{
				ActionsRequired: pulumi.String("string"),
				Description:     pulumi.String("string"),
				Status:          pulumi.String("string"),
			},
			Etag: pulumi.String("string"),
		},
	},
	ProvisioningState:   pulumi.String("string"),
	PublicNetworkAccess: pulumi.String("string"),
	SecurityDomain: &hardwaresecuritymodules.CloudHsmClusterSecurityDomainPropertiesArgs{
		ActivationStatus: pulumi.String("string"),
		FipsState:        pulumi.Int(0),
	},
	Sku: &hardwaresecuritymodules.CloudHsmClusterSkuArgs{
		Family:   pulumi.String("string"),
		Name:     hardwaresecuritymodules.CloudHsmClusterSkuName_Standard_B1,
		Capacity: pulumi.Int(0),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var cloudHsmClusterResource = new CloudHsmCluster("cloudHsmClusterResource", CloudHsmClusterArgs.builder()
    .resourceGroupName("string")
    .autoGeneratedDomainNameLabelScope("string")
    .cloudHsmClusterName("string")
    .hsms(CloudHsmPropertiesArgs.builder()
        .fqdn("string")
        .state("string")
        .stateMessage("string")
        .build())
    .location("string")
    .privateEndpointConnections(PrivateEndpointConnectionArgs.builder()
        .privateLinkServiceConnectionState(PrivateLinkServiceConnectionStateArgs.builder()
            .actionsRequired("string")
            .description("string")
            .status("string")
            .build())
        .etag("string")
        .build())
    .provisioningState("string")
    .publicNetworkAccess("string")
    .securityDomain(CloudHsmClusterSecurityDomainPropertiesArgs.builder()
        .activationStatus("string")
        .fipsState(0)
        .build())
    .sku(CloudHsmClusterSkuArgs.builder()
        .family("string")
        .name("Standard_B1")
        .capacity(0)
        .build())
    .tags(Map.of("string", "string"))
    .build());
cloud_hsm_cluster_resource = azure_native.hardwaresecuritymodules.CloudHsmCluster("cloudHsmClusterResource",
    resource_group_name="string",
    auto_generated_domain_name_label_scope="string",
    cloud_hsm_cluster_name="string",
    hsms=[{
        "fqdn": "string",
        "state": "string",
        "state_message": "string",
    }],
    location="string",
    private_endpoint_connections=[{
        "private_link_service_connection_state": {
            "actions_required": "string",
            "description": "string",
            "status": "string",
        },
        "etag": "string",
    }],
    provisioning_state="string",
    public_network_access="string",
    security_domain={
        "activation_status": "string",
        "fips_state": 0,
    },
    sku={
        "family": "string",
        "name": azure_native.hardwaresecuritymodules.CloudHsmClusterSkuName.STANDARD_B1,
        "capacity": 0,
    },
    tags={
        "string": "string",
    })
const cloudHsmClusterResource = new azure_native.hardwaresecuritymodules.CloudHsmCluster("cloudHsmClusterResource", {
    resourceGroupName: "string",
    autoGeneratedDomainNameLabelScope: "string",
    cloudHsmClusterName: "string",
    hsms: [{
        fqdn: "string",
        state: "string",
        stateMessage: "string",
    }],
    location: "string",
    privateEndpointConnections: [{
        privateLinkServiceConnectionState: {
            actionsRequired: "string",
            description: "string",
            status: "string",
        },
        etag: "string",
    }],
    provisioningState: "string",
    publicNetworkAccess: "string",
    securityDomain: {
        activationStatus: "string",
        fipsState: 0,
    },
    sku: {
        family: "string",
        name: azure_native.hardwaresecuritymodules.CloudHsmClusterSkuName.Standard_B1,
        capacity: 0,
    },
    tags: {
        string: "string",
    },
});
type: azure-native:hardwaresecuritymodules:CloudHsmCluster
properties:
    autoGeneratedDomainNameLabelScope: string
    cloudHsmClusterName: string
    hsms:
        - fqdn: string
          state: string
          stateMessage: string
    location: string
    privateEndpointConnections:
        - etag: string
          privateLinkServiceConnectionState:
            actionsRequired: string
            description: string
            status: string
    provisioningState: string
    publicNetworkAccess: string
    resourceGroupName: string
    securityDomain:
        activationStatus: string
        fipsState: 0
    sku:
        capacity: 0
        family: string
        name: Standard_B1
    tags:
        string: string
CloudHsmCluster 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 CloudHsmCluster resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AutoGenerated stringDomain Name Label Scope 
- The Cloud HSM Cluster's auto-generated Domain Name Label Scope
- CloudHsm stringCluster Name 
- 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.
- Hsms
List<Pulumi.Azure Native. Hardware Security Modules. Inputs. Cloud Hsm Properties> 
- An array of Cloud HSM Cluster's HSMs
- Location string
- The geo-location where the resource lives
- PrivateEndpoint List<Pulumi.Connections Azure Native. Hardware Security Modules. Inputs. Private Endpoint Connection> 
- List of private endpoint connection resources These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- ProvisioningState string | Pulumi.Azure Native. Hardware Security Modules. Provisioning State 
- The Cloud HSM Cluster's provisioningState
- PublicNetwork stringAccess 
- The Cloud HSM Cluster public network access
- SecurityDomain Pulumi.Azure Native. Hardware Security Modules. Inputs. Cloud Hsm Cluster Security Domain Properties 
- Security domain properties information for Cloud HSM cluster
- Sku
Pulumi.Azure Native. Hardware Security Modules. Inputs. Cloud Hsm Cluster Sku 
- SKU details
- Dictionary<string, string>
- Resource tags.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AutoGenerated stringDomain Name Label Scope 
- The Cloud HSM Cluster's auto-generated Domain Name Label Scope
- CloudHsm stringCluster Name 
- 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.
- Hsms
[]CloudHsm Properties Args 
- An array of Cloud HSM Cluster's HSMs
- Location string
- The geo-location where the resource lives
- PrivateEndpoint []PrivateConnections Endpoint Connection Args 
- List of private endpoint connection resources These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- ProvisioningState string | ProvisioningState 
- The Cloud HSM Cluster's provisioningState
- PublicNetwork stringAccess 
- The Cloud HSM Cluster public network access
- SecurityDomain CloudHsm Cluster Security Domain Properties Args 
- Security domain properties information for Cloud HSM cluster
- Sku
CloudHsm Cluster Sku Args 
- SKU details
- map[string]string
- Resource tags.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- autoGenerated StringDomain Name Label Scope 
- The Cloud HSM Cluster's auto-generated Domain Name Label Scope
- cloudHsm StringCluster Name 
- 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.
- hsms
List<CloudHsm Properties> 
- An array of Cloud HSM Cluster's HSMs
- location String
- The geo-location where the resource lives
- privateEndpoint List<PrivateConnections Endpoint Connection> 
- List of private endpoint connection resources These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- provisioningState String | ProvisioningState 
- The Cloud HSM Cluster's provisioningState
- publicNetwork StringAccess 
- The Cloud HSM Cluster public network access
- securityDomain CloudHsm Cluster Security Domain Properties 
- Security domain properties information for Cloud HSM cluster
- sku
CloudHsm Cluster Sku 
- SKU details
- Map<String,String>
- Resource tags.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- autoGenerated stringDomain Name Label Scope 
- The Cloud HSM Cluster's auto-generated Domain Name Label Scope
- cloudHsm stringCluster Name 
- 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.
- hsms
CloudHsm Properties[] 
- An array of Cloud HSM Cluster's HSMs
- location string
- The geo-location where the resource lives
- privateEndpoint PrivateConnections Endpoint Connection[] 
- List of private endpoint connection resources These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- provisioningState string | ProvisioningState 
- The Cloud HSM Cluster's provisioningState
- publicNetwork stringAccess 
- The Cloud HSM Cluster public network access
- securityDomain CloudHsm Cluster Security Domain Properties 
- Security domain properties information for Cloud HSM cluster
- sku
CloudHsm Cluster Sku 
- SKU details
- {[key: string]: string}
- Resource tags.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- auto_generated_ strdomain_ name_ label_ scope 
- The Cloud HSM Cluster's auto-generated Domain Name Label Scope
- cloud_hsm_ strcluster_ name 
- 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.
- hsms
Sequence[CloudHsm Properties Args] 
- An array of Cloud HSM Cluster's HSMs
- location str
- The geo-location where the resource lives
- private_endpoint_ Sequence[Privateconnections Endpoint Connection Args] 
- List of private endpoint connection resources These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- provisioning_state str | ProvisioningState 
- The Cloud HSM Cluster's provisioningState
- public_network_ straccess 
- The Cloud HSM Cluster public network access
- security_domain CloudHsm Cluster Security Domain Properties Args 
- Security domain properties information for Cloud HSM cluster
- sku
CloudHsm Cluster Sku Args 
- SKU details
- Mapping[str, str]
- Resource tags.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- autoGenerated StringDomain Name Label Scope 
- The Cloud HSM Cluster's auto-generated Domain Name Label Scope
- cloudHsm StringCluster Name 
- 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.
- hsms List<Property Map>
- An array of Cloud HSM Cluster's HSMs
- location String
- The geo-location where the resource lives
- privateEndpoint List<Property Map>Connections 
- List of private endpoint connection resources These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- provisioningState String | "Provisioning" | "Succeeded" | "Failed" | "Deleting" | "Canceled"
- The Cloud HSM Cluster's provisioningState
- publicNetwork StringAccess 
- The Cloud HSM Cluster public network access
- securityDomain Property Map
- Security domain properties information for Cloud HSM cluster
- sku Property Map
- SKU details
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the CloudHsmCluster resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData Pulumi.Azure Native. Hardware Security Modules. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
CloudHsmClusterSecurityDomainProperties, CloudHsmClusterSecurityDomainPropertiesArgs            
- ActivationStatus string
- status of security domain activation
- FipsState int
- FIPS state information for security domain
- ActivationStatus string
- status of security domain activation
- FipsState int
- FIPS state information for security domain
- activationStatus String
- status of security domain activation
- fipsState Integer
- FIPS state information for security domain
- activationStatus string
- status of security domain activation
- fipsState number
- FIPS state information for security domain
- activation_status str
- status of security domain activation
- fips_state int
- FIPS state information for security domain
- activationStatus String
- status of security domain activation
- fipsState Number
- FIPS state information for security domain
CloudHsmClusterSecurityDomainPropertiesResponse, CloudHsmClusterSecurityDomainPropertiesResponseArgs              
- ActivationStatus string
- status of security domain activation
- FipsState int
- FIPS state information for security domain
- ActivationStatus string
- status of security domain activation
- FipsState int
- FIPS state information for security domain
- activationStatus String
- status of security domain activation
- fipsState Integer
- FIPS state information for security domain
- activationStatus string
- status of security domain activation
- fipsState number
- FIPS state information for security domain
- activation_status str
- status of security domain activation
- fips_state int
- FIPS state information for security domain
- activationStatus String
- status of security domain activation
- fipsState Number
- FIPS state information for security domain
CloudHsmClusterSku, CloudHsmClusterSkuArgs        
- Family
string | Pulumi.Azure Native. Hardware Security Modules. Cloud Hsm Cluster Sku Family 
- Sku family of the Cloud HSM Cluster
- Name
Pulumi.Azure Native. Hardware Security Modules. Cloud Hsm Cluster Sku Name 
- Sku name of the Cloud HSM Cluster
- Capacity int
- Sku capacity
- Family
string | CloudHsm Cluster Sku Family 
- Sku family of the Cloud HSM Cluster
- Name
CloudHsm Cluster Sku Name 
- Sku name of the Cloud HSM Cluster
- Capacity int
- Sku capacity
- family
String | CloudHsm Cluster Sku Family 
- Sku family of the Cloud HSM Cluster
- name
CloudHsm Cluster Sku Name 
- Sku name of the Cloud HSM Cluster
- capacity Integer
- Sku capacity
- family
string | CloudHsm Cluster Sku Family 
- Sku family of the Cloud HSM Cluster
- name
CloudHsm Cluster Sku Name 
- Sku name of the Cloud HSM Cluster
- capacity number
- Sku capacity
- family
str | CloudHsm Cluster Sku Family 
- Sku family of the Cloud HSM Cluster
- name
CloudHsm Cluster Sku Name 
- Sku name of the Cloud HSM Cluster
- capacity int
- Sku capacity
- family String | "B"
- Sku family of the Cloud HSM Cluster
- name "Standard_B1" | "Standard B10"
- Sku name of the Cloud HSM Cluster
- capacity Number
- Sku capacity
CloudHsmClusterSkuFamily, CloudHsmClusterSkuFamilyArgs          
- B
- B
- CloudHsm Cluster Sku Family B 
- B
- B
- B
- B
- B
- B
- B
- "B"
- B
CloudHsmClusterSkuName, CloudHsmClusterSkuNameArgs          
- Standard_B1
- Standard_B1
- Standard_B10
- Standard B10
- CloudHsm Cluster Sku Name_Standard_B1 
- Standard_B1
- CloudHsm Cluster Sku Name_Standard_B10 
- Standard B10
- Standard_B1
- Standard_B1
- Standard_B10
- Standard B10
- Standard_B1
- Standard_B1
- Standard_B10
- Standard B10
- STANDARD_B1
- Standard_B1
- STANDARD_B10
- Standard B10
- "Standard_B1"
- Standard_B1
- "Standard B10"
- Standard B10
CloudHsmClusterSkuResponse, CloudHsmClusterSkuResponseArgs          
CloudHsmProperties, CloudHsmPropertiesArgs      
- Fqdn string
- FQDN of the Cloud HSM
- State string
- The Cloud HSM State
- StateMessage string
- The Cloud HSM State message
- Fqdn string
- FQDN of the Cloud HSM
- State string
- The Cloud HSM State
- StateMessage string
- The Cloud HSM State message
- fqdn String
- FQDN of the Cloud HSM
- state String
- The Cloud HSM State
- stateMessage String
- The Cloud HSM State message
- fqdn string
- FQDN of the Cloud HSM
- state string
- The Cloud HSM State
- stateMessage string
- The Cloud HSM State message
- fqdn str
- FQDN of the Cloud HSM
- state str
- The Cloud HSM State
- state_message str
- The Cloud HSM State message
- fqdn String
- FQDN of the Cloud HSM
- state String
- The Cloud HSM State
- stateMessage String
- The Cloud HSM State message
CloudHsmPropertiesResponse, CloudHsmPropertiesResponseArgs        
- Fqdn string
- FQDN of the Cloud HSM
- State string
- The Cloud HSM State
- StateMessage string
- The Cloud HSM State message
- Fqdn string
- FQDN of the Cloud HSM
- State string
- The Cloud HSM State
- StateMessage string
- The Cloud HSM State message
- fqdn String
- FQDN of the Cloud HSM
- state String
- The Cloud HSM State
- stateMessage String
- The Cloud HSM State message
- fqdn string
- FQDN of the Cloud HSM
- state string
- The Cloud HSM State
- stateMessage string
- The Cloud HSM State message
- fqdn str
- FQDN of the Cloud HSM
- state str
- The Cloud HSM State
- state_message str
- The Cloud HSM State message
- fqdn String
- FQDN of the Cloud HSM
- state String
- The Cloud HSM State
- stateMessage String
- The Cloud HSM State message
PrivateEndpointConnection, PrivateEndpointConnectionArgs      
- PrivateLink Pulumi.Service Connection State Azure Native. Hardware Security Modules. Inputs. Private Link Service Connection State 
- A collection of information about the state of the connection between service consumer and provider.
- Etag string
- Modified whenever there is a change in the state of private endpoint connection.
- PrivateLink PrivateService Connection State Link Service Connection State 
- A collection of information about the state of the connection between service consumer and provider.
- Etag string
- Modified whenever there is a change in the state of private endpoint connection.
- privateLink PrivateService Connection State Link Service Connection State 
- A collection of information about the state of the connection between service consumer and provider.
- etag String
- Modified whenever there is a change in the state of private endpoint connection.
- privateLink PrivateService Connection State Link Service Connection State 
- A collection of information about the state of the connection between service consumer and provider.
- etag string
- Modified whenever there is a change in the state of private endpoint connection.
- private_link_ Privateservice_ connection_ state Link Service Connection State 
- A collection of information about the state of the connection between service consumer and provider.
- etag str
- Modified whenever there is a change in the state of private endpoint connection.
- privateLink Property MapService Connection State 
- A collection of information about the state of the connection between service consumer and provider.
- etag String
- Modified whenever there is a change in the state of private endpoint connection.
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs        
- GroupIds List<string>
- The group ids for the private endpoint resource.
- Id string
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- Name string
- The name of the resource
- PrivateLink Pulumi.Service Connection State Azure Native. Hardware Security Modules. Inputs. Private Link Service Connection State Response 
- A collection of information about the state of the connection between service consumer and provider.
- ProvisioningState string
- The provisioning state of the private endpoint connection resource.
- SystemData Pulumi.Azure Native. Hardware Security Modules. Inputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Etag string
- Modified whenever there is a change in the state of private endpoint connection.
- PrivateEndpoint Pulumi.Azure Native. Hardware Security Modules. Inputs. Private Endpoint Response 
- The private endpoint resource.
- GroupIds []string
- The group ids for the private endpoint resource.
- Id string
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- Name string
- The name of the resource
- PrivateLink PrivateService Connection State Link Service Connection State Response 
- A collection of information about the state of the connection between service consumer and provider.
- ProvisioningState string
- The provisioning state of the private endpoint connection resource.
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Etag string
- Modified whenever there is a change in the state of private endpoint connection.
- PrivateEndpoint PrivateEndpoint Response 
- The private endpoint resource.
- groupIds List<String>
- The group ids for the private endpoint resource.
- id String
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name String
- The name of the resource
- privateLink PrivateService Connection State Link Service Connection State Response 
- A collection of information about the state of the connection between service consumer and provider.
- provisioningState String
- The provisioning state of the private endpoint connection resource.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag String
- Modified whenever there is a change in the state of private endpoint connection.
- privateEndpoint PrivateEndpoint Response 
- The private endpoint resource.
- groupIds string[]
- The group ids for the private endpoint resource.
- id string
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name string
- The name of the resource
- privateLink PrivateService Connection State Link Service Connection State Response 
- A collection of information about the state of the connection between service consumer and provider.
- provisioningState string
- The provisioning state of the private endpoint connection resource.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag string
- Modified whenever there is a change in the state of private endpoint connection.
- privateEndpoint PrivateEndpoint Response 
- The private endpoint resource.
- group_ids Sequence[str]
- The group ids for the private endpoint resource.
- id str
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name str
- The name of the resource
- private_link_ Privateservice_ connection_ state Link Service Connection State Response 
- A collection of information about the state of the connection between service consumer and provider.
- provisioning_state str
- The provisioning state of the private endpoint connection resource.
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag str
- Modified whenever there is a change in the state of private endpoint connection.
- private_endpoint PrivateEndpoint Response 
- The private endpoint resource.
- groupIds List<String>
- The group ids for the private endpoint resource.
- id String
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name String
- The name of the resource
- privateLink Property MapService Connection State 
- A collection of information about the state of the connection between service consumer and provider.
- provisioningState String
- The provisioning state of the private endpoint connection resource.
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag String
- Modified whenever there is a change in the state of private endpoint connection.
- privateEndpoint Property Map
- The private endpoint resource.
PrivateEndpointResponse, PrivateEndpointResponseArgs      
- Id string
- The ARM identifier for private endpoint.
- Id string
- The ARM identifier for private endpoint.
- id String
- The ARM identifier for private endpoint.
- id string
- The ARM identifier for private endpoint.
- id str
- The ARM identifier for private endpoint.
- id String
- The ARM identifier for private endpoint.
PrivateEndpointServiceConnectionStatus, PrivateEndpointServiceConnectionStatusArgs          
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- PrivateEndpoint Service Connection Status Pending 
- Pending
- PrivateEndpoint Service Connection Status Approved 
- Approved
- PrivateEndpoint Service Connection Status Rejected 
- Rejected
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- PENDING
- Pending
- APPROVED
- Approved
- REJECTED
- Rejected
- "Pending"
- Pending
- "Approved"
- Approved
- "Rejected"
- Rejected
PrivateLinkServiceConnectionState, PrivateLinkServiceConnectionStateArgs          
- ActionsRequired string
- A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status
string | Pulumi.Azure Native. Hardware Security Modules. Private Endpoint Service Connection Status 
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- ActionsRequired string
- A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status
string | PrivateEndpoint Service Connection Status 
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actionsRequired String
- A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status
String | PrivateEndpoint Service Connection Status 
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actionsRequired string
- A message indicating if changes on the service provider require any updates on the consumer.
- description string
- The reason for approval/rejection of the connection.
- status
string | PrivateEndpoint Service Connection Status 
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions_required str
- A message indicating if changes on the service provider require any updates on the consumer.
- description str
- The reason for approval/rejection of the connection.
- status
str | PrivateEndpoint Service Connection Status 
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actionsRequired String
- A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String | "Pending" | "Approved" | "Rejected"
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs            
- ActionsRequired string
- A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- ActionsRequired string
- A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actionsRequired String
- A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actionsRequired string
- A message indicating if changes on the service provider require any updates on the consumer.
- description string
- The reason for approval/rejection of the connection.
- status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions_required str
- A message indicating if changes on the service provider require any updates on the consumer.
- description str
- The reason for approval/rejection of the connection.
- status str
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actionsRequired String
- A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
ProvisioningState, ProvisioningStateArgs    
- Provisioning
- Provisioning
- Succeeded
- Succeeded
- Failed
- Failed
- Deleting
- Deleting
- Canceled
- Canceled
- ProvisioningState Provisioning 
- Provisioning
- ProvisioningState Succeeded 
- Succeeded
- ProvisioningState Failed 
- Failed
- ProvisioningState Deleting 
- Deleting
- ProvisioningState Canceled 
- Canceled
- Provisioning
- Provisioning
- Succeeded
- Succeeded
- Failed
- Failed
- Deleting
- Deleting
- Canceled
- Canceled
- Provisioning
- Provisioning
- Succeeded
- Succeeded
- Failed
- Failed
- Deleting
- Deleting
- Canceled
- Canceled
- PROVISIONING
- Provisioning
- SUCCEEDED
- Succeeded
- FAILED
- Failed
- DELETING
- Deleting
- CANCELED
- Canceled
- "Provisioning"
- Provisioning
- "Succeeded"
- Succeeded
- "Failed"
- Failed
- "Deleting"
- Deleting
- "Canceled"
- Canceled
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of dedicated hsm resource creation (UTC).
- CreatedBy string
- The identity that created dedicated hsm resource.
- CreatedBy stringType 
- The type of identity that created dedicated hsm resource.
- LastModified stringAt 
- The timestamp of dedicated hsm resource last modification (UTC).
- LastModified stringBy 
- The identity that last modified dedicated hsm resource.
- LastModified stringBy Type 
- The type of identity that last modified dedicated hsm resource.
- CreatedAt string
- The timestamp of dedicated hsm resource creation (UTC).
- CreatedBy string
- The identity that created dedicated hsm resource.
- CreatedBy stringType 
- The type of identity that created dedicated hsm resource.
- LastModified stringAt 
- The timestamp of dedicated hsm resource last modification (UTC).
- LastModified stringBy 
- The identity that last modified dedicated hsm resource.
- LastModified stringBy Type 
- The type of identity that last modified dedicated hsm resource.
- createdAt String
- The timestamp of dedicated hsm resource creation (UTC).
- createdBy String
- The identity that created dedicated hsm resource.
- createdBy StringType 
- The type of identity that created dedicated hsm resource.
- lastModified StringAt 
- The timestamp of dedicated hsm resource last modification (UTC).
- lastModified StringBy 
- The identity that last modified dedicated hsm resource.
- lastModified StringBy Type 
- The type of identity that last modified dedicated hsm resource.
- createdAt string
- The timestamp of dedicated hsm resource creation (UTC).
- createdBy string
- The identity that created dedicated hsm resource.
- createdBy stringType 
- The type of identity that created dedicated hsm resource.
- lastModified stringAt 
- The timestamp of dedicated hsm resource last modification (UTC).
- lastModified stringBy 
- The identity that last modified dedicated hsm resource.
- lastModified stringBy Type 
- The type of identity that last modified dedicated hsm resource.
- created_at str
- The timestamp of dedicated hsm resource creation (UTC).
- created_by str
- The identity that created dedicated hsm resource.
- created_by_ strtype 
- The type of identity that created dedicated hsm resource.
- last_modified_ strat 
- The timestamp of dedicated hsm resource last modification (UTC).
- last_modified_ strby 
- The identity that last modified dedicated hsm resource.
- last_modified_ strby_ type 
- The type of identity that last modified dedicated hsm resource.
- createdAt String
- The timestamp of dedicated hsm resource creation (UTC).
- createdBy String
- The identity that created dedicated hsm resource.
- createdBy StringType 
- The type of identity that created dedicated hsm resource.
- lastModified StringAt 
- The timestamp of dedicated hsm resource last modification (UTC).
- lastModified StringBy 
- The identity that last modified dedicated hsm resource.
- lastModified StringBy Type 
- The type of identity that last modified dedicated hsm resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:hardwaresecuritymodules:CloudHsmCluster chsm1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HardwareSecurityModules/cloudHsmClusters/{cloudHsmClusterName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0