published on Friday, Mar 20, 2026 by Pulumi
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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Device
Pool stringName - The name of the DevicePool
- Identity
Pulumi.
Azure Native. Azure Stack HCI. Inputs. Managed Service Identity - The managed service identities assigned to this resource.
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Azure Stack HCI. Inputs. Device Pool Properties - The resource-specific properties for this resource.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Device
Pool stringName - The name of the DevicePool
- Identity
Managed
Service Identity Args - The managed service identities assigned to this resource.
- Location string
- The geo-location where the resource lives
- Properties
Device
Pool Properties Args - The resource-specific properties for this resource.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- device
Pool StringName - The name of the DevicePool
- identity
Managed
Service Identity - The managed service identities assigned to this resource.
- location String
- The geo-location where the resource lives
- properties
Device
Pool Properties - The resource-specific properties for this resource.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- device
Pool stringName - The name of the DevicePool
- identity
Managed
Service Identity - The managed service identities assigned to this resource.
- location string
- The geo-location where the resource lives
- properties
Device
Pool Properties - The resource-specific properties for this resource.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- device_
pool_ strname - The name of the DevicePool
- identity
Managed
Service Identity Args - The managed service identities assigned to this resource.
- location str
- The geo-location where the resource lives
- properties
Device
Pool Properties Args - The resource-specific properties for this resource.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- device
Pool StringName - 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.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the DevicePool resource produces the following output properties:
- Azure
Api stringVersion - 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
- System
Data Pulumi.Azure Native. Azure Stack HCI. 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"
- Azure
Api stringVersion - 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
- 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"
- azure
Api StringVersion - 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
- 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"
- azure
Api stringVersion - 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
- 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"
- azure_
api_ strversion - 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 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"
- azure
Api StringVersion - 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
- 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
DeviceDetail, DeviceDetailArgs
Device details.- Device
Resource stringId - Resource Id of the device.
- Device
Resource stringId - Resource Id of the device.
- device
Resource StringId - Resource Id of the device.
- device
Resource stringId - Resource Id of the device.
- device_
resource_ strid - Resource Id of the device.
- device
Resource StringId - Resource Id of the device.
DeviceDetailResponse, DeviceDetailResponseArgs
Device details.- Claimed
By string - Resource Id of group device belongs to.
- Device
Resource stringId - Resource Id of the device.
- Claimed
By string - Resource Id of group device belongs to.
- Device
Resource stringId - Resource Id of the device.
- claimed
By String - Resource Id of group device belongs to.
- device
Resource StringId - Resource Id of the device.
- claimed
By string - Resource Id of group device belongs to.
- device
Resource stringId - Resource Id of the device.
- claimed_
by str - Resource Id of group device belongs to.
- device_
resource_ strid - Resource Id of the device.
- claimed
By String - Resource Id of group device belongs to.
- device
Resource StringId - Resource Id of the device.
DevicePoolProperties, DevicePoolPropertiesArgs
Properties for device pool.- Custom
Location stringName - Custom Location Name for the pool, default: -CL
- Devices
List<Pulumi.
Azure Native. Azure Stack HCI. Inputs. Device Detail> - List of machines in device pool.
- Managed
Resource stringGroup - Managed resource group name for the pool
- Custom
Location stringName - Custom Location Name for the pool, default: -CL
- Devices
[]Device
Detail - List of machines in device pool.
- Managed
Resource stringGroup - Managed resource group name for the pool
- custom
Location StringName - Custom Location Name for the pool, default: -CL
- devices
List<Device
Detail> - List of machines in device pool.
- managed
Resource StringGroup - Managed resource group name for the pool
- custom
Location stringName - Custom Location Name for the pool, default: -CL
- devices
Device
Detail[] - List of machines in device pool.
- managed
Resource stringGroup - Managed resource group name for the pool
- custom_
location_ strname - Custom Location Name for the pool, default: -CL
- devices
Sequence[Device
Detail] - List of machines in device pool.
- managed_
resource_ strgroup - Managed resource group name for the pool
- custom
Location StringName - Custom Location Name for the pool, default: -CL
- devices List<Property Map>
- List of machines in device pool.
- managed
Resource StringGroup - Managed resource group name for the pool
DevicePoolPropertiesResponse, DevicePoolPropertiesResponseArgs
Properties for device pool.- Cloud
Id string - Unique, immutable resource id.
- Custom
Location stringResource Id - Custom Location Resource Id for the pool
- Operation
Details List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Operation Detail Response> - operation status details for device pool.
- Provisioning
State string - The provisioning state of a resource.
- Custom
Location stringName - Custom Location Name for the pool, default: -CL
- Devices
List<Pulumi.
Azure Native. Azure Stack HCI. Inputs. Device Detail Response> - List of machines in device pool.
- Managed
Resource stringGroup - Managed resource group name for the pool
- Cloud
Id string - Unique, immutable resource id.
- Custom
Location stringResource Id - Custom Location Resource Id for the pool
- Operation
Details []OperationDetail Response - operation status details for device pool.
- Provisioning
State string - The provisioning state of a resource.
- Custom
Location stringName - Custom Location Name for the pool, default: -CL
- Devices
[]Device
Detail Response - List of machines in device pool.
- Managed
Resource stringGroup - Managed resource group name for the pool
- cloud
Id String - Unique, immutable resource id.
- custom
Location StringResource Id - Custom Location Resource Id for the pool
- operation
Details List<OperationDetail Response> - operation status details for device pool.
- provisioning
State String - The provisioning state of a resource.
- custom
Location StringName - Custom Location Name for the pool, default: -CL
- devices
List<Device
Detail Response> - List of machines in device pool.
- managed
Resource StringGroup - Managed resource group name for the pool
- cloud
Id string - Unique, immutable resource id.
- custom
Location stringResource Id - Custom Location Resource Id for the pool
- operation
Details OperationDetail Response[] - operation status details for device pool.
- provisioning
State string - The provisioning state of a resource.
- custom
Location stringName - Custom Location Name for the pool, default: -CL
- devices
Device
Detail Response[] - List of machines in device pool.
- managed
Resource stringGroup - Managed resource group name for the pool
- cloud_
id str - Unique, immutable resource id.
- custom_
location_ strresource_ id - Custom Location Resource Id for the pool
- operation_
details Sequence[OperationDetail Response] - operation status details for device pool.
- provisioning_
state str - The provisioning state of a resource.
- custom_
location_ strname - Custom Location Name for the pool, default: -CL
- devices
Sequence[Device
Detail Response] - List of machines in device pool.
- managed_
resource_ strgroup - Managed resource group name for the pool
- cloud
Id String - Unique, immutable resource id.
- custom
Location StringResource Id - Custom Location Resource Id for the pool
- operation
Details List<Property Map> - operation status details for device pool.
- provisioning
State String - The provisioning state of a resource.
- custom
Location StringName - Custom Location Name for the pool, default: -CL
- devices List<Property Map>
- List of machines in device pool.
- managed
Resource StringGroup - Managed resource group name for the pool
ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs
The resource management error additional info.ErrorDetailResponse, ErrorDetailResponseArgs
The error detail.- Additional
Info List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Error Additional Info Response> - The error additional info.
- Code string
- The error code.
- Details
List<Pulumi.
Azure Native. Azure Stack HCI. Inputs. Error Detail Response> - The error details.
- Message string
- The error message.
- Target string
- The error target.
- Additional
Info []ErrorAdditional Info Response - The error additional info.
- Code string
- The error code.
- Details
[]Error
Detail Response - The error details.
- Message string
- The error message.
- Target string
- The error target.
- additional
Info List<ErrorAdditional Info Response> - The error additional info.
- code String
- The error code.
- details
List<Error
Detail Response> - The error details.
- message String
- The error message.
- target String
- The error target.
- additional
Info ErrorAdditional Info Response[] - The error additional info.
- code string
- The error code.
- details
Error
Detail Response[] - The error details.
- message string
- The error message.
- target string
- The error target.
- additional_
info Sequence[ErrorAdditional Info Response] - The error additional info.
- code str
- The error code.
- details
Sequence[Error
Detail Response] - The error details.
- message str
- The error message.
- target str
- The error target.
- additional
Info 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.
Azure Native. Azure Stack HCI. 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
Managed service identity (system assigned and/or user assigned identities)- 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. Azure Stack HCI. 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
OperationDetailResponse, OperationDetailResponseArgs
operation detail.- Description string
- operation description.
- Error
Pulumi.
Azure Native. Azure Stack HCI. Inputs. Error Detail Response - error details.
- Id string
- operation id.
- Name string
- operation name.
- Resource
Id string - operation resource id.
- Status string
- operation status.
- Type string
- operation type.
- Description string
- operation description.
- Error
Error
Detail Response - error details.
- Id string
- operation id.
- Name string
- operation name.
- Resource
Id string - operation resource id.
- Status string
- operation status.
- Type string
- operation type.
- description String
- operation description.
- error
Error
Detail Response - error details.
- id String
- operation id.
- name String
- operation name.
- resource
Id String - operation resource id.
- status String
- operation status.
- type String
- operation type.
- description string
- operation description.
- error
Error
Detail Response - error details.
- id string
- operation id.
- name string
- operation name.
- resource
Id string - operation resource id.
- status string
- operation status.
- type string
- operation type.
- description str
- operation description.
- error
Error
Detail Response - 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.
- resource
Id String - operation resource id.
- status String
- operation status.
- type String
- operation type.
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of 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 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
User assigned identity properties- 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.
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
published on Friday, Mar 20, 2026 by Pulumi
