1. Packages
  2. Azure Native
  3. API Docs
  4. azurestackhci
  5. DevicePool
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.16.0
published on Friday, Mar 20, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.16.0
published on Friday, Mar 20, 2026 by Pulumi

    DevicePool details.

    Uses Azure REST API version 2026-03-01-preview.

    Example Usage

    DevicePools_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var devicePool = new AzureNative.AzureStackHCI.DevicePool("devicePool", new()
        {
            DevicePoolName = "devicePool-1",
            Location = "eastus",
            Properties = null,
            ResourceGroupName = "ArcInstance-rg",
        });
    
    });
    
    package main
    
    import (
    	azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := azurestackhci.NewDevicePool(ctx, "devicePool", &azurestackhci.DevicePoolArgs{
    			DevicePoolName:    pulumi.String("devicePool-1"),
    			Location:          pulumi.String("eastus"),
    			Properties:        &azurestackhci.DevicePoolPropertiesArgs{},
    			ResourceGroupName: pulumi.String("ArcInstance-rg"),
    		})
    		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.azurestackhci.DevicePool;
    import com.pulumi.azurenative.azurestackhci.DevicePoolArgs;
    import com.pulumi.azurenative.azurestackhci.inputs.DevicePoolPropertiesArgs;
    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 devicePool = new DevicePool("devicePool", DevicePoolArgs.builder()
                .devicePoolName("devicePool-1")
                .location("eastus")
                .properties(DevicePoolPropertiesArgs.builder()
                    .build())
                .resourceGroupName("ArcInstance-rg")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const devicePool = new azure_native.azurestackhci.DevicePool("devicePool", {
        devicePoolName: "devicePool-1",
        location: "eastus",
        properties: {},
        resourceGroupName: "ArcInstance-rg",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    device_pool = azure_native.azurestackhci.DevicePool("devicePool",
        device_pool_name="devicePool-1",
        location="eastus",
        properties={},
        resource_group_name="ArcInstance-rg")
    
    resources:
      devicePool:
        type: azure-native:azurestackhci:DevicePool
        properties:
          devicePoolName: devicePool-1
          location: eastus
          properties: {}
          resourceGroupName: ArcInstance-rg
    

    DevicePools_CreateOrUpdate_MaximumSet

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var devicePool = new AzureNative.AzureStackHCI.DevicePool("devicePool", new()
        {
            DevicePoolName = "devicePool1",
            Location = "eastus",
            Properties = null,
            ResourceGroupName = "ArcInstance-rg",
        });
    
    });
    
    package main
    
    import (
    	azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := azurestackhci.NewDevicePool(ctx, "devicePool", &azurestackhci.DevicePoolArgs{
    			DevicePoolName:    pulumi.String("devicePool1"),
    			Location:          pulumi.String("eastus"),
    			Properties:        &azurestackhci.DevicePoolPropertiesArgs{},
    			ResourceGroupName: pulumi.String("ArcInstance-rg"),
    		})
    		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.azurestackhci.DevicePool;
    import com.pulumi.azurenative.azurestackhci.DevicePoolArgs;
    import com.pulumi.azurenative.azurestackhci.inputs.DevicePoolPropertiesArgs;
    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 devicePool = new DevicePool("devicePool", DevicePoolArgs.builder()
                .devicePoolName("devicePool1")
                .location("eastus")
                .properties(DevicePoolPropertiesArgs.builder()
                    .build())
                .resourceGroupName("ArcInstance-rg")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const devicePool = new azure_native.azurestackhci.DevicePool("devicePool", {
        devicePoolName: "devicePool1",
        location: "eastus",
        properties: {},
        resourceGroupName: "ArcInstance-rg",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    device_pool = azure_native.azurestackhci.DevicePool("devicePool",
        device_pool_name="devicePool1",
        location="eastus",
        properties={},
        resource_group_name="ArcInstance-rg")
    
    resources:
      devicePool:
        type: azure-native:azurestackhci:DevicePool
        properties:
          devicePoolName: devicePool1
          location: eastus
          properties: {}
          resourceGroupName: ArcInstance-rg
    

    Create DevicePool Resource

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

    Constructor syntax

    new DevicePool(name: string, args: DevicePoolArgs, opts?: CustomResourceOptions);
    @overload
    def DevicePool(resource_name: str,
                   args: DevicePoolArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def DevicePool(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   resource_group_name: Optional[str] = None,
                   device_pool_name: Optional[str] = None,
                   identity: Optional[ManagedServiceIdentityArgs] = None,
                   location: Optional[str] = None,
                   properties: Optional[DevicePoolPropertiesArgs] = None,
                   tags: Optional[Mapping[str, str]] = None)
    func NewDevicePool(ctx *Context, name string, args DevicePoolArgs, opts ...ResourceOption) (*DevicePool, error)
    public DevicePool(string name, DevicePoolArgs args, CustomResourceOptions? opts = null)
    public DevicePool(String name, DevicePoolArgs args)
    public DevicePool(String name, DevicePoolArgs args, CustomResourceOptions options)
    
    type: azure-native:azurestackhci:DevicePool
    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 DevicePoolArgs
    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 DevicePoolArgs
    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 DevicePoolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DevicePoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DevicePoolArgs
    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 devicePoolResource = new AzureNative.AzureStackHCI.DevicePool("devicePoolResource", new()
    {
        ResourceGroupName = "string",
        DevicePoolName = "string",
        Identity = new AzureNative.AzureStackHCI.Inputs.ManagedServiceIdentityArgs
        {
            Type = "string",
            UserAssignedIdentities = new[]
            {
                "string",
            },
        },
        Location = "string",
        Properties = new AzureNative.AzureStackHCI.Inputs.DevicePoolPropertiesArgs
        {
            CustomLocationName = "string",
            Devices = new[]
            {
                new AzureNative.AzureStackHCI.Inputs.DeviceDetailArgs
                {
                    DeviceResourceId = "string",
                },
            },
            ManagedResourceGroup = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := azurestackhci.NewDevicePool(ctx, "devicePoolResource", &azurestackhci.DevicePoolArgs{
    	ResourceGroupName: pulumi.String("string"),
    	DevicePoolName:    pulumi.String("string"),
    	Identity: &azurestackhci.ManagedServiceIdentityArgs{
    		Type: pulumi.String("string"),
    		UserAssignedIdentities: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Location: pulumi.String("string"),
    	Properties: &azurestackhci.DevicePoolPropertiesArgs{
    		CustomLocationName: pulumi.String("string"),
    		Devices: azurestackhci.DeviceDetailArray{
    			&azurestackhci.DeviceDetailArgs{
    				DeviceResourceId: pulumi.String("string"),
    			},
    		},
    		ManagedResourceGroup: pulumi.String("string"),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var devicePoolResource = new DevicePool("devicePoolResource", DevicePoolArgs.builder()
        .resourceGroupName("string")
        .devicePoolName("string")
        .identity(ManagedServiceIdentityArgs.builder()
            .type("string")
            .userAssignedIdentities("string")
            .build())
        .location("string")
        .properties(DevicePoolPropertiesArgs.builder()
            .customLocationName("string")
            .devices(DeviceDetailArgs.builder()
                .deviceResourceId("string")
                .build())
            .managedResourceGroup("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    device_pool_resource = azure_native.azurestackhci.DevicePool("devicePoolResource",
        resource_group_name="string",
        device_pool_name="string",
        identity={
            "type": "string",
            "user_assigned_identities": ["string"],
        },
        location="string",
        properties={
            "custom_location_name": "string",
            "devices": [{
                "device_resource_id": "string",
            }],
            "managed_resource_group": "string",
        },
        tags={
            "string": "string",
        })
    
    const devicePoolResource = new azure_native.azurestackhci.DevicePool("devicePoolResource", {
        resourceGroupName: "string",
        devicePoolName: "string",
        identity: {
            type: "string",
            userAssignedIdentities: ["string"],
        },
        location: "string",
        properties: {
            customLocationName: "string",
            devices: [{
                deviceResourceId: "string",
            }],
            managedResourceGroup: "string",
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:azurestackhci:DevicePool
    properties:
        devicePoolName: string
        identity:
            type: string
            userAssignedIdentities:
                - string
        location: string
        properties:
            customLocationName: string
            devices:
                - deviceResourceId: string
            managedResourceGroup: string
        resourceGroupName: string
        tags:
            string: string
    

    DevicePool 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 DevicePool resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    DevicePoolName string
    The name of the DevicePool
    Identity Pulumi.AzureNative.AzureStackHCI.Inputs.ManagedServiceIdentity
    The managed service identities assigned to this resource.
    Location string
    The geo-location where the resource lives
    Properties Pulumi.AzureNative.AzureStackHCI.Inputs.DevicePoolProperties
    The resource-specific properties for this resource.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    DevicePoolName string
    The name of the DevicePool
    Identity ManagedServiceIdentityArgs
    The managed service identities assigned to this resource.
    Location string
    The geo-location where the resource lives
    Properties DevicePoolPropertiesArgs
    The resource-specific properties for this resource.
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    devicePoolName String
    The name of the DevicePool
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    location String
    The geo-location where the resource lives
    properties DevicePoolProperties
    The resource-specific properties for this resource.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    devicePoolName string
    The name of the DevicePool
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    location string
    The geo-location where the resource lives
    properties DevicePoolProperties
    The resource-specific properties for this resource.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    device_pool_name str
    The name of the DevicePool
    identity ManagedServiceIdentityArgs
    The managed service identities assigned to this resource.
    location str
    The geo-location where the resource lives
    properties DevicePoolPropertiesArgs
    The resource-specific properties for this resource.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    devicePoolName String
    The name of the DevicePool
    identity Property Map
    The managed service identities assigned to this resource.
    location String
    The geo-location where the resource lives
    properties Property Map
    The resource-specific properties for this resource.
    tags Map<String>
    Resource tags.

    Outputs

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

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

    DeviceDetail, DeviceDetailArgs

    Device details.
    DeviceResourceId string
    Resource Id of the device.
    DeviceResourceId string
    Resource Id of the device.
    deviceResourceId String
    Resource Id of the device.
    deviceResourceId string
    Resource Id of the device.
    device_resource_id str
    Resource Id of the device.
    deviceResourceId String
    Resource Id of the device.

    DeviceDetailResponse, DeviceDetailResponseArgs

    Device details.
    ClaimedBy string
    Resource Id of group device belongs to.
    DeviceResourceId string
    Resource Id of the device.
    ClaimedBy string
    Resource Id of group device belongs to.
    DeviceResourceId string
    Resource Id of the device.
    claimedBy String
    Resource Id of group device belongs to.
    deviceResourceId String
    Resource Id of the device.
    claimedBy string
    Resource Id of group device belongs to.
    deviceResourceId string
    Resource Id of the device.
    claimed_by str
    Resource Id of group device belongs to.
    device_resource_id str
    Resource Id of the device.
    claimedBy String
    Resource Id of group device belongs to.
    deviceResourceId String
    Resource Id of the device.

    DevicePoolProperties, DevicePoolPropertiesArgs

    Properties for device pool.
    CustomLocationName string
    Custom Location Name for the pool, default: -CL
    Devices List<Pulumi.AzureNative.AzureStackHCI.Inputs.DeviceDetail>
    List of machines in device pool.
    ManagedResourceGroup string
    Managed resource group name for the pool
    CustomLocationName string
    Custom Location Name for the pool, default: -CL
    Devices []DeviceDetail
    List of machines in device pool.
    ManagedResourceGroup string
    Managed resource group name for the pool
    customLocationName String
    Custom Location Name for the pool, default: -CL
    devices List<DeviceDetail>
    List of machines in device pool.
    managedResourceGroup String
    Managed resource group name for the pool
    customLocationName string
    Custom Location Name for the pool, default: -CL
    devices DeviceDetail[]
    List of machines in device pool.
    managedResourceGroup string
    Managed resource group name for the pool
    custom_location_name str
    Custom Location Name for the pool, default: -CL
    devices Sequence[DeviceDetail]
    List of machines in device pool.
    managed_resource_group str
    Managed resource group name for the pool
    customLocationName String
    Custom Location Name for the pool, default: -CL
    devices List<Property Map>
    List of machines in device pool.
    managedResourceGroup String
    Managed resource group name for the pool

    DevicePoolPropertiesResponse, DevicePoolPropertiesResponseArgs

    Properties for device pool.
    CloudId string
    Unique, immutable resource id.
    CustomLocationResourceId string
    Custom Location Resource Id for the pool
    OperationDetails List<Pulumi.AzureNative.AzureStackHCI.Inputs.OperationDetailResponse>
    operation status details for device pool.
    ProvisioningState string
    The provisioning state of a resource.
    CustomLocationName string
    Custom Location Name for the pool, default: -CL
    Devices List<Pulumi.AzureNative.AzureStackHCI.Inputs.DeviceDetailResponse>
    List of machines in device pool.
    ManagedResourceGroup string
    Managed resource group name for the pool
    CloudId string
    Unique, immutable resource id.
    CustomLocationResourceId string
    Custom Location Resource Id for the pool
    OperationDetails []OperationDetailResponse
    operation status details for device pool.
    ProvisioningState string
    The provisioning state of a resource.
    CustomLocationName string
    Custom Location Name for the pool, default: -CL
    Devices []DeviceDetailResponse
    List of machines in device pool.
    ManagedResourceGroup string
    Managed resource group name for the pool
    cloudId String
    Unique, immutable resource id.
    customLocationResourceId String
    Custom Location Resource Id for the pool
    operationDetails List<OperationDetailResponse>
    operation status details for device pool.
    provisioningState String
    The provisioning state of a resource.
    customLocationName String
    Custom Location Name for the pool, default: -CL
    devices List<DeviceDetailResponse>
    List of machines in device pool.
    managedResourceGroup String
    Managed resource group name for the pool
    cloudId string
    Unique, immutable resource id.
    customLocationResourceId string
    Custom Location Resource Id for the pool
    operationDetails OperationDetailResponse[]
    operation status details for device pool.
    provisioningState string
    The provisioning state of a resource.
    customLocationName string
    Custom Location Name for the pool, default: -CL
    devices DeviceDetailResponse[]
    List of machines in device pool.
    managedResourceGroup string
    Managed resource group name for the pool
    cloud_id str
    Unique, immutable resource id.
    custom_location_resource_id str
    Custom Location Resource Id for the pool
    operation_details Sequence[OperationDetailResponse]
    operation status details for device pool.
    provisioning_state str
    The provisioning state of a resource.
    custom_location_name str
    Custom Location Name for the pool, default: -CL
    devices Sequence[DeviceDetailResponse]
    List of machines in device pool.
    managed_resource_group str
    Managed resource group name for the pool
    cloudId String
    Unique, immutable resource id.
    customLocationResourceId String
    Custom Location Resource Id for the pool
    operationDetails List<Property Map>
    operation status details for device pool.
    provisioningState String
    The provisioning state of a resource.
    customLocationName String
    Custom Location Name for the pool, default: -CL
    devices List<Property Map>
    List of machines in device pool.
    managedResourceGroup String
    Managed resource group name for the pool

    ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs

    The resource management error additional info.
    Info object
    The additional info.
    Type string
    The additional info type.
    Info interface{}
    The additional info.
    Type string
    The additional info type.
    info Object
    The additional info.
    type String
    The additional info type.
    info any
    The additional info.
    type string
    The additional info type.
    info Any
    The additional info.
    type str
    The additional info type.
    info Any
    The additional info.
    type String
    The additional info type.

    ErrorDetailResponse, ErrorDetailResponseArgs

    The error detail.
    AdditionalInfo []ErrorAdditionalInfoResponse
    The error additional info.
    Code string
    The error code.
    Details []ErrorDetailResponse
    The error details.
    Message string
    The error message.
    Target string
    The error target.
    additionalInfo List<ErrorAdditionalInfoResponse>
    The error additional info.
    code String
    The error code.
    details List<ErrorDetailResponse>
    The error details.
    message String
    The error message.
    target String
    The error target.
    additionalInfo ErrorAdditionalInfoResponse[]
    The error additional info.
    code string
    The error code.
    details ErrorDetailResponse[]
    The error details.
    message string
    The error message.
    target string
    The error target.
    additional_info Sequence[ErrorAdditionalInfoResponse]
    The error additional info.
    code str
    The error code.
    details Sequence[ErrorDetailResponse]
    The error details.
    message str
    The error message.
    target str
    The error target.
    additionalInfo List<Property Map>
    The error additional info.
    code String
    The error code.
    details List<Property Map>
    The error details.
    message String
    The error message.
    target String
    The error target.

    ManagedServiceIdentity, ManagedServiceIdentityArgs

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

    ManagedServiceIdentityResponse, ManagedServiceIdentityResponseArgs

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

    ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs

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

    OperationDetailResponse, OperationDetailResponseArgs

    operation detail.
    Description string
    operation description.
    Error Pulumi.AzureNative.AzureStackHCI.Inputs.ErrorDetailResponse
    error details.
    Id string
    operation id.
    Name string
    operation name.
    ResourceId string
    operation resource id.
    Status string
    operation status.
    Type string
    operation type.
    Description string
    operation description.
    Error ErrorDetailResponse
    error details.
    Id string
    operation id.
    Name string
    operation name.
    ResourceId string
    operation resource id.
    Status string
    operation status.
    Type string
    operation type.
    description String
    operation description.
    error ErrorDetailResponse
    error details.
    id String
    operation id.
    name String
    operation name.
    resourceId String
    operation resource id.
    status String
    operation status.
    type String
    operation type.
    description string
    operation description.
    error ErrorDetailResponse
    error details.
    id string
    operation id.
    name string
    operation name.
    resourceId string
    operation resource id.
    status string
    operation status.
    type string
    operation type.
    description str
    operation description.
    error ErrorDetailResponse
    error details.
    id str
    operation id.
    name str
    operation name.
    resource_id str
    operation resource id.
    status str
    operation status.
    type str
    operation type.
    description String
    operation description.
    error Property Map
    error details.
    id String
    operation id.
    name String
    operation name.
    resourceId String
    operation resource id.
    status String
    operation status.
    type String
    operation type.

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of 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.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs

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

    Import

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

    $ pulumi import azure-native:azurestackhci:DevicePool devicePool-1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/devicePools/{devicePoolName} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Viewing docs for Azure Native v3.16.0
    published on Friday, Mar 20, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.