1. Packages
  2. Azure Native
  3. API Docs
  4. elasticsan
  5. ElasticSan
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.5.1 published on Friday, Jun 6, 2025 by Pulumi

azure-native.elasticsan.ElasticSan

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.5.1 published on Friday, Jun 6, 2025 by Pulumi

    Response for ElasticSan 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

    ElasticSans_Create_MaximumSet_Gen

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var elasticSan = new AzureNative.ElasticSan.ElasticSan("elasticSan", new()
        {
            AvailabilityZones = new[]
            {
                "1",
            },
            BaseSizeTiB = 5,
            ElasticSanName = "elasticsanname",
            ExtendedCapacitySizeTiB = 25,
            Location = "France Central",
            PublicNetworkAccess = AzureNative.ElasticSan.PublicNetworkAccess.Enabled,
            ResourceGroupName = "resourcegroupname",
            Sku = new AzureNative.ElasticSan.Inputs.SkuArgs
            {
                Name = AzureNative.ElasticSan.SkuName.Premium_LRS,
                Tier = AzureNative.ElasticSan.SkuTier.Premium,
            },
            Tags = 
            {
                { "key9316", "ihndtieqibtob" },
            },
        });
    
    });
    
    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.NewElasticSan(ctx, "elasticSan", &elasticsan.ElasticSanArgs{
    			AvailabilityZones: pulumi.StringArray{
    				pulumi.String("1"),
    			},
    			BaseSizeTiB:             pulumi.Float64(5),
    			ElasticSanName:          pulumi.String("elasticsanname"),
    			ExtendedCapacitySizeTiB: pulumi.Float64(25),
    			Location:                pulumi.String("France Central"),
    			PublicNetworkAccess:     pulumi.String(elasticsan.PublicNetworkAccessEnabled),
    			ResourceGroupName:       pulumi.String("resourcegroupname"),
    			Sku: &elasticsan.SkuArgs{
    				Name: pulumi.String(elasticsan.SkuName_Premium_LRS),
    				Tier: pulumi.String(elasticsan.SkuTierPremium),
    			},
    			Tags: pulumi.StringMap{
    				"key9316": pulumi.String("ihndtieqibtob"),
    			},
    		})
    		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.ElasticSan;
    import com.pulumi.azurenative.elasticsan.ElasticSanArgs;
    import com.pulumi.azurenative.elasticsan.inputs.SkuArgs;
    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 elasticSan = new ElasticSan("elasticSan", ElasticSanArgs.builder()
                .availabilityZones("1")
                .baseSizeTiB(5.0)
                .elasticSanName("elasticsanname")
                .extendedCapacitySizeTiB(25.0)
                .location("France Central")
                .publicNetworkAccess("Enabled")
                .resourceGroupName("resourcegroupname")
                .sku(SkuArgs.builder()
                    .name("Premium_LRS")
                    .tier("Premium")
                    .build())
                .tags(Map.of("key9316", "ihndtieqibtob"))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const elasticSan = new azure_native.elasticsan.ElasticSan("elasticSan", {
        availabilityZones: ["1"],
        baseSizeTiB: 5,
        elasticSanName: "elasticsanname",
        extendedCapacitySizeTiB: 25,
        location: "France Central",
        publicNetworkAccess: azure_native.elasticsan.PublicNetworkAccess.Enabled,
        resourceGroupName: "resourcegroupname",
        sku: {
            name: azure_native.elasticsan.SkuName.Premium_LRS,
            tier: azure_native.elasticsan.SkuTier.Premium,
        },
        tags: {
            key9316: "ihndtieqibtob",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    elastic_san = azure_native.elasticsan.ElasticSan("elasticSan",
        availability_zones=["1"],
        base_size_ti_b=5,
        elastic_san_name="elasticsanname",
        extended_capacity_size_ti_b=25,
        location="France Central",
        public_network_access=azure_native.elasticsan.PublicNetworkAccess.ENABLED,
        resource_group_name="resourcegroupname",
        sku={
            "name": azure_native.elasticsan.SkuName.PREMIUM_LRS,
            "tier": azure_native.elasticsan.SkuTier.PREMIUM,
        },
        tags={
            "key9316": "ihndtieqibtob",
        })
    
    resources:
      elasticSan:
        type: azure-native:elasticsan:ElasticSan
        properties:
          availabilityZones:
            - '1'
          baseSizeTiB: 5
          elasticSanName: elasticsanname
          extendedCapacitySizeTiB: 25
          location: France Central
          publicNetworkAccess: Enabled
          resourceGroupName: resourcegroupname
          sku:
            name: Premium_LRS
            tier: Premium
          tags:
            key9316: ihndtieqibtob
    

    ElasticSans_Create_MinimumSet_Gen

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var elasticSan = new AzureNative.ElasticSan.ElasticSan("elasticSan", new()
        {
            BaseSizeTiB = 15,
            ElasticSanName = "elasticsanname",
            ExtendedCapacitySizeTiB = 27,
            Location = "France Central",
            ResourceGroupName = "resourcegroupname",
            Sku = new AzureNative.ElasticSan.Inputs.SkuArgs
            {
                Name = AzureNative.ElasticSan.SkuName.Premium_LRS,
            },
        });
    
    });
    
    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.NewElasticSan(ctx, "elasticSan", &elasticsan.ElasticSanArgs{
    			BaseSizeTiB:             pulumi.Float64(15),
    			ElasticSanName:          pulumi.String("elasticsanname"),
    			ExtendedCapacitySizeTiB: pulumi.Float64(27),
    			Location:                pulumi.String("France Central"),
    			ResourceGroupName:       pulumi.String("resourcegroupname"),
    			Sku: &elasticsan.SkuArgs{
    				Name: pulumi.String(elasticsan.SkuName_Premium_LRS),
    			},
    		})
    		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.ElasticSan;
    import com.pulumi.azurenative.elasticsan.ElasticSanArgs;
    import com.pulumi.azurenative.elasticsan.inputs.SkuArgs;
    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 elasticSan = new ElasticSan("elasticSan", ElasticSanArgs.builder()
                .baseSizeTiB(15.0)
                .elasticSanName("elasticsanname")
                .extendedCapacitySizeTiB(27.0)
                .location("France Central")
                .resourceGroupName("resourcegroupname")
                .sku(SkuArgs.builder()
                    .name("Premium_LRS")
                    .build())
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const elasticSan = new azure_native.elasticsan.ElasticSan("elasticSan", {
        baseSizeTiB: 15,
        elasticSanName: "elasticsanname",
        extendedCapacitySizeTiB: 27,
        location: "France Central",
        resourceGroupName: "resourcegroupname",
        sku: {
            name: azure_native.elasticsan.SkuName.Premium_LRS,
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    elastic_san = azure_native.elasticsan.ElasticSan("elasticSan",
        base_size_ti_b=15,
        elastic_san_name="elasticsanname",
        extended_capacity_size_ti_b=27,
        location="France Central",
        resource_group_name="resourcegroupname",
        sku={
            "name": azure_native.elasticsan.SkuName.PREMIUM_LRS,
        })
    
    resources:
      elasticSan:
        type: azure-native:elasticsan:ElasticSan
        properties:
          baseSizeTiB: 15
          elasticSanName: elasticsanname
          extendedCapacitySizeTiB: 27
          location: France Central
          resourceGroupName: resourcegroupname
          sku:
            name: Premium_LRS
    

    Create ElasticSan Resource

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

    Constructor syntax

    new ElasticSan(name: string, args: ElasticSanArgs, opts?: CustomResourceOptions);
    @overload
    def ElasticSan(resource_name: str,
                   args: ElasticSanArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def ElasticSan(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   base_size_ti_b: Optional[float] = None,
                   extended_capacity_size_ti_b: Optional[float] = None,
                   resource_group_name: Optional[str] = None,
                   sku: Optional[SkuArgs] = None,
                   availability_zones: Optional[Sequence[str]] = None,
                   elastic_san_name: Optional[str] = None,
                   location: Optional[str] = None,
                   public_network_access: Optional[Union[str, PublicNetworkAccess]] = None,
                   tags: Optional[Mapping[str, str]] = None)
    func NewElasticSan(ctx *Context, name string, args ElasticSanArgs, opts ...ResourceOption) (*ElasticSan, error)
    public ElasticSan(string name, ElasticSanArgs args, CustomResourceOptions? opts = null)
    public ElasticSan(String name, ElasticSanArgs args)
    public ElasticSan(String name, ElasticSanArgs args, CustomResourceOptions options)
    
    type: azure-native:elasticsan:ElasticSan
    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 ElasticSanArgs
    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 ElasticSanArgs
    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 ElasticSanArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ElasticSanArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ElasticSanArgs
    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 elasticSanResource = new AzureNative.ElasticSan.ElasticSan("elasticSanResource", new()
    {
        BaseSizeTiB = 0,
        ExtendedCapacitySizeTiB = 0,
        ResourceGroupName = "string",
        Sku = new AzureNative.ElasticSan.Inputs.SkuArgs
        {
            Name = "string",
            Tier = "string",
        },
        AvailabilityZones = new[]
        {
            "string",
        },
        ElasticSanName = "string",
        Location = "string",
        PublicNetworkAccess = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := elasticsan.NewElasticSan(ctx, "elasticSanResource", &elasticsan.ElasticSanArgs{
    	BaseSizeTiB:             pulumi.Float64(0),
    	ExtendedCapacitySizeTiB: pulumi.Float64(0),
    	ResourceGroupName:       pulumi.String("string"),
    	Sku: &elasticsan.SkuArgs{
    		Name: pulumi.String("string"),
    		Tier: pulumi.String("string"),
    	},
    	AvailabilityZones: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ElasticSanName:      pulumi.String("string"),
    	Location:            pulumi.String("string"),
    	PublicNetworkAccess: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var elasticSanResource = new ElasticSan("elasticSanResource", ElasticSanArgs.builder()
        .baseSizeTiB(0.0)
        .extendedCapacitySizeTiB(0.0)
        .resourceGroupName("string")
        .sku(SkuArgs.builder()
            .name("string")
            .tier("string")
            .build())
        .availabilityZones("string")
        .elasticSanName("string")
        .location("string")
        .publicNetworkAccess("string")
        .tags(Map.of("string", "string"))
        .build());
    
    elastic_san_resource = azure_native.elasticsan.ElasticSan("elasticSanResource",
        base_size_ti_b=0,
        extended_capacity_size_ti_b=0,
        resource_group_name="string",
        sku={
            "name": "string",
            "tier": "string",
        },
        availability_zones=["string"],
        elastic_san_name="string",
        location="string",
        public_network_access="string",
        tags={
            "string": "string",
        })
    
    const elasticSanResource = new azure_native.elasticsan.ElasticSan("elasticSanResource", {
        baseSizeTiB: 0,
        extendedCapacitySizeTiB: 0,
        resourceGroupName: "string",
        sku: {
            name: "string",
            tier: "string",
        },
        availabilityZones: ["string"],
        elasticSanName: "string",
        location: "string",
        publicNetworkAccess: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:elasticsan:ElasticSan
    properties:
        availabilityZones:
            - string
        baseSizeTiB: 0
        elasticSanName: string
        extendedCapacitySizeTiB: 0
        location: string
        publicNetworkAccess: string
        resourceGroupName: string
        sku:
            name: string
            tier: string
        tags:
            string: string
    

    ElasticSan 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 ElasticSan resource accepts the following input properties:

    BaseSizeTiB double
    Base size of the Elastic San appliance in TiB.
    ExtendedCapacitySizeTiB double
    Extended size of the Elastic San appliance in TiB.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Sku Pulumi.AzureNative.ElasticSan.Inputs.Sku
    resource sku
    AvailabilityZones List<string>
    Logical zone for Elastic San resource; example: ["1"].
    ElasticSanName string
    The name of the ElasticSan.
    Location string
    The geo-location where the resource lives
    PublicNetworkAccess string | Pulumi.AzureNative.ElasticSan.PublicNetworkAccess
    Allow or disallow public network access to ElasticSan. Value is optional but if passed in, must be 'Enabled' or 'Disabled'.
    Tags Dictionary<string, string>
    Resource tags.
    BaseSizeTiB float64
    Base size of the Elastic San appliance in TiB.
    ExtendedCapacitySizeTiB float64
    Extended size of the Elastic San appliance in TiB.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Sku SkuArgs
    resource sku
    AvailabilityZones []string
    Logical zone for Elastic San resource; example: ["1"].
    ElasticSanName string
    The name of the ElasticSan.
    Location string
    The geo-location where the resource lives
    PublicNetworkAccess string | PublicNetworkAccess
    Allow or disallow public network access to ElasticSan. Value is optional but if passed in, must be 'Enabled' or 'Disabled'.
    Tags map[string]string
    Resource tags.
    baseSizeTiB Double
    Base size of the Elastic San appliance in TiB.
    extendedCapacitySizeTiB Double
    Extended size of the Elastic San appliance in TiB.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    sku Sku
    resource sku
    availabilityZones List<String>
    Logical zone for Elastic San resource; example: ["1"].
    elasticSanName String
    The name of the ElasticSan.
    location String
    The geo-location where the resource lives
    publicNetworkAccess String | PublicNetworkAccess
    Allow or disallow public network access to ElasticSan. Value is optional but if passed in, must be 'Enabled' or 'Disabled'.
    tags Map<String,String>
    Resource tags.
    baseSizeTiB number
    Base size of the Elastic San appliance in TiB.
    extendedCapacitySizeTiB number
    Extended size of the Elastic San appliance in TiB.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    sku Sku
    resource sku
    availabilityZones string[]
    Logical zone for Elastic San resource; example: ["1"].
    elasticSanName string
    The name of the ElasticSan.
    location string
    The geo-location where the resource lives
    publicNetworkAccess string | PublicNetworkAccess
    Allow or disallow public network access to ElasticSan. Value is optional but if passed in, must be 'Enabled' or 'Disabled'.
    tags {[key: string]: string}
    Resource tags.
    base_size_ti_b float
    Base size of the Elastic San appliance in TiB.
    extended_capacity_size_ti_b float
    Extended size of the Elastic San appliance in TiB.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    sku SkuArgs
    resource sku
    availability_zones Sequence[str]
    Logical zone for Elastic San resource; example: ["1"].
    elastic_san_name str
    The name of the ElasticSan.
    location str
    The geo-location where the resource lives
    public_network_access str | PublicNetworkAccess
    Allow or disallow public network access to ElasticSan. Value is optional but if passed in, must be 'Enabled' or 'Disabled'.
    tags Mapping[str, str]
    Resource tags.
    baseSizeTiB Number
    Base size of the Elastic San appliance in TiB.
    extendedCapacitySizeTiB Number
    Extended size of the Elastic San appliance in TiB.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    sku Property Map
    resource sku
    availabilityZones List<String>
    Logical zone for Elastic San resource; example: ["1"].
    elasticSanName String
    The name of the ElasticSan.
    location String
    The geo-location where the resource lives
    publicNetworkAccess String | "Enabled" | "Disabled"
    Allow or disallow public network access to ElasticSan. Value is optional but if passed in, must be 'Enabled' or 'Disabled'.
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ElasticSan 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.
    TotalIops double
    Total Provisioned IOPS of the Elastic San appliance.
    TotalMBps double
    Total Provisioned MBps Elastic San appliance.
    TotalSizeTiB double
    Total size of the Elastic San appliance in TB.
    TotalVolumeSizeGiB double
    Total size of the provisioned Volumes in GiB.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    VolumeGroupCount double
    Total number of volume groups in this Elastic San appliance.
    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.
    TotalIops float64
    Total Provisioned IOPS of the Elastic San appliance.
    TotalMBps float64
    Total Provisioned MBps Elastic San appliance.
    TotalSizeTiB float64
    Total size of the Elastic San appliance in TB.
    TotalVolumeSizeGiB float64
    Total size of the provisioned Volumes in GiB.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    VolumeGroupCount float64
    Total number of volume groups in this Elastic San appliance.
    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.
    totalIops Double
    Total Provisioned IOPS of the Elastic San appliance.
    totalMBps Double
    Total Provisioned MBps Elastic San appliance.
    totalSizeTiB Double
    Total size of the Elastic San appliance in TB.
    totalVolumeSizeGiB Double
    Total size of the provisioned Volumes in GiB.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    volumeGroupCount Double
    Total number of volume groups in this Elastic San appliance.
    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.
    totalIops number
    Total Provisioned IOPS of the Elastic San appliance.
    totalMBps number
    Total Provisioned MBps Elastic San appliance.
    totalSizeTiB number
    Total size of the Elastic San appliance in TB.
    totalVolumeSizeGiB number
    Total size of the provisioned Volumes in GiB.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    volumeGroupCount number
    Total number of volume groups in this Elastic San appliance.
    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.
    total_iops float
    Total Provisioned IOPS of the Elastic San appliance.
    total_m_bps float
    Total Provisioned MBps Elastic San appliance.
    total_size_ti_b float
    Total size of the Elastic San appliance in TB.
    total_volume_size_gi_b float
    Total size of the provisioned Volumes in GiB.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    volume_group_count float
    Total number of volume groups in this Elastic San appliance.
    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.
    totalIops Number
    Total Provisioned IOPS of the Elastic San appliance.
    totalMBps Number
    Total Provisioned MBps Elastic San appliance.
    totalSizeTiB Number
    Total size of the Elastic San appliance in TB.
    totalVolumeSizeGiB Number
    Total size of the provisioned Volumes in GiB.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    volumeGroupCount Number
    Total number of volume groups in this Elastic San appliance.

    Supporting Types

    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.

    PublicNetworkAccess, PublicNetworkAccessArgs

    Enabled
    Enabled
    Disabled
    Disabled
    PublicNetworkAccessEnabled
    Enabled
    PublicNetworkAccessDisabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    ENABLED
    Enabled
    DISABLED
    Disabled
    "Enabled"
    Enabled
    "Disabled"
    Disabled

    Sku, SkuArgs

    Name string | SkuName
    The sku name.
    Tier string | SkuTier
    The sku tier.
    name String | SkuName
    The sku name.
    tier String | SkuTier
    The sku tier.
    name string | SkuName
    The sku name.
    tier string | SkuTier
    The sku tier.
    name str | SkuName
    The sku name.
    tier str | SkuTier
    The sku tier.
    name String | "Premium_LRS" | "Premium_ZRS"
    The sku name.
    tier String | "Premium"
    The sku tier.

    SkuName, SkuNameArgs

    Premium_LRS
    Premium_LRSPremium locally redundant storage
    Premium_ZRS
    Premium_ZRSPremium zone redundant storage
    SkuName_Premium_LRS
    Premium_LRSPremium locally redundant storage
    SkuName_Premium_ZRS
    Premium_ZRSPremium zone redundant storage
    Premium_LRS
    Premium_LRSPremium locally redundant storage
    Premium_ZRS
    Premium_ZRSPremium zone redundant storage
    Premium_LRS
    Premium_LRSPremium locally redundant storage
    Premium_ZRS
    Premium_ZRSPremium zone redundant storage
    PREMIUM_LRS
    Premium_LRSPremium locally redundant storage
    PREMIUM_ZRS
    Premium_ZRSPremium zone redundant storage
    "Premium_LRS"
    Premium_LRSPremium locally redundant storage
    "Premium_ZRS"
    Premium_ZRSPremium zone redundant storage

    SkuResponse, SkuResponseArgs

    Name string
    The sku name.
    Tier string
    The sku tier.
    Name string
    The sku name.
    Tier string
    The sku tier.
    name String
    The sku name.
    tier String
    The sku tier.
    name string
    The sku name.
    tier string
    The sku tier.
    name str
    The sku name.
    tier str
    The sku tier.
    name String
    The sku name.
    tier String
    The sku tier.

    SkuTier, SkuTierArgs

    Premium
    PremiumPremium Tier
    SkuTierPremium
    PremiumPremium Tier
    Premium
    PremiumPremium Tier
    Premium
    PremiumPremium Tier
    PREMIUM
    PremiumPremium Tier
    "Premium"
    PremiumPremium Tier

    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.

    Import

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

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

    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.5.1 published on Friday, Jun 6, 2025 by Pulumi