We recommend using Azure Native.
azure.elasticsan.ElasticSan
Explore with Pulumi AI
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={
"name": "example-value",
})
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v6/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.
Constructor 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={
"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
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:
- Base
Size intIn Tib Specifies the base size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.NOTE When updating
base_size_in_tib
, the new value should be greater than the existing one.- Resource
Group stringName - 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
Elastic
San Sku - A
sku
block as defined below. - Extended
Size intIn Tib Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.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.
- 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 ifsku.name
is set toPremium_ZRS
.
- Base
Size intIn Tib Specifies the base size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.NOTE When updating
base_size_in_tib
, the new value should be greater than the existing one.- Resource
Group stringName - 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
Elastic
San Sku Args - A
sku
block as defined below. - Extended
Size intIn Tib Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.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.
- 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 ifsku.name
is set toPremium_ZRS
.
- base
Size IntegerIn Tib Specifies the base size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.NOTE When updating
base_size_in_tib
, the new value should be greater than the existing one.- resource
Group StringName - 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
Elastic
San Sku - A
sku
block as defined below. - extended
Size IntegerIn Tib Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.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.
- 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 ifsku.name
is set toPremium_ZRS
.
- base
Size numberIn Tib Specifies the base size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.NOTE When updating
base_size_in_tib
, the new value should be greater than the existing one.- resource
Group stringName - 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
Elastic
San Sku - A
sku
block as defined below. - extended
Size numberIn Tib Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.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.
- {[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 ifsku.name
is set toPremium_ZRS
.
- base_
size_ intin_ tib Specifies the base size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.NOTE When updating
base_size_in_tib
, the new value should be greater than the existing one.- resource_
group_ strname - 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
Elastic
San Sku Args - A
sku
block as defined below. - extended_
size_ intin_ tib Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.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.
- 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 ifsku.name
is set toPremium_ZRS
.
- base
Size NumberIn Tib Specifies the base size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.NOTE When updating
base_size_in_tib
, the new value should be greater than the existing one.- resource
Group StringName - 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. - extended
Size NumberIn Tib Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.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.
- 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 ifsku.name
is set toPremium_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.
- Total
Iops int - Total Provisioned IOps of the Elastic SAN resource.
- Total
Mbps int - Total Provisioned MBps Elastic SAN resource.
- Total
Size intIn Tib - Total size of the Elastic SAN resource in TB.
- Total
Volume intSize In Gib - Total size of the provisioned Volumes in GiB.
- Volume
Group intCount - Total number of volume groups in this Elastic SAN resource.
- Id string
- 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 intIn Tib - Total size of the Elastic SAN resource in TB.
- Total
Volume intSize In Gib - Total size of the provisioned Volumes in GiB.
- Volume
Group intCount - Total number of volume groups in this Elastic SAN resource.
- id String
- The provider-assigned unique ID for this managed resource.
- total
Iops Integer - Total Provisioned IOps of the Elastic SAN resource.
- total
Mbps Integer - Total Provisioned MBps Elastic SAN resource.
- total
Size IntegerIn Tib - Total size of the Elastic SAN resource in TB.
- total
Volume IntegerSize In Gib - Total size of the provisioned Volumes in GiB.
- volume
Group IntegerCount - Total number of volume groups in this Elastic SAN resource.
- id string
- The provider-assigned unique ID for this managed resource.
- total
Iops number - Total Provisioned IOps of the Elastic SAN resource.
- total
Mbps number - Total Provisioned MBps Elastic SAN resource.
- total
Size numberIn Tib - Total size of the Elastic SAN resource in TB.
- total
Volume numberSize In Gib - Total size of the provisioned Volumes in GiB.
- volume
Group numberCount - 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_ intin_ tib - Total size of the Elastic SAN resource in TB.
- total_
volume_ intsize_ in_ gib - Total size of the provisioned Volumes in GiB.
- volume_
group_ intcount - Total number of volume groups in this Elastic SAN resource.
- id String
- The provider-assigned unique ID for this managed resource.
- total
Iops Number - Total Provisioned IOps of the Elastic SAN resource.
- total
Mbps Number - Total Provisioned MBps Elastic SAN resource.
- total
Size NumberIn Tib - Total size of the Elastic SAN resource in TB.
- total
Volume NumberSize In Gib - Total size of the provisioned Volumes in GiB.
- volume
Group NumberCount - 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)
resources: _: type: azure:elasticsan:ElasticSan get: id: ${id}
- 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.
- Base
Size intIn Tib Specifies the base size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.NOTE When updating
base_size_in_tib
, the new value should be greater than the existing one.- Extended
Size intIn Tib Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.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.
- Resource
Group stringName - 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
Elastic
San Sku - A
sku
block as defined below. - Dictionary<string, string>
- 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 intIn Tib - Total size of the Elastic SAN resource in TB.
- Total
Volume intSize In Gib - Total size of the provisioned Volumes in GiB.
- Volume
Group intCount - 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 ifsku.name
is set toPremium_ZRS
.
- Base
Size intIn Tib Specifies the base size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.NOTE When updating
base_size_in_tib
, the new value should be greater than the existing one.- Extended
Size intIn Tib Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.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.
- Resource
Group stringName - 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
Elastic
San Sku Args - A
sku
block as defined below. - map[string]string
- 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 intIn Tib - Total size of the Elastic SAN resource in TB.
- Total
Volume intSize In Gib - Total size of the provisioned Volumes in GiB.
- Volume
Group intCount - 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 ifsku.name
is set toPremium_ZRS
.
- base
Size IntegerIn Tib Specifies the base size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.NOTE When updating
base_size_in_tib
, the new value should be greater than the existing one.- extended
Size IntegerIn Tib Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.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.
- resource
Group StringName - 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
Elastic
San Sku - A
sku
block as defined below. - Map<String,String>
- A mapping of tags which should be assigned to the Elastic SAN resource.
- total
Iops Integer - Total Provisioned IOps of the Elastic SAN resource.
- total
Mbps Integer - Total Provisioned MBps Elastic SAN resource.
- total
Size IntegerIn Tib - Total size of the Elastic SAN resource in TB.
- total
Volume IntegerSize In Gib - Total size of the provisioned Volumes in GiB.
- volume
Group IntegerCount - 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 ifsku.name
is set toPremium_ZRS
.
- base
Size numberIn Tib Specifies the base size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.NOTE When updating
base_size_in_tib
, the new value should be greater than the existing one.- extended
Size numberIn Tib Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.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.
- resource
Group stringName - 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
Elastic
San Sku - A
sku
block as defined below. - {[key: string]: string}
- A mapping of tags which should be assigned to the Elastic SAN resource.
- total
Iops number - Total Provisioned IOps of the Elastic SAN resource.
- total
Mbps number - Total Provisioned MBps Elastic SAN resource.
- total
Size numberIn Tib - Total size of the Elastic SAN resource in TB.
- total
Volume numberSize In Gib - Total size of the provisioned Volumes in GiB.
- volume
Group numberCount - 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 ifsku.name
is set toPremium_ZRS
.
- base_
size_ intin_ tib Specifies the base size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.NOTE When updating
base_size_in_tib
, the new value should be greater than the existing one.- extended_
size_ intin_ tib Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.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_ strname - 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
Elastic
San Sku Args - A
sku
block as defined below. - 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_ intin_ tib - Total size of the Elastic SAN resource in TB.
- total_
volume_ intsize_ in_ gib - Total size of the provisioned Volumes in GiB.
- volume_
group_ intcount - 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 ifsku.name
is set toPremium_ZRS
.
- base
Size NumberIn Tib Specifies the base size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.NOTE When updating
base_size_in_tib
, the new value should be greater than the existing one.- extended
Size NumberIn Tib Specifies the extended size of the Elastic SAN resource in TiB. Possible values are between
1
and100
.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.
- resource
Group StringName - 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. - Map<String>
- A mapping of tags which should be assigned to the Elastic SAN resource.
- total
Iops Number - Total Provisioned IOps of the Elastic SAN resource.
- total
Mbps Number - Total Provisioned MBps Elastic SAN resource.
- total
Size NumberIn Tib - Total size of the Elastic SAN resource in TB.
- total
Volume NumberSize In Gib - Total size of the provisioned Volumes in GiB.
- volume
Group NumberCount - 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 ifsku.name
is set toPremium_ZRS
.
Supporting Types
ElasticSanSku, ElasticSanSkuArgs
- Name string
The SKU name. Possible values are
Premium_LRS
andPremium_ZRS
. Changing this forces a new resource to be created.NOTE
Premium_ZRS
SKU is only available in limited Azure regions includingFrance Central
,North Europe
,West Europe
, andWest US 2
. Please refer to this document for more details.- Tier string
- The SKU tier. The only possible value is
Premium
. Defaults toPremium
.
- Name string
The SKU name. Possible values are
Premium_LRS
andPremium_ZRS
. Changing this forces a new resource to be created.NOTE
Premium_ZRS
SKU is only available in limited Azure regions includingFrance Central
,North Europe
,West Europe
, andWest US 2
. Please refer to this document for more details.- Tier string
- The SKU tier. The only possible value is
Premium
. Defaults toPremium
.
- name String
The SKU name. Possible values are
Premium_LRS
andPremium_ZRS
. Changing this forces a new resource to be created.NOTE
Premium_ZRS
SKU is only available in limited Azure regions includingFrance Central
,North Europe
,West Europe
, andWest US 2
. Please refer to this document for more details.- tier String
- The SKU tier. The only possible value is
Premium
. Defaults toPremium
.
- name string
The SKU name. Possible values are
Premium_LRS
andPremium_ZRS
. Changing this forces a new resource to be created.NOTE
Premium_ZRS
SKU is only available in limited Azure regions includingFrance Central
,North Europe
,West Europe
, andWest US 2
. Please refer to this document for more details.- tier string
- The SKU tier. The only possible value is
Premium
. Defaults toPremium
.
- name str
The SKU name. Possible values are
Premium_LRS
andPremium_ZRS
. Changing this forces a new resource to be created.NOTE
Premium_ZRS
SKU is only available in limited Azure regions includingFrance Central
,North Europe
,West Europe
, andWest US 2
. Please refer to this document for more details.- tier str
- The SKU tier. The only possible value is
Premium
. Defaults toPremium
.
- name String
The SKU name. Possible values are
Premium_LRS
andPremium_ZRS
. Changing this forces a new resource to be created.NOTE
Premium_ZRS
SKU is only available in limited Azure regions includingFrance Central
,North Europe
,West Europe
, andWest US 2
. Please refer to this document for more details.- tier String
- The SKU tier. The only possible value is
Premium
. Defaults toPremium
.
Import
An existing Elastic SAN can be imported into Pulumi 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.