azure-native.elasticsan.ElasticSan
Explore with Pulumi AI
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, 2024-05-01, 2024-06-01-preview.
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 (
elasticsan "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={
"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 (
elasticsan "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={
"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.
Constructor example
The following reference example uses placeholder values for all input properties.
var elasticSanResource = new AzureNative.ElasticSan.ElasticSan("elasticSanResource", new()
{
BaseSizeTiB = 0,
ExtendedCapacitySizeTiB = 0,
ResourceGroupName = "string",
Sku = new AzureNative.ElasticSan.Inputs.SkuArgs
{
Name = "string",
Tier = "string",
},
AvailabilityZones = new[]
{
"string",
},
ElasticSanName = "string",
Location = "string",
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={
"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:
- 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.
- Sku
Pulumi.
Azure Native. Elastic San. Inputs. Sku - resource sku
- Availability
Zones List<string> - Logical zone for Elastic San resource; example: ["1"].
- Elastic
San stringName - The name of the ElasticSan.
- Location string
- The geo-location where the resource lives.
- Dictionary<string, string>
- Azure resource tags.
- 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.
- Sku
Sku
Args - resource sku
- Availability
Zones []string - Logical zone for Elastic San resource; example: ["1"].
- Elastic
San stringName - The name of the ElasticSan.
- Location string
- The geo-location where the resource lives.
- map[string]string
- Azure resource tags.
- 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.
- sku Sku
- resource sku
- availability
Zones List<String> - Logical zone for Elastic San resource; example: ["1"].
- elastic
San StringName - The name of the ElasticSan.
- location String
- The geo-location where the resource lives.
- Map<String,String>
- Azure resource tags.
- 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.
- sku Sku
- resource sku
- availability
Zones string[] - Logical zone for Elastic San resource; example: ["1"].
- elastic
San stringName - The name of the ElasticSan.
- location string
- The geo-location where the resource lives.
- {[key: string]: string}
- Azure resource tags.
- 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.
- sku
Sku
Args - resource sku
- availability_
zones Sequence[str] - Logical zone for Elastic San resource; example: ["1"].
- elastic_
san_ strname - The name of the ElasticSan.
- location str
- The geo-location where the resource lives.
- Mapping[str, str]
- Azure resource tags.
- 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.
- sku Property Map
- resource sku
- availability
Zones List<String> - Logical zone for Elastic San resource; example: ["1"].
- elastic
San StringName - The name of the ElasticSan.
- location String
- The geo-location where the resource lives.
- 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.
- 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
Size doubleTi B - Total size of the Elastic San appliance in TB.
- 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.
- 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
Size float64Ti B - Total size of the Elastic San appliance in TB.
- 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.
- 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
Size DoubleTi B - Total size of the Elastic San appliance in TB.
- 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.
- 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
Size numberTi B - Total size of the Elastic San appliance in TB.
- 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.
- 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_
size_ floatti_ b - Total size of the Elastic San appliance in TB.
- 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.
- 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
Size NumberTi B - Total size of the Elastic San appliance in TB.
- 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
Sku, SkuArgs
- Name
string | Pulumi.
Azure Native. Elastic San. Sku Name - The sku name.
- Tier
string | Pulumi.
Azure Native. Elastic San. Sku Tier - 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
- Sku
Name_Premium_LRS - Premium_LRSPremium locally redundant storage
- Sku
Name_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
SkuTier, SkuTierArgs
- Premium
- PremiumPremium Tier
- Sku
Tier Premium - PremiumPremium Tier
- Premium
- PremiumPremium Tier
- Premium
- PremiumPremium Tier
- PREMIUM
- PremiumPremium Tier
- "Premium"
- PremiumPremium Tier
SystemDataResponse, SystemDataResponseArgs
- 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.
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