azure-native.containerstorage.Pool
Explore with Pulumi AI
Pool resource API Version: 2023-03-01-preview.
Example Usage
Pools_CreateOrUpdate_MaximumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var pool = new AzureNative.ContainerStorage.Pool("pool", new()
{
Assignments = new[]
{
"qvheujgnqksryltqtkjty",
},
DiskPoolProperties = new AzureNative.ContainerStorage.Inputs.DiskPoolPropertiesArgs
{
CsiParams =
{
{ "key3964", "og" },
},
Disks = new[]
{
"wtsj",
},
MaxVolumeCapacityGiB = 11,
},
ElasticSanPoolProperties = new AzureNative.ContainerStorage.Inputs.ElasticSanPoolPropertiesArgs
{
ResourceGroup = "bjdqfuspbvlgkhsyt",
SanName = "gu",
VolumeGroup = "csbzebtsmcnhxzqp",
},
EphemeralPoolProperties = new AzureNative.ContainerStorage.Inputs.EphemeralPoolPropertiesArgs
{
DiskFormat = true,
DiskSelector = new[]
{
"nvpe",
},
Disks = new[]
{
"zokpazvsbrjvkwhsss",
},
},
Location = "jdfanwoyiigytvanvct",
PoolCapacityGiB = 23,
PoolName = "-EXNI2WK48",
PoolType = 26,
ResourceGroupName = "rgcontainerstorage",
Tags =
{
{ "key5598", "fxughwwqpqkvojkkuur" },
},
Zones = new[]
{
"mzjpggkkungkugtucivmxfjnxmzdj",
},
});
});
package main
import (
containerstorage "github.com/pulumi/pulumi-azure-native-sdk/containerstorage"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := containerstorage.NewPool(ctx, "pool", &containerstorage.PoolArgs{
Assignments: pulumi.StringArray{
pulumi.String("qvheujgnqksryltqtkjty"),
},
DiskPoolProperties: &containerstorage.DiskPoolPropertiesArgs{
CsiParams: pulumi.StringMap{
"key3964": pulumi.String("og"),
},
Disks: pulumi.StringArray{
pulumi.String("wtsj"),
},
MaxVolumeCapacityGiB: pulumi.Float64(11),
},
ElasticSanPoolProperties: &containerstorage.ElasticSanPoolPropertiesArgs{
ResourceGroup: pulumi.String("bjdqfuspbvlgkhsyt"),
SanName: pulumi.String("gu"),
VolumeGroup: pulumi.String("csbzebtsmcnhxzqp"),
},
EphemeralPoolProperties: &containerstorage.EphemeralPoolPropertiesArgs{
DiskFormat: pulumi.Bool(true),
DiskSelector: pulumi.StringArray{
pulumi.String("nvpe"),
},
Disks: pulumi.StringArray{
pulumi.String("zokpazvsbrjvkwhsss"),
},
},
Location: pulumi.String("jdfanwoyiigytvanvct"),
PoolCapacityGiB: pulumi.Float64(23),
PoolName: pulumi.String("-EXNI2WK48"),
PoolType: pulumi.Float64(26),
ResourceGroupName: pulumi.String("rgcontainerstorage"),
Tags: pulumi.StringMap{
"key5598": pulumi.String("fxughwwqpqkvojkkuur"),
},
Zones: pulumi.StringArray{
pulumi.String("mzjpggkkungkugtucivmxfjnxmzdj"),
},
})
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.containerstorage.Pool;
import com.pulumi.azurenative.containerstorage.PoolArgs;
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 pool = new Pool("pool", PoolArgs.builder()
.assignments("qvheujgnqksryltqtkjty")
.diskPoolProperties(Map.ofEntries(
Map.entry("csiParams", Map.of("key3964", "og")),
Map.entry("disks", "wtsj"),
Map.entry("maxVolumeCapacityGiB", 11)
))
.elasticSanPoolProperties(Map.ofEntries(
Map.entry("resourceGroup", "bjdqfuspbvlgkhsyt"),
Map.entry("sanName", "gu"),
Map.entry("volumeGroup", "csbzebtsmcnhxzqp")
))
.ephemeralPoolProperties(Map.ofEntries(
Map.entry("diskFormat", true),
Map.entry("diskSelector", "nvpe"),
Map.entry("disks", "zokpazvsbrjvkwhsss")
))
.location("jdfanwoyiigytvanvct")
.poolCapacityGiB(23)
.poolName("-EXNI2WK48")
.poolType(26)
.resourceGroupName("rgcontainerstorage")
.tags(Map.of("key5598", "fxughwwqpqkvojkkuur"))
.zones("mzjpggkkungkugtucivmxfjnxmzdj")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
pool = azure_native.containerstorage.Pool("pool",
assignments=["qvheujgnqksryltqtkjty"],
disk_pool_properties=azure_native.containerstorage.DiskPoolPropertiesArgs(
csi_params={
"key3964": "og",
},
disks=["wtsj"],
max_volume_capacity_gi_b=11,
),
elastic_san_pool_properties=azure_native.containerstorage.ElasticSanPoolPropertiesArgs(
resource_group="bjdqfuspbvlgkhsyt",
san_name="gu",
volume_group="csbzebtsmcnhxzqp",
),
ephemeral_pool_properties=azure_native.containerstorage.EphemeralPoolPropertiesArgs(
disk_format=True,
disk_selector=["nvpe"],
disks=["zokpazvsbrjvkwhsss"],
),
location="jdfanwoyiigytvanvct",
pool_capacity_gi_b=23,
pool_name="-EXNI2WK48",
pool_type=26,
resource_group_name="rgcontainerstorage",
tags={
"key5598": "fxughwwqpqkvojkkuur",
},
zones=["mzjpggkkungkugtucivmxfjnxmzdj"])
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const pool = new azure_native.containerstorage.Pool("pool", {
assignments: ["qvheujgnqksryltqtkjty"],
diskPoolProperties: {
csiParams: {
key3964: "og",
},
disks: ["wtsj"],
maxVolumeCapacityGiB: 11,
},
elasticSanPoolProperties: {
resourceGroup: "bjdqfuspbvlgkhsyt",
sanName: "gu",
volumeGroup: "csbzebtsmcnhxzqp",
},
ephemeralPoolProperties: {
diskFormat: true,
diskSelector: ["nvpe"],
disks: ["zokpazvsbrjvkwhsss"],
},
location: "jdfanwoyiigytvanvct",
poolCapacityGiB: 23,
poolName: "-EXNI2WK48",
poolType: 26,
resourceGroupName: "rgcontainerstorage",
tags: {
key5598: "fxughwwqpqkvojkkuur",
},
zones: ["mzjpggkkungkugtucivmxfjnxmzdj"],
});
resources:
pool:
type: azure-native:containerstorage:Pool
properties:
assignments:
- qvheujgnqksryltqtkjty
diskPoolProperties:
csiParams:
key3964: og
disks:
- wtsj
maxVolumeCapacityGiB: 11
elasticSanPoolProperties:
resourceGroup: bjdqfuspbvlgkhsyt
sanName: gu
volumeGroup: csbzebtsmcnhxzqp
ephemeralPoolProperties:
diskFormat: true
diskSelector:
- nvpe
disks:
- zokpazvsbrjvkwhsss
location: jdfanwoyiigytvanvct
poolCapacityGiB: 23
poolName: -EXNI2WK48
poolType: 26
resourceGroupName: rgcontainerstorage
tags:
key5598: fxughwwqpqkvojkkuur
zones:
- mzjpggkkungkugtucivmxfjnxmzdj
Pools_CreateOrUpdate_MinimumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var pool = new AzureNative.ContainerStorage.Pool("pool", new()
{
Location = "jdfanwoyiigytvanvct",
PoolName = "J873cXX1w3sIX",
ResourceGroupName = "rgcontainerstorage",
});
});
package main
import (
containerstorage "github.com/pulumi/pulumi-azure-native-sdk/containerstorage"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := containerstorage.NewPool(ctx, "pool", &containerstorage.PoolArgs{
Location: pulumi.String("jdfanwoyiigytvanvct"),
PoolName: pulumi.String("J873cXX1w3sIX"),
ResourceGroupName: pulumi.String("rgcontainerstorage"),
})
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.containerstorage.Pool;
import com.pulumi.azurenative.containerstorage.PoolArgs;
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 pool = new Pool("pool", PoolArgs.builder()
.location("jdfanwoyiigytvanvct")
.poolName("J873cXX1w3sIX")
.resourceGroupName("rgcontainerstorage")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
pool = azure_native.containerstorage.Pool("pool",
location="jdfanwoyiigytvanvct",
pool_name="J873cXX1w3sIX",
resource_group_name="rgcontainerstorage")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const pool = new azure_native.containerstorage.Pool("pool", {
location: "jdfanwoyiigytvanvct",
poolName: "J873cXX1w3sIX",
resourceGroupName: "rgcontainerstorage",
});
resources:
pool:
type: azure-native:containerstorage:Pool
properties:
location: jdfanwoyiigytvanvct
poolName: J873cXX1w3sIX
resourceGroupName: rgcontainerstorage
Create Pool Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Pool(name: string, args: PoolArgs, opts?: CustomResourceOptions);
@overload
def Pool(resource_name: str,
args: PoolArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Pool(resource_name: str,
opts: Optional[ResourceOptions] = None,
assignments: Optional[Sequence[str]] = None,
elastic_san_pool_properties: Optional[ElasticSanPoolPropertiesArgs] = None,
pool_capacity_gi_b: Optional[float] = None,
pool_type: Optional[float] = None,
resource_group_name: Optional[str] = None,
zones: Optional[Sequence[str]] = None,
disk_pool_properties: Optional[DiskPoolPropertiesArgs] = None,
ephemeral_pool_properties: Optional[EphemeralPoolPropertiesArgs] = None,
location: Optional[str] = None,
pool_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewPool(ctx *Context, name string, args PoolArgs, opts ...ResourceOption) (*Pool, error)
public Pool(string name, PoolArgs args, CustomResourceOptions? opts = null)
type: azure-native:containerstorage:Pool
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 PoolArgs
- 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 PoolArgs
- 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 PoolArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PoolArgs
- 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 azure_nativePoolResource = new AzureNative.Containerstorage.Pool("azure-nativePoolResource", new()
{
Assignments = new[]
{
"string",
},
ElasticSanPoolProperties =
{
{ "resourceGroup", "string" },
{ "sanName", "string" },
{ "volumeGroup", "string" },
},
PoolCapacityGiB = 0,
PoolType = 0,
ResourceGroupName = "string",
Zones = new[]
{
"string",
},
DiskPoolProperties =
{
{ "csiParams",
{
{ "string", "string" },
} },
{ "disks", new[]
{
"string",
} },
{ "maxVolumeCapacityGiB", 0 },
},
EphemeralPoolProperties =
{
{ "diskSelector", new[]
{
"string",
} },
{ "disks", new[]
{
"string",
} },
{ "diskFormat", false },
},
Location = "string",
PoolName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := containerstorage.NewPool(ctx, "azure-nativePoolResource", &containerstorage.PoolArgs{
Assignments: []string{
"string",
},
ElasticSanPoolProperties: map[string]interface{}{
"resourceGroup": "string",
"sanName": "string",
"volumeGroup": "string",
},
PoolCapacityGiB: 0,
PoolType: 0,
ResourceGroupName: "string",
Zones: []string{
"string",
},
DiskPoolProperties: map[string]interface{}{
"csiParams": map[string]interface{}{
"string": "string",
},
"disks": []string{
"string",
},
"maxVolumeCapacityGiB": 0,
},
EphemeralPoolProperties: map[string]interface{}{
"diskSelector": []string{
"string",
},
"disks": []string{
"string",
},
"diskFormat": false,
},
Location: "string",
PoolName: "string",
Tags: map[string]interface{}{
"string": "string",
},
})
var azure_nativePoolResource = new Pool("azure-nativePoolResource", PoolArgs.builder()
.assignments("string")
.elasticSanPoolProperties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.poolCapacityGiB(0)
.poolType(0)
.resourceGroupName("string")
.zones("string")
.diskPoolProperties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.ephemeralPoolProperties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.location("string")
.poolName("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
azure_native_pool_resource = azure_native.containerstorage.Pool("azure-nativePoolResource",
assignments=[string],
elastic_san_pool_properties={
resourceGroup: string,
sanName: string,
volumeGroup: string,
},
pool_capacity_gi_b=0,
pool_type=0,
resource_group_name=string,
zones=[string],
disk_pool_properties={
csiParams: {
string: string,
},
disks: [string],
maxVolumeCapacityGiB: 0,
},
ephemeral_pool_properties={
diskSelector: [string],
disks: [string],
diskFormat: False,
},
location=string,
pool_name=string,
tags={
string: string,
})
const azure_nativePoolResource = new azure_native.containerstorage.Pool("azure-nativePoolResource", {
assignments: ["string"],
elasticSanPoolProperties: {
resourceGroup: "string",
sanName: "string",
volumeGroup: "string",
},
poolCapacityGiB: 0,
poolType: 0,
resourceGroupName: "string",
zones: ["string"],
diskPoolProperties: {
csiParams: {
string: "string",
},
disks: ["string"],
maxVolumeCapacityGiB: 0,
},
ephemeralPoolProperties: {
diskSelector: ["string"],
disks: ["string"],
diskFormat: false,
},
location: "string",
poolName: "string",
tags: {
string: "string",
},
});
type: azure-native:containerstorage:Pool
properties:
assignments:
- string
diskPoolProperties:
csiParams:
string: string
disks:
- string
maxVolumeCapacityGiB: 0
elasticSanPoolProperties:
resourceGroup: string
sanName: string
volumeGroup: string
ephemeralPoolProperties:
diskFormat: false
diskSelector:
- string
disks:
- string
location: string
poolCapacityGiB: 0
poolName: string
poolType: 0
resourceGroupName: string
tags:
string: string
zones:
- string
Pool 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 Pool resource accepts the following input properties:
- Assignments List<string>
- List of resources that should have access to the pool. Typically ARM references to AKS clusters or ACI Container Groups. For local and standard this must be a single reference. For portable there can be many.
- Elastic
San Pulumi.Pool Properties Azure Native. Container Storage. Inputs. Elastic San Pool Properties - Elastic San Pool Properties
- Pool
Capacity doubleGi B - Initial capacity of the pool in GiB.
- Pool
Type double - Type of the Pool: ephemeral, disk, managed, or elasticsan.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Zones List<string>
- List of availability zones that resources can be created in.
- Disk
Pool Pulumi.Properties Azure Native. Container Storage. Inputs. Disk Pool Properties - Disk Pool Properties
- Ephemeral
Pool Pulumi.Properties Azure Native. Container Storage. Inputs. Ephemeral Pool Properties - Ephemeral Pool Properties
- Location string
- The geo-location where the resource lives
- Pool
Name string - Pool Object
- Dictionary<string, string>
- Resource tags.
- Assignments []string
- List of resources that should have access to the pool. Typically ARM references to AKS clusters or ACI Container Groups. For local and standard this must be a single reference. For portable there can be many.
- Elastic
San ElasticPool Properties San Pool Properties Args - Elastic San Pool Properties
- Pool
Capacity float64Gi B - Initial capacity of the pool in GiB.
- Pool
Type float64 - Type of the Pool: ephemeral, disk, managed, or elasticsan.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Zones []string
- List of availability zones that resources can be created in.
- Disk
Pool DiskProperties Pool Properties Args - Disk Pool Properties
- Ephemeral
Pool EphemeralProperties Pool Properties Args - Ephemeral Pool Properties
- Location string
- The geo-location where the resource lives
- Pool
Name string - Pool Object
- map[string]string
- Resource tags.
- assignments List<String>
- List of resources that should have access to the pool. Typically ARM references to AKS clusters or ACI Container Groups. For local and standard this must be a single reference. For portable there can be many.
- elastic
San ElasticPool Properties San Pool Properties - Elastic San Pool Properties
- pool
Capacity DoubleGi B - Initial capacity of the pool in GiB.
- pool
Type Double - Type of the Pool: ephemeral, disk, managed, or elasticsan.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- zones List<String>
- List of availability zones that resources can be created in.
- disk
Pool DiskProperties Pool Properties - Disk Pool Properties
- ephemeral
Pool EphemeralProperties Pool Properties - Ephemeral Pool Properties
- location String
- The geo-location where the resource lives
- pool
Name String - Pool Object
- Map<String,String>
- Resource tags.
- assignments string[]
- List of resources that should have access to the pool. Typically ARM references to AKS clusters or ACI Container Groups. For local and standard this must be a single reference. For portable there can be many.
- elastic
San ElasticPool Properties San Pool Properties - Elastic San Pool Properties
- pool
Capacity numberGi B - Initial capacity of the pool in GiB.
- pool
Type number - Type of the Pool: ephemeral, disk, managed, or elasticsan.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- zones string[]
- List of availability zones that resources can be created in.
- disk
Pool DiskProperties Pool Properties - Disk Pool Properties
- ephemeral
Pool EphemeralProperties Pool Properties - Ephemeral Pool Properties
- location string
- The geo-location where the resource lives
- pool
Name string - Pool Object
- {[key: string]: string}
- Resource tags.
- assignments Sequence[str]
- List of resources that should have access to the pool. Typically ARM references to AKS clusters or ACI Container Groups. For local and standard this must be a single reference. For portable there can be many.
- elastic_
san_ Elasticpool_ properties San Pool Properties Args - Elastic San Pool Properties
- pool_
capacity_ floatgi_ b - Initial capacity of the pool in GiB.
- pool_
type float - Type of the Pool: ephemeral, disk, managed, or elasticsan.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- zones Sequence[str]
- List of availability zones that resources can be created in.
- disk_
pool_ Diskproperties Pool Properties Args - Disk Pool Properties
- ephemeral_
pool_ Ephemeralproperties Pool Properties Args - Ephemeral Pool Properties
- location str
- The geo-location where the resource lives
- pool_
name str - Pool Object
- Mapping[str, str]
- Resource tags.
- assignments List<String>
- List of resources that should have access to the pool. Typically ARM references to AKS clusters or ACI Container Groups. For local and standard this must be a single reference. For portable there can be many.
- elastic
San Property MapPool Properties - Elastic San Pool Properties
- pool
Capacity NumberGi B - Initial capacity of the pool in GiB.
- pool
Type Number - Type of the Pool: ephemeral, disk, managed, or elasticsan.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- zones List<String>
- List of availability zones that resources can be created in.
- disk
Pool Property MapProperties - Disk Pool Properties
- ephemeral
Pool Property MapProperties - Ephemeral Pool Properties
- location String
- The geo-location where the resource lives
- pool
Name String - Pool Object
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Pool resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - The status of the last operation.
- System
Data Pulumi.Azure Native. Container Storage. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - The status of the last operation.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - The status of the last operation.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - The status of the last operation.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_
state str - The status of the last operation.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - The status of the last operation.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
DiskPoolProperties, DiskPoolPropertiesArgs
- Csi
Params Dictionary<string, string> - List of KV pairs to set in StorageClass to configure CSI driver.
- Disks List<string>
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- Max
Volume doubleCapacity Gi B - Maximum capacity of the volumes in GiB the user intends to create. Default 512.
- Csi
Params map[string]string - List of KV pairs to set in StorageClass to configure CSI driver.
- Disks []string
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- Max
Volume float64Capacity Gi B - Maximum capacity of the volumes in GiB the user intends to create. Default 512.
- csi
Params Map<String,String> - List of KV pairs to set in StorageClass to configure CSI driver.
- disks List<String>
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- max
Volume DoubleCapacity Gi B - Maximum capacity of the volumes in GiB the user intends to create. Default 512.
- csi
Params {[key: string]: string} - List of KV pairs to set in StorageClass to configure CSI driver.
- disks string[]
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- max
Volume numberCapacity Gi B - Maximum capacity of the volumes in GiB the user intends to create. Default 512.
- csi_
params Mapping[str, str] - List of KV pairs to set in StorageClass to configure CSI driver.
- disks Sequence[str]
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- max_
volume_ floatcapacity_ gi_ b - Maximum capacity of the volumes in GiB the user intends to create. Default 512.
- csi
Params Map<String> - List of KV pairs to set in StorageClass to configure CSI driver.
- disks List<String>
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- max
Volume NumberCapacity Gi B - Maximum capacity of the volumes in GiB the user intends to create. Default 512.
DiskPoolPropertiesResponse, DiskPoolPropertiesResponseArgs
- Csi
Params Dictionary<string, string> - List of KV pairs to set in StorageClass to configure CSI driver.
- Disks List<string>
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- Max
Volume doubleCapacity Gi B - Maximum capacity of the volumes in GiB the user intends to create. Default 512.
- Csi
Params map[string]string - List of KV pairs to set in StorageClass to configure CSI driver.
- Disks []string
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- Max
Volume float64Capacity Gi B - Maximum capacity of the volumes in GiB the user intends to create. Default 512.
- csi
Params Map<String,String> - List of KV pairs to set in StorageClass to configure CSI driver.
- disks List<String>
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- max
Volume DoubleCapacity Gi B - Maximum capacity of the volumes in GiB the user intends to create. Default 512.
- csi
Params {[key: string]: string} - List of KV pairs to set in StorageClass to configure CSI driver.
- disks string[]
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- max
Volume numberCapacity Gi B - Maximum capacity of the volumes in GiB the user intends to create. Default 512.
- csi_
params Mapping[str, str] - List of KV pairs to set in StorageClass to configure CSI driver.
- disks Sequence[str]
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- max_
volume_ floatcapacity_ gi_ b - Maximum capacity of the volumes in GiB the user intends to create. Default 512.
- csi
Params Map<String> - List of KV pairs to set in StorageClass to configure CSI driver.
- disks List<String>
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- max
Volume NumberCapacity Gi B - Maximum capacity of the volumes in GiB the user intends to create. Default 512.
ElasticSanPoolProperties, ElasticSanPoolPropertiesArgs
- Resource
Group string - Resource group of an existing SAN.
- San
Name string - Name of an existing SAN.
- Volume
Group string - Volume group of an existing SAN.
- Resource
Group string - Resource group of an existing SAN.
- San
Name string - Name of an existing SAN.
- Volume
Group string - Volume group of an existing SAN.
- resource
Group String - Resource group of an existing SAN.
- san
Name String - Name of an existing SAN.
- volume
Group String - Volume group of an existing SAN.
- resource
Group string - Resource group of an existing SAN.
- san
Name string - Name of an existing SAN.
- volume
Group string - Volume group of an existing SAN.
- resource_
group str - Resource group of an existing SAN.
- san_
name str - Name of an existing SAN.
- volume_
group str - Volume group of an existing SAN.
- resource
Group String - Resource group of an existing SAN.
- san
Name String - Name of an existing SAN.
- volume
Group String - Volume group of an existing SAN.
ElasticSanPoolPropertiesResponse, ElasticSanPoolPropertiesResponseArgs
- Resource
Group string - Resource group of an existing SAN.
- San
Name string - Name of an existing SAN.
- Volume
Group string - Volume group of an existing SAN.
- Resource
Group string - Resource group of an existing SAN.
- San
Name string - Name of an existing SAN.
- Volume
Group string - Volume group of an existing SAN.
- resource
Group String - Resource group of an existing SAN.
- san
Name String - Name of an existing SAN.
- volume
Group String - Volume group of an existing SAN.
- resource
Group string - Resource group of an existing SAN.
- san
Name string - Name of an existing SAN.
- volume
Group string - Volume group of an existing SAN.
- resource_
group str - Resource group of an existing SAN.
- san_
name str - Name of an existing SAN.
- volume_
group str - Volume group of an existing SAN.
- resource
Group String - Resource group of an existing SAN.
- san
Name String - Name of an existing SAN.
- volume
Group String - Volume group of an existing SAN.
EphemeralPoolProperties, EphemeralPoolPropertiesArgs
- Disk
Selector List<string> - Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
- Disks List<string>
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- Disk
Format bool - Consent to format the local disks.
- Disk
Selector []string - Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
- Disks []string
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- Disk
Format bool - Consent to format the local disks.
- disk
Selector List<String> - Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
- disks List<String>
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- disk
Format Boolean - Consent to format the local disks.
- disk
Selector string[] - Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
- disks string[]
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- disk
Format boolean - Consent to format the local disks.
- disk_
selector Sequence[str] - Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
- disks Sequence[str]
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- disk_
format bool - Consent to format the local disks.
- disk
Selector List<String> - Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
- disks List<String>
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- disk
Format Boolean - Consent to format the local disks.
EphemeralPoolPropertiesResponse, EphemeralPoolPropertiesResponseArgs
- Disk
Selector List<string> - Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
- Disks List<string>
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- Disk
Format bool - Consent to format the local disks.
- Disk
Selector []string - Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
- Disks []string
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- Disk
Format bool - Consent to format the local disks.
- disk
Selector List<String> - Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
- disks List<String>
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- disk
Format Boolean - Consent to format the local disks.
- disk
Selector string[] - Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
- disks string[]
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- disk
Format boolean - Consent to format the local disks.
- disk_
selector Sequence[str] - Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
- disks Sequence[str]
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- disk_
format bool - Consent to format the local disks.
- disk
Selector List<String> - Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
- disks List<String>
- Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
- disk
Format Boolean - Consent to format the local disks.
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:containerstorage:Pool rgzqqcqrypwtqhgnvcdilsbquamov a
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0