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

azure-native.elasticsan.ElasticSan

Explore with Pulumi AI

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

    Response for ElasticSan request. Azure REST API version: 2021-11-20-preview. Prior API version in Azure Native 1.x: 2021-11-20-preview.

    Other available API versions: 2022-12-01-preview, 2023-01-01.

    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[]
            {
                "aaaaaaaaaaaaaaaaa",
            },
            BaseSizeTiB = 26,
            ElasticSanName = "ti7q-k952-1qB3J_5",
            ExtendedCapacitySizeTiB = 7,
            Location = "aaaaaaaaaaaaaaaaaaaaaaaaaaa",
            ResourceGroupName = "rgelasticsan",
            Sku = new AzureNative.ElasticSan.Inputs.SkuArgs
            {
                Name = AzureNative.ElasticSan.SkuName.Premium_LRS,
                Tier = AzureNative.ElasticSan.SkuTier.Premium,
            },
            Tags = 
            {
                { "key896", "aaaaaaaaaaaaaaaaaa" },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/elasticsan/v2"
    	"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("aaaaaaaaaaaaaaaaa"),
    			},
    			BaseSizeTiB:             pulumi.Float64(26),
    			ElasticSanName:          pulumi.String("ti7q-k952-1qB3J_5"),
    			ExtendedCapacitySizeTiB: pulumi.Float64(7),
    			Location:                pulumi.String("aaaaaaaaaaaaaaaaaaaaaaaaaaa"),
    			ResourceGroupName:       pulumi.String("rgelasticsan"),
    			Sku: &elasticsan.SkuArgs{
    				Name: pulumi.String(elasticsan.SkuName_Premium_LRS),
    				Tier: pulumi.String(elasticsan.SkuTierPremium),
    			},
    			Tags: pulumi.StringMap{
    				"key896": pulumi.String("aaaaaaaaaaaaaaaaaa"),
    			},
    		})
    		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("aaaaaaaaaaaaaaaaa")
                .baseSizeTiB(26)
                .elasticSanName("ti7q-k952-1qB3J_5")
                .extendedCapacitySizeTiB(7)
                .location("aaaaaaaaaaaaaaaaaaaaaaaaaaa")
                .resourceGroupName("rgelasticsan")
                .sku(SkuArgs.builder()
                    .name("Premium_LRS")
                    .tier("Premium")
                    .build())
                .tags(Map.of("key896", "aaaaaaaaaaaaaaaaaa"))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    elastic_san = azure_native.elasticsan.ElasticSan("elasticSan",
        availability_zones=["aaaaaaaaaaaaaaaaa"],
        base_size_ti_b=26,
        elastic_san_name="ti7q-k952-1qB3J_5",
        extended_capacity_size_ti_b=7,
        location="aaaaaaaaaaaaaaaaaaaaaaaaaaa",
        resource_group_name="rgelasticsan",
        sku=azure_native.elasticsan.SkuArgs(
            name=azure_native.elasticsan.SkuName.PREMIUM_LRS,
            tier=azure_native.elasticsan.SkuTier.PREMIUM,
        ),
        tags={
            "key896": "aaaaaaaaaaaaaaaaaa",
        })
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const elasticSan = new azure_native.elasticsan.ElasticSan("elasticSan", {
        availabilityZones: ["aaaaaaaaaaaaaaaaa"],
        baseSizeTiB: 26,
        elasticSanName: "ti7q-k952-1qB3J_5",
        extendedCapacitySizeTiB: 7,
        location: "aaaaaaaaaaaaaaaaaaaaaaaaaaa",
        resourceGroupName: "rgelasticsan",
        sku: {
            name: azure_native.elasticsan.SkuName.Premium_LRS,
            tier: azure_native.elasticsan.SkuTier.Premium,
        },
        tags: {
            key896: "aaaaaaaaaaaaaaaaaa",
        },
    });
    
    resources:
      elasticSan:
        type: azure-native:elasticsan:ElasticSan
        properties:
          availabilityZones:
            - aaaaaaaaaaaaaaaaa
          baseSizeTiB: 26
          elasticSanName: ti7q-k952-1qB3J_5
          extendedCapacitySizeTiB: 7
          location: aaaaaaaaaaaaaaaaaaaaaaaaaaa
          resourceGroupName: rgelasticsan
          sku:
            name: Premium_LRS
            tier: Premium
          tags:
            key896: aaaaaaaaaaaaaaaaaa
    

    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 = 26,
            ElasticSanName = "ti7q-k952-1qB3J_5",
            ExtendedCapacitySizeTiB = 7,
            ResourceGroupName = "rgelasticsan",
            Sku = new AzureNative.ElasticSan.Inputs.SkuArgs
            {
                Name = AzureNative.ElasticSan.SkuName.Premium_LRS,
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/elasticsan/v2"
    	"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(26),
    			ElasticSanName:          pulumi.String("ti7q-k952-1qB3J_5"),
    			ExtendedCapacitySizeTiB: pulumi.Float64(7),
    			ResourceGroupName:       pulumi.String("rgelasticsan"),
    			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(26)
                .elasticSanName("ti7q-k952-1qB3J_5")
                .extendedCapacitySizeTiB(7)
                .resourceGroupName("rgelasticsan")
                .sku(SkuArgs.builder()
                    .name("Premium_LRS")
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    elastic_san = azure_native.elasticsan.ElasticSan("elasticSan",
        base_size_ti_b=26,
        elastic_san_name="ti7q-k952-1qB3J_5",
        extended_capacity_size_ti_b=7,
        resource_group_name="rgelasticsan",
        sku=azure_native.elasticsan.SkuArgs(
            name=azure_native.elasticsan.SkuName.PREMIUM_LRS,
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const elasticSan = new azure_native.elasticsan.ElasticSan("elasticSan", {
        baseSizeTiB: 26,
        elasticSanName: "ti7q-k952-1qB3J_5",
        extendedCapacitySizeTiB: 7,
        resourceGroupName: "rgelasticsan",
        sku: {
            name: azure_native.elasticsan.SkuName.Premium_LRS,
        },
    });
    
    resources:
      elasticSan:
        type: azure-native:elasticsan:ElasticSan
        properties:
          baseSizeTiB: 26
          elasticSanName: ti7q-k952-1qB3J_5
          extendedCapacitySizeTiB: 7
          resourceGroupName: rgelasticsan
          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,
                   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.

    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",
        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"),
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var elasticSanResource = new ElasticSan("elasticSanResource", ElasticSanArgs.builder()        
        .baseSizeTiB(0)
        .extendedCapacitySizeTiB(0)
        .resourceGroupName("string")
        .sku(SkuArgs.builder()
            .name("string")
            .tier("string")
            .build())
        .availabilityZones("string")
        .elasticSanName("string")
        .location("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=azure_native.elasticsan.SkuArgs(
            name="string",
            tier="string",
        ),
        availability_zones=["string"],
        elastic_san_name="string",
        location="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",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:elasticsan:ElasticSan
    properties:
        availabilityZones:
            - string
        baseSizeTiB: 0
        elasticSanName: string
        extendedCapacitySizeTiB: 0
        location: 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

    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.
    Tags Dictionary<string, string>
    Azure 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.
    Tags map[string]string
    Azure 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.
    tags Map<String,String>
    Azure 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.
    tags {[key: string]: string}
    Azure 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.
    tags Mapping[str, str]
    Azure 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.
    tags Map<String>
    Azure resource tags.

    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.
    Name string
    Azure resource name.
    ProvisioningState string
    State of the operation on the resource.
    SystemData Pulumi.AzureNative.ElasticSan.Outputs.SystemDataResponse
    Resource metadata required by ARM RPC
    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
    Azure resource type.
    VolumeGroupCount double
    Total number of volume groups in this Elastic San appliance.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Azure resource name.
    ProvisioningState string
    State of the operation on the resource.
    SystemData SystemDataResponse
    Resource metadata required by ARM RPC
    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
    Azure resource type.
    VolumeGroupCount float64
    Total number of volume groups in this Elastic San appliance.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Azure resource name.
    provisioningState String
    State of the operation on the resource.
    systemData SystemDataResponse
    Resource metadata required by ARM RPC
    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
    Azure resource type.
    volumeGroupCount Double
    Total number of volume groups in this Elastic San appliance.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Azure resource name.
    provisioningState string
    State of the operation on the resource.
    systemData SystemDataResponse
    Resource metadata required by ARM RPC
    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
    Azure resource type.
    volumeGroupCount number
    Total number of volume groups in this Elastic San appliance.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Azure resource name.
    provisioning_state str
    State of the operation on the resource.
    system_data SystemDataResponse
    Resource metadata required by ARM RPC
    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
    Azure resource type.
    volume_group_count float
    Total number of volume groups in this Elastic San appliance.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Azure resource name.
    provisioningState String
    State of the operation on the resource.
    systemData Property Map
    Resource metadata required by ARM RPC
    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
    Azure resource type.
    volumeGroupCount Number
    Total number of volume groups in this Elastic San appliance.

    Supporting Types

    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 aaaaaaaaaaa /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 v1 docs if using the v1 version of this package.
    Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi