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 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,
])
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const pool = new azure_native.containerstorage.Pool("pool", {
assignments: [{
id: "/subscriptions/bb4d87a2-4273-466c-a6ba-61d818061b3a/resourceGroups/test-rg/providers/Microsoft.ContainerService/managedClusters/containerstoragetest",
}],
location: "eastus",
poolName: "test-pool",
poolType: {
ephemeralDisk: {
replicas: 3,
},
},
reclaimPolicy: azure_native.containerstorage.ReclaimPolicy.Delete,
resourceGroupName: "test-rg",
resources: {
requests: {
storage: 15578,
},
},
tags: {
key1888: "value1888",
},
zones: [
azure_native.containerstorage.Zone.Zone1,
azure_native.containerstorage.Zone.Zone2,
azure_native.containerstorage.Zone.Zone3,
],
});
resources:
pool:
type: azure-native:containerstorage:Pool
properties:
assignments:
- id: /subscriptions/bb4d87a2-4273-466c-a6ba-61d818061b3a/resourceGroups/test-rg/providers/Microsoft.ContainerService/managedClusters/containerstoragetest
location: eastus
poolName: test-pool
poolType:
ephemeralDisk:
replicas: 3
reclaimPolicy: Delete
resourceGroupName: test-rg
resources:
requests:
storage: 15578
tags:
key1888: value1888
zones:
- '1'
- '2'
- '3'
Create Pool Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Pool(name: string, args: PoolArgs, opts?: CustomResourceOptions);
@overload
def Pool(resource_name: str,
args: PoolArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Pool(resource_name: str,
opts: Optional[ResourceOptions] = None,
pool_type: Optional[PoolTypeArgs] = None,
resource_group_name: Optional[str] = None,
assignments: Optional[Sequence[AssignmentArgs]] = None,
location: Optional[str] = None,
pool_name: Optional[str] = None,
reclaim_policy: Optional[Union[str, ReclaimPolicy]] = None,
resources: Optional[ResourcesArgs] = None,
tags: Optional[Mapping[str, str]] = None,
zones: Optional[Sequence[Union[str, Zone]]] = None)
func NewPool(ctx *Context, name string, args PoolArgs, opts ...ResourceOption) (*Pool, error)
public Pool(string name, PoolArgs args, CustomResourceOptions? opts = null)
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:
- Pool
Type Pulumi.Azure Native. Container Storage. Inputs. Pool Type - Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
- Resource
Group 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
- Pool
Name string - Pool Object
- Reclaim
Policy 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.
- Pool
Type PoolType Args - Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Assignments
[]Assignment
Args - 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
- Pool
Name string - Pool Object
- Reclaim
Policy string | ReclaimPolicy - ReclaimPolicy defines what happens to the backend storage when StoragePool is deleted
- Resources
Resources
Args - 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.
- pool
Type PoolType - Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
- resource
Group 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
- pool
Name String - Pool Object
- reclaim
Policy 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.
- pool
Type PoolType - Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
- resource
Group 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
- pool
Name string - Pool Object
- reclaim
Policy 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[Assignment
Args] - 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
Resources
Args - 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.
- pool
Type Property Map - Type of the Pool: ephemeralDisk, azureDisk, or elasticsan.
- resource
Group 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
- pool
Name String - Pool Object
- reclaim
Policy 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
- Provisioning
State string - The status of the last operation.
- Status
Pulumi.
Azure Native. Container Storage. Outputs. Resource Operational Status Response - The operational status of the resource
- System
Data Pulumi.Azure Native. Container Storage. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - The status of the last operation.
- Status
Resource
Operational Status Response - The operational status of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - The status of the last operation.
- status
Resource
Operational Status Response - The operational status of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - The status of the last operation.
- status
Resource
Operational Status Response - The operational status of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_
state str - The status of the last operation.
- status
Resource
Operational 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
- provisioning
State String - The status of the last operation.
- status Property Map
- The operational status of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
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
Assignment
Status Response - Indicates if the assignment is in a usable state
- id String
- Resource id for the assigned resource
- status
Assignment
Status Response - Indicates if the assignment is in a usable state
- id string
- Resource id for the assigned resource
- status
Assignment
Status Response - Indicates if the assignment is in a usable state
- id str
- Resource id for the assigned resource
- status
Assignment
Status 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
- Sku
Name 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
- Sku
Name 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
- sku
Name 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
- sku
Name 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
- sku
Name String | "Premium_LRS" | "Standard_LRS" | "StandardSSD_LRS" | "Ultra SSD_LRS" | "Premium_ZRS" | "Premium V2_LRS" | "Standard SSD_ZRS" - Sku name
AzureDiskResponse, AzureDiskResponseArgs
- Resource
Group 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
- Sku
Name string - Sku name
- Resource
Group string - Managed resource group for the pool.
- Disks
[]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
Encryption
Response - Encryption specifies the encryption configuration for the Azure Disk pool
- Sku
Name string - Sku name
- resource
Group String - Managed resource group for the pool.
- disks
List<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
Encryption
Response - Encryption specifies the encryption configuration for the Azure Disk pool
- sku
Name String - Sku name
- resource
Group string - Managed resource group for the pool.
- disks
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
Encryption
Response - Encryption specifies the encryption configuration for the Azure Disk pool
- sku
Name string - Sku name
- resource_
group str - Managed resource group for the pool.
- disks
Sequence[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
Encryption
Response - Encryption specifies the encryption configuration for the Azure Disk pool
- sku_
name str - Sku name
- resource
Group 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
- sku
Name String - Sku name
AzureDiskSkuName, AzureDiskSkuNameArgs
- Premium_LRS
- Premium_LRSPremium_LRS SKU
- Standard_LRS
- Standard_LRSStandard_LRS SKU
- Standard
SSD_LRS - StandardSSD_LRSStandardSSD_LRS SKU
- Ultra
SSD_LRS - UltraSSD_LRSUltraSSD_LRS SKU
- Premium_ZRS
- Premium_ZRSPremium_ZRS SKU
- Premium
V2_LRS - PremiumV2_LRSPremiumV2_LRS SKU
- Standard
SSD_ZRS - StandardSSD_ZRSStandardSSD_ZRS SKU
- Azure
Disk Sku Name_Premium_LRS - Premium_LRSPremium_LRS SKU
- Azure
Disk Sku Name_Standard_LRS - Standard_LRSStandard_LRS SKU
- Azure
Disk Sku Name_Standard SSD_LRS - StandardSSD_LRSStandardSSD_LRS SKU
- Azure
Disk Sku Name_Ultra SSD_LRS - UltraSSD_LRSUltraSSD_LRS SKU
- Azure
Disk Sku Name_Premium_ZRS - Premium_ZRSPremium_ZRS SKU
- Azure
Disk Sku Name_Premium V2_LRS - PremiumV2_LRSPremiumV2_LRS SKU
- Azure
Disk Sku Name_Standard SSD_ZRS - StandardSSD_ZRSStandardSSD_ZRS SKU
- Premium_LRS
- Premium_LRSPremium_LRS SKU
- Standard_LRS
- Standard_LRSStandard_LRS SKU
- Standard
SSD_LRS - StandardSSD_LRSStandardSSD_LRS SKU
- Ultra
SSD_LRS - UltraSSD_LRSUltraSSD_LRS SKU
- Premium_ZRS
- Premium_ZRSPremium_ZRS SKU
- Premium
V2_LRS - PremiumV2_LRSPremiumV2_LRS SKU
- Standard
SSD_ZRS - StandardSSD_ZRSStandardSSD_ZRS SKU
- Premium_LRS
- Premium_LRSPremium_LRS SKU
- Standard_LRS
- Standard_LRSStandard_LRS SKU
- Standard
SSD_LRS - StandardSSD_LRSStandardSSD_LRS SKU
- Ultra
SSD_LRS - UltraSSD_LRSUltraSSD_LRS SKU
- Premium_ZRS
- Premium_ZRSPremium_ZRS SKU
- Premium
V2_LRS - PremiumV2_LRSPremiumV2_LRS SKU
- Standard
SSD_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
- "Standard
SSD_LRS" - StandardSSD_LRSStandardSSD_LRS SKU
- "Ultra
SSD_LRS" - UltraSSD_LRSUltraSSD_LRS SKU
- "Premium_ZRS"
- Premium_ZRSPremium_ZRS SKU
- "Premium
V2_LRS" - PremiumV2_LRSPremiumV2_LRS SKU
- "Standard
SSD_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
- Sku
Name string | Pulumi.Azure Native. Container Storage. Elastic San Sku Name - Sku name
- Encryption Encryption
- Encryption specifies the encryption configuration for the Azure Disk pool
- Sku
Name string | ElasticSan Sku Name - Sku name
- encryption Encryption
- Encryption specifies the encryption configuration for the Azure Disk pool
- sku
Name String | ElasticSan Sku Name - Sku name
- encryption Encryption
- Encryption specifies the encryption configuration for the Azure Disk pool
- sku
Name 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
- sku
Name String | "Premium_LRS" | "Premium_ZRS" - Sku name
ElasticSanResponse, ElasticSanResponseArgs
- Resource
Group 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
- Sku
Name string - Sku name
- Resource
Group string - Managed resource group for the pool.
- Encryption
Encryption
Response - Encryption specifies the encryption configuration for the Azure Disk pool
- Sku
Name string - Sku name
- resource
Group String - Managed resource group for the pool.
- encryption
Encryption
Response - Encryption specifies the encryption configuration for the Azure Disk pool
- sku
Name String - Sku name
- resource
Group string - Managed resource group for the pool.
- encryption
Encryption
Response - Encryption specifies the encryption configuration for the Azure Disk pool
- sku
Name string - Sku name
- resource_
group str - Managed resource group for the pool.
- encryption
Encryption
Response - Encryption specifies the encryption configuration for the Azure Disk pool
- sku_
name str - Sku name
- resource
Group String - Managed resource group for the pool.
- encryption Property Map
- Encryption specifies the encryption configuration for the Azure Disk pool
- sku
Name String - Sku name
ElasticSanSkuName, ElasticSanSkuNameArgs
- Premium_LRS
- Premium_LRSPremium_LRS SKU
- Premium_ZRS
- Premium_ZRSPremium_ZRS SKU
- Elastic
San Sku Name_Premium_LRS - Premium_LRSPremium_LRS SKU
- Elastic
San 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
- Key
Name string - The name of the key vault key.
- Key
Vault 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.
- Key
Name string - The name of the key vault key.
- Key
Vault stringUri - The URI of the key vault.
- Identity
Managed
Service Identity - The managed service identities assigned to this resource.
- key
Name String - The name of the key vault key.
- key
Vault StringUri - The URI of the key vault.
- identity
Managed
Service Identity - The managed service identities assigned to this resource.
- key
Name string - The name of the key vault key.
- key
Vault stringUri - The URI of the key vault.
- identity
Managed
Service 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
Managed
Service Identity - The managed service identities assigned to this resource.
- key
Name String - The name of the key vault key.
- key
Vault StringUri - The URI of the key vault.
- identity Property Map
- The managed service identities assigned to this resource.
EncryptionResponse, EncryptionResponseArgs
- Key
Name string - The name of the key vault key.
- Key
Vault 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.
- Key
Name string - The name of the key vault key.
- Key
Vault stringUri - The URI of the key vault.
- Identity
Managed
Service Identity Response - The managed service identities assigned to this resource.
- key
Name String - The name of the key vault key.
- key
Vault StringUri - The URI of the key vault.
- identity
Managed
Service Identity Response - The managed service identities assigned to this resource.
- key
Name string - The name of the key vault key.
- key
Vault stringUri - The URI of the key vault.
- identity
Managed
Service 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
Managed
Service Identity Response - The managed service identities assigned to this resource.
- key
Name String - The name of the key vault key.
- key
Vault 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
[]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 float64
- The number of data copies. Default 3.
- disks
List<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
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 number
- The number of data copies. Default 3.
- disks
Sequence[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 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).
- User
Assigned 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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned []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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned 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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned 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 | Managed
Service 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" | "System
Assigned" | "User Assigned" | "System Assigned, User Assigned" - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned 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
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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).
- User
Assigned 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.
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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).
- User
Assigned 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.
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- user
Assigned 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.
- principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- user
Assigned {[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.
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- user
Assigned 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
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- Managed
Service Identity Type None - None
- Managed
Service Identity Type System Assigned - SystemAssigned
- Managed
Service Identity Type User Assigned - UserAssigned
- Managed
Service Identity Type_System Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned, User Assigned" - SystemAssigned, UserAssigned
PoolType, PoolTypeArgs
- Azure
Disk Pulumi.Azure Native. Container Storage. Inputs. Azure Disk - Disk Pool Properties
- Elastic
San Pulumi.Azure Native. Container Storage. Inputs. Elastic San - Elastic San Pool Properties
- Ephemeral
Disk Pulumi.Azure Native. Container Storage. Inputs. Ephemeral Disk - Ephemeral Pool Properties
- Azure
Disk AzureDisk - Disk Pool Properties
- Elastic
San ElasticSan - Elastic San Pool Properties
- Ephemeral
Disk EphemeralDisk - Ephemeral Pool Properties
- azure
Disk AzureDisk - Disk Pool Properties
- elastic
San ElasticSan - Elastic San Pool Properties
- ephemeral
Disk EphemeralDisk - Ephemeral Pool Properties
- azure
Disk AzureDisk - Disk Pool Properties
- elastic
San ElasticSan - Elastic San Pool Properties
- ephemeral
Disk EphemeralDisk - Ephemeral Pool Properties
- azure_
disk AzureDisk - Disk Pool Properties
- elastic_
san ElasticSan - Elastic San Pool Properties
- ephemeral_
disk EphemeralDisk - Ephemeral Pool Properties
- azure
Disk Property Map - Disk Pool Properties
- elastic
San Property Map - Elastic San Pool Properties
- ephemeral
Disk Property Map - Ephemeral Pool Properties
PoolTypeResponse, PoolTypeResponseArgs
- Azure
Disk Pulumi.Azure Native. Container Storage. Inputs. Azure Disk Response - Disk Pool Properties
- Elastic
San Pulumi.Azure Native. Container Storage. Inputs. Elastic San Response - Elastic San Pool Properties
- Ephemeral
Disk Pulumi.Azure Native. Container Storage. Inputs. Ephemeral Disk 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
- azure
Disk AzureDisk Response - Disk Pool Properties
- elastic
San ElasticSan Response - Elastic San Pool Properties
- ephemeral
Disk 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
- azure_
disk AzureDisk Response - Disk Pool Properties
- elastic_
san ElasticSan Response - Elastic San Pool Properties
- ephemeral_
disk EphemeralDisk Response - Ephemeral Pool Properties
- azure
Disk Property Map - Disk Pool Properties
- elastic
San Property Map - Elastic San Pool Properties
- ephemeral
Disk Property Map - Ephemeral Pool Properties
ReclaimPolicy, ReclaimPolicyArgs
- Delete
- DeleteDelete resource
- Retain
- RetainRetain resource
- Reclaim
Policy Delete - DeleteDelete resource
- Reclaim
Policy 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
Requests
Response - Requests for capacity for the pool.
- requests
Requests
Response - Requests for capacity for the pool.
- requests
Requests
Response - Requests for capacity for the pool.
- requests
Requests
Response - Requests for capacity for the pool.
- requests Property Map
- Requests for capacity for the pool.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
- client
Id string - The client ID of the assigned identity.
- principal
Id 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.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
Zone, ZoneArgs
- Zone1
- 1First availability zone.
- Zone2
- 2Second availability zone.
- Zone3
- 3Third availability zone.
- Zone
Zone1 - 1First availability zone.
- Zone
Zone2 - 2Second availability zone.
- 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.
- 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