1. Packages
  2. Packages
  3. Azure Native
  4. API Docs
  5. managednetworkfabric
  6. NetworkBootstrapDevice
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.23.0
published on Saturday, Jul 18, 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.23.0
published on Saturday, Jul 18, 2026 by Pulumi

    The Network Bootstrap Device resource definition.

    Uses Azure REST API version 2025-07-15.

    Import

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

    $ pulumi import azure-native:managednetworkfabric:NetworkBootstrapDevice example-device /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedNetworkFabric/networkBootstrapDevices/{networkBootstrapDeviceName} 
    

    Create NetworkBootstrapDevice Resource

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

    Constructor syntax

    new NetworkBootstrapDevice(name: string, args: NetworkBootstrapDeviceArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkBootstrapDevice(resource_name: str,
                               args: NetworkBootstrapDeviceArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def NetworkBootstrapDevice(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               resource_group_name: Optional[str] = None,
                               annotation: Optional[str] = None,
                               host_name: Optional[str] = None,
                               identity: Optional[ManagedServiceIdentityArgs] = None,
                               location: Optional[str] = None,
                               network_bootstrap_device_name: Optional[str] = None,
                               network_device_sku: Optional[str] = None,
                               serial_number: Optional[str] = None,
                               tags: Optional[Mapping[str, str]] = None)
    func NewNetworkBootstrapDevice(ctx *Context, name string, args NetworkBootstrapDeviceArgs, opts ...ResourceOption) (*NetworkBootstrapDevice, error)
    public NetworkBootstrapDevice(string name, NetworkBootstrapDeviceArgs args, CustomResourceOptions? opts = null)
    public NetworkBootstrapDevice(String name, NetworkBootstrapDeviceArgs args)
    public NetworkBootstrapDevice(String name, NetworkBootstrapDeviceArgs args, CustomResourceOptions options)
    
    type: azure-native:managednetworkfabric:NetworkBootstrapDevice
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "azure-native_managednetworkfabric_network_bootstrap_device" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args NetworkBootstrapDeviceArgs
    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 NetworkBootstrapDeviceArgs
    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 NetworkBootstrapDeviceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkBootstrapDeviceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkBootstrapDeviceArgs
    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 networkBootstrapDeviceResource = new AzureNative.ManagedNetworkFabric.NetworkBootstrapDevice("networkBootstrapDeviceResource", new()
    {
        ResourceGroupName = "string",
        Annotation = "string",
        HostName = "string",
        Identity = new AzureNative.ManagedNetworkFabric.Inputs.ManagedServiceIdentityArgs
        {
            Type = "string",
            UserAssignedIdentities = new[]
            {
                "string",
            },
        },
        Location = "string",
        NetworkBootstrapDeviceName = "string",
        NetworkDeviceSku = "string",
        SerialNumber = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := managednetworkfabric.NewNetworkBootstrapDevice(ctx, "networkBootstrapDeviceResource", &managednetworkfabric.NetworkBootstrapDeviceArgs{
    	ResourceGroupName: pulumi.String("string"),
    	Annotation:        pulumi.String("string"),
    	HostName:          pulumi.String("string"),
    	Identity: &managednetworkfabric.ManagedServiceIdentityArgs{
    		Type: pulumi.String("string"),
    		UserAssignedIdentities: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Location:                   pulumi.String("string"),
    	NetworkBootstrapDeviceName: pulumi.String("string"),
    	NetworkDeviceSku:           pulumi.String("string"),
    	SerialNumber:               pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    resource "azure-native_managednetworkfabric_network_bootstrap_device" "networkBootstrapDeviceResource" {
      lifecycle {
        create_before_destroy = true
      }
      resource_group_name = "string"
      annotation          = "string"
      host_name           = "string"
      identity = {
        type                     = "string"
        user_assigned_identities = ["string"]
      }
      location                      = "string"
      network_bootstrap_device_name = "string"
      network_device_sku            = "string"
      serial_number                 = "string"
      tags = {
        "string" = "string"
      }
    }
    
    var networkBootstrapDeviceResource = new NetworkBootstrapDevice("networkBootstrapDeviceResource", NetworkBootstrapDeviceArgs.builder()
        .resourceGroupName("string")
        .annotation("string")
        .hostName("string")
        .identity(com.pulumi.azurenative.managednetworkfabric.inputs.ManagedServiceIdentityArgs.builder()
            .type("string")
            .userAssignedIdentities("string")
            .build())
        .location("string")
        .networkBootstrapDeviceName("string")
        .networkDeviceSku("string")
        .serialNumber("string")
        .tags(Map.of("string", "string"))
        .build());
    
    network_bootstrap_device_resource = azure_native.managednetworkfabric.NetworkBootstrapDevice("networkBootstrapDeviceResource",
        resource_group_name="string",
        annotation="string",
        host_name="string",
        identity={
            "type": "string",
            "user_assigned_identities": ["string"],
        },
        location="string",
        network_bootstrap_device_name="string",
        network_device_sku="string",
        serial_number="string",
        tags={
            "string": "string",
        })
    
    const networkBootstrapDeviceResource = new azure_native.managednetworkfabric.NetworkBootstrapDevice("networkBootstrapDeviceResource", {
        resourceGroupName: "string",
        annotation: "string",
        hostName: "string",
        identity: {
            type: "string",
            userAssignedIdentities: ["string"],
        },
        location: "string",
        networkBootstrapDeviceName: "string",
        networkDeviceSku: "string",
        serialNumber: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:managednetworkfabric:NetworkBootstrapDevice
    properties:
        annotation: string
        hostName: string
        identity:
            type: string
            userAssignedIdentities:
                - string
        location: string
        networkBootstrapDeviceName: string
        networkDeviceSku: string
        resourceGroupName: string
        serialNumber: string
        tags:
            string: string
    

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

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Annotation string
    Switch configuration description.
    HostName string
    The host name of the device.
    Identity Pulumi.AzureNative.ManagedNetworkFabric.Inputs.ManagedServiceIdentity
    The managed service identities assigned to this resource.
    Location string
    The geo-location where the resource lives
    NetworkBootstrapDeviceName string
    Name of the Network Bootstrap Device.
    NetworkDeviceSku string
    Network Bootstrap Device SKU name.
    SerialNumber string
    Serial number of the device. Format of serial Number - Make;Model;HardwareRevisionId;SerialNumber.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Annotation string
    Switch configuration description.
    HostName string
    The host name of the device.
    Identity ManagedServiceIdentityArgs
    The managed service identities assigned to this resource.
    Location string
    The geo-location where the resource lives
    NetworkBootstrapDeviceName string
    Name of the Network Bootstrap Device.
    NetworkDeviceSku string
    Network Bootstrap Device SKU name.
    SerialNumber string
    Serial number of the device. Format of serial Number - Make;Model;HardwareRevisionId;SerialNumber.
    Tags map[string]string
    Resource tags.
    resource_group_name string
    The name of the resource group. The name is case insensitive.
    annotation string
    Switch configuration description.
    host_name string
    The host name of the device.
    identity object
    The managed service identities assigned to this resource.
    location string
    The geo-location where the resource lives
    network_bootstrap_device_name string
    Name of the Network Bootstrap Device.
    network_device_sku string
    Network Bootstrap Device SKU name.
    serial_number string
    Serial number of the device. Format of serial Number - Make;Model;HardwareRevisionId;SerialNumber.
    tags map(string)
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    annotation String
    Switch configuration description.
    hostName String
    The host name of the device.
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    location String
    The geo-location where the resource lives
    networkBootstrapDeviceName String
    Name of the Network Bootstrap Device.
    networkDeviceSku String
    Network Bootstrap Device SKU name.
    serialNumber String
    Serial number of the device. Format of serial Number - Make;Model;HardwareRevisionId;SerialNumber.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    annotation string
    Switch configuration description.
    hostName string
    The host name of the device.
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    location string
    The geo-location where the resource lives
    networkBootstrapDeviceName string
    Name of the Network Bootstrap Device.
    networkDeviceSku string
    Network Bootstrap Device SKU name.
    serialNumber string
    Serial number of the device. Format of serial Number - Make;Model;HardwareRevisionId;SerialNumber.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    annotation str
    Switch configuration description.
    host_name str
    The host name of the device.
    identity ManagedServiceIdentityArgs
    The managed service identities assigned to this resource.
    location str
    The geo-location where the resource lives
    network_bootstrap_device_name str
    Name of the Network Bootstrap Device.
    network_device_sku str
    Network Bootstrap Device SKU name.
    serial_number str
    Serial number of the device. Format of serial Number - Make;Model;HardwareRevisionId;SerialNumber.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    annotation String
    Switch configuration description.
    hostName String
    The host name of the device.
    identity Property Map
    The managed service identities assigned to this resource.
    location String
    The geo-location where the resource lives
    networkBootstrapDeviceName String
    Name of the Network Bootstrap Device.
    networkDeviceSku String
    Network Bootstrap Device SKU name.
    serialNumber String
    Serial number of the device. Format of serial Number - Make;Model;HardwareRevisionId;SerialNumber.
    tags Map<String>
    Resource tags.

    Outputs

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

    AdministrativeState string
    Administrative state of the resource.
    AzureApiVersion string
    The Azure API version of the resource.
    ConfigurationState string
    Configuration state of the resource.
    DhcpV4ServerIpAddress string
    Dhcp server IPv4 Address.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    NetworkFabricId string
    Associated Network Fabric Resource ID
    PrimaryManagementIpv4Address string
    Primary Management IPv4 Address.
    PrimaryManagementIpv6Address string
    Primary Management IPv6 Address.
    ProvisioningState string
    Provisioning state of the resource.
    SecondaryManagementIpv4Address string
    Secondary Management IPv4 Address.
    SecondaryManagementIpv6Address string
    Secondary Management IPv6 Address.
    SystemData Pulumi.AzureNative.ManagedNetworkFabric.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"
    Version string
    Current version of the device as defined in SKU.
    AdministrativeState string
    Administrative state of the resource.
    AzureApiVersion string
    The Azure API version of the resource.
    ConfigurationState string
    Configuration state of the resource.
    DhcpV4ServerIpAddress string
    Dhcp server IPv4 Address.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    NetworkFabricId string
    Associated Network Fabric Resource ID
    PrimaryManagementIpv4Address string
    Primary Management IPv4 Address.
    PrimaryManagementIpv6Address string
    Primary Management IPv6 Address.
    ProvisioningState string
    Provisioning state of the resource.
    SecondaryManagementIpv4Address string
    Secondary Management IPv4 Address.
    SecondaryManagementIpv6Address string
    Secondary Management IPv6 Address.
    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"
    Version string
    Current version of the device as defined in SKU.
    administrative_state string
    Administrative state of the resource.
    azure_api_version string
    The Azure API version of the resource.
    configuration_state string
    Configuration state of the resource.
    dhcp_v4_server_ip_address string
    Dhcp server IPv4 Address.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    network_fabric_id string
    Associated Network Fabric Resource ID
    primary_management_ipv4_address string
    Primary Management IPv4 Address.
    primary_management_ipv6_address string
    Primary Management IPv6 Address.
    provisioning_state string
    Provisioning state of the resource.
    secondary_management_ipv4_address string
    Secondary Management IPv4 Address.
    secondary_management_ipv6_address string
    Secondary Management IPv6 Address.
    system_data object
    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"
    version string
    Current version of the device as defined in SKU.
    administrativeState String
    Administrative state of the resource.
    azureApiVersion String
    The Azure API version of the resource.
    configurationState String
    Configuration state of the resource.
    dhcpV4ServerIpAddress String
    Dhcp server IPv4 Address.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    networkFabricId String
    Associated Network Fabric Resource ID
    primaryManagementIpv4Address String
    Primary Management IPv4 Address.
    primaryManagementIpv6Address String
    Primary Management IPv6 Address.
    provisioningState String
    Provisioning state of the resource.
    secondaryManagementIpv4Address String
    Secondary Management IPv4 Address.
    secondaryManagementIpv6Address String
    Secondary Management IPv6 Address.
    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"
    version String
    Current version of the device as defined in SKU.
    administrativeState string
    Administrative state of the resource.
    azureApiVersion string
    The Azure API version of the resource.
    configurationState string
    Configuration state of the resource.
    dhcpV4ServerIpAddress string
    Dhcp server IPv4 Address.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    networkFabricId string
    Associated Network Fabric Resource ID
    primaryManagementIpv4Address string
    Primary Management IPv4 Address.
    primaryManagementIpv6Address string
    Primary Management IPv6 Address.
    provisioningState string
    Provisioning state of the resource.
    secondaryManagementIpv4Address string
    Secondary Management IPv4 Address.
    secondaryManagementIpv6Address string
    Secondary Management IPv6 Address.
    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"
    version string
    Current version of the device as defined in SKU.
    administrative_state str
    Administrative state of the resource.
    azure_api_version str
    The Azure API version of the resource.
    configuration_state str
    Configuration state of the resource.
    dhcp_v4_server_ip_address str
    Dhcp server IPv4 Address.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    network_fabric_id str
    Associated Network Fabric Resource ID
    primary_management_ipv4_address str
    Primary Management IPv4 Address.
    primary_management_ipv6_address str
    Primary Management IPv6 Address.
    provisioning_state str
    Provisioning state of the resource.
    secondary_management_ipv4_address str
    Secondary Management IPv4 Address.
    secondary_management_ipv6_address str
    Secondary Management IPv6 Address.
    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"
    version str
    Current version of the device as defined in SKU.
    administrativeState String
    Administrative state of the resource.
    azureApiVersion String
    The Azure API version of the resource.
    configurationState String
    Configuration state of the resource.
    dhcpV4ServerIpAddress String
    Dhcp server IPv4 Address.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    networkFabricId String
    Associated Network Fabric Resource ID
    primaryManagementIpv4Address String
    Primary Management IPv4 Address.
    primaryManagementIpv6Address String
    Primary Management IPv6 Address.
    provisioningState String
    Provisioning state of the resource.
    secondaryManagementIpv4Address String
    Secondary Management IPv4 Address.
    secondaryManagementIpv6Address String
    Secondary Management IPv6 Address.
    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"
    version String
    Current version of the device as defined in SKU.

    Supporting Types

    ManagedServiceIdentity, ManagedServiceIdentityArgs

    Managed service identity (system assigned and/or user assigned identities)
    Type string | Pulumi.AzureNative.ManagedNetworkFabric.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 | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned"
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities 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 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.ManagedNetworkFabric.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.
    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_identities map(object)
    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
    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

    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.
    created_at string
    The timestamp of resource creation (UTC).
    created_by string
    The identity that created the resource.
    created_by_type string
    The type of identity that created the resource.
    last_modified_at string
    The timestamp of resource last modification (UTC)
    last_modified_by string
    The identity that last modified the resource.
    last_modified_by_type 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.
    client_id string
    The client ID of the assigned identity.
    principal_id 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.

    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.23.0
    published on Saturday, Jul 18, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial