1. Packages
  2. Azure Native v1
  3. API Docs
  4. containerstorage
  5. Pool
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

azure-native.containerstorage.Pool

Explore with Pulumi AI

azure-native-v1 logo
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

    Pool resource API Version: 2023-03-01-preview.

    Example Usage

    Pools_CreateOrUpdate_MaximumSet_Gen

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var pool = new AzureNative.ContainerStorage.Pool("pool", new()
        {
            Assignments = new[]
            {
                "qvheujgnqksryltqtkjty",
            },
            DiskPoolProperties = new AzureNative.ContainerStorage.Inputs.DiskPoolPropertiesArgs
            {
                CsiParams = 
                {
                    { "key3964", "og" },
                },
                Disks = new[]
                {
                    "wtsj",
                },
                MaxVolumeCapacityGiB = 11,
            },
            ElasticSanPoolProperties = new AzureNative.ContainerStorage.Inputs.ElasticSanPoolPropertiesArgs
            {
                ResourceGroup = "bjdqfuspbvlgkhsyt",
                SanName = "gu",
                VolumeGroup = "csbzebtsmcnhxzqp",
            },
            EphemeralPoolProperties = new AzureNative.ContainerStorage.Inputs.EphemeralPoolPropertiesArgs
            {
                DiskFormat = true,
                DiskSelector = new[]
                {
                    "nvpe",
                },
                Disks = new[]
                {
                    "zokpazvsbrjvkwhsss",
                },
            },
            Location = "jdfanwoyiigytvanvct",
            PoolCapacityGiB = 23,
            PoolName = "-EXNI2WK48",
            PoolType = 26,
            ResourceGroupName = "rgcontainerstorage",
            Tags = 
            {
                { "key5598", "fxughwwqpqkvojkkuur" },
            },
            Zones = new[]
            {
                "mzjpggkkungkugtucivmxfjnxmzdj",
            },
        });
    
    });
    
    package main
    
    import (
    	containerstorage "github.com/pulumi/pulumi-azure-native-sdk/containerstorage"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := containerstorage.NewPool(ctx, "pool", &containerstorage.PoolArgs{
    			Assignments: pulumi.StringArray{
    				pulumi.String("qvheujgnqksryltqtkjty"),
    			},
    			DiskPoolProperties: &containerstorage.DiskPoolPropertiesArgs{
    				CsiParams: pulumi.StringMap{
    					"key3964": pulumi.String("og"),
    				},
    				Disks: pulumi.StringArray{
    					pulumi.String("wtsj"),
    				},
    				MaxVolumeCapacityGiB: pulumi.Float64(11),
    			},
    			ElasticSanPoolProperties: &containerstorage.ElasticSanPoolPropertiesArgs{
    				ResourceGroup: pulumi.String("bjdqfuspbvlgkhsyt"),
    				SanName:       pulumi.String("gu"),
    				VolumeGroup:   pulumi.String("csbzebtsmcnhxzqp"),
    			},
    			EphemeralPoolProperties: &containerstorage.EphemeralPoolPropertiesArgs{
    				DiskFormat: pulumi.Bool(true),
    				DiskSelector: pulumi.StringArray{
    					pulumi.String("nvpe"),
    				},
    				Disks: pulumi.StringArray{
    					pulumi.String("zokpazvsbrjvkwhsss"),
    				},
    			},
    			Location:          pulumi.String("jdfanwoyiigytvanvct"),
    			PoolCapacityGiB:   pulumi.Float64(23),
    			PoolName:          pulumi.String("-EXNI2WK48"),
    			PoolType:          pulumi.Float64(26),
    			ResourceGroupName: pulumi.String("rgcontainerstorage"),
    			Tags: pulumi.StringMap{
    				"key5598": pulumi.String("fxughwwqpqkvojkkuur"),
    			},
    			Zones: pulumi.StringArray{
    				pulumi.String("mzjpggkkungkugtucivmxfjnxmzdj"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.containerstorage.Pool;
    import com.pulumi.azurenative.containerstorage.PoolArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var pool = new Pool("pool", PoolArgs.builder()        
                .assignments("qvheujgnqksryltqtkjty")
                .diskPoolProperties(Map.ofEntries(
                    Map.entry("csiParams", Map.of("key3964", "og")),
                    Map.entry("disks", "wtsj"),
                    Map.entry("maxVolumeCapacityGiB", 11)
                ))
                .elasticSanPoolProperties(Map.ofEntries(
                    Map.entry("resourceGroup", "bjdqfuspbvlgkhsyt"),
                    Map.entry("sanName", "gu"),
                    Map.entry("volumeGroup", "csbzebtsmcnhxzqp")
                ))
                .ephemeralPoolProperties(Map.ofEntries(
                    Map.entry("diskFormat", true),
                    Map.entry("diskSelector", "nvpe"),
                    Map.entry("disks", "zokpazvsbrjvkwhsss")
                ))
                .location("jdfanwoyiigytvanvct")
                .poolCapacityGiB(23)
                .poolName("-EXNI2WK48")
                .poolType(26)
                .resourceGroupName("rgcontainerstorage")
                .tags(Map.of("key5598", "fxughwwqpqkvojkkuur"))
                .zones("mzjpggkkungkugtucivmxfjnxmzdj")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    pool = azure_native.containerstorage.Pool("pool",
        assignments=["qvheujgnqksryltqtkjty"],
        disk_pool_properties=azure_native.containerstorage.DiskPoolPropertiesArgs(
            csi_params={
                "key3964": "og",
            },
            disks=["wtsj"],
            max_volume_capacity_gi_b=11,
        ),
        elastic_san_pool_properties=azure_native.containerstorage.ElasticSanPoolPropertiesArgs(
            resource_group="bjdqfuspbvlgkhsyt",
            san_name="gu",
            volume_group="csbzebtsmcnhxzqp",
        ),
        ephemeral_pool_properties=azure_native.containerstorage.EphemeralPoolPropertiesArgs(
            disk_format=True,
            disk_selector=["nvpe"],
            disks=["zokpazvsbrjvkwhsss"],
        ),
        location="jdfanwoyiigytvanvct",
        pool_capacity_gi_b=23,
        pool_name="-EXNI2WK48",
        pool_type=26,
        resource_group_name="rgcontainerstorage",
        tags={
            "key5598": "fxughwwqpqkvojkkuur",
        },
        zones=["mzjpggkkungkugtucivmxfjnxmzdj"])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const pool = new azure_native.containerstorage.Pool("pool", {
        assignments: ["qvheujgnqksryltqtkjty"],
        diskPoolProperties: {
            csiParams: {
                key3964: "og",
            },
            disks: ["wtsj"],
            maxVolumeCapacityGiB: 11,
        },
        elasticSanPoolProperties: {
            resourceGroup: "bjdqfuspbvlgkhsyt",
            sanName: "gu",
            volumeGroup: "csbzebtsmcnhxzqp",
        },
        ephemeralPoolProperties: {
            diskFormat: true,
            diskSelector: ["nvpe"],
            disks: ["zokpazvsbrjvkwhsss"],
        },
        location: "jdfanwoyiigytvanvct",
        poolCapacityGiB: 23,
        poolName: "-EXNI2WK48",
        poolType: 26,
        resourceGroupName: "rgcontainerstorage",
        tags: {
            key5598: "fxughwwqpqkvojkkuur",
        },
        zones: ["mzjpggkkungkugtucivmxfjnxmzdj"],
    });
    
    resources:
      pool:
        type: azure-native:containerstorage:Pool
        properties:
          assignments:
            - qvheujgnqksryltqtkjty
          diskPoolProperties:
            csiParams:
              key3964: og
            disks:
              - wtsj
            maxVolumeCapacityGiB: 11
          elasticSanPoolProperties:
            resourceGroup: bjdqfuspbvlgkhsyt
            sanName: gu
            volumeGroup: csbzebtsmcnhxzqp
          ephemeralPoolProperties:
            diskFormat: true
            diskSelector:
              - nvpe
            disks:
              - zokpazvsbrjvkwhsss
          location: jdfanwoyiigytvanvct
          poolCapacityGiB: 23
          poolName: -EXNI2WK48
          poolType: 26
          resourceGroupName: rgcontainerstorage
          tags:
            key5598: fxughwwqpqkvojkkuur
          zones:
            - mzjpggkkungkugtucivmxfjnxmzdj
    

    Pools_CreateOrUpdate_MinimumSet_Gen

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var pool = new AzureNative.ContainerStorage.Pool("pool", new()
        {
            Location = "jdfanwoyiigytvanvct",
            PoolName = "J873cXX1w3sIX",
            ResourceGroupName = "rgcontainerstorage",
        });
    
    });
    
    package main
    
    import (
    	containerstorage "github.com/pulumi/pulumi-azure-native-sdk/containerstorage"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := containerstorage.NewPool(ctx, "pool", &containerstorage.PoolArgs{
    			Location:          pulumi.String("jdfanwoyiigytvanvct"),
    			PoolName:          pulumi.String("J873cXX1w3sIX"),
    			ResourceGroupName: pulumi.String("rgcontainerstorage"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.containerstorage.Pool;
    import com.pulumi.azurenative.containerstorage.PoolArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var pool = new Pool("pool", PoolArgs.builder()        
                .location("jdfanwoyiigytvanvct")
                .poolName("J873cXX1w3sIX")
                .resourceGroupName("rgcontainerstorage")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    pool = azure_native.containerstorage.Pool("pool",
        location="jdfanwoyiigytvanvct",
        pool_name="J873cXX1w3sIX",
        resource_group_name="rgcontainerstorage")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const pool = new azure_native.containerstorage.Pool("pool", {
        location: "jdfanwoyiigytvanvct",
        poolName: "J873cXX1w3sIX",
        resourceGroupName: "rgcontainerstorage",
    });
    
    resources:
      pool:
        type: azure-native:containerstorage:Pool
        properties:
          location: jdfanwoyiigytvanvct
          poolName: J873cXX1w3sIX
          resourceGroupName: rgcontainerstorage
    

    Create Pool Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Pool(name: string, args: PoolArgs, opts?: CustomResourceOptions);
    @overload
    def Pool(resource_name: str,
             args: PoolArgs,
             opts: Optional[ResourceOptions] = None)
    
    @overload
    def Pool(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             assignments: Optional[Sequence[str]] = None,
             elastic_san_pool_properties: Optional[ElasticSanPoolPropertiesArgs] = None,
             pool_capacity_gi_b: Optional[float] = None,
             pool_type: Optional[float] = None,
             resource_group_name: Optional[str] = None,
             zones: Optional[Sequence[str]] = None,
             disk_pool_properties: Optional[DiskPoolPropertiesArgs] = None,
             ephemeral_pool_properties: Optional[EphemeralPoolPropertiesArgs] = None,
             location: Optional[str] = None,
             pool_name: Optional[str] = None,
             tags: Optional[Mapping[str, str]] = None)
    func NewPool(ctx *Context, name string, args PoolArgs, opts ...ResourceOption) (*Pool, error)
    public Pool(string name, PoolArgs args, CustomResourceOptions? opts = null)
    public Pool(String name, PoolArgs args)
    public Pool(String name, PoolArgs args, CustomResourceOptions options)
    
    type: azure-native:containerstorage:Pool
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args PoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args PoolArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args PoolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PoolArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var azure_nativePoolResource = new AzureNative.Containerstorage.Pool("azure-nativePoolResource", new()
    {
        Assignments = new[]
        {
            "string",
        },
        ElasticSanPoolProperties = 
        {
            { "resourceGroup", "string" },
            { "sanName", "string" },
            { "volumeGroup", "string" },
        },
        PoolCapacityGiB = 0,
        PoolType = 0,
        ResourceGroupName = "string",
        Zones = new[]
        {
            "string",
        },
        DiskPoolProperties = 
        {
            { "csiParams", 
            {
                { "string", "string" },
            } },
            { "disks", new[]
            {
                "string",
            } },
            { "maxVolumeCapacityGiB", 0 },
        },
        EphemeralPoolProperties = 
        {
            { "diskSelector", new[]
            {
                "string",
            } },
            { "disks", new[]
            {
                "string",
            } },
            { "diskFormat", false },
        },
        Location = "string",
        PoolName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := containerstorage.NewPool(ctx, "azure-nativePoolResource", &containerstorage.PoolArgs{
    	Assignments: []string{
    		"string",
    	},
    	ElasticSanPoolProperties: map[string]interface{}{
    		"resourceGroup": "string",
    		"sanName":       "string",
    		"volumeGroup":   "string",
    	},
    	PoolCapacityGiB:   0,
    	PoolType:          0,
    	ResourceGroupName: "string",
    	Zones: []string{
    		"string",
    	},
    	DiskPoolProperties: map[string]interface{}{
    		"csiParams": map[string]interface{}{
    			"string": "string",
    		},
    		"disks": []string{
    			"string",
    		},
    		"maxVolumeCapacityGiB": 0,
    	},
    	EphemeralPoolProperties: map[string]interface{}{
    		"diskSelector": []string{
    			"string",
    		},
    		"disks": []string{
    			"string",
    		},
    		"diskFormat": false,
    	},
    	Location: "string",
    	PoolName: "string",
    	Tags: map[string]interface{}{
    		"string": "string",
    	},
    })
    
    var azure_nativePoolResource = new Pool("azure-nativePoolResource", PoolArgs.builder()
        .assignments("string")
        .elasticSanPoolProperties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .poolCapacityGiB(0)
        .poolType(0)
        .resourceGroupName("string")
        .zones("string")
        .diskPoolProperties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .ephemeralPoolProperties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .location("string")
        .poolName("string")
        .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .build());
    
    azure_native_pool_resource = azure_native.containerstorage.Pool("azure-nativePoolResource",
        assignments=[string],
        elastic_san_pool_properties={
            resourceGroup: string,
            sanName: string,
            volumeGroup: string,
        },
        pool_capacity_gi_b=0,
        pool_type=0,
        resource_group_name=string,
        zones=[string],
        disk_pool_properties={
            csiParams: {
                string: string,
            },
            disks: [string],
            maxVolumeCapacityGiB: 0,
        },
        ephemeral_pool_properties={
            diskSelector: [string],
            disks: [string],
            diskFormat: False,
        },
        location=string,
        pool_name=string,
        tags={
            string: string,
        })
    
    const azure_nativePoolResource = new azure_native.containerstorage.Pool("azure-nativePoolResource", {
        assignments: ["string"],
        elasticSanPoolProperties: {
            resourceGroup: "string",
            sanName: "string",
            volumeGroup: "string",
        },
        poolCapacityGiB: 0,
        poolType: 0,
        resourceGroupName: "string",
        zones: ["string"],
        diskPoolProperties: {
            csiParams: {
                string: "string",
            },
            disks: ["string"],
            maxVolumeCapacityGiB: 0,
        },
        ephemeralPoolProperties: {
            diskSelector: ["string"],
            disks: ["string"],
            diskFormat: false,
        },
        location: "string",
        poolName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:containerstorage:Pool
    properties:
        assignments:
            - string
        diskPoolProperties:
            csiParams:
                string: string
            disks:
                - string
            maxVolumeCapacityGiB: 0
        elasticSanPoolProperties:
            resourceGroup: string
            sanName: string
            volumeGroup: string
        ephemeralPoolProperties:
            diskFormat: false
            diskSelector:
                - string
            disks:
                - string
        location: string
        poolCapacityGiB: 0
        poolName: string
        poolType: 0
        resourceGroupName: string
        tags:
            string: string
        zones:
            - string
    

    Pool Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Pool resource accepts the following input properties:

    Assignments List<string>
    List of resources that should have access to the pool. Typically ARM references to AKS clusters or ACI Container Groups. For local and standard this must be a single reference. For portable there can be many.
    ElasticSanPoolProperties Pulumi.AzureNative.ContainerStorage.Inputs.ElasticSanPoolProperties
    Elastic San Pool Properties
    PoolCapacityGiB double
    Initial capacity of the pool in GiB.
    PoolType double
    Type of the Pool: ephemeral, disk, managed, or elasticsan.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Zones List<string>
    List of availability zones that resources can be created in.
    DiskPoolProperties Pulumi.AzureNative.ContainerStorage.Inputs.DiskPoolProperties
    Disk Pool Properties
    EphemeralPoolProperties Pulumi.AzureNative.ContainerStorage.Inputs.EphemeralPoolProperties
    Ephemeral Pool Properties
    Location string
    The geo-location where the resource lives
    PoolName string
    Pool Object
    Tags Dictionary<string, string>
    Resource tags.
    Assignments []string
    List of resources that should have access to the pool. Typically ARM references to AKS clusters or ACI Container Groups. For local and standard this must be a single reference. For portable there can be many.
    ElasticSanPoolProperties ElasticSanPoolPropertiesArgs
    Elastic San Pool Properties
    PoolCapacityGiB float64
    Initial capacity of the pool in GiB.
    PoolType float64
    Type of the Pool: ephemeral, disk, managed, or elasticsan.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Zones []string
    List of availability zones that resources can be created in.
    DiskPoolProperties DiskPoolPropertiesArgs
    Disk Pool Properties
    EphemeralPoolProperties EphemeralPoolPropertiesArgs
    Ephemeral Pool Properties
    Location string
    The geo-location where the resource lives
    PoolName string
    Pool Object
    Tags map[string]string
    Resource tags.
    assignments List<String>
    List of resources that should have access to the pool. Typically ARM references to AKS clusters or ACI Container Groups. For local and standard this must be a single reference. For portable there can be many.
    elasticSanPoolProperties ElasticSanPoolProperties
    Elastic San Pool Properties
    poolCapacityGiB Double
    Initial capacity of the pool in GiB.
    poolType Double
    Type of the Pool: ephemeral, disk, managed, or elasticsan.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    zones List<String>
    List of availability zones that resources can be created in.
    diskPoolProperties DiskPoolProperties
    Disk Pool Properties
    ephemeralPoolProperties EphemeralPoolProperties
    Ephemeral Pool Properties
    location String
    The geo-location where the resource lives
    poolName String
    Pool Object
    tags Map<String,String>
    Resource tags.
    assignments string[]
    List of resources that should have access to the pool. Typically ARM references to AKS clusters or ACI Container Groups. For local and standard this must be a single reference. For portable there can be many.
    elasticSanPoolProperties ElasticSanPoolProperties
    Elastic San Pool Properties
    poolCapacityGiB number
    Initial capacity of the pool in GiB.
    poolType number
    Type of the Pool: ephemeral, disk, managed, or elasticsan.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    zones string[]
    List of availability zones that resources can be created in.
    diskPoolProperties DiskPoolProperties
    Disk Pool Properties
    ephemeralPoolProperties EphemeralPoolProperties
    Ephemeral Pool Properties
    location string
    The geo-location where the resource lives
    poolName string
    Pool Object
    tags {[key: string]: string}
    Resource tags.
    assignments Sequence[str]
    List of resources that should have access to the pool. Typically ARM references to AKS clusters or ACI Container Groups. For local and standard this must be a single reference. For portable there can be many.
    elastic_san_pool_properties ElasticSanPoolPropertiesArgs
    Elastic San Pool Properties
    pool_capacity_gi_b float
    Initial capacity of the pool in GiB.
    pool_type float
    Type of the Pool: ephemeral, disk, managed, or elasticsan.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    zones Sequence[str]
    List of availability zones that resources can be created in.
    disk_pool_properties DiskPoolPropertiesArgs
    Disk Pool Properties
    ephemeral_pool_properties EphemeralPoolPropertiesArgs
    Ephemeral Pool Properties
    location str
    The geo-location where the resource lives
    pool_name str
    Pool Object
    tags Mapping[str, str]
    Resource tags.
    assignments List<String>
    List of resources that should have access to the pool. Typically ARM references to AKS clusters or ACI Container Groups. For local and standard this must be a single reference. For portable there can be many.
    elasticSanPoolProperties Property Map
    Elastic San Pool Properties
    poolCapacityGiB Number
    Initial capacity of the pool in GiB.
    poolType Number
    Type of the Pool: ephemeral, disk, managed, or elasticsan.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    zones List<String>
    List of availability zones that resources can be created in.
    diskPoolProperties Property Map
    Disk Pool Properties
    ephemeralPoolProperties Property Map
    Ephemeral Pool Properties
    location String
    The geo-location where the resource lives
    poolName String
    Pool Object
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Pool resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    The status of the last operation.
    SystemData Pulumi.AzureNative.ContainerStorage.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    The status of the last operation.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    The status of the last operation.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioningState string
    The status of the last operation.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    provisioning_state str
    The status of the last operation.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    The status of the last operation.
    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

    DiskPoolProperties, DiskPoolPropertiesArgs

    CsiParams Dictionary<string, string>
    List of KV pairs to set in StorageClass to configure CSI driver.
    Disks List<string>
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    MaxVolumeCapacityGiB double
    Maximum capacity of the volumes in GiB the user intends to create. Default 512.
    CsiParams map[string]string
    List of KV pairs to set in StorageClass to configure CSI driver.
    Disks []string
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    MaxVolumeCapacityGiB float64
    Maximum capacity of the volumes in GiB the user intends to create. Default 512.
    csiParams Map<String,String>
    List of KV pairs to set in StorageClass to configure CSI driver.
    disks List<String>
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    maxVolumeCapacityGiB Double
    Maximum capacity of the volumes in GiB the user intends to create. Default 512.
    csiParams {[key: string]: string}
    List of KV pairs to set in StorageClass to configure CSI driver.
    disks string[]
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    maxVolumeCapacityGiB number
    Maximum capacity of the volumes in GiB the user intends to create. Default 512.
    csi_params Mapping[str, str]
    List of KV pairs to set in StorageClass to configure CSI driver.
    disks Sequence[str]
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    max_volume_capacity_gi_b float
    Maximum capacity of the volumes in GiB the user intends to create. Default 512.
    csiParams Map<String>
    List of KV pairs to set in StorageClass to configure CSI driver.
    disks List<String>
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    maxVolumeCapacityGiB Number
    Maximum capacity of the volumes in GiB the user intends to create. Default 512.

    DiskPoolPropertiesResponse, DiskPoolPropertiesResponseArgs

    CsiParams Dictionary<string, string>
    List of KV pairs to set in StorageClass to configure CSI driver.
    Disks List<string>
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    MaxVolumeCapacityGiB double
    Maximum capacity of the volumes in GiB the user intends to create. Default 512.
    CsiParams map[string]string
    List of KV pairs to set in StorageClass to configure CSI driver.
    Disks []string
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    MaxVolumeCapacityGiB float64
    Maximum capacity of the volumes in GiB the user intends to create. Default 512.
    csiParams Map<String,String>
    List of KV pairs to set in StorageClass to configure CSI driver.
    disks List<String>
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    maxVolumeCapacityGiB Double
    Maximum capacity of the volumes in GiB the user intends to create. Default 512.
    csiParams {[key: string]: string}
    List of KV pairs to set in StorageClass to configure CSI driver.
    disks string[]
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    maxVolumeCapacityGiB number
    Maximum capacity of the volumes in GiB the user intends to create. Default 512.
    csi_params Mapping[str, str]
    List of KV pairs to set in StorageClass to configure CSI driver.
    disks Sequence[str]
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    max_volume_capacity_gi_b float
    Maximum capacity of the volumes in GiB the user intends to create. Default 512.
    csiParams Map<String>
    List of KV pairs to set in StorageClass to configure CSI driver.
    disks List<String>
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    maxVolumeCapacityGiB Number
    Maximum capacity of the volumes in GiB the user intends to create. Default 512.

    ElasticSanPoolProperties, ElasticSanPoolPropertiesArgs

    ResourceGroup string
    Resource group of an existing SAN.
    SanName string
    Name of an existing SAN.
    VolumeGroup string
    Volume group of an existing SAN.
    ResourceGroup string
    Resource group of an existing SAN.
    SanName string
    Name of an existing SAN.
    VolumeGroup string
    Volume group of an existing SAN.
    resourceGroup String
    Resource group of an existing SAN.
    sanName String
    Name of an existing SAN.
    volumeGroup String
    Volume group of an existing SAN.
    resourceGroup string
    Resource group of an existing SAN.
    sanName string
    Name of an existing SAN.
    volumeGroup string
    Volume group of an existing SAN.
    resource_group str
    Resource group of an existing SAN.
    san_name str
    Name of an existing SAN.
    volume_group str
    Volume group of an existing SAN.
    resourceGroup String
    Resource group of an existing SAN.
    sanName String
    Name of an existing SAN.
    volumeGroup String
    Volume group of an existing SAN.

    ElasticSanPoolPropertiesResponse, ElasticSanPoolPropertiesResponseArgs

    ResourceGroup string
    Resource group of an existing SAN.
    SanName string
    Name of an existing SAN.
    VolumeGroup string
    Volume group of an existing SAN.
    ResourceGroup string
    Resource group of an existing SAN.
    SanName string
    Name of an existing SAN.
    VolumeGroup string
    Volume group of an existing SAN.
    resourceGroup String
    Resource group of an existing SAN.
    sanName String
    Name of an existing SAN.
    volumeGroup String
    Volume group of an existing SAN.
    resourceGroup string
    Resource group of an existing SAN.
    sanName string
    Name of an existing SAN.
    volumeGroup string
    Volume group of an existing SAN.
    resource_group str
    Resource group of an existing SAN.
    san_name str
    Name of an existing SAN.
    volume_group str
    Volume group of an existing SAN.
    resourceGroup String
    Resource group of an existing SAN.
    sanName String
    Name of an existing SAN.
    volumeGroup String
    Volume group of an existing SAN.

    EphemeralPoolProperties, EphemeralPoolPropertiesArgs

    DiskSelector List<string>
    Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
    Disks List<string>
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    DiskFormat bool
    Consent to format the local disks.
    DiskSelector []string
    Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
    Disks []string
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    DiskFormat bool
    Consent to format the local disks.
    diskSelector List<String>
    Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
    disks List<String>
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    diskFormat Boolean
    Consent to format the local disks.
    diskSelector string[]
    Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
    disks string[]
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    diskFormat boolean
    Consent to format the local disks.
    disk_selector Sequence[str]
    Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
    disks Sequence[str]
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    disk_format bool
    Consent to format the local disks.
    diskSelector List<String>
    Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
    disks List<String>
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    diskFormat Boolean
    Consent to format the local disks.

    EphemeralPoolPropertiesResponse, EphemeralPoolPropertiesResponseArgs

    DiskSelector List<string>
    Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
    Disks List<string>
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    DiskFormat bool
    Consent to format the local disks.
    DiskSelector []string
    Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
    Disks []string
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    DiskFormat bool
    Consent to format the local disks.
    diskSelector List<String>
    Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
    disks List<String>
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    diskFormat Boolean
    Consent to format the local disks.
    diskSelector string[]
    Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
    disks string[]
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    diskFormat boolean
    Consent to format the local disks.
    disk_selector Sequence[str]
    Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
    disks Sequence[str]
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    disk_format bool
    Consent to format the local disks.
    diskSelector List<String>
    Template name or KV pairs containing disk selection criteria, e.g. model="Microsoft NVMe Direct Disk" to match all Lsv2 NVMe disks.
    disks List<String>
    Only required if individual disk selection is desired. Path to disk, e.g. :/dev/sda or WWN. Supports specifying multiple disks (same syntax as tags).
    diskFormat Boolean
    Consent to format the local disks.

    SystemDataResponse, SystemDataResponseArgs

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

    Import

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

    $ pulumi import azure-native:containerstorage:Pool rgzqqcqrypwtqhgnvcdilsbquamov a 
    

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

    Package Details

    Repository
    azure-native-v1 pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native-v1 logo
    These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
    Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi