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

azure-native.containerstorage.Pool

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

Pool resource

Uses Azure REST API version 2023-07-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-07-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,
        },
    });

});
Copy
package main

import (
	containerstorage "github.com/pulumi/pulumi-azure-native-sdk/containerstorage/v3"
	"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
	})
}
Copy
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.0)
                    .build())
                .build())
            .reclaimPolicy("Delete")
            .resourceGroupName("test-rg")
            .resources(ResourcesArgs.builder()
                .requests(RequestsArgs.builder()
                    .storage(15578.0)
                    .build())
                .build())
            .tags(Map.of("key1888", "value1888"))
            .zones(            
                "1",
                "2",
                "3")
            .build());

    }
}
Copy
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,
    ],
});
Copy
import pulumi
import pulumi_azure_native as azure_native

pool = azure_native.containerstorage.Pool("pool",
    assignments=[{
        "id": "/subscriptions/bb4d87a2-4273-466c-a6ba-61d818061b3a/resourceGroups/test-rg/providers/Microsoft.ContainerService/managedClusters/containerstoragetest",
    }],
    location="eastus",
    pool_name="test-pool",
    pool_type={
        "ephemeral_disk": {
            "replicas": 3,
        },
    },
    reclaim_policy=azure_native.containerstorage.ReclaimPolicy.DELETE,
    resource_group_name="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,
    ])
Copy
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'
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. PoolArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. PoolArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PoolArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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()
{
    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",
    },
});
Copy
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"),
	},
})
Copy
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());
Copy
azure_native_pool_resource = azure_native.containerstorage.Pool("azure-nativePoolResource",
    pool_type={
        "azure_disk": {
            "disks": [{
                "id": "string",
                "reference": "string",
            }],
            "encryption": {
                "key_name": "string",
                "key_vault_uri": "string",
                "identity": {
                    "type": "string",
                    "user_assigned_identities": ["string"],
                },
            },
            "sku_name": "string",
        },
        "elastic_san": {
            "encryption": {
                "key_name": "string",
                "key_vault_uri": "string",
                "identity": {
                    "type": "string",
                    "user_assigned_identities": ["string"],
                },
            },
            "sku_name": "string",
        },
        "ephemeral_disk": {
            "disks": [{
                "id": "string",
                "reference": "string",
            }],
            "replicas": 0,
        },
    },
    resource_group_name="string",
    assignments=[{
        "id": "string",
    }],
    location="string",
    pool_name="string",
    reclaim_policy="string",
    resources={
        "requests": {
            "storage": 0,
        },
    },
    tags={
        "string": "string",
    },
    zones=["string"])
Copy
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"],
});
Copy
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
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Pool resource accepts the following input properties:

PoolType This property is required. Pulumi.AzureNative.ContainerStorage.Inputs.PoolType
Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. string
The geo-location where the resource lives
PoolName Changes to this property will trigger replacement. string
Pool Object
ReclaimPolicy Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. List<Union<string, Pulumi.AzureNative.ContainerStorage.Zone>>
List of availability zones that resources can be created in.
PoolType This property is required. PoolTypeArgs
Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. string
The geo-location where the resource lives
PoolName Changes to this property will trigger replacement. string
Pool Object
ReclaimPolicy Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. []string
List of availability zones that resources can be created in.
poolType This property is required. PoolType
Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. String
The geo-location where the resource lives
poolName Changes to this property will trigger replacement. String
Pool Object
reclaimPolicy Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. List<Either<String,Zone>>
List of availability zones that resources can be created in.
poolType This property is required. PoolType
Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. string
The geo-location where the resource lives
poolName Changes to this property will trigger replacement. string
Pool Object
reclaimPolicy Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. (string | Zone)[]
List of availability zones that resources can be created in.
pool_type This property is required. PoolTypeArgs
Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. str
The geo-location where the resource lives
pool_name Changes to this property will trigger replacement. str
Pool Object
reclaim_policy Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. Sequence[Union[str, Zone]]
List of availability zones that resources can be created in.
poolType This property is required. Property Map
Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. String
The geo-location where the resource lives
poolName Changes to this property will trigger replacement. String
Pool Object
reclaimPolicy Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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:

AzureApiVersion string
The Azure API version of the resource.
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"
AzureApiVersion string
The Azure API version of the resource.
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"
azureApiVersion String
The Azure API version of the resource.
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"
azureApiVersion string
The Azure API version of the resource.
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"
azure_api_version str
The Azure API version of the resource.
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"
azureApiVersion String
The Azure API version of the resource.
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 This property is required. string
Resource id for the assigned resource
Id This property is required. string
Resource id for the assigned resource
id This property is required. String
Resource id for the assigned resource
id This property is required. string
Resource id for the assigned resource
id This property is required. str
Resource id for the assigned resource
id This property is required. String
Resource id for the assigned resource

AssignmentResponse
, AssignmentResponseArgs

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

