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.
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 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.
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=[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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Auto
Generated stringDomain Name Label Scope - The Cloud HSM Cluster's auto-generated Domain Name Label Scope
- Cloud
Hsm 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
- Private
Endpoint 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.
- Provisioning
State string | Pulumi.Azure Native. Hardware Security Modules. Provisioning State - The Cloud HSM Cluster's provisioningState
- Public
Network stringAccess - The Cloud HSM Cluster public network access
- Security
Domain 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.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Auto
Generated stringDomain Name Label Scope - The Cloud HSM Cluster's auto-generated Domain Name Label Scope
- Cloud
Hsm 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
[]Cloud
Hsm Properties Args - An array of Cloud HSM Cluster's HSMs
- Location string
- The geo-location where the resource lives
- Private
Endpoint []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 string | ProvisioningState - The Cloud HSM Cluster's provisioningState
- Public
Network stringAccess - The Cloud HSM Cluster public network access
- Security
Domain CloudHsm Cluster Security Domain Properties Args - Security domain properties information for Cloud HSM cluster
- Sku
Cloud
Hsm Cluster Sku Args - SKU details
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- auto
Generated StringDomain Name Label Scope - The Cloud HSM Cluster's auto-generated Domain Name Label Scope
- cloud
Hsm 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<Cloud
Hsm Properties> - An array of Cloud HSM Cluster's HSMs
- location String
- The geo-location where the resource lives
- private
Endpoint 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.
- provisioning
State String | ProvisioningState - The Cloud HSM Cluster's provisioningState
- public
Network StringAccess - The Cloud HSM Cluster public network access
- security
Domain CloudHsm Cluster Security Domain Properties - Security domain properties information for Cloud HSM cluster
- sku
Cloud
Hsm Cluster Sku - SKU details
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- auto
Generated stringDomain Name Label Scope - The Cloud HSM Cluster's auto-generated Domain Name Label Scope
- cloud
Hsm 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
Cloud
Hsm Properties[] - An array of Cloud HSM Cluster's HSMs
- location string
- The geo-location where the resource lives
- private
Endpoint 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.
- provisioning
State string | ProvisioningState - The Cloud HSM Cluster's provisioningState
- public
Network stringAccess - The Cloud HSM Cluster public network access
- security
Domain CloudHsm Cluster Security Domain Properties - Security domain properties information for Cloud HSM cluster
- sku
Cloud
Hsm 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[Cloud
Hsm 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
Cloud
Hsm Cluster Sku Args - SKU details
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- auto
Generated StringDomain Name Label Scope - The Cloud HSM Cluster's auto-generated Domain Name Label Scope
- cloud
Hsm 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
- private
Endpoint 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.
- provisioning
State String | "Provisioning" | "Succeeded" | "Failed" | "Deleting" | "Canceled" - The Cloud HSM Cluster's provisioningState
- public
Network StringAccess - The Cloud HSM Cluster public network access
- security
Domain 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
- System
Data 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
- System
Data 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
- system
Data 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
- system
Data 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
- system
Data 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
- Activation
Status string - status of security domain activation
- Fips
State int - FIPS state information for security domain
- Activation
Status string - status of security domain activation
- Fips
State int - FIPS state information for security domain
- activation
Status String - status of security domain activation
- fips
State Integer - FIPS state information for security domain
- activation
Status string - status of security domain activation
- fips
State number - FIPS state information for security domain
- activation_
status str - status of security domain activation
- fips_
state int - FIPS state information for security domain
- activation
Status String - status of security domain activation
- fips
State Number - FIPS state information for security domain
CloudHsmClusterSecurityDomainPropertiesResponse, CloudHsmClusterSecurityDomainPropertiesResponseArgs
- Activation
Status string - status of security domain activation
- Fips
State int - FIPS state information for security domain
- Activation
Status string - status of security domain activation
- Fips
State int - FIPS state information for security domain
- activation
Status String - status of security domain activation
- fips
State Integer - FIPS state information for security domain
- activation
Status string - status of security domain activation
- fips
State number - FIPS state information for security domain
- activation_
status str - status of security domain activation
- fips_
state int - FIPS state information for security domain
- activation
Status String - status of security domain activation
- fips
State 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 | Cloud
Hsm Cluster Sku Family - Sku family of the Cloud HSM Cluster
- Name
Cloud
Hsm Cluster Sku Name - Sku name of the Cloud HSM Cluster
- Capacity int
- Sku capacity
- family
String | Cloud
Hsm Cluster Sku Family - Sku family of the Cloud HSM Cluster
- name
Cloud
Hsm Cluster Sku Name - Sku name of the Cloud HSM Cluster
- capacity Integer
- Sku capacity
- family
string | Cloud
Hsm Cluster Sku Family - Sku family of the Cloud HSM Cluster
- name
Cloud
Hsm Cluster Sku Name - Sku name of the Cloud HSM Cluster
- capacity number
- Sku capacity
- family
str | Cloud
Hsm Cluster Sku Family - Sku family of the Cloud HSM Cluster
- name
Cloud
Hsm 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
- Cloud
Hsm Cluster Sku Family B - B
- B
- B
- B
- B
- B
- B
- "B"
- B
CloudHsmClusterSkuName, CloudHsmClusterSkuNameArgs
- Standard_B1
- Standard_B1
- Standard_B10
- Standard B10
- Cloud
Hsm Cluster Sku Name_Standard_B1 - Standard_B1
- Cloud
Hsm 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
- State
Message string - The Cloud HSM State message
- Fqdn string
- FQDN of the Cloud HSM
- State string
- The Cloud HSM State
- State
Message string - The Cloud HSM State message
- fqdn String
- FQDN of the Cloud HSM
- state String
- The Cloud HSM State
- state
Message String - The Cloud HSM State message
- fqdn string
- FQDN of the Cloud HSM
- state string
- The Cloud HSM State
- state
Message 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
- state
Message String - The Cloud HSM State message
CloudHsmPropertiesResponse, CloudHsmPropertiesResponseArgs
- Fqdn string
- FQDN of the Cloud HSM
- State string
- The Cloud HSM State
- State
Message string - The Cloud HSM State message
- Fqdn string
- FQDN of the Cloud HSM
- State string
- The Cloud HSM State
- State
Message string - The Cloud HSM State message
- fqdn String
- FQDN of the Cloud HSM
- state String
- The Cloud HSM State
- state
Message String - The Cloud HSM State message
- fqdn string
- FQDN of the Cloud HSM
- state string
- The Cloud HSM State
- state
Message 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
- state
Message String - The Cloud HSM State message
PrivateEndpointConnection, PrivateEndpointConnectionArgs
- Private
Link 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.
- 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 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 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 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.
- private
Link 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
- Group
Ids 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
- Private
Link 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.
- Provisioning
State string - The provisioning state of the private endpoint connection resource.
- System
Data 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.
- Private
Endpoint Pulumi.Azure Native. Hardware Security Modules. Inputs. Private Endpoint Response - The private endpoint resource.
- Group
Ids []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
- 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 string - The provisioning state of the private endpoint connection resource.
- System
Data 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.
- Private
Endpoint PrivateEndpoint Response - The private endpoint resource.
- group
Ids 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
- 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 String - The provisioning state of the private endpoint connection resource.
- system
Data 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.
- private
Endpoint PrivateEndpoint Response - The private endpoint resource.
- group
Ids 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
- 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 string - The provisioning state of the private endpoint connection resource.
- system
Data 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.
- private
Endpoint 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.
- group
Ids 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
- private
Link Property MapService Connection State - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State String - The provisioning state of the private endpoint connection resource.
- system
Data 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.
- private
Endpoint 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
- Private
Endpoint Service Connection Status Pending - Pending
- Private
Endpoint Service Connection Status Approved - Approved
- Private
Endpoint 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
- Actions
Required 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.
- Actions
Required 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 | Private
Endpoint Service Connection Status - Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required 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 | Private
Endpoint Service Connection Status - Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required 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 | Private
Endpoint 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 | Private
Endpoint Service Connection Status - Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required 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
- Actions
Required 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 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 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 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.
- actions
Required 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
- Provisioning
State Provisioning - Provisioning
- Provisioning
State Succeeded - Succeeded
- Provisioning
State Failed - Failed
- Provisioning
State Deleting - Deleting
- Provisioning
State 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
- Created
At string - The timestamp of dedicated hsm resource creation (UTC).
- Created
By string - The identity that created dedicated hsm resource.
- Created
By stringType - The type of identity that created dedicated hsm resource.
- Last
Modified stringAt - The timestamp of dedicated hsm resource last modification (UTC).
- Last
Modified stringBy - The identity that last modified dedicated hsm resource.
- Last
Modified stringBy Type - The type of identity that last modified dedicated hsm resource.
- Created
At string - The timestamp of dedicated hsm resource creation (UTC).
- Created
By string - The identity that created dedicated hsm resource.
- Created
By stringType - The type of identity that created dedicated hsm resource.
- Last
Modified stringAt - The timestamp of dedicated hsm resource last modification (UTC).
- Last
Modified stringBy - The identity that last modified dedicated hsm resource.
- Last
Modified stringBy Type - The type of identity that last modified dedicated hsm resource.
- created
At String - The timestamp of dedicated hsm resource creation (UTC).
- created
By String - The identity that created dedicated hsm resource.
- created
By StringType - The type of identity that created dedicated hsm resource.
- last
Modified StringAt - The timestamp of dedicated hsm resource last modification (UTC).
- last
Modified StringBy - The identity that last modified dedicated hsm resource.
- last
Modified StringBy Type - The type of identity that last modified dedicated hsm resource.
- created
At string - The timestamp of dedicated hsm resource creation (UTC).
- created
By string - The identity that created dedicated hsm resource.
- created
By stringType - The type of identity that created dedicated hsm resource.
- last
Modified stringAt - The timestamp of dedicated hsm resource last modification (UTC).
- last
Modified stringBy - The identity that last modified dedicated hsm resource.
- last
Modified 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.
- created
At String - The timestamp of dedicated hsm resource creation (UTC).
- created
By String - The identity that created dedicated hsm resource.
- created
By StringType - The type of identity that created dedicated hsm resource.
- last
Modified StringAt - The timestamp of dedicated hsm resource last modification (UTC).
- last
Modified StringBy - The identity that last modified dedicated hsm resource.
- last
Modified 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