azure-native.containerstorage.Pool
Explore with Pulumi AI
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 (
	containerstorage "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 * 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,
    ],
});
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,
    ])
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)type: azure-native:containerstorage:Pool
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args PoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args PoolArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args PoolArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PoolArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var azure_nativePoolResource = new AzureNative.ContainerStorage.Pool("azure-nativePoolResource", new()
{
    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_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"])
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
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 Pulumi.Azure Native. Container Storage. Inputs. Pool Type 
- Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Assignments
List<Pulumi.Azure Native. Container Storage. 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.Azure Native. Container Storage. Reclaim Policy 
- ReclaimPolicy defines what happens to the backend storage when StoragePool is deleted
- Resources
Pulumi.Azure Native. Container Storage. Inputs. Resources 
- Resources represent the resources the pool should have.
- Dictionary<string, string>
- Resource tags.
- Zones
List<Union<string, Pulumi.Azure Native. Container Storage. Zone>> 
- List of availability zones that resources can be created in.
- PoolType PoolType Args 
- Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
- ResourceGroup stringName 
- 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.
- 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.
- resourceGroup StringName 
- 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.
- 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.
- resourceGroup stringName 
- 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.
- {[key: string]: string}
- Resource tags.
- zones (string | Zone)[]
- List of availability zones that resources can be created in.
- pool_type PoolType Args 
- Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
- resource_group_ strname 
- 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.
- 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.
- resourceGroup StringName 
- 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.
- 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.Azure Native. Container Storage. Outputs. Resource Operational Status Response 
- The operational status of the resource
- SystemData Pulumi.Azure Native. Container Storage. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- ProvisioningState string
- The status of the last operation.
- Status
ResourceOperational Status Response 
- The operational status of the resource
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioningState String
- The status of the last operation.
- status
ResourceOperational Status Response 
- The operational status of the resource
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioningState string
- The status of the last operation.
- status
ResourceOperational Status Response 
- The operational status of the resource
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_state str
- The status of the last operation.
- status
ResourceOperational Status Response 
- The operational status of the resource
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- 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.Azure Native. Container Storage. Inputs. Assignment Status Response 
- Indicates if the assignment is in a usable state
- Id string
- Resource id for the assigned resource
- Status
AssignmentStatus Response 
- Indicates if the assignment is in a usable state
- id String
- Resource id for the assigned resource
- status
AssignmentStatus Response 
- Indicates if the assignment is in a usable state
- id string
- Resource id for the assigned resource
- status
AssignmentStatus Response 
- Indicates if the assignment is in a usable state
- id str
- Resource id for the assigned resource
- status
AssignmentStatus Response 
- 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      
AzureDisk, AzureDiskArgs    
- Disks
List<Pulumi.Azure Native. Container Storage. 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.Azure Native. Container Storage. Inputs. Encryption 
- Encryption specifies the encryption configuration for the Azure Disk pool
- SkuName string | Pulumi.Azure Native. Container Storage. Azure Disk Sku Name 
- 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 | AzureDisk Sku Name 
- 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 | AzureDisk Sku Name 
- 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 | AzureDisk Sku Name 
- 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 | AzureDisk Sku Name 
- 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" | "Ultra SSD_LRS" | "Premium_ZRS" | "Premium V2_LRS" | "Standard SSD_ZRS" 
- Sku name
AzureDiskResponse, AzureDiskResponseArgs      
- ResourceGroup string
- Managed resource group for the pool.
- Disks
List<Pulumi.Azure Native. Container Storage. Inputs. Disk Response> 
- 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.Azure Native. Container Storage. Inputs. Encryption Response 
- 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
- AzureDisk Sku Name_Premium_LRS 
- Premium_LRSPremium_LRS SKU
- AzureDisk Sku Name_Standard_LRS 
- Standard_LRSStandard_LRS SKU
- AzureDisk Sku Name_Standard SSD_LRS 
- StandardSSD_LRSStandardSSD_LRS SKU
- AzureDisk Sku Name_Ultra SSD_LRS 
- UltraSSD_LRSUltraSSD_LRS SKU
- AzureDisk Sku Name_Premium_ZRS 
- Premium_ZRSPremium_ZRS SKU
- AzureDisk Sku Name_Premium V2_LRS 
- PremiumV2_LRSPremiumV2_LRS SKU
- AzureDisk Sku Name_Standard SSD_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  
DiskResponse, DiskResponseArgs    
ElasticSan, ElasticSanArgs    
- Encryption
Pulumi.Azure Native. Container Storage. Inputs. Encryption 
- Encryption specifies the encryption configuration for the Azure Disk pool
- SkuName string | Pulumi.Azure Native. Container Storage. Elastic San Sku Name 
- Sku name
- Encryption Encryption
- Encryption specifies the encryption configuration for the Azure Disk pool
- SkuName string | ElasticSan Sku Name 
- Sku name
- encryption Encryption
- Encryption specifies the encryption configuration for the Azure Disk pool
- skuName String | ElasticSan Sku Name 
- Sku name
- encryption Encryption
- Encryption specifies the encryption configuration for the Azure Disk pool
- skuName string | ElasticSan Sku Name 
- Sku name
- encryption Encryption
- Encryption specifies the encryption configuration for the Azure Disk pool
- sku_name str | ElasticSan Sku Name 
- 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.Azure Native. Container Storage. Inputs. Encryption Response 
- 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
- ElasticSan Sku Name_Premium_LRS 
- Premium_LRSPremium_LRS SKU
- ElasticSan Sku Name_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.
- KeyVault stringUri 
- The URI of the key vault.
- Identity
Pulumi.Azure Native. Container Storage. Inputs. Managed Service Identity 
- The managed service identities assigned to this resource.
- KeyName string
- The name of the key vault key.
- KeyVault stringUri 
- The URI of the key vault.
- Identity
ManagedService Identity 
- The managed service identities assigned to this resource.
- keyName String
- The name of the key vault key.
- keyVault StringUri 
- The URI of the key vault.
- identity
ManagedService Identity 
- The managed service identities assigned to this resource.
- keyName string
- The name of the key vault key.
- keyVault stringUri 
- The URI of the key vault.
- identity
ManagedService Identity 
- The managed service identities assigned to this resource.
- key_name str
- The name of the key vault key.
- key_vault_ struri 
- The URI of the key vault.
- identity
ManagedService Identity 
- The managed service identities assigned to this resource.
- keyName String
- The name of the key vault key.
- keyVault StringUri 
- 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.
- KeyVault stringUri 
- The URI of the key vault.
- Identity
Pulumi.Azure Native. Container Storage. Inputs. Managed Service Identity Response 
- The managed service identities assigned to this resource.
- KeyName string
- The name of the key vault key.
- KeyVault stringUri 
- The URI of the key vault.
- Identity
ManagedService Identity Response 
- The managed service identities assigned to this resource.
- keyName String
- The name of the key vault key.
- keyVault StringUri 
- The URI of the key vault.
- identity
ManagedService Identity Response 
- The managed service identities assigned to this resource.
- keyName string
- The name of the key vault key.
- keyVault stringUri 
- The URI of the key vault.
- identity
ManagedService Identity Response 
- The managed service identities assigned to this resource.
- key_name str
- The name of the key vault key.
- key_vault_ struri 
- The URI of the key vault.
- identity
ManagedService Identity Response 
- The managed service identities assigned to this resource.
- keyName String
- The name of the key vault key.
- keyVault StringUri 
- The URI of the key vault.
- identity Property Map
- The managed service identities assigned to this resource.
EphemeralDisk, EphemeralDiskArgs    
- Disks
List<Pulumi.Azure Native. Container Storage. 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 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 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.Azure Native. Container Storage. Inputs. Disk Response> 
- 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.Azure Native. Container Storage. Managed Service Identity Type 
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- UserAssigned List<string>Identities 
- 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 | ManagedService Identity Type 
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- UserAssigned []stringIdentities 
- 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 | ManagedService Identity Type 
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- userAssigned List<String>Identities 
- 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 | ManagedService Identity Type 
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- userAssigned string[]Identities 
- 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 | ManagedService Identity Type 
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_assigned_ Sequence[str]identities 
- 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" | "User Assigned" | "System Assigned, User Assigned" 
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- userAssigned List<String>Identities 
- 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).
- UserAssigned Dictionary<string, Pulumi.Identities Azure Native. Container Storage. Inputs. User Assigned Identity Response> 
- 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).
- UserAssigned map[string]UserIdentities Assigned Identity Response 
- 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).
- userAssigned Map<String,UserIdentities Assigned Identity Response> 
- 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).
- userAssigned {[key: string]: UserIdentities Assigned Identity Response} 
- 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_ Mapping[str, Useridentities Assigned Identity Response] 
- 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).
- userAssigned Map<Property Map>Identities 
- 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_User Assigned 
- SystemAssigned, UserAssigned
- ManagedService Identity Type None 
- None
- ManagedService Identity Type System Assigned 
- SystemAssigned
- ManagedService Identity Type User Assigned 
- UserAssigned
- ManagedService Identity Type_System Assigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssigned
- "None"
- None
- "SystemAssigned" 
- SystemAssigned
- "UserAssigned" 
- UserAssigned
- "SystemAssigned, User Assigned" 
- SystemAssigned, UserAssigned
PoolType, PoolTypeArgs    
- AzureDisk Pulumi.Azure Native. Container Storage. Inputs. Azure Disk 
- Disk Pool Properties
- ElasticSan Pulumi.Azure Native. Container Storage. Inputs. Elastic San 
- Elastic San Pool Properties
- EphemeralDisk Pulumi.Azure Native. Container Storage. Inputs. Ephemeral Disk 
- 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
- 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 Pulumi.Azure Native. Container Storage. Inputs. Azure Disk Response 
- Disk Pool Properties
- ElasticSan Pulumi.Azure Native. Container Storage. Inputs. Elastic San Response 
- Elastic San Pool Properties
- EphemeralDisk Pulumi.Azure Native. Container Storage. Inputs. Ephemeral Disk Response 
- Ephemeral Pool Properties
- AzureDisk AzureDisk Response 
- Disk Pool Properties
- ElasticSan ElasticSan Response 
- Elastic San Pool Properties
- EphemeralDisk EphemeralDisk Response 
- Ephemeral Pool Properties
- azureDisk AzureDisk Response 
- Disk Pool Properties
- elasticSan ElasticSan Response 
- Elastic San Pool Properties
- ephemeralDisk EphemeralDisk Response 
- Ephemeral Pool Properties
- azureDisk AzureDisk Response 
- Disk Pool Properties
- elasticSan ElasticSan Response 
- Elastic San Pool Properties
- ephemeralDisk EphemeralDisk Response 
- Ephemeral Pool Properties
- azure_disk AzureDisk Response 
- Disk Pool Properties
- elastic_san ElasticSan Response 
- Elastic San Pool Properties
- ephemeral_disk EphemeralDisk Response 
- 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
- ReclaimPolicy Delete 
- DeleteDelete resource
- ReclaimPolicy Retain 
- 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        
Resources, ResourcesArgs  
- Requests
Pulumi.Azure Native. Container Storage. Inputs. Requests 
- Requests for capacity for the pool.
- requests Property Map
- Requests for capacity for the pool.
ResourcesResponse, ResourcesResponseArgs    
- Requests
Pulumi.Azure Native. Container Storage. Inputs. Requests Response 
- 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
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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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