1. Packages
  2. Azure Native
  3. API Docs
  4. hardwaresecuritymodules
  5. CloudHsmCluster
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

azure-native.hardwaresecuritymodules.CloudHsmCluster

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

    Resource information with extended details. Azure REST API version: 2022-08-31-preview.

    Other available API versions: 2023-12-10-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 (
    	"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 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=azure_native.hardwaresecuritymodules.CloudHsmClusterSecurityDomainPropertiesArgs(
            fips_state=2,
        ),
        sku=azure_native.hardwaresecuritymodules.CloudHsmClusterSkuArgs(
            family=azure_native.hardwaresecuritymodules.CloudHsmClusterSkuFamily.B,
            name=azure_native.hardwaresecuritymodules.CloudHsmClusterSkuName.STANDARD_B1,
        ),
        tags={
            "Dept": "hsm",
            "Environment": "dogfood",
        })
    
    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",
        },
    });
    
    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.

    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=[azure_native.hardwaresecuritymodules.CloudHsmPropertiesArgs(
            fqdn="string",
            state="string",
            state_message="string",
        )],
        location="string",
        private_endpoint_connections=[azure_native.hardwaresecuritymodules.PrivateEndpointConnectionArgs(
            private_link_service_connection_state=azure_native.hardwaresecuritymodules.PrivateLinkServiceConnectionStateArgs(
                actions_required="string",
                description="string",
                status="string",
            ),
            etag="string",
        )],
        provisioning_state="string",
        public_network_access="string",
        security_domain=azure_native.hardwaresecuritymodules.CloudHsmClusterSecurityDomainPropertiesArgs(
            activation_status="string",
            fips_state=0,
        ),
        sku=azure_native.hardwaresecuritymodules.CloudHsmClusterSkuArgs(
            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

    The CloudHsmCluster resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AutoGeneratedDomainNameLabelScope string
    The Cloud HSM Cluster's auto-generated Domain Name Label Scope
    CloudHsmClusterName string
    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.AzureNative.HardwareSecurityModules.Inputs.CloudHsmProperties>
    An array of Cloud HSM Cluster's HSMs
    Location string
    The geo-location where the resource lives
    PrivateEndpointConnections List<Pulumi.AzureNative.HardwareSecurityModules.Inputs.PrivateEndpointConnection>
    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.AzureNative.HardwareSecurityModules.ProvisioningState
    The Cloud HSM Cluster's provisioningState
    PublicNetworkAccess string
    The Cloud HSM Cluster public network access
    SecurityDomain Pulumi.AzureNative.HardwareSecurityModules.Inputs.CloudHsmClusterSecurityDomainProperties
    Security domain properties information for Cloud HSM cluster
    Sku Pulumi.AzureNative.HardwareSecurityModules.Inputs.CloudHsmClusterSku
    SKU details
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AutoGeneratedDomainNameLabelScope string
    The Cloud HSM Cluster's auto-generated Domain Name Label Scope
    CloudHsmClusterName string
    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 []CloudHsmPropertiesArgs
    An array of Cloud HSM Cluster's HSMs
    Location string
    The geo-location where the resource lives
    PrivateEndpointConnections []PrivateEndpointConnectionArgs
    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
    PublicNetworkAccess string
    The Cloud HSM Cluster public network access
    SecurityDomain CloudHsmClusterSecurityDomainPropertiesArgs
    Security domain properties information for Cloud HSM cluster
    Sku CloudHsmClusterSkuArgs
    SKU details
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    autoGeneratedDomainNameLabelScope String
    The Cloud HSM Cluster's auto-generated Domain Name Label Scope
    cloudHsmClusterName String
    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<CloudHsmProperties>
    An array of Cloud HSM Cluster's HSMs
    location String
    The geo-location where the resource lives
    privateEndpointConnections List<PrivateEndpointConnection>
    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
    publicNetworkAccess String
    The Cloud HSM Cluster public network access
    securityDomain CloudHsmClusterSecurityDomainProperties
    Security domain properties information for Cloud HSM cluster
    sku CloudHsmClusterSku
    SKU details
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    autoGeneratedDomainNameLabelScope string
    The Cloud HSM Cluster's auto-generated Domain Name Label Scope
    cloudHsmClusterName string
    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 CloudHsmProperties[]
    An array of Cloud HSM Cluster's HSMs
    location string
    The geo-location where the resource lives
    privateEndpointConnections PrivateEndpointConnection[]
    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
    publicNetworkAccess string
    The Cloud HSM Cluster public network access
    securityDomain CloudHsmClusterSecurityDomainProperties
    Security domain properties information for Cloud HSM cluster
    sku CloudHsmClusterSku
    SKU details
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    auto_generated_domain_name_label_scope str
    The Cloud HSM Cluster's auto-generated Domain Name Label Scope
    cloud_hsm_cluster_name str
    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[CloudHsmPropertiesArgs]
    An array of Cloud HSM Cluster's HSMs
    location str
    The geo-location where the resource lives
    private_endpoint_connections Sequence[PrivateEndpointConnectionArgs]
    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_access str
    The Cloud HSM Cluster public network access
    security_domain CloudHsmClusterSecurityDomainPropertiesArgs
    Security domain properties information for Cloud HSM cluster
    sku CloudHsmClusterSkuArgs
    SKU details
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    autoGeneratedDomainNameLabelScope String
    The Cloud HSM Cluster's auto-generated Domain Name Label Scope
    cloudHsmClusterName String
    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
    privateEndpointConnections List<Property Map>
    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
    publicNetworkAccess String
    The Cloud HSM Cluster public network access
    securityDomain Property Map
    Security domain properties information for Cloud HSM cluster
    sku Property Map
    SKU details
    tags 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.AzureNative.HardwareSecurityModules.Outputs.SystemDataResponse
    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 SystemDataResponse
    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 SystemDataResponse
    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 SystemDataResponse
    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 SystemDataResponse
    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 | CloudHsmClusterSkuFamily
    Sku family of the Cloud HSM Cluster
    Name CloudHsmClusterSkuName
    Sku name of the Cloud HSM Cluster
    Capacity int
    Sku capacity
    family String | CloudHsmClusterSkuFamily
    Sku family of the Cloud HSM Cluster
    name CloudHsmClusterSkuName
    Sku name of the Cloud HSM Cluster
    capacity Integer
    Sku capacity
    family string | CloudHsmClusterSkuFamily
    Sku family of the Cloud HSM Cluster
    name CloudHsmClusterSkuName
    Sku name of the Cloud HSM Cluster
    capacity number
    Sku capacity
    family str | CloudHsmClusterSkuFamily
    Sku family of the Cloud HSM Cluster
    name CloudHsmClusterSkuName
    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
    CloudHsmClusterSkuFamilyB
    B
    B
    B
    B
    B
    B
    B
    "B"
    B

    CloudHsmClusterSkuName, CloudHsmClusterSkuNameArgs

    Standard_B1
    Standard_B1
    Standard_B10
    Standard B10
    CloudHsmClusterSkuName_Standard_B1
    Standard_B1
    CloudHsmClusterSkuName_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

    Family string
    Sku family of the Cloud HSM Cluster
    Name string
    Sku name of the Cloud HSM Cluster
    Capacity int
    Sku capacity
    Family string
    Sku family of the Cloud HSM Cluster
    Name string
    Sku name of the Cloud HSM Cluster
    Capacity int
    Sku capacity
    family String
    Sku family of the Cloud HSM Cluster
    name String
    Sku name of the Cloud HSM Cluster
    capacity Integer
    Sku capacity
    family string
    Sku family of the Cloud HSM Cluster
    name string
    Sku name of the Cloud HSM Cluster
    capacity number
    Sku capacity
    family str
    Sku family of the Cloud HSM Cluster
    name str
    Sku name of the Cloud HSM Cluster
    capacity int
    Sku capacity
    family String
    Sku family of the Cloud HSM Cluster
    name String
    Sku name of the Cloud HSM Cluster
    capacity Number
    Sku capacity

    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

    PrivateLinkServiceConnectionState Pulumi.AzureNative.HardwareSecurityModules.Inputs.PrivateLinkServiceConnectionState
    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.
    PrivateLinkServiceConnectionState PrivateLinkServiceConnectionState
    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.
    privateLinkServiceConnectionState PrivateLinkServiceConnectionState
    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.
    privateLinkServiceConnectionState PrivateLinkServiceConnectionState
    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_service_connection_state PrivateLinkServiceConnectionState
    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.
    privateLinkServiceConnectionState Property Map
    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
    PrivateLinkServiceConnectionState Pulumi.AzureNative.HardwareSecurityModules.Inputs.PrivateLinkServiceConnectionStateResponse
    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.AzureNative.HardwareSecurityModules.Inputs.SystemDataResponse
    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.AzureNative.HardwareSecurityModules.Inputs.PrivateEndpointResponse
    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
    PrivateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    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 SystemDataResponse
    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 PrivateEndpointResponse
    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
    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    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 SystemDataResponse
    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 PrivateEndpointResponse
    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
    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    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 SystemDataResponse
    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 PrivateEndpointResponse
    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_service_connection_state PrivateLinkServiceConnectionStateResponse
    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 SystemDataResponse
    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 PrivateEndpointResponse
    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
    privateLinkServiceConnectionState Property Map
    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
    PrivateEndpointServiceConnectionStatusPending
    Pending
    PrivateEndpointServiceConnectionStatusApproved
    Approved
    PrivateEndpointServiceConnectionStatusRejected
    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.AzureNative.HardwareSecurityModules.PrivateEndpointServiceConnectionStatus
    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 | PrivateEndpointServiceConnectionStatus
    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 | PrivateEndpointServiceConnectionStatus
    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 | PrivateEndpointServiceConnectionStatus
    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 | PrivateEndpointServiceConnectionStatus
    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
    ProvisioningStateProvisioning
    Provisioning
    ProvisioningStateSucceeded
    Succeeded
    ProvisioningStateFailed
    Failed
    ProvisioningStateDeleting
    Deleting
    ProvisioningStateCanceled
    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.
    CreatedByType string
    The type of identity that created dedicated hsm resource.
    LastModifiedAt string
    The timestamp of dedicated hsm resource last modification (UTC).
    LastModifiedBy string
    The identity that last modified dedicated hsm resource.
    LastModifiedByType string
    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.
    CreatedByType string
    The type of identity that created dedicated hsm resource.
    LastModifiedAt string
    The timestamp of dedicated hsm resource last modification (UTC).
    LastModifiedBy string
    The identity that last modified dedicated hsm resource.
    LastModifiedByType string
    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.
    createdByType String
    The type of identity that created dedicated hsm resource.
    lastModifiedAt String
    The timestamp of dedicated hsm resource last modification (UTC).
    lastModifiedBy String
    The identity that last modified dedicated hsm resource.
    lastModifiedByType String
    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.
    createdByType string
    The type of identity that created dedicated hsm resource.
    lastModifiedAt string
    The timestamp of dedicated hsm resource last modification (UTC).
    lastModifiedBy string
    The identity that last modified dedicated hsm resource.
    lastModifiedByType string
    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_type str
    The type of identity that created dedicated hsm resource.
    last_modified_at str
    The timestamp of dedicated hsm resource last modification (UTC).
    last_modified_by str
    The identity that last modified dedicated hsm resource.
    last_modified_by_type str
    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.
    createdByType String
    The type of identity that created dedicated hsm resource.
    lastModifiedAt String
    The timestamp of dedicated hsm resource last modification (UTC).
    lastModifiedBy String
    The identity that last modified dedicated hsm resource.
    lastModifiedByType String
    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
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi