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

azure-native.containerstorage.Pool

Explore with Pulumi AI

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

    Pool resource Azure REST API version: 2023-07-01-preview. Prior API version in Azure Native 1.x: 2023-03-01-preview.

    Example Usage

    Pools_CreateOrUpdate_Ephemeral

    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[]
            {
                new AzureNative.ContainerStorage.Inputs.AssignmentArgs
                {
                    Id = "/subscriptions/bb4d87a2-4273-466c-a6ba-61d818061b3a/resourceGroups/test-rg/providers/Microsoft.ContainerService/managedClusters/containerstoragetest",
                },
            },
            Location = "eastus",
            PoolName = "test-pool",
            PoolType = new AzureNative.ContainerStorage.Inputs.PoolTypeArgs
            {
                EphemeralDisk = new AzureNative.ContainerStorage.Inputs.EphemeralDiskArgs
                {
                    Replicas = 3,
                },
            },
            ReclaimPolicy = AzureNative.ContainerStorage.ReclaimPolicy.Delete,
            ResourceGroupName = "test-rg",
            Resources = new AzureNative.ContainerStorage.Inputs.ResourcesArgs
            {
                Requests = new AzureNative.ContainerStorage.Inputs.RequestsArgs
                {
                    Storage = 15578,
                },
            },
            Tags = 
            {
                { "key1888", "value1888" },
            },
            Zones = new[]
            {
                AzureNative.ContainerStorage.Zone.Zone1,
                AzureNative.ContainerStorage.Zone.Zone2,
                AzureNative.ContainerStorage.Zone.Zone3,
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/containerstorage/v2"
    	"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: containerstorage.AssignmentArray{
    				&containerstorage.AssignmentArgs{
    					Id: pulumi.String("/subscriptions/bb4d87a2-4273-466c-a6ba-61d818061b3a/resourceGroups/test-rg/providers/Microsoft.ContainerService/managedClusters/containerstoragetest"),
    				},
    			},
    			Location: pulumi.String("eastus"),
    			PoolName: pulumi.String("test-pool"),
    			PoolType: &containerstorage.PoolTypeArgs{
    				EphemeralDisk: &containerstorage.EphemeralDiskArgs{
    					Replicas: pulumi.Float64(3),
    				},
    			},
    			ReclaimPolicy:     pulumi.String(containerstorage.ReclaimPolicyDelete),
    			ResourceGroupName: pulumi.String("test-rg"),
    			Resources: &containerstorage.ResourcesArgs{
    				Requests: &containerstorage.RequestsArgs{
    					Storage: pulumi.Float64(15578),
    				},
    			},
    			Tags: pulumi.StringMap{
    				"key1888": pulumi.String("value1888"),
    			},
    			Zones: pulumi.StringArray{
    				pulumi.String(containerstorage.ZoneZone1),
    				pulumi.String(containerstorage.ZoneZone2),
    				pulumi.String(containerstorage.ZoneZone3),
    			},
    		})
    		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 com.pulumi.azurenative.containerstorage.inputs.AssignmentArgs;
    import com.pulumi.azurenative.containerstorage.inputs.PoolTypeArgs;
    import com.pulumi.azurenative.containerstorage.inputs.EphemeralDiskArgs;
    import com.pulumi.azurenative.containerstorage.inputs.ResourcesArgs;
    import com.pulumi.azurenative.containerstorage.inputs.RequestsArgs;
    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(AssignmentArgs.builder()
                    .id("/subscriptions/bb4d87a2-4273-466c-a6ba-61d818061b3a/resourceGroups/test-rg/providers/Microsoft.ContainerService/managedClusters/containerstoragetest")
                    .build())
                .location("eastus")
                .poolName("test-pool")
                .poolType(PoolTypeArgs.builder()
                    .ephemeralDisk(EphemeralDiskArgs.builder()
                        .replicas(3)
                        .build())
                    .build())
                .reclaimPolicy("Delete")
                .resourceGroupName("test-rg")
                .resources(ResourcesArgs.builder()
                    .requests(RequestsArgs.builder()
                        .storage(15578)
                        .build())
                    .build())
                .tags(Map.of("key1888", "value1888"))
                .zones(            
                    "1",
                    "2",
                    "3")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    pool = azure_native.containerstorage.Pool("pool",
        assignments=[azure_native.containerstorage.AssignmentArgs(
            id="/subscriptions/bb4d87a2-4273-466c-a6ba-61d818061b3a/resourceGroups/test-rg/providers/Microsoft.ContainerService/managedClusters/containerstoragetest",
        )],
        location="eastus",
        pool_name="test-pool",
        pool_type=azure_native.containerstorage.PoolTypeArgs(
            ephemeral_disk=azure_native.containerstorage.EphemeralDiskArgs(
                replicas=3,
            ),
        ),
        reclaim_policy=azure_native.containerstorage.ReclaimPolicy.DELETE,
        resource_group_name="test-rg",
        resources=azure_native.containerstorage.ResourcesArgs(
            requests=azure_native.containerstorage.RequestsArgs(
                storage=15578,
            ),
        ),
        tags={
            "key1888": "value1888",
        },
        zones=[
            azure_native.containerstorage.Zone.ZONE1,
            azure_native.containerstorage.Zone.ZONE2,
            azure_native.containerstorage.Zone.ZONE3,
        ])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const pool = new azure_native.containerstorage.Pool("pool", {
        assignments: [{
            id: "/subscriptions/bb4d87a2-4273-466c-a6ba-61d818061b3a/resourceGroups/test-rg/providers/Microsoft.ContainerService/managedClusters/containerstoragetest",
        }],
        location: "eastus",
        poolName: "test-pool",
        poolType: {
            ephemeralDisk: {
                replicas: 3,
            },
        },
        reclaimPolicy: azure_native.containerstorage.ReclaimPolicy.Delete,
        resourceGroupName: "test-rg",
        resources: {
            requests: {
                storage: 15578,
            },
        },
        tags: {
            key1888: "value1888",
        },
        zones: [
            azure_native.containerstorage.Zone.Zone1,
            azure_native.containerstorage.Zone.Zone2,
            azure_native.containerstorage.Zone.Zone3,
        ],
    });
    
    resources:
      pool:
        type: azure-native:containerstorage:Pool
        properties:
          assignments:
            - id: /subscriptions/bb4d87a2-4273-466c-a6ba-61d818061b3a/resourceGroups/test-rg/providers/Microsoft.ContainerService/managedClusters/containerstoragetest
          location: eastus
          poolName: test-pool
          poolType:
            ephemeralDisk:
              replicas: 3
          reclaimPolicy: Delete
          resourceGroupName: test-rg
          resources:
            requests:
              storage: 15578
          tags:
            key1888: value1888
          zones:
            - '1'
            - '2'
            - '3'
    

    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,
             pool_type: Optional[PoolTypeArgs] = None,
             resource_group_name: Optional[str] = None,
             assignments: Optional[Sequence[AssignmentArgs]] = None,
             location: Optional[str] = None,
             pool_name: Optional[str] = None,
             reclaim_policy: Optional[Union[str, ReclaimPolicy]] = None,
             resources: Optional[ResourcesArgs] = None,
             tags: Optional[Mapping[str, str]] = None,
             zones: Optional[Sequence[Union[str, Zone]]] = None)
    func NewPool(ctx *Context, name string, args PoolArgs, opts ...ResourceOption) (*Pool, error)
    public Pool(string name, PoolArgs args, CustomResourceOptions? opts = null)
    public Pool(String name, PoolArgs args)
    public Pool(String name, PoolArgs args, CustomResourceOptions options)
    
    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.

    Example

    The following reference example uses placeholder values for all input properties.

    var azure_nativePoolResource = new AzureNative.ContainerStorage.Pool("azure-nativePoolResource", new()
    {
        PoolType = new AzureNative.ContainerStorage.Inputs.PoolTypeArgs
        {
            AzureDisk = new AzureNative.ContainerStorage.Inputs.AzureDiskArgs
            {
                Disks = new[]
                {
                    new AzureNative.ContainerStorage.Inputs.DiskArgs
                    {
                        Id = "string",
                        Reference = "string",
                    },
                },
                Encryption = new AzureNative.ContainerStorage.Inputs.EncryptionArgs
                {
                    KeyName = "string",
                    KeyVaultUri = "string",
                    Identity = new AzureNative.ContainerStorage.Inputs.ManagedServiceIdentityArgs
                    {
                        Type = "string",
                        UserAssignedIdentities = new[]
                        {
                            "string",
                        },
                    },
                },
                SkuName = "string",
            },
            ElasticSan = new AzureNative.ContainerStorage.Inputs.ElasticSanArgs
            {
                Encryption = new AzureNative.ContainerStorage.Inputs.EncryptionArgs
                {
                    KeyName = "string",
                    KeyVaultUri = "string",
                    Identity = new AzureNative.ContainerStorage.Inputs.ManagedServiceIdentityArgs
                    {
                        Type = "string",
                        UserAssignedIdentities = new[]
                        {
                            "string",
                        },
                    },
                },
                SkuName = "string",
            },
            EphemeralDisk = new AzureNative.ContainerStorage.Inputs.EphemeralDiskArgs
            {
                Disks = new[]
                {
                    new AzureNative.ContainerStorage.Inputs.DiskArgs
                    {
                        Id = "string",
                        Reference = "string",
                    },
                },
                Replicas = 0,
            },
        },
        ResourceGroupName = "string",
        Assignments = new[]
        {
            new AzureNative.ContainerStorage.Inputs.AssignmentArgs
            {
                Id = "string",
            },
        },
        Location = "string",
        PoolName = "string",
        ReclaimPolicy = "string",
        Resources = new AzureNative.ContainerStorage.Inputs.ResourcesArgs
        {
            Requests = new AzureNative.ContainerStorage.Inputs.RequestsArgs
            {
                Storage = 0,
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
        Zones = new[]
        {
            "string",
        },
    });
    
    example, err := containerstorage.NewPool(ctx, "azure-nativePoolResource", &containerstorage.PoolArgs{
    PoolType: &containerstorage.PoolTypeArgs{
    AzureDisk: &containerstorage.AzureDiskArgs{
    Disks: containerstorage.DiskArray{
    &containerstorage.DiskArgs{
    Id: pulumi.String("string"),
    Reference: pulumi.String("string"),
    },
    },
    Encryption: &containerstorage.EncryptionArgs{
    KeyName: pulumi.String("string"),
    KeyVaultUri: pulumi.String("string"),
    Identity: &containerstorage.ManagedServiceIdentityArgs{
    Type: pulumi.String("string"),
    UserAssignedIdentities: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    SkuName: pulumi.String("string"),
    },
    ElasticSan: &containerstorage.ElasticSanArgs{
    Encryption: &containerstorage.EncryptionArgs{
    KeyName: pulumi.String("string"),
    KeyVaultUri: pulumi.String("string"),
    Identity: &containerstorage.ManagedServiceIdentityArgs{
    Type: pulumi.String("string"),
    UserAssignedIdentities: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    SkuName: pulumi.String("string"),
    },
    EphemeralDisk: &containerstorage.EphemeralDiskArgs{
    Disks: containerstorage.DiskArray{
    &containerstorage.DiskArgs{
    Id: pulumi.String("string"),
    Reference: pulumi.String("string"),
    },
    },
    Replicas: pulumi.Float64(0),
    },
    },
    ResourceGroupName: pulumi.String("string"),
    Assignments: containerstorage.AssignmentArray{
    &containerstorage.AssignmentArgs{
    Id: pulumi.String("string"),
    },
    },
    Location: pulumi.String("string"),
    PoolName: pulumi.String("string"),
    ReclaimPolicy: pulumi.String("string"),
    Resources: &containerstorage.ResourcesArgs{
    Requests: &containerstorage.RequestsArgs{
    Storage: pulumi.Float64(0),
    },
    },
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    Zones: pulumi.StringArray{
    pulumi.String("string"),
    },
    })
    
    var azure_nativePoolResource = new Pool("azure-nativePoolResource", PoolArgs.builder()        
        .poolType(PoolTypeArgs.builder()
            .azureDisk(AzureDiskArgs.builder()
                .disks(DiskArgs.builder()
                    .id("string")
                    .reference("string")
                    .build())
                .encryption(EncryptionArgs.builder()
                    .keyName("string")
                    .keyVaultUri("string")
                    .identity(ManagedServiceIdentityArgs.builder()
                        .type("string")
                        .userAssignedIdentities("string")
                        .build())
                    .build())
                .skuName("string")
                .build())
            .elasticSan(ElasticSanArgs.builder()
                .encryption(EncryptionArgs.builder()
                    .keyName("string")
                    .keyVaultUri("string")
                    .identity(ManagedServiceIdentityArgs.builder()
                        .type("string")
                        .userAssignedIdentities("string")
                        .build())
                    .build())
                .skuName("string")
                .build())
            .ephemeralDisk(EphemeralDiskArgs.builder()
                .disks(DiskArgs.builder()
                    .id("string")
                    .reference("string")
                    .build())
                .replicas(0)
                .build())
            .build())
        .resourceGroupName("string")
        .assignments(AssignmentArgs.builder()
            .id("string")
            .build())
        .location("string")
        .poolName("string")
        .reclaimPolicy("string")
        .resources(ResourcesArgs.builder()
            .requests(RequestsArgs.builder()
                .storage(0)
                .build())
            .build())
        .tags(Map.of("string", "string"))
        .zones("string")
        .build());
    
    azure_native_pool_resource = azure_native.containerstorage.Pool("azure-nativePoolResource",
        pool_type=azure_native.containerstorage.PoolTypeArgs(
            azure_disk=azure_native.containerstorage.AzureDiskArgs(
                disks=[azure_native.containerstorage.DiskArgs(
                    id="string",
                    reference="string",
                )],
                encryption=azure_native.containerstorage.EncryptionArgs(
                    key_name="string",
                    key_vault_uri="string",
                    identity=azure_native.containerstorage.ManagedServiceIdentityArgs(
                        type="string",
                        user_assigned_identities=["string"],
                    ),
                ),
                sku_name="string",
            ),
            elastic_san=azure_native.containerstorage.ElasticSanArgs(
                encryption=azure_native.containerstorage.EncryptionArgs(
                    key_name="string",
                    key_vault_uri="string",
                    identity=azure_native.containerstorage.ManagedServiceIdentityArgs(
                        type="string",
                        user_assigned_identities=["string"],
                    ),
                ),
                sku_name="string",
            ),
            ephemeral_disk=azure_native.containerstorage.EphemeralDiskArgs(
                disks=[azure_native.containerstorage.DiskArgs(
                    id="string",
                    reference="string",
                )],
                replicas=0,
            ),
        ),
        resource_group_name="string",
        assignments=[azure_native.containerstorage.AssignmentArgs(
            id="string",
        )],
        location="string",
        pool_name="string",
        reclaim_policy="string",
        resources=azure_native.containerstorage.ResourcesArgs(
            requests=azure_native.containerstorage.RequestsArgs(
                storage=0,
            ),
        ),
        tags={
            "string": "string",
        },
        zones=["string"])
    
    const azure_nativePoolResource = new azure_native.containerstorage.Pool("azure-nativePoolResource", {
        poolType: {
            azureDisk: {
                disks: [{
                    id: "string",
                    reference: "string",
                }],
                encryption: {
                    keyName: "string",
                    keyVaultUri: "string",
                    identity: {
                        type: "string",
                        userAssignedIdentities: ["string"],
                    },
                },
                skuName: "string",
            },
            elasticSan: {
                encryption: {
                    keyName: "string",
                    keyVaultUri: "string",
                    identity: {
                        type: "string",
                        userAssignedIdentities: ["string"],
                    },
                },
                skuName: "string",
            },
            ephemeralDisk: {
                disks: [{
                    id: "string",
                    reference: "string",
                }],
                replicas: 0,
            },
        },
        resourceGroupName: "string",
        assignments: [{
            id: "string",
        }],
        location: "string",
        poolName: "string",
        reclaimPolicy: "string",
        resources: {
            requests: {
                storage: 0,
            },
        },
        tags: {
            string: "string",
        },
        zones: ["string"],
    });
    
    type: azure-native:containerstorage:Pool
    properties:
        assignments:
            - id: string
        location: string
        poolName: string
        poolType:
            azureDisk:
                disks:
                    - id: string
                      reference: string
                encryption:
                    identity:
                        type: string
                        userAssignedIdentities:
                            - string
                    keyName: string
                    keyVaultUri: string
                skuName: string
            elasticSan:
                encryption:
                    identity:
                        type: string
                        userAssignedIdentities:
                            - string
                    keyName: string
                    keyVaultUri: string
                skuName: string
            ephemeralDisk:
                disks:
                    - id: string
                      reference: string
                replicas: 0
        reclaimPolicy: string
        resourceGroupName: string
        resources:
            requests:
                storage: 0
        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:

    PoolType Pulumi.AzureNative.ContainerStorage.Inputs.PoolType
    Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Assignments List<Pulumi.AzureNative.ContainerStorage.Inputs.Assignment>
    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 ElasticSAN there can be many.
    Location string
    The geo-location where the resource lives
    PoolName string
    Pool Object
    ReclaimPolicy string | Pulumi.AzureNative.ContainerStorage.ReclaimPolicy
    ReclaimPolicy defines what happens to the backend storage when StoragePool is deleted
    Resources Pulumi.AzureNative.ContainerStorage.Inputs.Resources
    Resources represent the resources the pool should have.
    Tags Dictionary<string, string>
    Resource tags.
    Zones List<Union<string, Pulumi.AzureNative.ContainerStorage.Zone>>
    List of availability zones that resources can be created in.
    PoolType PoolTypeArgs
    Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Assignments []AssignmentArgs
    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 ElasticSAN there can be many.
    Location string
    The geo-location where the resource lives
    PoolName string
    Pool Object
    ReclaimPolicy string | ReclaimPolicy
    ReclaimPolicy defines what happens to the backend storage when StoragePool is deleted
    Resources ResourcesArgs
    Resources represent the resources the pool should have.
    Tags map[string]string
    Resource tags.
    Zones []string
    List of availability zones that resources can be created in.
    poolType PoolType
    Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    assignments List<Assignment>
    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 ElasticSAN there can be many.
    location String
    The geo-location where the resource lives
    poolName String
    Pool Object
    reclaimPolicy String | ReclaimPolicy
    ReclaimPolicy defines what happens to the backend storage when StoragePool is deleted
    resources Resources
    Resources represent the resources the pool should have.
    tags Map<String,String>
    Resource tags.
    zones List<Either<String,Zone>>
    List of availability zones that resources can be created in.
    poolType PoolType
    Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    assignments Assignment[]
    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 ElasticSAN there can be many.
    location string
    The geo-location where the resource lives
    poolName string
    Pool Object
    reclaimPolicy string | ReclaimPolicy
    ReclaimPolicy defines what happens to the backend storage when StoragePool is deleted
    resources Resources
    Resources represent the resources the pool should have.
    tags {[key: string]: string}
    Resource tags.
    zones (string | Zone)[]
    List of availability zones that resources can be created in.
    pool_type PoolTypeArgs
    Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    assignments Sequence[AssignmentArgs]
    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 ElasticSAN there can be many.
    location str
    The geo-location where the resource lives
    pool_name str
    Pool Object
    reclaim_policy str | ReclaimPolicy
    ReclaimPolicy defines what happens to the backend storage when StoragePool is deleted
    resources ResourcesArgs
    Resources represent the resources the pool should have.
    tags Mapping[str, str]
    Resource tags.
    zones Sequence[Union[str, Zone]]
    List of availability zones that resources can be created in.
    poolType Property Map
    Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    assignments List<Property Map>
    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 ElasticSAN there can be many.
    location String
    The geo-location where the resource lives
    poolName String
    Pool Object
    reclaimPolicy String | "Delete" | "Retain"
    ReclaimPolicy defines what happens to the backend storage when StoragePool is deleted
    resources Property Map
    Resources represent the resources the pool should have.
    tags Map<String>
    Resource tags.
    zones List<String | "1" | "2" | "3">
    List of availability zones that resources can be created in.

    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
    ProvisioningState string
    The status of the last operation.
    Status Pulumi.AzureNative.ContainerStorage.Outputs.ResourceOperationalStatusResponse
    The operational status of the resource
    SystemData Pulumi.AzureNative.ContainerStorage.Outputs.SystemDataResponse
    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
    ProvisioningState string
    The status of the last operation.
    Status ResourceOperationalStatusResponse
    The operational status of the resource
    SystemData SystemDataResponse
    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
    provisioningState String
    The status of the last operation.
    status ResourceOperationalStatusResponse
    The operational status of the resource
    systemData SystemDataResponse
    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
    provisioningState string
    The status of the last operation.
    status ResourceOperationalStatusResponse
    The operational status of the resource
    systemData SystemDataResponse
    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.
    status ResourceOperationalStatusResponse
    The operational status of the resource
    system_data SystemDataResponse
    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
    provisioningState String
    The status of the last operation.
    status Property Map
    The operational status of the resource
    systemData 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

    Assignment, AssignmentArgs

    Id string
    Resource id for the assigned resource
    Id string
    Resource id for the assigned resource
    id String
    Resource id for the assigned resource
    id string
    Resource id for the assigned resource
    id str
    Resource id for the assigned resource
    id String
    Resource id for the assigned resource

    AssignmentResponse, AssignmentResponseArgs

    Id string
    Resource id for the assigned resource
    Status Pulumi.AzureNative.ContainerStorage.Inputs.AssignmentStatusResponse
    Indicates if the assignment is in a usable state
    Id string
    Resource id for the assigned resource
    Status AssignmentStatusResponse
    Indicates if the assignment is in a usable state
    id String
    Resource id for the assigned resource
    status AssignmentStatusResponse
    Indicates if the assignment is in a usable state
    id string
    Resource id for the assigned resource
    status AssignmentStatusResponse
    Indicates if the assignment is in a usable state
    id str
    Resource id for the assigned resource
    status AssignmentStatusResponse
    Indicates if the assignment is in a usable state
    id String
    Resource id for the assigned resource
    status Property Map
    Indicates if the assignment is in a usable state

    AssignmentStatusResponse, AssignmentStatusResponseArgs

    State string
    State of the assignment resource
    Message string
    Reason for the status
    State string
    State of the assignment resource
    Message string
    Reason for the status
    state String
    State of the assignment resource
    message String
    Reason for the status
    state string
    State of the assignment resource
    message string
    Reason for the status
    state str
    State of the assignment resource
    message str
    Reason for the status
    state String
    State of the assignment resource
    message String
    Reason for the status

    AzureDisk, AzureDiskArgs

    Disks List<Pulumi.AzureNative.ContainerStorage.Inputs.Disk>
    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).
    Encryption Pulumi.AzureNative.ContainerStorage.Inputs.Encryption
    Encryption specifies the encryption configuration for the Azure Disk pool
    SkuName string | Pulumi.AzureNative.ContainerStorage.AzureDiskSkuName
    Sku name
    Disks []Disk
    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).
    Encryption Encryption
    Encryption specifies the encryption configuration for the Azure Disk pool
    SkuName string | AzureDiskSkuName
    Sku name
    disks List<Disk>
    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).
    encryption Encryption
    Encryption specifies the encryption configuration for the Azure Disk pool
    skuName String | AzureDiskSkuName
    Sku name
    disks Disk[]
    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).
    encryption Encryption
    Encryption specifies the encryption configuration for the Azure Disk pool
    skuName string | AzureDiskSkuName
    Sku name
    disks Sequence[Disk]
    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).
    encryption Encryption
    Encryption specifies the encryption configuration for the Azure Disk pool
    sku_name str | AzureDiskSkuName
    Sku name
    disks List<Property Map>
    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).
    encryption Property Map
    Encryption specifies the encryption configuration for the Azure Disk pool
    skuName String | "Premium_LRS" | "Standard_LRS" | "StandardSSD_LRS" | "UltraSSD_LRS" | "Premium_ZRS" | "PremiumV2_LRS" | "StandardSSD_ZRS"
    Sku name

    AzureDiskResponse, AzureDiskResponseArgs

    ResourceGroup string
    Managed resource group for the pool.
    Disks List<Pulumi.AzureNative.ContainerStorage.Inputs.DiskResponse>
    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).
    Encryption Pulumi.AzureNative.ContainerStorage.Inputs.EncryptionResponse
    Encryption specifies the encryption configuration for the Azure Disk pool
    SkuName string
    Sku name
    ResourceGroup string
    Managed resource group for the pool.
    Disks []DiskResponse
    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).
    Encryption EncryptionResponse
    Encryption specifies the encryption configuration for the Azure Disk pool
    SkuName string
    Sku name
    resourceGroup String
    Managed resource group for the pool.
    disks List<DiskResponse>
    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).
    encryption EncryptionResponse
    Encryption specifies the encryption configuration for the Azure Disk pool
    skuName String
    Sku name
    resourceGroup string
    Managed resource group for the pool.
    disks DiskResponse[]
    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).
    encryption EncryptionResponse
    Encryption specifies the encryption configuration for the Azure Disk pool
    skuName string
    Sku name
    resource_group str
    Managed resource group for the pool.
    disks Sequence[DiskResponse]
    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).
    encryption EncryptionResponse
    Encryption specifies the encryption configuration for the Azure Disk pool
    sku_name str
    Sku name
    resourceGroup String
    Managed resource group for the pool.
    disks List<Property Map>
    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).
    encryption Property Map
    Encryption specifies the encryption configuration for the Azure Disk pool
    skuName String
    Sku name

    AzureDiskSkuName, AzureDiskSkuNameArgs

    Premium_LRS
    Premium_LRSPremium_LRS SKU
    Standard_LRS
    Standard_LRSStandard_LRS SKU
    StandardSSD_LRS
    StandardSSD_LRSStandardSSD_LRS SKU
    UltraSSD_LRS
    UltraSSD_LRSUltraSSD_LRS SKU
    Premium_ZRS
    Premium_ZRSPremium_ZRS SKU
    PremiumV2_LRS
    PremiumV2_LRSPremiumV2_LRS SKU
    StandardSSD_ZRS
    StandardSSD_ZRSStandardSSD_ZRS SKU
    AzureDiskSkuName_Premium_LRS
    Premium_LRSPremium_LRS SKU
    AzureDiskSkuName_Standard_LRS
    Standard_LRSStandard_LRS SKU
    AzureDiskSkuName_StandardSSD_LRS
    StandardSSD_LRSStandardSSD_LRS SKU
    AzureDiskSkuName_UltraSSD_LRS
    UltraSSD_LRSUltraSSD_LRS SKU
    AzureDiskSkuName_Premium_ZRS
    Premium_ZRSPremium_ZRS SKU
    AzureDiskSkuName_PremiumV2_LRS
    PremiumV2_LRSPremiumV2_LRS SKU
    AzureDiskSkuName_StandardSSD_ZRS
    StandardSSD_ZRSStandardSSD_ZRS SKU
    Premium_LRS
    Premium_LRSPremium_LRS SKU
    Standard_LRS
    Standard_LRSStandard_LRS SKU
    StandardSSD_LRS
    StandardSSD_LRSStandardSSD_LRS SKU
    UltraSSD_LRS
    UltraSSD_LRSUltraSSD_LRS SKU
    Premium_ZRS
    Premium_ZRSPremium_ZRS SKU
    PremiumV2_LRS
    PremiumV2_LRSPremiumV2_LRS SKU
    StandardSSD_ZRS
    StandardSSD_ZRSStandardSSD_ZRS SKU
    Premium_LRS
    Premium_LRSPremium_LRS SKU
    Standard_LRS
    Standard_LRSStandard_LRS SKU
    StandardSSD_LRS
    StandardSSD_LRSStandardSSD_LRS SKU
    UltraSSD_LRS
    UltraSSD_LRSUltraSSD_LRS SKU
    Premium_ZRS
    Premium_ZRSPremium_ZRS SKU
    PremiumV2_LRS
    PremiumV2_LRSPremiumV2_LRS SKU
    StandardSSD_ZRS
    StandardSSD_ZRSStandardSSD_ZRS SKU
    PREMIUM_LRS
    Premium_LRSPremium_LRS SKU
    STANDARD_LRS
    Standard_LRSStandard_LRS SKU
    STANDARD_SS_D_LRS
    StandardSSD_LRSStandardSSD_LRS SKU
    ULTRA_SS_D_LRS
    UltraSSD_LRSUltraSSD_LRS SKU
    PREMIUM_ZRS
    Premium_ZRSPremium_ZRS SKU
    PREMIUM_V2_LRS
    PremiumV2_LRSPremiumV2_LRS SKU
    STANDARD_SS_D_ZRS
    StandardSSD_ZRSStandardSSD_ZRS SKU
    "Premium_LRS"
    Premium_LRSPremium_LRS SKU
    "Standard_LRS"
    Standard_LRSStandard_LRS SKU
    "StandardSSD_LRS"
    StandardSSD_LRSStandardSSD_LRS SKU
    "UltraSSD_LRS"
    UltraSSD_LRSUltraSSD_LRS SKU
    "Premium_ZRS"
    Premium_ZRSPremium_ZRS SKU
    "PremiumV2_LRS"
    PremiumV2_LRSPremiumV2_LRS SKU
    "StandardSSD_ZRS"
    StandardSSD_ZRSStandardSSD_ZRS SKU

    Disk, DiskArgs

    Id string
    ID is the disk identifier visible to the OS. It is typically the WWN or disk ID in formats such as eui.e8238fa6bf530001001b448b45263379 or 0x5002cf6cbc5dd460
    Reference string
    Reference is the location of the disk in an external system.
    Id string
    ID is the disk identifier visible to the OS. It is typically the WWN or disk ID in formats such as eui.e8238fa6bf530001001b448b45263379 or 0x5002cf6cbc5dd460
    Reference string
    Reference is the location of the disk in an external system.
    id String
    ID is the disk identifier visible to the OS. It is typically the WWN or disk ID in formats such as eui.e8238fa6bf530001001b448b45263379 or 0x5002cf6cbc5dd460
    reference String
    Reference is the location of the disk in an external system.
    id string
    ID is the disk identifier visible to the OS. It is typically the WWN or disk ID in formats such as eui.e8238fa6bf530001001b448b45263379 or 0x5002cf6cbc5dd460
    reference string
    Reference is the location of the disk in an external system.
    id str
    ID is the disk identifier visible to the OS. It is typically the WWN or disk ID in formats such as eui.e8238fa6bf530001001b448b45263379 or 0x5002cf6cbc5dd460
    reference str
    Reference is the location of the disk in an external system.
    id String
    ID is the disk identifier visible to the OS. It is typically the WWN or disk ID in formats such as eui.e8238fa6bf530001001b448b45263379 or 0x5002cf6cbc5dd460
    reference String
    Reference is the location of the disk in an external system.

    DiskResponse, DiskResponseArgs

    Id string
    ID is the disk identifier visible to the OS. It is typically the WWN or disk ID in formats such as eui.e8238fa6bf530001001b448b45263379 or 0x5002cf6cbc5dd460
    Reference string
    Reference is the location of the disk in an external system.
    Id string
    ID is the disk identifier visible to the OS. It is typically the WWN or disk ID in formats such as eui.e8238fa6bf530001001b448b45263379 or 0x5002cf6cbc5dd460
    Reference string
    Reference is the location of the disk in an external system.
    id String
    ID is the disk identifier visible to the OS. It is typically the WWN or disk ID in formats such as eui.e8238fa6bf530001001b448b45263379 or 0x5002cf6cbc5dd460
    reference String
    Reference is the location of the disk in an external system.
    id string
    ID is the disk identifier visible to the OS. It is typically the WWN or disk ID in formats such as eui.e8238fa6bf530001001b448b45263379 or 0x5002cf6cbc5dd460
    reference string
    Reference is the location of the disk in an external system.
    id str
    ID is the disk identifier visible to the OS. It is typically the WWN or disk ID in formats such as eui.e8238fa6bf530001001b448b45263379 or 0x5002cf6cbc5dd460
    reference str
    Reference is the location of the disk in an external system.
    id String
    ID is the disk identifier visible to the OS. It is typically the WWN or disk ID in formats such as eui.e8238fa6bf530001001b448b45263379 or 0x5002cf6cbc5dd460
    reference String
    Reference is the location of the disk in an external system.

    ElasticSan, ElasticSanArgs

    Encryption Pulumi.AzureNative.ContainerStorage.Inputs.Encryption
    Encryption specifies the encryption configuration for the Azure Disk pool
    SkuName string | Pulumi.AzureNative.ContainerStorage.ElasticSanSkuName
    Sku name
    Encryption Encryption
    Encryption specifies the encryption configuration for the Azure Disk pool
    SkuName string | ElasticSanSkuName
    Sku name
    encryption Encryption
    Encryption specifies the encryption configuration for the Azure Disk pool
    skuName String | ElasticSanSkuName
    Sku name
    encryption Encryption
    Encryption specifies the encryption configuration for the Azure Disk pool
    skuName string | ElasticSanSkuName
    Sku name
    encryption Encryption
    Encryption specifies the encryption configuration for the Azure Disk pool
    sku_name str | ElasticSanSkuName
    Sku name
    encryption Property Map
    Encryption specifies the encryption configuration for the Azure Disk pool
    skuName String | "Premium_LRS" | "Premium_ZRS"
    Sku name

    ElasticSanResponse, ElasticSanResponseArgs

    ResourceGroup string
    Managed resource group for the pool.
    Encryption Pulumi.AzureNative.ContainerStorage.Inputs.EncryptionResponse
    Encryption specifies the encryption configuration for the Azure Disk pool
    SkuName string
    Sku name
    ResourceGroup string
    Managed resource group for the pool.
    Encryption EncryptionResponse
    Encryption specifies the encryption configuration for the Azure Disk pool
    SkuName string
    Sku name
    resourceGroup String
    Managed resource group for the pool.
    encryption EncryptionResponse
    Encryption specifies the encryption configuration for the Azure Disk pool
    skuName String
    Sku name
    resourceGroup string
    Managed resource group for the pool.
    encryption EncryptionResponse
    Encryption specifies the encryption configuration for the Azure Disk pool
    skuName string
    Sku name
    resource_group str
    Managed resource group for the pool.
    encryption EncryptionResponse
    Encryption specifies the encryption configuration for the Azure Disk pool
    sku_name str
    Sku name
    resourceGroup String
    Managed resource group for the pool.
    encryption Property Map
    Encryption specifies the encryption configuration for the Azure Disk pool
    skuName String
    Sku name

    ElasticSanSkuName, ElasticSanSkuNameArgs

    Premium_LRS
    Premium_LRSPremium_LRS SKU
    Premium_ZRS
    Premium_ZRSPremium_ZRS SKU
    ElasticSanSkuName_Premium_LRS
    Premium_LRSPremium_LRS SKU
    ElasticSanSkuName_Premium_ZRS
    Premium_ZRSPremium_ZRS SKU
    Premium_LRS
    Premium_LRSPremium_LRS SKU
    Premium_ZRS
    Premium_ZRSPremium_ZRS SKU
    Premium_LRS
    Premium_LRSPremium_LRS SKU
    Premium_ZRS
    Premium_ZRSPremium_ZRS SKU
    PREMIUM_LRS
    Premium_LRSPremium_LRS SKU
    PREMIUM_ZRS
    Premium_ZRSPremium_ZRS SKU
    "Premium_LRS"
    Premium_LRSPremium_LRS SKU
    "Premium_ZRS"
    Premium_ZRSPremium_ZRS SKU

    Encryption, EncryptionArgs

    KeyName string
    The name of the key vault key.
    KeyVaultUri string
    The URI of the key vault.
    Identity Pulumi.AzureNative.ContainerStorage.Inputs.ManagedServiceIdentity
    The managed service identities assigned to this resource.
    KeyName string
    The name of the key vault key.
    KeyVaultUri string
    The URI of the key vault.
    Identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    keyName String
    The name of the key vault key.
    keyVaultUri String
    The URI of the key vault.
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    keyName string
    The name of the key vault key.
    keyVaultUri string
    The URI of the key vault.
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    key_name str
    The name of the key vault key.
    key_vault_uri str
    The URI of the key vault.
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    keyName String
    The name of the key vault key.
    keyVaultUri String
    The URI of the key vault.
    identity Property Map
    The managed service identities assigned to this resource.

    EncryptionResponse, EncryptionResponseArgs

    KeyName string
    The name of the key vault key.
    KeyVaultUri string
    The URI of the key vault.
    Identity Pulumi.AzureNative.ContainerStorage.Inputs.ManagedServiceIdentityResponse
    The managed service identities assigned to this resource.
    KeyName string
    The name of the key vault key.
    KeyVaultUri string
    The URI of the key vault.
    Identity ManagedServiceIdentityResponse
    The managed service identities assigned to this resource.
    keyName String
    The name of the key vault key.
    keyVaultUri String
    The URI of the key vault.
    identity ManagedServiceIdentityResponse
    The managed service identities assigned to this resource.
    keyName string
    The name of the key vault key.
    keyVaultUri string
    The URI of the key vault.
    identity ManagedServiceIdentityResponse
    The managed service identities assigned to this resource.
    key_name str
    The name of the key vault key.
    key_vault_uri str
    The URI of the key vault.
    identity ManagedServiceIdentityResponse
    The managed service identities assigned to this resource.
    keyName String
    The name of the key vault key.
    keyVaultUri String
    The URI of the key vault.
    identity Property Map
    The managed service identities assigned to this resource.

    EphemeralDisk, EphemeralDiskArgs

    Disks List<Pulumi.AzureNative.ContainerStorage.Inputs.Disk>
    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).
    Replicas double
    The number of data copies. Default 3.
    Disks []Disk
    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).
    Replicas float64
    The number of data copies. Default 3.
    disks List<Disk>
    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).
    replicas Double
    The number of data copies. Default 3.
    disks Disk[]
    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).
    replicas number
    The number of data copies. Default 3.
    disks Sequence[Disk]
    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).
    replicas float
    The number of data copies. Default 3.
    disks List<Property Map>
    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).
    replicas Number
    The number of data copies. Default 3.

    EphemeralDiskResponse, EphemeralDiskResponseArgs

    Disks List<Pulumi.AzureNative.ContainerStorage.Inputs.DiskResponse>
    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).
    Replicas double
    The number of data copies. Default 3.
    Disks []DiskResponse
    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).
    Replicas float64
    The number of data copies. Default 3.
    disks List<DiskResponse>
    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).
    replicas Double
    The number of data copies. Default 3.
    disks DiskResponse[]
    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).
    replicas number
    The number of data copies. Default 3.
    disks Sequence[DiskResponse]
    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).
    replicas float
    The number of data copies. Default 3.
    disks List<Property Map>
    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).
    replicas Number
    The number of data copies. Default 3.

    ManagedServiceIdentity, ManagedServiceIdentityArgs

    Type string | Pulumi.AzureNative.ContainerStorage.ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities List<string>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    Type string | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities []string
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type String | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type string | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities string[]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type str | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Sequence[str]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type String | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned, UserAssigned"
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

    ManagedServiceIdentityResponse, ManagedServiceIdentityResponseArgs

    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.ContainerStorage.Inputs.UserAssignedIdentityResponse>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities map[string]UserAssignedIdentityResponse
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type String
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities Map<String,UserAssignedIdentityResponse>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principal_id str
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenant_id str
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type str
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type String
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities Map<Property Map>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

    ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs

    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    ManagedServiceIdentityTypeNone
    None
    ManagedServiceIdentityTypeSystemAssigned
    SystemAssigned
    ManagedServiceIdentityTypeUserAssigned
    UserAssigned
    ManagedServiceIdentityType_SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    NONE
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    USER_ASSIGNED
    UserAssigned
    SYSTEM_ASSIGNED_USER_ASSIGNED
    SystemAssigned, UserAssigned
    "None"
    None
    "SystemAssigned"
    SystemAssigned
    "UserAssigned"
    UserAssigned
    "SystemAssigned, UserAssigned"
    SystemAssigned, UserAssigned

    PoolType, PoolTypeArgs

    AzureDisk AzureDisk
    Disk Pool Properties
    ElasticSan ElasticSan
    Elastic San Pool Properties
    EphemeralDisk EphemeralDisk
    Ephemeral Pool Properties
    azureDisk AzureDisk
    Disk Pool Properties
    elasticSan ElasticSan
    Elastic San Pool Properties
    ephemeralDisk EphemeralDisk
    Ephemeral Pool Properties
    azureDisk AzureDisk
    Disk Pool Properties
    elasticSan ElasticSan
    Elastic San Pool Properties
    ephemeralDisk EphemeralDisk
    Ephemeral Pool Properties
    azure_disk AzureDisk
    Disk Pool Properties
    elastic_san ElasticSan
    Elastic San Pool Properties
    ephemeral_disk EphemeralDisk
    Ephemeral Pool Properties
    azureDisk Property Map
    Disk Pool Properties
    elasticSan Property Map
    Elastic San Pool Properties
    ephemeralDisk Property Map
    Ephemeral Pool Properties

    PoolTypeResponse, PoolTypeResponseArgs

    AzureDisk AzureDiskResponse
    Disk Pool Properties
    ElasticSan ElasticSanResponse
    Elastic San Pool Properties
    EphemeralDisk EphemeralDiskResponse
    Ephemeral Pool Properties
    azureDisk AzureDiskResponse
    Disk Pool Properties
    elasticSan ElasticSanResponse
    Elastic San Pool Properties
    ephemeralDisk EphemeralDiskResponse
    Ephemeral Pool Properties
    azureDisk AzureDiskResponse
    Disk Pool Properties
    elasticSan ElasticSanResponse
    Elastic San Pool Properties
    ephemeralDisk EphemeralDiskResponse
    Ephemeral Pool Properties
    azure_disk AzureDiskResponse
    Disk Pool Properties
    elastic_san ElasticSanResponse
    Elastic San Pool Properties
    ephemeral_disk EphemeralDiskResponse
    Ephemeral Pool Properties
    azureDisk Property Map
    Disk Pool Properties
    elasticSan Property Map
    Elastic San Pool Properties
    ephemeralDisk Property Map
    Ephemeral Pool Properties

    ReclaimPolicy, ReclaimPolicyArgs

    Delete
    DeleteDelete resource
    Retain
    RetainRetain resource
    ReclaimPolicyDelete
    DeleteDelete resource
    ReclaimPolicyRetain
    RetainRetain resource
    Delete
    DeleteDelete resource
    Retain
    RetainRetain resource
    Delete
    DeleteDelete resource
    Retain
    RetainRetain resource
    DELETE
    DeleteDelete resource
    RETAIN
    RetainRetain resource
    "Delete"
    DeleteDelete resource
    "Retain"
    RetainRetain resource

    Requests, RequestsArgs

    Storage double
    Requested capacity of the pool in GiB.
    Storage float64
    Requested capacity of the pool in GiB.
    storage Double
    Requested capacity of the pool in GiB.
    storage number
    Requested capacity of the pool in GiB.
    storage float
    Requested capacity of the pool in GiB.
    storage Number
    Requested capacity of the pool in GiB.

    RequestsResponse, RequestsResponseArgs

    Storage double
    Requested capacity of the pool in GiB.
    Storage float64
    Requested capacity of the pool in GiB.
    storage Double
    Requested capacity of the pool in GiB.
    storage number
    Requested capacity of the pool in GiB.
    storage float
    Requested capacity of the pool in GiB.
    storage Number
    Requested capacity of the pool in GiB.

    ResourceOperationalStatusResponse, ResourceOperationalStatusResponseArgs

    State string
    state of the resource
    Message string
    Reason for state.
    State string
    state of the resource
    Message string
    Reason for state.
    state String
    state of the resource
    message String
    Reason for state.
    state string
    state of the resource
    message string
    Reason for state.
    state str
    state of the resource
    message str
    Reason for state.
    state String
    state of the resource
    message String
    Reason for state.

    Resources, ResourcesArgs

    Requests Requests
    Requests for capacity for the pool.
    requests Requests
    Requests for capacity for the pool.
    requests Requests
    Requests for capacity for the pool.
    requests Requests
    Requests for capacity for the pool.
    requests Property Map
    Requests for capacity for the pool.

    ResourcesResponse, ResourcesResponseArgs

    Requests RequestsResponse
    Requests for capacity for the pool.
    requests RequestsResponse
    Requests for capacity for the pool.
    requests RequestsResponse
    Requests for capacity for the pool.
    requests RequestsResponse
    Requests for capacity for the pool.
    requests Property Map
    Requests for capacity for the pool.

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs

    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.
    clientId string
    The client ID of the assigned identity.
    principalId string
    The principal ID of the assigned identity.
    client_id str
    The client ID of the assigned identity.
    principal_id str
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.

    Zone, ZoneArgs

    Zone1
    1First availability zone.
    Zone2
    2Second availability zone.
    Zone3
    3Third availability zone.
    ZoneZone1
    1First availability zone.
    ZoneZone2
    2Second availability zone.
    ZoneZone3
    3Third availability zone.
    Zone1
    1First availability zone.
    Zone2
    2Second availability zone.
    Zone3
    3Third availability zone.
    Zone1
    1First availability zone.
    Zone2
    2Second availability zone.
    Zone3
    3Third availability zone.
    ZONE1
    1First availability zone.
    ZONE2
    2Second availability zone.
    ZONE3
    3Third availability zone.
    "1"
    1First availability zone.
    "2"
    2Second availability zone.
    "3"
    3Third availability zone.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:containerstorage:Pool test-pool /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerStorage/pools/{poolName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

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