1. Packages
  2. Azure Native
  3. API Docs
  4. elasticsan
  5. VolumeGroup
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

azure-native.elasticsan.VolumeGroup

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

    Response for Volume Group request.

    Uses Azure REST API version 2024-05-01. In version 2.x of the Azure Native provider, it used API version 2021-11-20-preview.

    Other available API versions: 2021-11-20-preview, 2022-12-01-preview, 2023-01-01, 2024-06-01-preview, 2024-07-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native elasticsan [ApiVersion]. See the version guide for details.

    Example Usage

    VolumeGroups_Create_MinimumSet_Gen

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var volumeGroup = new AzureNative.ElasticSan.VolumeGroup("volumeGroup", new()
        {
            ElasticSanName = "elasticsanname",
            ResourceGroupName = "resourcegroupname",
            VolumeGroupName = "volumegroupname",
        });
    
    });
    
    package main
    
    import (
    	elasticsan "github.com/pulumi/pulumi-azure-native-sdk/elasticsan/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := elasticsan.NewVolumeGroup(ctx, "volumeGroup", &elasticsan.VolumeGroupArgs{
    			ElasticSanName:    pulumi.String("elasticsanname"),
    			ResourceGroupName: pulumi.String("resourcegroupname"),
    			VolumeGroupName:   pulumi.String("volumegroupname"),
    		})
    		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.elasticsan.VolumeGroup;
    import com.pulumi.azurenative.elasticsan.VolumeGroupArgs;
    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 volumeGroup = new VolumeGroup("volumeGroup", VolumeGroupArgs.builder()
                .elasticSanName("elasticsanname")
                .resourceGroupName("resourcegroupname")
                .volumeGroupName("volumegroupname")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const volumeGroup = new azure_native.elasticsan.VolumeGroup("volumeGroup", {
        elasticSanName: "elasticsanname",
        resourceGroupName: "resourcegroupname",
        volumeGroupName: "volumegroupname",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    volume_group = azure_native.elasticsan.VolumeGroup("volumeGroup",
        elastic_san_name="elasticsanname",
        resource_group_name="resourcegroupname",
        volume_group_name="volumegroupname")
    
    resources:
      volumeGroup:
        type: azure-native:elasticsan:VolumeGroup
        properties:
          elasticSanName: elasticsanname
          resourceGroupName: resourcegroupname
          volumeGroupName: volumegroupname
    

    Create VolumeGroup Resource

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

    Constructor syntax

    new VolumeGroup(name: string, args: VolumeGroupArgs, opts?: CustomResourceOptions);
    @overload
    def VolumeGroup(resource_name: str,
                    args: VolumeGroupArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def VolumeGroup(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    elastic_san_name: Optional[str] = None,
                    resource_group_name: Optional[str] = None,
                    encryption: Optional[Union[str, EncryptionType]] = None,
                    encryption_properties: Optional[EncryptionPropertiesArgs] = None,
                    enforce_data_integrity_check_for_iscsi: Optional[bool] = None,
                    identity: Optional[IdentityArgs] = None,
                    network_acls: Optional[NetworkRuleSetArgs] = None,
                    protocol_type: Optional[Union[str, StorageTargetType]] = None,
                    volume_group_name: Optional[str] = None)
    func NewVolumeGroup(ctx *Context, name string, args VolumeGroupArgs, opts ...ResourceOption) (*VolumeGroup, error)
    public VolumeGroup(string name, VolumeGroupArgs args, CustomResourceOptions? opts = null)
    public VolumeGroup(String name, VolumeGroupArgs args)
    public VolumeGroup(String name, VolumeGroupArgs args, CustomResourceOptions options)
    
    type: azure-native:elasticsan:VolumeGroup
    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 VolumeGroupArgs
    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 VolumeGroupArgs
    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 VolumeGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VolumeGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VolumeGroupArgs
    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 volumeGroupResource = new AzureNative.ElasticSan.VolumeGroup("volumeGroupResource", new()
    {
        ElasticSanName = "string",
        ResourceGroupName = "string",
        Encryption = "string",
        EncryptionProperties = new AzureNative.ElasticSan.Inputs.EncryptionPropertiesArgs
        {
            EncryptionIdentity = new AzureNative.ElasticSan.Inputs.EncryptionIdentityArgs
            {
                EncryptionUserAssignedIdentity = "string",
            },
            KeyVaultProperties = new AzureNative.ElasticSan.Inputs.KeyVaultPropertiesArgs
            {
                KeyName = "string",
                KeyVaultUri = "string",
                KeyVersion = "string",
            },
        },
        EnforceDataIntegrityCheckForIscsi = false,
        Identity = new AzureNative.ElasticSan.Inputs.IdentityArgs
        {
            Type = "string",
            UserAssignedIdentities = new[]
            {
                "string",
            },
        },
        NetworkAcls = new AzureNative.ElasticSan.Inputs.NetworkRuleSetArgs
        {
            VirtualNetworkRules = new[]
            {
                new AzureNative.ElasticSan.Inputs.VirtualNetworkRuleArgs
                {
                    VirtualNetworkResourceId = "string",
                    Action = "string",
                },
            },
        },
        ProtocolType = "string",
        VolumeGroupName = "string",
    });
    
    example, err := elasticsan.NewVolumeGroup(ctx, "volumeGroupResource", &elasticsan.VolumeGroupArgs{
    	ElasticSanName:    pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	Encryption:        pulumi.String("string"),
    	EncryptionProperties: &elasticsan.EncryptionPropertiesArgs{
    		EncryptionIdentity: &elasticsan.EncryptionIdentityArgs{
    			EncryptionUserAssignedIdentity: pulumi.String("string"),
    		},
    		KeyVaultProperties: &elasticsan.KeyVaultPropertiesArgs{
    			KeyName:     pulumi.String("string"),
    			KeyVaultUri: pulumi.String("string"),
    			KeyVersion:  pulumi.String("string"),
    		},
    	},
    	EnforceDataIntegrityCheckForIscsi: pulumi.Bool(false),
    	Identity: &elasticsan.IdentityArgs{
    		Type: pulumi.String("string"),
    		UserAssignedIdentities: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	NetworkAcls: &elasticsan.NetworkRuleSetArgs{
    		VirtualNetworkRules: elasticsan.VirtualNetworkRuleArray{
    			&elasticsan.VirtualNetworkRuleArgs{
    				VirtualNetworkResourceId: pulumi.String("string"),
    				Action:                   pulumi.String("string"),
    			},
    		},
    	},
    	ProtocolType:    pulumi.String("string"),
    	VolumeGroupName: pulumi.String("string"),
    })
    
    var volumeGroupResource = new com.pulumi.azurenative.elasticsan.VolumeGroup("volumeGroupResource", com.pulumi.azurenative.elasticsan.VolumeGroupArgs.builder()
        .elasticSanName("string")
        .resourceGroupName("string")
        .encryption("string")
        .encryptionProperties(EncryptionPropertiesArgs.builder()
            .encryptionIdentity(EncryptionIdentityArgs.builder()
                .encryptionUserAssignedIdentity("string")
                .build())
            .keyVaultProperties(KeyVaultPropertiesArgs.builder()
                .keyName("string")
                .keyVaultUri("string")
                .keyVersion("string")
                .build())
            .build())
        .enforceDataIntegrityCheckForIscsi(false)
        .identity(IdentityArgs.builder()
            .type("string")
            .userAssignedIdentities("string")
            .build())
        .networkAcls(NetworkRuleSetArgs.builder()
            .virtualNetworkRules(VirtualNetworkRuleArgs.builder()
                .virtualNetworkResourceId("string")
                .action("string")
                .build())
            .build())
        .protocolType("string")
        .volumeGroupName("string")
        .build());
    
    volume_group_resource = azure_native.elasticsan.VolumeGroup("volumeGroupResource",
        elastic_san_name="string",
        resource_group_name="string",
        encryption="string",
        encryption_properties={
            "encryption_identity": {
                "encryption_user_assigned_identity": "string",
            },
            "key_vault_properties": {
                "key_name": "string",
                "key_vault_uri": "string",
                "key_version": "string",
            },
        },
        enforce_data_integrity_check_for_iscsi=False,
        identity={
            "type": "string",
            "user_assigned_identities": ["string"],
        },
        network_acls={
            "virtual_network_rules": [{
                "virtual_network_resource_id": "string",
                "action": "string",
            }],
        },
        protocol_type="string",
        volume_group_name="string")
    
    const volumeGroupResource = new azure_native.elasticsan.VolumeGroup("volumeGroupResource", {
        elasticSanName: "string",
        resourceGroupName: "string",
        encryption: "string",
        encryptionProperties: {
            encryptionIdentity: {
                encryptionUserAssignedIdentity: "string",
            },
            keyVaultProperties: {
                keyName: "string",
                keyVaultUri: "string",
                keyVersion: "string",
            },
        },
        enforceDataIntegrityCheckForIscsi: false,
        identity: {
            type: "string",
            userAssignedIdentities: ["string"],
        },
        networkAcls: {
            virtualNetworkRules: [{
                virtualNetworkResourceId: "string",
                action: "string",
            }],
        },
        protocolType: "string",
        volumeGroupName: "string",
    });
    
    type: azure-native:elasticsan:VolumeGroup
    properties:
        elasticSanName: string
        encryption: string
        encryptionProperties:
            encryptionIdentity:
                encryptionUserAssignedIdentity: string
            keyVaultProperties:
                keyName: string
                keyVaultUri: string
                keyVersion: string
        enforceDataIntegrityCheckForIscsi: false
        identity:
            type: string
            userAssignedIdentities:
                - string
        networkAcls:
            virtualNetworkRules:
                - action: string
                  virtualNetworkResourceId: string
        protocolType: string
        resourceGroupName: string
        volumeGroupName: string
    

    VolumeGroup Resource Properties

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

    Inputs

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

    The VolumeGroup resource accepts the following input properties:

    ElasticSanName string
    The name of the ElasticSan.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Encryption string | Pulumi.AzureNative.ElasticSan.EncryptionType
    Type of encryption
    EncryptionProperties Pulumi.AzureNative.ElasticSan.Inputs.EncryptionProperties
    Encryption Properties describing Key Vault and Identity information
    EnforceDataIntegrityCheckForIscsi bool
    A boolean indicating whether or not Data Integrity Check is enabled
    Identity Pulumi.AzureNative.ElasticSan.Inputs.Identity
    The identity of the resource.
    NetworkAcls Pulumi.AzureNative.ElasticSan.Inputs.NetworkRuleSet
    A collection of rules governing the accessibility from specific network locations.
    ProtocolType string | Pulumi.AzureNative.ElasticSan.StorageTargetType
    Type of storage target
    VolumeGroupName string
    The name of the VolumeGroup.
    ElasticSanName string
    The name of the ElasticSan.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Encryption string | EncryptionType
    Type of encryption
    EncryptionProperties EncryptionPropertiesArgs
    Encryption Properties describing Key Vault and Identity information
    EnforceDataIntegrityCheckForIscsi bool
    A boolean indicating whether or not Data Integrity Check is enabled
    Identity IdentityArgs
    The identity of the resource.
    NetworkAcls NetworkRuleSetArgs
    A collection of rules governing the accessibility from specific network locations.
    ProtocolType string | StorageTargetType
    Type of storage target
    VolumeGroupName string
    The name of the VolumeGroup.
    elasticSanName String
    The name of the ElasticSan.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    encryption String | EncryptionType
    Type of encryption
    encryptionProperties EncryptionProperties
    Encryption Properties describing Key Vault and Identity information
    enforceDataIntegrityCheckForIscsi Boolean
    A boolean indicating whether or not Data Integrity Check is enabled
    identity Identity
    The identity of the resource.
    networkAcls NetworkRuleSet
    A collection of rules governing the accessibility from specific network locations.
    protocolType String | StorageTargetType
    Type of storage target
    volumeGroupName String
    The name of the VolumeGroup.
    elasticSanName string
    The name of the ElasticSan.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    encryption string | EncryptionType
    Type of encryption
    encryptionProperties EncryptionProperties
    Encryption Properties describing Key Vault and Identity information
    enforceDataIntegrityCheckForIscsi boolean
    A boolean indicating whether or not Data Integrity Check is enabled
    identity Identity
    The identity of the resource.
    networkAcls NetworkRuleSet
    A collection of rules governing the accessibility from specific network locations.
    protocolType string | StorageTargetType
    Type of storage target
    volumeGroupName string
    The name of the VolumeGroup.
    elastic_san_name str
    The name of the ElasticSan.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    encryption str | EncryptionType
    Type of encryption
    encryption_properties EncryptionPropertiesArgs
    Encryption Properties describing Key Vault and Identity information
    enforce_data_integrity_check_for_iscsi bool
    A boolean indicating whether or not Data Integrity Check is enabled
    identity IdentityArgs
    The identity of the resource.
    network_acls NetworkRuleSetArgs
    A collection of rules governing the accessibility from specific network locations.
    protocol_type str | StorageTargetType
    Type of storage target
    volume_group_name str
    The name of the VolumeGroup.
    elasticSanName String
    The name of the ElasticSan.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    encryption String | "EncryptionAtRestWithPlatformKey" | "EncryptionAtRestWithCustomerManagedKey"
    Type of encryption
    encryptionProperties Property Map
    Encryption Properties describing Key Vault and Identity information
    enforceDataIntegrityCheckForIscsi Boolean
    A boolean indicating whether or not Data Integrity Check is enabled
    identity Property Map
    The identity of the resource.
    networkAcls Property Map
    A collection of rules governing the accessibility from specific network locations.
    protocolType String | "Iscsi" | "None"
    Type of storage target
    volumeGroupName String
    The name of the VolumeGroup.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    PrivateEndpointConnections List<Pulumi.AzureNative.ElasticSan.Outputs.PrivateEndpointConnectionResponse>
    The list of Private Endpoint Connections.
    ProvisioningState string
    State of the operation on the resource.
    SystemData Pulumi.AzureNative.ElasticSan.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"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    PrivateEndpointConnections []PrivateEndpointConnectionResponse
    The list of Private Endpoint Connections.
    ProvisioningState string
    State of the operation on 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"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    privateEndpointConnections List<PrivateEndpointConnectionResponse>
    The list of Private Endpoint Connections.
    provisioningState String
    State of the operation on 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"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    privateEndpointConnections PrivateEndpointConnectionResponse[]
    The list of Private Endpoint Connections.
    provisioningState string
    State of the operation on 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"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    private_endpoint_connections Sequence[PrivateEndpointConnectionResponse]
    The list of Private Endpoint Connections.
    provisioning_state str
    State of the operation on 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"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    privateEndpointConnections List<Property Map>
    The list of Private Endpoint Connections.
    provisioningState String
    State of the operation on 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

    Action, ActionArgs

    Allow
    Allow
    ActionAllow
    Allow
    Allow
    Allow
    Allow
    Allow
    ALLOW
    Allow
    "Allow"
    Allow

    EncryptionIdentity, EncryptionIdentityArgs

    EncryptionUserAssignedIdentity string
    Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
    EncryptionUserAssignedIdentity string
    Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
    encryptionUserAssignedIdentity String
    Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
    encryptionUserAssignedIdentity string
    Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
    encryption_user_assigned_identity str
    Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
    encryptionUserAssignedIdentity String
    Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.

    EncryptionIdentityResponse, EncryptionIdentityResponseArgs

    EncryptionUserAssignedIdentity string
    Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
    EncryptionUserAssignedIdentity string
    Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
    encryptionUserAssignedIdentity String
    Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
    encryptionUserAssignedIdentity string
    Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
    encryption_user_assigned_identity str
    Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
    encryptionUserAssignedIdentity String
    Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.

    EncryptionProperties, EncryptionPropertiesArgs

    EncryptionIdentity EncryptionIdentity
    The identity to be used with service-side encryption at rest.
    KeyVaultProperties KeyVaultProperties
    Properties provided by key vault.
    encryptionIdentity EncryptionIdentity
    The identity to be used with service-side encryption at rest.
    keyVaultProperties KeyVaultProperties
    Properties provided by key vault.
    encryptionIdentity EncryptionIdentity
    The identity to be used with service-side encryption at rest.
    keyVaultProperties KeyVaultProperties
    Properties provided by key vault.
    encryption_identity EncryptionIdentity
    The identity to be used with service-side encryption at rest.
    key_vault_properties KeyVaultProperties
    Properties provided by key vault.
    encryptionIdentity Property Map
    The identity to be used with service-side encryption at rest.
    keyVaultProperties Property Map
    Properties provided by key vault.

    EncryptionPropertiesResponse, EncryptionPropertiesResponseArgs

    EncryptionIdentity EncryptionIdentityResponse
    The identity to be used with service-side encryption at rest.
    KeyVaultProperties KeyVaultPropertiesResponse
    Properties provided by key vault.
    encryptionIdentity EncryptionIdentityResponse
    The identity to be used with service-side encryption at rest.
    keyVaultProperties KeyVaultPropertiesResponse
    Properties provided by key vault.
    encryptionIdentity EncryptionIdentityResponse
    The identity to be used with service-side encryption at rest.
    keyVaultProperties KeyVaultPropertiesResponse
    Properties provided by key vault.
    encryption_identity EncryptionIdentityResponse
    The identity to be used with service-side encryption at rest.
    key_vault_properties KeyVaultPropertiesResponse
    Properties provided by key vault.
    encryptionIdentity Property Map
    The identity to be used with service-side encryption at rest.
    keyVaultProperties Property Map
    Properties provided by key vault.

    EncryptionType, EncryptionTypeArgs

    EncryptionAtRestWithPlatformKey
    EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
    EncryptionAtRestWithCustomerManagedKey
    EncryptionAtRestWithCustomerManagedKeyVolume is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
    EncryptionTypeEncryptionAtRestWithPlatformKey
    EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
    EncryptionTypeEncryptionAtRestWithCustomerManagedKey
    EncryptionAtRestWithCustomerManagedKeyVolume is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
    EncryptionAtRestWithPlatformKey
    EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
    EncryptionAtRestWithCustomerManagedKey
    EncryptionAtRestWithCustomerManagedKeyVolume is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
    EncryptionAtRestWithPlatformKey
    EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
    EncryptionAtRestWithCustomerManagedKey
    EncryptionAtRestWithCustomerManagedKeyVolume is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
    ENCRYPTION_AT_REST_WITH_PLATFORM_KEY
    EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
    ENCRYPTION_AT_REST_WITH_CUSTOMER_MANAGED_KEY
    EncryptionAtRestWithCustomerManagedKeyVolume is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
    "EncryptionAtRestWithPlatformKey"
    EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
    "EncryptionAtRestWithCustomerManagedKey"
    EncryptionAtRestWithCustomerManagedKeyVolume is encrypted at rest with Customer managed key that can be changed and revoked by a customer.

    Identity, IdentityArgs

    Type string | Pulumi.AzureNative.ElasticSan.IdentityType
    The identity type.
    UserAssignedIdentities List<string>
    Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
    Type string | IdentityType
    The identity type.
    UserAssignedIdentities []string
    Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
    type String | IdentityType
    The identity type.
    userAssignedIdentities List<String>
    Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
    type string | IdentityType
    The identity type.
    userAssignedIdentities string[]
    Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
    type str | IdentityType
    The identity type.
    user_assigned_identities Sequence[str]
    Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
    type String | "None" | "SystemAssigned" | "UserAssigned"
    The identity type.
    userAssignedIdentities List<String>
    Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.

    IdentityResponse, IdentityResponseArgs

    PrincipalId string
    The principal ID of resource identity.
    TenantId string
    The tenant ID of resource.
    Type string
    The identity type.
    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.ElasticSan.Inputs.UserAssignedIdentityResponse>
    Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
    PrincipalId string
    The principal ID of resource identity.
    TenantId string
    The tenant ID of resource.
    Type string
    The identity type.
    UserAssignedIdentities map[string]UserAssignedIdentityResponse
    Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
    principalId String
    The principal ID of resource identity.
    tenantId String
    The tenant ID of resource.
    type String
    The identity type.
    userAssignedIdentities Map<String,UserAssignedIdentityResponse>
    Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
    principalId string
    The principal ID of resource identity.
    tenantId string
    The tenant ID of resource.
    type string
    The identity type.
    userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
    Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
    principal_id str
    The principal ID of resource identity.
    tenant_id str
    The tenant ID of resource.
    type str
    The identity type.
    user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
    Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
    principalId String
    The principal ID of resource identity.
    tenantId String
    The tenant ID of resource.
    type String
    The identity type.
    userAssignedIdentities Map<Property Map>
    Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.

    IdentityType, IdentityTypeArgs

    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    IdentityTypeNone
    None
    IdentityTypeSystemAssigned
    SystemAssigned
    IdentityTypeUserAssigned
    UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    NONE
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    USER_ASSIGNED
    UserAssigned
    "None"
    None
    "SystemAssigned"
    SystemAssigned
    "UserAssigned"
    UserAssigned

    KeyVaultProperties, KeyVaultPropertiesArgs

    KeyName string
    The name of KeyVault key.
    KeyVaultUri string
    The Uri of KeyVault.
    KeyVersion string
    The version of KeyVault key.
    KeyName string
    The name of KeyVault key.
    KeyVaultUri string
    The Uri of KeyVault.
    KeyVersion string
    The version of KeyVault key.
    keyName String
    The name of KeyVault key.
    keyVaultUri String
    The Uri of KeyVault.
    keyVersion String
    The version of KeyVault key.
    keyName string
    The name of KeyVault key.
    keyVaultUri string
    The Uri of KeyVault.
    keyVersion string
    The version of KeyVault key.
    key_name str
    The name of KeyVault key.
    key_vault_uri str
    The Uri of KeyVault.
    key_version str
    The version of KeyVault key.
    keyName String
    The name of KeyVault key.
    keyVaultUri String
    The Uri of KeyVault.
    keyVersion String
    The version of KeyVault key.

    KeyVaultPropertiesResponse, KeyVaultPropertiesResponseArgs

    CurrentVersionedKeyExpirationTimestamp string
    This is a read only property that represents the expiration time of the current version of the customer managed key used for encryption.
    CurrentVersionedKeyIdentifier string
    The object identifier of the current versioned Key Vault Key in use.
    LastKeyRotationTimestamp string
    Timestamp of last rotation of the Key Vault Key.
    KeyName string
    The name of KeyVault key.
    KeyVaultUri string
    The Uri of KeyVault.
    KeyVersion string
    The version of KeyVault key.
    CurrentVersionedKeyExpirationTimestamp string
    This is a read only property that represents the expiration time of the current version of the customer managed key used for encryption.
    CurrentVersionedKeyIdentifier string
    The object identifier of the current versioned Key Vault Key in use.
    LastKeyRotationTimestamp string
    Timestamp of last rotation of the Key Vault Key.
    KeyName string
    The name of KeyVault key.
    KeyVaultUri string
    The Uri of KeyVault.
    KeyVersion string
    The version of KeyVault key.
    currentVersionedKeyExpirationTimestamp String
    This is a read only property that represents the expiration time of the current version of the customer managed key used for encryption.
    currentVersionedKeyIdentifier String
    The object identifier of the current versioned Key Vault Key in use.
    lastKeyRotationTimestamp String
    Timestamp of last rotation of the Key Vault Key.
    keyName String
    The name of KeyVault key.
    keyVaultUri String
    The Uri of KeyVault.
    keyVersion String
    The version of KeyVault key.
    currentVersionedKeyExpirationTimestamp string
    This is a read only property that represents the expiration time of the current version of the customer managed key used for encryption.
    currentVersionedKeyIdentifier string
    The object identifier of the current versioned Key Vault Key in use.
    lastKeyRotationTimestamp string
    Timestamp of last rotation of the Key Vault Key.
    keyName string
    The name of KeyVault key.
    keyVaultUri string
    The Uri of KeyVault.
    keyVersion string
    The version of KeyVault key.
    current_versioned_key_expiration_timestamp str
    This is a read only property that represents the expiration time of the current version of the customer managed key used for encryption.
    current_versioned_key_identifier str
    The object identifier of the current versioned Key Vault Key in use.
    last_key_rotation_timestamp str
    Timestamp of last rotation of the Key Vault Key.
    key_name str
    The name of KeyVault key.
    key_vault_uri str
    The Uri of KeyVault.
    key_version str
    The version of KeyVault key.
    currentVersionedKeyExpirationTimestamp String
    This is a read only property that represents the expiration time of the current version of the customer managed key used for encryption.
    currentVersionedKeyIdentifier String
    The object identifier of the current versioned Key Vault Key in use.
    lastKeyRotationTimestamp String
    Timestamp of last rotation of the Key Vault Key.
    keyName String
    The name of KeyVault key.
    keyVaultUri String
    The Uri of KeyVault.
    keyVersion String
    The version of KeyVault key.

    NetworkRuleSet, NetworkRuleSetArgs

    VirtualNetworkRules []VirtualNetworkRule
    The list of virtual network rules.
    virtualNetworkRules List<VirtualNetworkRule>
    The list of virtual network rules.
    virtualNetworkRules VirtualNetworkRule[]
    The list of virtual network rules.
    virtual_network_rules Sequence[VirtualNetworkRule]
    The list of virtual network rules.
    virtualNetworkRules List<Property Map>
    The list of virtual network rules.

    NetworkRuleSetResponse, NetworkRuleSetResponseArgs

    VirtualNetworkRules []VirtualNetworkRuleResponse
    The list of virtual network rules.
    virtualNetworkRules List<VirtualNetworkRuleResponse>
    The list of virtual network rules.
    virtualNetworkRules VirtualNetworkRuleResponse[]
    The list of virtual network rules.
    virtualNetworkRules List<Property Map>
    The list of virtual network rules.

    PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs

    Id string
    Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    Name string
    The name of the resource
    PrivateLinkServiceConnectionState Pulumi.AzureNative.ElasticSan.Inputs.PrivateLinkServiceConnectionStateResponse
    Private Link Service Connection State.
    ProvisioningState string
    Provisioning State of Private Endpoint connection resource
    SystemData Pulumi.AzureNative.ElasticSan.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"
    GroupIds List<string>
    List of resources private endpoint is mapped
    PrivateEndpoint Pulumi.AzureNative.ElasticSan.Inputs.PrivateEndpointResponse
    Private Endpoint resource
    Id string
    Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    Name string
    The name of the resource
    PrivateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    Private Link Service Connection State.
    ProvisioningState string
    Provisioning State of 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"
    GroupIds []string
    List of resources private endpoint is mapped
    PrivateEndpoint PrivateEndpointResponse
    Private Endpoint resource
    id String
    Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    name String
    The name of the resource
    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    Private Link Service Connection State.
    provisioningState String
    Provisioning State of 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"
    groupIds List<String>
    List of resources private endpoint is mapped
    privateEndpoint PrivateEndpointResponse
    Private Endpoint resource
    id string
    Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    name string
    The name of the resource
    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    Private Link Service Connection State.
    provisioningState string
    Provisioning State of 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"
    groupIds string[]
    List of resources private endpoint is mapped
    privateEndpoint PrivateEndpointResponse
    Private Endpoint resource
    id str
    Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    name str
    The name of the resource
    private_link_service_connection_state PrivateLinkServiceConnectionStateResponse
    Private Link Service Connection State.
    provisioning_state str
    Provisioning State of 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"
    group_ids Sequence[str]
    List of resources private endpoint is mapped
    private_endpoint PrivateEndpointResponse
    Private Endpoint resource
    id String
    Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    name String
    The name of the resource
    privateLinkServiceConnectionState Property Map
    Private Link Service Connection State.
    provisioningState String
    Provisioning State of 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"
    groupIds List<String>
    List of resources private endpoint is mapped
    privateEndpoint Property Map
    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

    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.

    StorageTargetType, StorageTargetTypeArgs

    Iscsi
    Iscsi
    None
    None
    StorageTargetTypeIscsi
    Iscsi
    StorageTargetTypeNone
    None
    Iscsi
    Iscsi
    None
    None
    Iscsi
    Iscsi
    None
    None
    ISCSI
    Iscsi
    NONE
    None
    "Iscsi"
    Iscsi
    "None"
    None

    SystemDataResponse, SystemDataResponseArgs

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

    UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs

    ClientId string
    The client ID of the identity.
    PrincipalId string
    The principal ID of the identity.
    ClientId string
    The client ID of the identity.
    PrincipalId string
    The principal ID of the identity.
    clientId String
    The client ID of the identity.
    principalId String
    The principal ID of the identity.
    clientId string
    The client ID of the identity.
    principalId string
    The principal ID of the identity.
    client_id str
    The client ID of the identity.
    principal_id str
    The principal ID of the identity.
    clientId String
    The client ID of the identity.
    principalId String
    The principal ID of the identity.

    VirtualNetworkRule, VirtualNetworkRuleArgs

    VirtualNetworkResourceId string
    Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
    Action string | Pulumi.AzureNative.ElasticSan.Action
    The action of virtual network rule.
    VirtualNetworkResourceId string
    Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
    Action string | Action
    The action of virtual network rule.
    virtualNetworkResourceId String
    Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
    action String | Action
    The action of virtual network rule.
    virtualNetworkResourceId string
    Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
    action string | Action
    The action of virtual network rule.
    virtual_network_resource_id str
    Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
    action str | Action
    The action of virtual network rule.
    virtualNetworkResourceId String
    Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
    action String | "Allow"
    The action of virtual network rule.

    VirtualNetworkRuleResponse, VirtualNetworkRuleResponseArgs

    VirtualNetworkResourceId string
    Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
    Action string
    The action of virtual network rule.
    VirtualNetworkResourceId string
    Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
    Action string
    The action of virtual network rule.
    virtualNetworkResourceId String
    Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
    action String
    The action of virtual network rule.
    virtualNetworkResourceId string
    Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
    action string
    The action of virtual network rule.
    virtual_network_resource_id str
    Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
    action str
    The action of virtual network rule.
    virtualNetworkResourceId String
    Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
    action String
    The action of virtual network rule.

    Import

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

    $ pulumi import azure-native:elasticsan:VolumeGroup qymuqyvdlpshrna /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName} 
    

    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 v2 docs if using the v2 version of this package.
    Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi