Azure Native
ElasticSan
Response for ElasticSan request. API Version: 2021-11-20-preview.
Example Usage
ElasticSans_Create_MaximumSet_Gen
using Pulumi;
using AzureNative = Pulumi.AzureNative;
class MyStack : Stack
{
public MyStack()
{
var elasticSan = new AzureNative.ElasticSan.ElasticSan("elasticSan", new AzureNative.ElasticSan.ElasticSanArgs
{
AvailabilityZones =
{
"aaaaaaaaaaaaaaaaaaaaaaaaa",
},
BaseSizeTiB = 26,
ElasticSanName = "33zg-7s_4_7L2_65o",
ExtendedCapacitySizeTiB = 4,
Location = "aaaaaaaaaaaaaaaaaaaaaaaaa",
ResourceGroupName = "rgelasticsan",
Sku = new AzureNative.ElasticSan.Inputs.SkuArgs
{
Name = "Standard_LRS",
Tier = "Standard",
},
Tags =
{
{ "key3875", "aaaaaaaaa" },
},
});
}
}
package main
import (
elasticsan "github.com/pulumi/pulumi-azure-native/sdk/go/azure/elasticsan"
"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("aaaaaaaaaaaaaaaaaaaaaaaaa"),
},
BaseSizeTiB: pulumi.Float64(26),
ElasticSanName: pulumi.String("33zg-7s_4_7L2_65o"),
ExtendedCapacitySizeTiB: pulumi.Float64(4),
Location: pulumi.String("aaaaaaaaaaaaaaaaaaaaaaaaa"),
ResourceGroupName: pulumi.String("rgelasticsan"),
Sku: &elasticsan.SkuArgs{
Name: pulumi.String("Standard_LRS"),
Tier: pulumi.String("Standard"),
},
Tags: pulumi.StringMap{
"key3875": pulumi.String("aaaaaaaaa"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import java.util.*;
import java.io.*;
import java.nio.*;
import com.pulumi.*;
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("aaaaaaaaaaaaaaaaaaaaaaaaa")
.baseSizeTiB(26)
.elasticSanName("33zg-7s_4_7L2_65o")
.extendedCapacitySizeTiB(4)
.location("aaaaaaaaaaaaaaaaaaaaaaaaa")
.resourceGroupName("rgelasticsan")
.sku(Map.ofEntries(
Map.entry("name", "Standard_LRS"),
Map.entry("tier", "Standard")
))
.tags(Map.of("key3875", "aaaaaaaaa"))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
elastic_san = azure_native.elasticsan.ElasticSan("elasticSan",
availability_zones=["aaaaaaaaaaaaaaaaaaaaaaaaa"],
base_size_ti_b=26,
elastic_san_name="33zg-7s_4_7L2_65o",
extended_capacity_size_ti_b=4,
location="aaaaaaaaaaaaaaaaaaaaaaaaa",
resource_group_name="rgelasticsan",
sku=azure_native.elasticsan.SkuArgs(
name="Standard_LRS",
tier="Standard",
),
tags={
"key3875": "aaaaaaaaa",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const elasticSan = new azure_native.elasticsan.ElasticSan("elasticSan", {
availabilityZones: ["aaaaaaaaaaaaaaaaaaaaaaaaa"],
baseSizeTiB: 26,
elasticSanName: "33zg-7s_4_7L2_65o",
extendedCapacitySizeTiB: 4,
location: "aaaaaaaaaaaaaaaaaaaaaaaaa",
resourceGroupName: "rgelasticsan",
sku: {
name: "Standard_LRS",
tier: "Standard",
},
tags: {
key3875: "aaaaaaaaa",
},
});
resources:
elasticSan:
type: azure-native:elasticsan:ElasticSan
properties:
availabilityZones:
- aaaaaaaaaaaaaaaaaaaaaaaaa
baseSizeTiB: 26
elasticSanName: 33zg-7s_4_7L2_65o
extendedCapacitySizeTiB: 4
location: aaaaaaaaaaaaaaaaaaaaaaaaa
resourceGroupName: rgelasticsan
sku:
name: Standard_LRS
tier: Standard
tags:
key3875: aaaaaaaaa
Create a ElasticSan Resource
new ElasticSan(name: string, args: ElasticSanArgs, opts?: CustomResourceOptions);
@overload
def ElasticSan(resource_name: str,
opts: Optional[ResourceOptions] = None,
availability_zones: Optional[Sequence[str]] = None,
base_size_ti_b: Optional[float] = None,
elastic_san_name: Optional[str] = None,
extended_capacity_size_ti_b: Optional[float] = None,
location: Optional[str] = None,
resource_group_name: Optional[str] = None,
sku: Optional[SkuArgs] = None,
tags: Optional[Mapping[str, str]] = None)
@overload
def ElasticSan(resource_name: str,
args: ElasticSanArgs,
opts: Optional[ResourceOptions] = 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.
- 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.
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:
- Availability
Zones List<string> Logical zone for Elastic San resource; example: ["1"].
- Base
Size doubleTi B Base size of the Elastic San appliance in TiB.
- Extended
Capacity doubleSize Ti B Extended size of the Elastic San appliance in TiB.
- Resource
Group stringName The name of the resource group. The name is case insensitive.
- Elastic
San stringName The name of the ElasticSan.
- Location string
The geo-location where the resource lives.
- Sku
Pulumi.
Azure Native. Elastic San. Inputs. Sku Args resource sku
- Dictionary<string, string>
Azure resource tags.
- Availability
Zones []string Logical zone for Elastic San resource; example: ["1"].
- Base
Size float64Ti B Base size of the Elastic San appliance in TiB.
- Extended
Capacity float64Size Ti B Extended size of the Elastic San appliance in TiB.
- Resource
Group stringName The name of the resource group. The name is case insensitive.
- Elastic
San stringName The name of the ElasticSan.
- Location string
The geo-location where the resource lives.
- Sku
Sku
Args resource sku
- map[string]string
Azure resource tags.
- availability
Zones List Logical zone for Elastic San resource; example: ["1"].
- base
Size DoubleTi B Base size of the Elastic San appliance in TiB.
- extended
Capacity DoubleSize Ti B Extended size of the Elastic San appliance in TiB.
- resource
Group StringName The name of the resource group. The name is case insensitive.
- elastic
San StringName The name of the ElasticSan.
- location String
The geo-location where the resource lives.
- sku
Sku
Args resource sku
- Map
Azure resource tags.
- availability
Zones string[] Logical zone for Elastic San resource; example: ["1"].
- base
Size numberTi B Base size of the Elastic San appliance in TiB.
- extended
Capacity numberSize Ti B Extended size of the Elastic San appliance in TiB.
- resource
Group stringName The name of the resource group. The name is case insensitive.
- elastic
San stringName The name of the ElasticSan.
- location string
The geo-location where the resource lives.
- sku
Sku
Args resource sku
- {[key: string]: string}
Azure resource tags.
- availability_
zones Sequence[str] Logical zone for Elastic San resource; example: ["1"].
- base_
size_ floatti_ b Base size of the Elastic San appliance in TiB.
- extended_
capacity_ floatsize_ ti_ b Extended size of the Elastic San appliance in TiB.
- resource_
group_ strname The name of the resource group. The name is case insensitive.
- elastic_
san_ strname The name of the ElasticSan.
- location str
The geo-location where the resource lives.
- sku
Sku
Args resource sku
- Mapping[str, str]
Azure resource tags.
- availability
Zones List Logical zone for Elastic San resource; example: ["1"].
- base
Size NumberTi B Base size of the Elastic San appliance in TiB.
- extended
Capacity NumberSize Ti B Extended size of the Elastic San appliance in TiB.
- resource
Group StringName The name of the resource group. The name is case insensitive.
- elastic
San StringName The name of the ElasticSan.
- location String
The geo-location where the resource lives.
- sku Property Map
resource sku
- Map
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.
- Provisioned
MBps double Provisioned MBps Elastic San appliance.
- Provisioning
State string State of the operation on the resource.
- System
Data Pulumi.Azure Native. Elastic San. Outputs. System Data Response Resource metadata required by ARM RPC
- Total
Iops double Total Provisioned IOPS of the Elastic San appliance.
- Total
MBps double Total Provisioned MBps Elastic San appliance.
- Total
Volume doubleSize Gi B Total size of the provisioned Volumes in GiB.
- Type string
Azure resource type.
- Volume
Group doubleCount 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.
- Provisioned
MBps float64 Provisioned MBps Elastic San appliance.
- Provisioning
State string State of the operation on the resource.
- System
Data SystemData Response Resource metadata required by ARM RPC
- Total
Iops float64 Total Provisioned IOPS of the Elastic San appliance.
- Total
MBps float64 Total Provisioned MBps Elastic San appliance.
- Total
Volume float64Size Gi B Total size of the provisioned Volumes in GiB.
- Type string
Azure resource type.
- Volume
Group float64Count 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.
- provisioned
MBps Double Provisioned MBps Elastic San appliance.
- provisioning
State String State of the operation on the resource.
- system
Data SystemData Response Resource metadata required by ARM RPC
- total
Iops Double Total Provisioned IOPS of the Elastic San appliance.
- total
MBps Double Total Provisioned MBps Elastic San appliance.
- total
Volume DoubleSize Gi B Total size of the provisioned Volumes in GiB.
- type String
Azure resource type.
- volume
Group DoubleCount 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.
- provisioned
MBps number Provisioned MBps Elastic San appliance.
- provisioning
State string State of the operation on the resource.
- system
Data SystemData Response Resource metadata required by ARM RPC
- total
Iops number Total Provisioned IOPS of the Elastic San appliance.
- total
MBps number Total Provisioned MBps Elastic San appliance.
- total
Volume numberSize Gi B Total size of the provisioned Volumes in GiB.
- type string
Azure resource type.
- volume
Group numberCount 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.
- provisioned_
m_ floatbps Provisioned MBps Elastic San appliance.
- provisioning_
state str State of the operation on the resource.
- system_
data SystemData Response Resource metadata required by ARM RPC
- total_
iops float Total Provisioned IOPS of the Elastic San appliance.
- total_
m_ floatbps Total Provisioned MBps Elastic San appliance.
- total_
volume_ floatsize_ gi_ b Total size of the provisioned Volumes in GiB.
- type str
Azure resource type.
- volume_
group_ floatcount 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.
- provisioned
MBps Number Provisioned MBps Elastic San appliance.
- provisioning
State String State of the operation on the resource.
- system
Data Property Map Resource metadata required by ARM RPC
- total
Iops Number Total Provisioned IOPS of the Elastic San appliance.
- total
MBps Number Total Provisioned MBps Elastic San appliance.
- total
Volume NumberSize Gi B Total size of the provisioned Volumes in GiB.
- type String
Azure resource type.
- volume
Group NumberCount Total number of volume groups in this Elastic San appliance.
Supporting Types
Name
- Standard_LRS
- Standard_LRS
Standard locally redundant storage
- Premium_LRS
- Premium_LRS
Premium locally redundant storage
- Standard_ZRS
- Standard_ZRS
Standard zone redundant storage
- Name_Standard_LRS
- Standard_LRS
Standard locally redundant storage
- Name_Premium_LRS
- Premium_LRS
Premium locally redundant storage
- Name_Standard_ZRS
- Standard_ZRS
Standard zone redundant storage
- Standard_LRS
- Standard_LRS
Standard locally redundant storage
- Premium_LRS
- Premium_LRS
Premium locally redundant storage
- Standard_ZRS
- Standard_ZRS
Standard zone redundant storage
- Standard_LRS
- Standard_LRS
Standard locally redundant storage
- Premium_LRS
- Premium_LRS
Premium locally redundant storage
- Standard_ZRS
- Standard_ZRS
Standard zone redundant storage
- STANDARD_LRS
- Standard_LRS
Standard locally redundant storage
- PREMIUM_LRS
- Premium_LRS
Premium locally redundant storage
- STANDARD_ZRS
- Standard_ZRS
Standard zone redundant storage
- "Standard_LRS"
- Standard_LRS
Standard locally redundant storage
- "Premium_LRS"
- Premium_LRS
Premium locally redundant storage
- "Standard_ZRS"
- Standard_ZRS
Standard zone redundant storage
Sku
- Name
string | Pulumi.
Azure Native. Elastic San. Name The sku name.
- Tier
string | Pulumi.
Azure Native. Elastic San. Tier The sku tier.
- name String | "Standard_LRS" | "Premium_LRS" | "Standard_ZRS"
The sku name.
- tier String | "Hero" | "Satellite" | "Hub"
The sku tier.
SkuResponse
SystemDataResponse
- Created
At string The timestamp of resource creation (UTC).
- Created
By string The identity that created the resource.
- Created
By stringType The type of identity that created the resource.
- Last
Modified stringAt The timestamp of resource last modification (UTC)
- Last
Modified stringBy The identity that last modified the resource.
- Last
Modified stringBy Type The type of identity that last modified the resource.
- Created
At string The timestamp of resource creation (UTC).
- Created
By string The identity that created the resource.
- Created
By stringType The type of identity that created the resource.
- Last
Modified stringAt The timestamp of resource last modification (UTC)
- Last
Modified stringBy The identity that last modified the resource.
- Last
Modified stringBy Type The type of identity that last modified the resource.
- created
At String The timestamp of resource creation (UTC).
- created
By String The identity that created the resource.
- created
By StringType The type of identity that created the resource.
- last
Modified StringAt The timestamp of resource last modification (UTC)
- last
Modified StringBy The identity that last modified the resource.
- last
Modified StringBy Type The type of identity that last modified the resource.
- created
At string The timestamp of resource creation (UTC).
- created
By string The identity that created the resource.
- created
By stringType The type of identity that created the resource.
- last
Modified stringAt The timestamp of resource last modification (UTC)
- last
Modified stringBy The identity that last modified the resource.
- last
Modified stringBy Type 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_ strtype The type of identity that created the resource.
- last_
modified_ strat The timestamp of resource last modification (UTC)
- last_
modified_ strby The identity that last modified the resource.
- last_
modified_ strby_ type The type of identity that last modified the resource.
- created
At String The timestamp of resource creation (UTC).
- created
By String The identity that created the resource.
- created
By StringType The type of identity that created the resource.
- last
Modified StringAt The timestamp of resource last modification (UTC)
- last
Modified StringBy The identity that last modified the resource.
- last
Modified StringBy Type The type of identity that last modified the resource.
Tier
- Hero
- Hero
Hero
- Satellite
- Satellite
Satellite
- Hub
- Hub
Hub
- Tier
Hero - Hero
Hero
- Tier
Satellite - Satellite
Satellite
- Tier
Hub - Hub
Hub
- Hero
- Hero
Hero
- Satellite
- Satellite
Satellite
- Hub
- Hub
Hub
- Hero
- Hero
Hero
- Satellite
- Satellite
Satellite
- Hub
- Hub
Hub
- HERO
- Hero
Hero
- SATELLITE
- Satellite
Satellite
- HUB
- Hub
Hub
- "Hero"
- Hero
Hero
- "Satellite"
- Satellite
Satellite
- "Hub"
- Hub
Hub
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:elasticsan:ElasticSan 33zg-7s_4_7L2_65o /subscriptions/aaaaaaaaaaaaaaaaaaa/resourceGroups/rgelasticsan/providers/Microsoft.ElasticSan/elasticSans/33zg-7s_4_7L2_65o
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure-native
- License
- Apache-2.0