AssignmentStatusResponse
, AssignmentStatusResponseArgs

State This property is required. string
State of the assignment resource
Message string
Reason for the status
State This property is required. string
State of the assignment resource
Message string
Reason for the status
state This property is required. String
State of the assignment resource
message String
Reason for the status
state This property is required. string
State of the assignment resource
message string
Reason for the status
state This property is required. str
State of the assignment resource
message str
Reason for the status
state This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. string
Reference is the location of the disk in an external system.
Id This property is required. 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 This property is required. string
Reference is the location of the disk in an external system.
id This property is required. 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 This property is required. String
Reference is the location of the disk in an external system.
id This property is required. 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 This property is required. string
Reference is the location of the disk in an external system.
id This property is required. 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 This property is required. str
Reference is the location of the disk in an external system.
id This property is required. 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 This property is required. String
Reference is the location of the disk in an external system.

DiskResponse
, DiskResponseArgs

Id This property is required. 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 This property is required. string
Reference is the location of the disk in an external system.
Id This property is required. 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 This property is required. string
Reference is the location of the disk in an external system.
id This property is required. 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 This property is required. String
Reference is the location of the disk in an external system.
id This property is required. 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 This property is required. string
Reference is the location of the disk in an external system.
id This property is required. 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 This property is required. str
Reference is the location of the disk in an external system.
id This property is required. 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 This property is required. 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 This property is required. 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 This property is required. string
Managed resource group for the pool.
Encryption EncryptionResponse
Encryption specifies the encryption configuration for the Azure Disk pool
SkuName string
Sku name
resourceGroup This property is required. String
Managed resource group for the pool.
encryption EncryptionResponse
Encryption specifies the encryption configuration for the Azure Disk pool
skuName String
Sku name
resourceGroup This property is required. 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 This property is required. 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 This property is required. 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 This property is required. string
The name of the key vault key.
KeyVaultUri This property is required. string
The URI of the key vault.
Identity Pulumi.AzureNative.ContainerStorage.Inputs.ManagedServiceIdentity
The managed service identities assigned to this resource.
KeyName This property is required. string
The name of the key vault key.
KeyVaultUri This property is required. string
The URI of the key vault.
Identity ManagedServiceIdentity
The managed service identities assigned to this resource.
keyName This property is required. String
The name of the key vault key.
keyVaultUri This property is required. String
The URI of the key vault.
identity ManagedServiceIdentity
The managed service identities assigned to this resource.
keyName This property is required. string
The name of the key vault key.
keyVaultUri This property is required. string
The URI of the key vault.
identity ManagedServiceIdentity
The managed service identities assigned to this resource.
key_name This property is required. str
The name of the key vault key.
key_vault_uri This property is required. str
The URI of the key vault.
identity ManagedServiceIdentity
The managed service identities assigned to this resource.
keyName This property is required. String
The name of the key vault key.
keyVaultUri This property is required. String
The URI of the key vault.
identity Property Map
The managed service identities assigned to this resource.

EncryptionResponse
, EncryptionResponseArgs

KeyName This property is required. string
The name of the key vault key.
KeyVaultUri This property is required. string
The URI of the key vault.
Identity Pulumi.AzureNative.ContainerStorage.Inputs.ManagedServiceIdentityResponse
The managed service identities assigned to this resource.
KeyName This property is required. string
The name of the key vault key.
KeyVaultUri This property is required. string
The URI of the key vault.
Identity ManagedServiceIdentityResponse
The managed service identities assigned to this resource.
keyName This property is required. String
The name of the key vault key.
keyVaultUri This property is required. String
The URI of the key vault.
identity ManagedServiceIdentityResponse
The managed service identities assigned to this resource.
keyName This property is required. string
The name of the key vault key.
keyVaultUri This property is required. string
The URI of the key vault.
identity ManagedServiceIdentityResponse
The managed service identities assigned to this resource.
key_name This property is required. str
The name of the key vault key.
key_vault_uri This property is required. str
The URI of the key vault.
identity ManagedServiceIdentityResponse
The managed service identities assigned to this resource.
keyName This property is required. String
The name of the key vault key.
keyVaultUri This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. 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 This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. 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 This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. 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 This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. 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 This property is required. str
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenant_id This property is required. str
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. 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 This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. 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 This property is required. string
state of the resource
Message string
Reason for state.
State This property is required. string
state of the resource
Message string
Reason for state.
state This property is required. String
state of the resource
message String
Reason for state.
state This property is required. string
state of the resource
message string
Reason for state.
state This property is required. str
state of the resource
message str
Reason for state.
state This property is required. 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 This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
ClientId This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. String
The principal ID of the assigned identity.
clientId This property is required. string
The client ID of the assigned identity.
principalId This property is required. string
The principal ID of the assigned identity.
client_id This property is required. str
The client ID of the assigned identity.
principal_id This property is required. str
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. 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} 
Copy

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

Package Details

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