1. Packages
  2. Azure Classic
  3. API Docs
  4. elasticsan
  5. ElasticSan

We recommend using Azure Native.

Azure Classic v5.77.1 published on Monday, May 13, 2024 by Pulumi

azure.elasticsan.ElasticSan

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.77.1 published on Monday, May 13, 2024 by Pulumi

    Manages an Elastic SAN resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "example-resources",
        location: "West Europe",
    });
    const exampleElasticSan = new azure.elasticsan.ElasticSan("example", {
        name: "example",
        resourceGroupName: example.name,
        location: example.location,
        baseSizeInTib: 1,
        extendedSizeInTib: 2,
        sku: {
            name: "example-value",
        },
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="example-resources",
        location="West Europe")
    example_elastic_san = azure.elasticsan.ElasticSan("example",
        name="example",
        resource_group_name=example.name,
        location=example.location,
        base_size_in_tib=1,
        extended_size_in_tib=2,
        sku=azure.elasticsan.ElasticSanSkuArgs(
            name="example-value",
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/elasticsan"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-resources"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = elasticsan.NewElasticSan(ctx, "example", &elasticsan.ElasticSanArgs{
    			Name:              pulumi.String("example"),
    			ResourceGroupName: example.Name,
    			Location:          example.Location,
    			BaseSizeInTib:     pulumi.Int(1),
    			ExtendedSizeInTib: pulumi.Int(2),
    			Sku: &elasticsan.ElasticSanSkuArgs{
    				Name: pulumi.String("example-value"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-resources",
            Location = "West Europe",
        });
    
        var exampleElasticSan = new Azure.ElasticSan.ElasticSan("example", new()
        {
            Name = "example",
            ResourceGroupName = example.Name,
            Location = example.Location,
            BaseSizeInTib = 1,
            ExtendedSizeInTib = 2,
            Sku = new Azure.ElasticSan.Inputs.ElasticSanSkuArgs
            {
                Name = "example-value",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.elasticsan.ElasticSan;
    import com.pulumi.azure.elasticsan.ElasticSanArgs;
    import com.pulumi.azure.elasticsan.inputs.ElasticSanSkuArgs;
    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 example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("example-resources")
                .location("West Europe")
                .build());
    
            var exampleElasticSan = new ElasticSan("exampleElasticSan", ElasticSanArgs.builder()        
                .name("example")
                .resourceGroupName(example.name())
                .location(example.location())
                .baseSizeInTib(1)
                .extendedSizeInTib(2)
                .sku(ElasticSanSkuArgs.builder()
                    .name("example-value")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resources
          location: West Europe
      exampleElasticSan:
        type: azure:elasticsan:ElasticSan
        name: example
        properties:
          name: example
          resourceGroupName: ${example.name}
          location: ${example.location}
          baseSizeInTib: 1
          extendedSizeInTib: 2
          sku:
            name: example-value
    

    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_in_tib: Optional[int] = None,
                   resource_group_name: Optional[str] = None,
                   sku: Optional[ElasticSanSkuArgs] = None,
                   extended_size_in_tib: Optional[int] = None,
                   location: Optional[str] = None,
                   name: Optional[str] = None,
                   tags: Optional[Mapping[str, str]] = None,
                   zones: Optional[Sequence[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: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.

    Example

    The following reference example uses placeholder values for all input properties.

    var elasticSanResource = new Azure.ElasticSan.ElasticSan("elasticSanResource", new()
    {
        BaseSizeInTib = 0,
        ResourceGroupName = "string",
        Sku = new Azure.ElasticSan.Inputs.ElasticSanSkuArgs
        {
            Name = "string",
            Tier = "string",
        },
        ExtendedSizeInTib = 0,
        Location = "string",
        Name = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Zones = new[]
        {
            "string",
        },
    });
    
    example, err := elasticsan.NewElasticSan(ctx, "elasticSanResource", &elasticsan.ElasticSanArgs{
    	BaseSizeInTib:     pulumi.Int(0),
    	ResourceGroupName: pulumi.String("string"),
    	Sku: &elasticsan.ElasticSanSkuArgs{
    		Name: pulumi.String("string"),
    		Tier: pulumi.String("string"),
    	},
    	ExtendedSizeInTib: pulumi.Int(0),
    	Location:          pulumi.String("string"),
    	Name:              pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Zones: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var elasticSanResource = new ElasticSan("elasticSanResource", ElasticSanArgs.builder()        
        .baseSizeInTib(0)
        .resourceGroupName("string")
        .sku(ElasticSanSkuArgs.builder()
            .name("string")
            .tier("string")
            .build())
        .extendedSizeInTib(0)
        .location("string")
        .name("string")
        .tags(Map.of("string", "string"))
        .zones("string")
        .build());
    
    elastic_san_resource = azure.elasticsan.ElasticSan("elasticSanResource",
        base_size_in_tib=0,
        resource_group_name="string",
        sku=azure.elasticsan.ElasticSanSkuArgs(
            name="string",
            tier="string",
        ),
        extended_size_in_tib=0,
        location="string",
        name="string",
        tags={
            "string": "string",
        },
        zones=["string"])
    
    const elasticSanResource = new azure.elasticsan.ElasticSan("elasticSanResource", {
        baseSizeInTib: 0,
        resourceGroupName: "string",
        sku: {
            name: "string",
            tier: "string",
        },
        extendedSizeInTib: 0,
        location: "string",
        name: "string",
        tags: {
            string: "string",
        },
        zones: ["string"],
    });
    
    type: azure:elasticsan:ElasticSan
    properties:
        baseSizeInTib: 0
        extendedSizeInTib: 0
        location: string
        name: string
        resourceGroupName: string
        sku:
            name: string
            tier: string
        tags:
            string: string
        zones:
            - 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

    The ElasticSan resource accepts the following input properties:

    BaseSizeInTib int

    Specifies the base size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE When updating base_size_in_tib, the new value should be greater than the existing one.

    ResourceGroupName string
    Specifies the name of the Resource Group within which this Elastic SAN resource should exist. Changing this forces a new resource to be created.
    Sku ElasticSanSku
    A sku block as defined below.
    ExtendedSizeInTib int

    Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE extended_size_in_tib cannot be removed and when updating, the new value should be greater than the existing one.

    Location string
    The Azure Region where the Elastic SAN resource should exist. Changing this forces a new resource to be created.
    Name string
    Specifies the name of this Elastic SAN resource. Changing this forces a new resource to be created.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the Elastic SAN resource.
    Zones List<string>

    Logical zone for the Elastic SAN resource. Changing this forces a new resource to be created.

    NOTE zones cannot be specified if sku.name is set to Premium_ZRS.

    BaseSizeInTib int

    Specifies the base size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE When updating base_size_in_tib, the new value should be greater than the existing one.

    ResourceGroupName string
    Specifies the name of the Resource Group within which this Elastic SAN resource should exist. Changing this forces a new resource to be created.
    Sku ElasticSanSkuArgs
    A sku block as defined below.
    ExtendedSizeInTib int

    Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE extended_size_in_tib cannot be removed and when updating, the new value should be greater than the existing one.

    Location string
    The Azure Region where the Elastic SAN resource should exist. Changing this forces a new resource to be created.
    Name string
    Specifies the name of this Elastic SAN resource. Changing this forces a new resource to be created.
    Tags map[string]string
    A mapping of tags which should be assigned to the Elastic SAN resource.
    Zones []string

    Logical zone for the Elastic SAN resource. Changing this forces a new resource to be created.

    NOTE zones cannot be specified if sku.name is set to Premium_ZRS.

    baseSizeInTib Integer

    Specifies the base size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE When updating base_size_in_tib, the new value should be greater than the existing one.

    resourceGroupName String
    Specifies the name of the Resource Group within which this Elastic SAN resource should exist. Changing this forces a new resource to be created.
    sku ElasticSanSku
    A sku block as defined below.
    extendedSizeInTib Integer

    Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE extended_size_in_tib cannot be removed and when updating, the new value should be greater than the existing one.

    location String
    The Azure Region where the Elastic SAN resource should exist. Changing this forces a new resource to be created.
    name String
    Specifies the name of this Elastic SAN resource. Changing this forces a new resource to be created.
    tags Map<String,String>
    A mapping of tags which should be assigned to the Elastic SAN resource.
    zones List<String>

    Logical zone for the Elastic SAN resource. Changing this forces a new resource to be created.

    NOTE zones cannot be specified if sku.name is set to Premium_ZRS.

    baseSizeInTib number

    Specifies the base size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE When updating base_size_in_tib, the new value should be greater than the existing one.

    resourceGroupName string
    Specifies the name of the Resource Group within which this Elastic SAN resource should exist. Changing this forces a new resource to be created.
    sku ElasticSanSku
    A sku block as defined below.
    extendedSizeInTib number

    Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE extended_size_in_tib cannot be removed and when updating, the new value should be greater than the existing one.

    location string
    The Azure Region where the Elastic SAN resource should exist. Changing this forces a new resource to be created.
    name string
    Specifies the name of this Elastic SAN resource. Changing this forces a new resource to be created.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the Elastic SAN resource.
    zones string[]

    Logical zone for the Elastic SAN resource. Changing this forces a new resource to be created.

    NOTE zones cannot be specified if sku.name is set to Premium_ZRS.

    base_size_in_tib int

    Specifies the base size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE When updating base_size_in_tib, the new value should be greater than the existing one.

    resource_group_name str
    Specifies the name of the Resource Group within which this Elastic SAN resource should exist. Changing this forces a new resource to be created.
    sku ElasticSanSkuArgs
    A sku block as defined below.
    extended_size_in_tib int

    Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE extended_size_in_tib cannot be removed and when updating, the new value should be greater than the existing one.

    location str
    The Azure Region where the Elastic SAN resource should exist. Changing this forces a new resource to be created.
    name str
    Specifies the name of this Elastic SAN resource. Changing this forces a new resource to be created.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the Elastic SAN resource.
    zones Sequence[str]

    Logical zone for the Elastic SAN resource. Changing this forces a new resource to be created.

    NOTE zones cannot be specified if sku.name is set to Premium_ZRS.

    baseSizeInTib Number

    Specifies the base size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE When updating base_size_in_tib, the new value should be greater than the existing one.

    resourceGroupName String
    Specifies the name of the Resource Group within which this Elastic SAN resource should exist. Changing this forces a new resource to be created.
    sku Property Map
    A sku block as defined below.
    extendedSizeInTib Number

    Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE extended_size_in_tib cannot be removed and when updating, the new value should be greater than the existing one.

    location String
    The Azure Region where the Elastic SAN resource should exist. Changing this forces a new resource to be created.
    name String
    Specifies the name of this Elastic SAN resource. Changing this forces a new resource to be created.
    tags Map<String>
    A mapping of tags which should be assigned to the Elastic SAN resource.
    zones List<String>

    Logical zone for the Elastic SAN resource. Changing this forces a new resource to be created.

    NOTE zones cannot be specified if sku.name is set to Premium_ZRS.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    TotalIops int
    Total Provisioned IOps of the Elastic SAN resource.
    TotalMbps int
    Total Provisioned MBps Elastic SAN resource.
    TotalSizeInTib int
    Total size of the Elastic SAN resource in TB.
    TotalVolumeSizeInGib int
    Total size of the provisioned Volumes in GiB.
    VolumeGroupCount int
    Total number of volume groups in this Elastic SAN resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    TotalIops int
    Total Provisioned IOps of the Elastic SAN resource.
    TotalMbps int
    Total Provisioned MBps Elastic SAN resource.
    TotalSizeInTib int
    Total size of the Elastic SAN resource in TB.
    TotalVolumeSizeInGib int
    Total size of the provisioned Volumes in GiB.
    VolumeGroupCount int
    Total number of volume groups in this Elastic SAN resource.
    id String
    The provider-assigned unique ID for this managed resource.
    totalIops Integer
    Total Provisioned IOps of the Elastic SAN resource.
    totalMbps Integer
    Total Provisioned MBps Elastic SAN resource.
    totalSizeInTib Integer
    Total size of the Elastic SAN resource in TB.
    totalVolumeSizeInGib Integer
    Total size of the provisioned Volumes in GiB.
    volumeGroupCount Integer
    Total number of volume groups in this Elastic SAN resource.
    id string
    The provider-assigned unique ID for this managed resource.
    totalIops number
    Total Provisioned IOps of the Elastic SAN resource.
    totalMbps number
    Total Provisioned MBps Elastic SAN resource.
    totalSizeInTib number
    Total size of the Elastic SAN resource in TB.
    totalVolumeSizeInGib number
    Total size of the provisioned Volumes in GiB.
    volumeGroupCount number
    Total number of volume groups in this Elastic SAN resource.
    id str
    The provider-assigned unique ID for this managed resource.
    total_iops int
    Total Provisioned IOps of the Elastic SAN resource.
    total_mbps int
    Total Provisioned MBps Elastic SAN resource.
    total_size_in_tib int
    Total size of the Elastic SAN resource in TB.
    total_volume_size_in_gib int
    Total size of the provisioned Volumes in GiB.
    volume_group_count int
    Total number of volume groups in this Elastic SAN resource.
    id String
    The provider-assigned unique ID for this managed resource.
    totalIops Number
    Total Provisioned IOps of the Elastic SAN resource.
    totalMbps Number
    Total Provisioned MBps Elastic SAN resource.
    totalSizeInTib Number
    Total size of the Elastic SAN resource in TB.
    totalVolumeSizeInGib Number
    Total size of the provisioned Volumes in GiB.
    volumeGroupCount Number
    Total number of volume groups in this Elastic SAN resource.

    Look up Existing ElasticSan Resource

    Get an existing ElasticSan resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ElasticSanState, opts?: CustomResourceOptions): ElasticSan
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            base_size_in_tib: Optional[int] = None,
            extended_size_in_tib: Optional[int] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            sku: Optional[ElasticSanSkuArgs] = None,
            tags: Optional[Mapping[str, str]] = None,
            total_iops: Optional[int] = None,
            total_mbps: Optional[int] = None,
            total_size_in_tib: Optional[int] = None,
            total_volume_size_in_gib: Optional[int] = None,
            volume_group_count: Optional[int] = None,
            zones: Optional[Sequence[str]] = None) -> ElasticSan
    func GetElasticSan(ctx *Context, name string, id IDInput, state *ElasticSanState, opts ...ResourceOption) (*ElasticSan, error)
    public static ElasticSan Get(string name, Input<string> id, ElasticSanState? state, CustomResourceOptions? opts = null)
    public static ElasticSan get(String name, Output<String> id, ElasticSanState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    BaseSizeInTib int

    Specifies the base size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE When updating base_size_in_tib, the new value should be greater than the existing one.

    ExtendedSizeInTib int

    Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE extended_size_in_tib cannot be removed and when updating, the new value should be greater than the existing one.

    Location string
    The Azure Region where the Elastic SAN resource should exist. Changing this forces a new resource to be created.
    Name string
    Specifies the name of this Elastic SAN resource. Changing this forces a new resource to be created.
    ResourceGroupName string
    Specifies the name of the Resource Group within which this Elastic SAN resource should exist. Changing this forces a new resource to be created.
    Sku ElasticSanSku
    A sku block as defined below.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the Elastic SAN resource.
    TotalIops int
    Total Provisioned IOps of the Elastic SAN resource.
    TotalMbps int
    Total Provisioned MBps Elastic SAN resource.
    TotalSizeInTib int
    Total size of the Elastic SAN resource in TB.
    TotalVolumeSizeInGib int
    Total size of the provisioned Volumes in GiB.
    VolumeGroupCount int
    Total number of volume groups in this Elastic SAN resource.
    Zones List<string>

    Logical zone for the Elastic SAN resource. Changing this forces a new resource to be created.

    NOTE zones cannot be specified if sku.name is set to Premium_ZRS.

    BaseSizeInTib int

    Specifies the base size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE When updating base_size_in_tib, the new value should be greater than the existing one.

    ExtendedSizeInTib int

    Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE extended_size_in_tib cannot be removed and when updating, the new value should be greater than the existing one.

    Location string
    The Azure Region where the Elastic SAN resource should exist. Changing this forces a new resource to be created.
    Name string
    Specifies the name of this Elastic SAN resource. Changing this forces a new resource to be created.
    ResourceGroupName string
    Specifies the name of the Resource Group within which this Elastic SAN resource should exist. Changing this forces a new resource to be created.
    Sku ElasticSanSkuArgs
    A sku block as defined below.
    Tags map[string]string
    A mapping of tags which should be assigned to the Elastic SAN resource.
    TotalIops int
    Total Provisioned IOps of the Elastic SAN resource.
    TotalMbps int
    Total Provisioned MBps Elastic SAN resource.
    TotalSizeInTib int
    Total size of the Elastic SAN resource in TB.
    TotalVolumeSizeInGib int
    Total size of the provisioned Volumes in GiB.
    VolumeGroupCount int
    Total number of volume groups in this Elastic SAN resource.
    Zones []string

    Logical zone for the Elastic SAN resource. Changing this forces a new resource to be created.

    NOTE zones cannot be specified if sku.name is set to Premium_ZRS.

    baseSizeInTib Integer

    Specifies the base size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE When updating base_size_in_tib, the new value should be greater than the existing one.

    extendedSizeInTib Integer

    Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE extended_size_in_tib cannot be removed and when updating, the new value should be greater than the existing one.

    location String
    The Azure Region where the Elastic SAN resource should exist. Changing this forces a new resource to be created.
    name String
    Specifies the name of this Elastic SAN resource. Changing this forces a new resource to be created.
    resourceGroupName String
    Specifies the name of the Resource Group within which this Elastic SAN resource should exist. Changing this forces a new resource to be created.
    sku ElasticSanSku
    A sku block as defined below.
    tags Map<String,String>
    A mapping of tags which should be assigned to the Elastic SAN resource.
    totalIops Integer
    Total Provisioned IOps of the Elastic SAN resource.
    totalMbps Integer
    Total Provisioned MBps Elastic SAN resource.
    totalSizeInTib Integer
    Total size of the Elastic SAN resource in TB.
    totalVolumeSizeInGib Integer
    Total size of the provisioned Volumes in GiB.
    volumeGroupCount Integer
    Total number of volume groups in this Elastic SAN resource.
    zones List<String>

    Logical zone for the Elastic SAN resource. Changing this forces a new resource to be created.

    NOTE zones cannot be specified if sku.name is set to Premium_ZRS.

    baseSizeInTib number

    Specifies the base size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE When updating base_size_in_tib, the new value should be greater than the existing one.

    extendedSizeInTib number

    Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE extended_size_in_tib cannot be removed and when updating, the new value should be greater than the existing one.

    location string
    The Azure Region where the Elastic SAN resource should exist. Changing this forces a new resource to be created.
    name string
    Specifies the name of this Elastic SAN resource. Changing this forces a new resource to be created.
    resourceGroupName string
    Specifies the name of the Resource Group within which this Elastic SAN resource should exist. Changing this forces a new resource to be created.
    sku ElasticSanSku
    A sku block as defined below.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the Elastic SAN resource.
    totalIops number
    Total Provisioned IOps of the Elastic SAN resource.
    totalMbps number
    Total Provisioned MBps Elastic SAN resource.
    totalSizeInTib number
    Total size of the Elastic SAN resource in TB.
    totalVolumeSizeInGib number
    Total size of the provisioned Volumes in GiB.
    volumeGroupCount number
    Total number of volume groups in this Elastic SAN resource.
    zones string[]

    Logical zone for the Elastic SAN resource. Changing this forces a new resource to be created.

    NOTE zones cannot be specified if sku.name is set to Premium_ZRS.

    base_size_in_tib int

    Specifies the base size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE When updating base_size_in_tib, the new value should be greater than the existing one.

    extended_size_in_tib int

    Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE extended_size_in_tib cannot be removed and when updating, the new value should be greater than the existing one.

    location str
    The Azure Region where the Elastic SAN resource should exist. Changing this forces a new resource to be created.
    name str
    Specifies the name of this Elastic SAN resource. Changing this forces a new resource to be created.
    resource_group_name str
    Specifies the name of the Resource Group within which this Elastic SAN resource should exist. Changing this forces a new resource to be created.
    sku ElasticSanSkuArgs
    A sku block as defined below.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the Elastic SAN resource.
    total_iops int
    Total Provisioned IOps of the Elastic SAN resource.
    total_mbps int
    Total Provisioned MBps Elastic SAN resource.
    total_size_in_tib int
    Total size of the Elastic SAN resource in TB.
    total_volume_size_in_gib int
    Total size of the provisioned Volumes in GiB.
    volume_group_count int
    Total number of volume groups in this Elastic SAN resource.
    zones Sequence[str]

    Logical zone for the Elastic SAN resource. Changing this forces a new resource to be created.

    NOTE zones cannot be specified if sku.name is set to Premium_ZRS.

    baseSizeInTib Number

    Specifies the base size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE When updating base_size_in_tib, the new value should be greater than the existing one.

    extendedSizeInTib Number

    Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between 1 and 100.

    NOTE extended_size_in_tib cannot be removed and when updating, the new value should be greater than the existing one.

    location String
    The Azure Region where the Elastic SAN resource should exist. Changing this forces a new resource to be created.
    name String
    Specifies the name of this Elastic SAN resource. Changing this forces a new resource to be created.
    resourceGroupName String
    Specifies the name of the Resource Group within which this Elastic SAN resource should exist. Changing this forces a new resource to be created.
    sku Property Map
    A sku block as defined below.
    tags Map<String>
    A mapping of tags which should be assigned to the Elastic SAN resource.
    totalIops Number
    Total Provisioned IOps of the Elastic SAN resource.
    totalMbps Number
    Total Provisioned MBps Elastic SAN resource.
    totalSizeInTib Number
    Total size of the Elastic SAN resource in TB.
    totalVolumeSizeInGib Number
    Total size of the provisioned Volumes in GiB.
    volumeGroupCount Number
    Total number of volume groups in this Elastic SAN resource.
    zones List<String>

    Logical zone for the Elastic SAN resource. Changing this forces a new resource to be created.

    NOTE zones cannot be specified if sku.name is set to Premium_ZRS.

    Supporting Types

    ElasticSanSku, ElasticSanSkuArgs

    Name string

    The SKU name. Possible values are Premium_LRS and Premium_ZRS. Changing this forces a new resource to be created.

    NOTE Premium_ZRS SKU is only available in limited Azure regions including France Central, North Europe, West Europe, and West US 2. Please refer to this document for more details.

    Tier string
    The SKU tier. The only possible value is Premium. Defaults to Premium.
    Name string

    The SKU name. Possible values are Premium_LRS and Premium_ZRS. Changing this forces a new resource to be created.

    NOTE Premium_ZRS SKU is only available in limited Azure regions including France Central, North Europe, West Europe, and West US 2. Please refer to this document for more details.

    Tier string
    The SKU tier. The only possible value is Premium. Defaults to Premium.
    name String

    The SKU name. Possible values are Premium_LRS and Premium_ZRS. Changing this forces a new resource to be created.

    NOTE Premium_ZRS SKU is only available in limited Azure regions including France Central, North Europe, West Europe, and West US 2. Please refer to this document for more details.

    tier String
    The SKU tier. The only possible value is Premium. Defaults to Premium.
    name string

    The SKU name. Possible values are Premium_LRS and Premium_ZRS. Changing this forces a new resource to be created.

    NOTE Premium_ZRS SKU is only available in limited Azure regions including France Central, North Europe, West Europe, and West US 2. Please refer to this document for more details.

    tier string
    The SKU tier. The only possible value is Premium. Defaults to Premium.
    name str

    The SKU name. Possible values are Premium_LRS and Premium_ZRS. Changing this forces a new resource to be created.

    NOTE Premium_ZRS SKU is only available in limited Azure regions including France Central, North Europe, West Europe, and West US 2. Please refer to this document for more details.

    tier str
    The SKU tier. The only possible value is Premium. Defaults to Premium.
    name String

    The SKU name. Possible values are Premium_LRS and Premium_ZRS. Changing this forces a new resource to be created.

    NOTE Premium_ZRS SKU is only available in limited Azure regions including France Central, North Europe, West Europe, and West US 2. Please refer to this document for more details.

    tier String
    The SKU tier. The only possible value is Premium. Defaults to Premium.

    Import

    An existing Elastic SAN can be imported into Terraform using the resource id, e.g.

    $ pulumi import azure:elasticsan/elasticSan:ElasticSan example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ElasticSan/elasticSans/esan1
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.77.1 published on Monday, May 13, 2024 by Pulumi