1. Packages
  2. Azure Native
  3. API Docs
  4. deviceregistry
  5. Namespace
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi

azure-native.deviceregistry.Namespace

Explore with Pulumi AI

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.
Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi

    Namespace definition.

    Uses Azure REST API version 2025-07-01-preview.

    Example Usage

    CreateOrReplace_Namespace_With_Endpoints

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var @namespace = new AzureNative.DeviceRegistry.Namespace("namespace", new()
        {
            Identity = new AzureNative.DeviceRegistry.Inputs.SystemAssignedServiceIdentityArgs
            {
                Type = AzureNative.DeviceRegistry.SystemAssignedServiceIdentityType.SystemAssigned,
            },
            Location = "North Europe",
            Messaging = new AzureNative.DeviceRegistry.Inputs.MessagingArgs
            {
                Endpoints = 
                {
                    { "anotherEventGridEndpoint", new AzureNative.DeviceRegistry.Inputs.MessagingEndpointArgs
                    {
                        Address = "https://myeventgridtopic2.westeurope-1.eventgrid.azure.net/api/events",
                        EndpointType = "Microsoft.EventGrid",
                    } },
                    { "eventGridEndpoint", new AzureNative.DeviceRegistry.Inputs.MessagingEndpointArgs
                    {
                        Address = "https://myeventgridtopic.westeurope-1.eventgrid.azure.net/api/events",
                        EndpointType = "Microsoft.EventGrid",
                    } },
                },
            },
            NamespaceName = "adr-namespace-gbk0925-n01",
            ResourceGroupName = "myResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	deviceregistry "github.com/pulumi/pulumi-azure-native-sdk/deviceregistry/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := deviceregistry.NewNamespace(ctx, "namespace", &deviceregistry.NamespaceArgs{
    			Identity: &deviceregistry.SystemAssignedServiceIdentityArgs{
    				Type: pulumi.String(deviceregistry.SystemAssignedServiceIdentityTypeSystemAssigned),
    			},
    			Location: pulumi.String("North Europe"),
    			Messaging: &deviceregistry.MessagingArgs{
    				Endpoints: deviceregistry.MessagingEndpointMap{
    					"anotherEventGridEndpoint": &deviceregistry.MessagingEndpointArgs{
    						Address:      pulumi.String("https://myeventgridtopic2.westeurope-1.eventgrid.azure.net/api/events"),
    						EndpointType: pulumi.String("Microsoft.EventGrid"),
    					},
    					"eventGridEndpoint": &deviceregistry.MessagingEndpointArgs{
    						Address:      pulumi.String("https://myeventgridtopic.westeurope-1.eventgrid.azure.net/api/events"),
    						EndpointType: pulumi.String("Microsoft.EventGrid"),
    					},
    				},
    			},
    			NamespaceName:     pulumi.String("adr-namespace-gbk0925-n01"),
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    		})
    		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.deviceregistry.Namespace;
    import com.pulumi.azurenative.deviceregistry.NamespaceArgs;
    import com.pulumi.azurenative.deviceregistry.inputs.SystemAssignedServiceIdentityArgs;
    import com.pulumi.azurenative.deviceregistry.inputs.MessagingArgs;
    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 namespace = new Namespace("namespace", NamespaceArgs.builder()
                .identity(SystemAssignedServiceIdentityArgs.builder()
                    .type("SystemAssigned")
                    .build())
                .location("North Europe")
                .messaging(MessagingArgs.builder()
                    .endpoints(Map.ofEntries(
                        Map.entry("anotherEventGridEndpoint", MessagingEndpointArgs.builder()
                            .address("https://myeventgridtopic2.westeurope-1.eventgrid.azure.net/api/events")
                            .endpointType("Microsoft.EventGrid")
                            .build()),
                        Map.entry("eventGridEndpoint", MessagingEndpointArgs.builder()
                            .address("https://myeventgridtopic.westeurope-1.eventgrid.azure.net/api/events")
                            .endpointType("Microsoft.EventGrid")
                            .build())
                    ))
                    .build())
                .namespaceName("adr-namespace-gbk0925-n01")
                .resourceGroupName("myResourceGroup")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const namespace = new azure_native.deviceregistry.Namespace("namespace", {
        identity: {
            type: azure_native.deviceregistry.SystemAssignedServiceIdentityType.SystemAssigned,
        },
        location: "North Europe",
        messaging: {
            endpoints: {
                anotherEventGridEndpoint: {
                    address: "https://myeventgridtopic2.westeurope-1.eventgrid.azure.net/api/events",
                    endpointType: "Microsoft.EventGrid",
                },
                eventGridEndpoint: {
                    address: "https://myeventgridtopic.westeurope-1.eventgrid.azure.net/api/events",
                    endpointType: "Microsoft.EventGrid",
                },
            },
        },
        namespaceName: "adr-namespace-gbk0925-n01",
        resourceGroupName: "myResourceGroup",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    namespace = azure_native.deviceregistry.Namespace("namespace",
        identity={
            "type": azure_native.deviceregistry.SystemAssignedServiceIdentityType.SYSTEM_ASSIGNED,
        },
        location="North Europe",
        messaging={
            "endpoints": {
                "anotherEventGridEndpoint": {
                    "address": "https://myeventgridtopic2.westeurope-1.eventgrid.azure.net/api/events",
                    "endpoint_type": "Microsoft.EventGrid",
                },
                "eventGridEndpoint": {
                    "address": "https://myeventgridtopic.westeurope-1.eventgrid.azure.net/api/events",
                    "endpoint_type": "Microsoft.EventGrid",
                },
            },
        },
        namespace_name="adr-namespace-gbk0925-n01",
        resource_group_name="myResourceGroup")
    
    resources:
      namespace:
        type: azure-native:deviceregistry:Namespace
        properties:
          identity:
            type: SystemAssigned
          location: North Europe
          messaging:
            endpoints:
              anotherEventGridEndpoint:
                address: https://myeventgridtopic2.westeurope-1.eventgrid.azure.net/api/events
                endpointType: Microsoft.EventGrid
              eventGridEndpoint:
                address: https://myeventgridtopic.westeurope-1.eventgrid.azure.net/api/events
                endpointType: Microsoft.EventGrid
          namespaceName: adr-namespace-gbk0925-n01
          resourceGroupName: myResourceGroup
    

    Create Namespace Resource

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

    Constructor syntax

    new Namespace(name: string, args: NamespaceArgs, opts?: CustomResourceOptions);
    @overload
    def Namespace(resource_name: str,
                  args: NamespaceArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def Namespace(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  resource_group_name: Optional[str] = None,
                  identity: Optional[SystemAssignedServiceIdentityArgs] = None,
                  location: Optional[str] = None,
                  messaging: Optional[MessagingArgs] = None,
                  namespace_name: Optional[str] = None,
                  tags: Optional[Mapping[str, str]] = None)
    func NewNamespace(ctx *Context, name string, args NamespaceArgs, opts ...ResourceOption) (*Namespace, error)
    public Namespace(string name, NamespaceArgs args, CustomResourceOptions? opts = null)
    public Namespace(String name, NamespaceArgs args)
    public Namespace(String name, NamespaceArgs args, CustomResourceOptions options)
    
    type: azure-native:deviceregistry:Namespace
    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 NamespaceArgs
    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 NamespaceArgs
    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 NamespaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NamespaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NamespaceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var azure_nativeNamespaceResource = new AzureNative.DeviceRegistry.Namespace("azure-nativeNamespaceResource", new()
    {
        ResourceGroupName = "string",
        Identity = new AzureNative.DeviceRegistry.Inputs.SystemAssignedServiceIdentityArgs
        {
            Type = "string",
        },
        Location = "string",
        Messaging = new AzureNative.DeviceRegistry.Inputs.MessagingArgs
        {
            Endpoints = 
            {
                { "string", new AzureNative.DeviceRegistry.Inputs.MessagingEndpointArgs
                {
                    Address = "string",
                    EndpointType = "string",
                    ResourceId = "string",
                } },
            },
        },
        NamespaceName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := deviceregistry.NewNamespace(ctx, "azure-nativeNamespaceResource", &deviceregistry.NamespaceArgs{
    	ResourceGroupName: pulumi.String("string"),
    	Identity: &deviceregistry.SystemAssignedServiceIdentityArgs{
    		Type: pulumi.String("string"),
    	},
    	Location: pulumi.String("string"),
    	Messaging: &deviceregistry.MessagingArgs{
    		Endpoints: deviceregistry.MessagingEndpointMap{
    			"string": &deviceregistry.MessagingEndpointArgs{
    				Address:      pulumi.String("string"),
    				EndpointType: pulumi.String("string"),
    				ResourceId:   pulumi.String("string"),
    			},
    		},
    	},
    	NamespaceName: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var azure_nativeNamespaceResource = new com.pulumi.azurenative.deviceregistry.Namespace("azure-nativeNamespaceResource", com.pulumi.azurenative.deviceregistry.NamespaceArgs.builder()
        .resourceGroupName("string")
        .identity(SystemAssignedServiceIdentityArgs.builder()
            .type("string")
            .build())
        .location("string")
        .messaging(MessagingArgs.builder()
            .endpoints(Map.of("string", MessagingEndpointArgs.builder()
                .address("string")
                .endpointType("string")
                .resourceId("string")
                .build()))
            .build())
        .namespaceName("string")
        .tags(Map.of("string", "string"))
        .build());
    
    azure_native_namespace_resource = azure_native.deviceregistry.Namespace("azure-nativeNamespaceResource",
        resource_group_name="string",
        identity={
            "type": "string",
        },
        location="string",
        messaging={
            "endpoints": {
                "string": {
                    "address": "string",
                    "endpoint_type": "string",
                    "resource_id": "string",
                },
            },
        },
        namespace_name="string",
        tags={
            "string": "string",
        })
    
    const azure_nativeNamespaceResource = new azure_native.deviceregistry.Namespace("azure-nativeNamespaceResource", {
        resourceGroupName: "string",
        identity: {
            type: "string",
        },
        location: "string",
        messaging: {
            endpoints: {
                string: {
                    address: "string",
                    endpointType: "string",
                    resourceId: "string",
                },
            },
        },
        namespaceName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:deviceregistry:Namespace
    properties:
        identity:
            type: string
        location: string
        messaging:
            endpoints:
                string:
                    address: string
                    endpointType: string
                    resourceId: string
        namespaceName: string
        resourceGroupName: string
        tags:
            string: string
    

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

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Identity Pulumi.AzureNative.DeviceRegistry.Inputs.SystemAssignedServiceIdentity
    The managed service identities assigned to this resource.
    Location string
    The geo-location where the resource lives
    Messaging Pulumi.AzureNative.DeviceRegistry.Inputs.Messaging
    Assigned and unassigned messaging endpoints.
    NamespaceName string
    The name of the namespace.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Identity SystemAssignedServiceIdentityArgs
    The managed service identities assigned to this resource.
    Location string
    The geo-location where the resource lives
    Messaging MessagingArgs
    Assigned and unassigned messaging endpoints.
    NamespaceName string
    The name of the namespace.
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    identity SystemAssignedServiceIdentity
    The managed service identities assigned to this resource.
    location String
    The geo-location where the resource lives
    messaging Messaging
    Assigned and unassigned messaging endpoints.
    namespaceName String
    The name of the namespace.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    identity SystemAssignedServiceIdentity
    The managed service identities assigned to this resource.
    location string
    The geo-location where the resource lives
    messaging Messaging
    Assigned and unassigned messaging endpoints.
    namespaceName string
    The name of the namespace.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    identity SystemAssignedServiceIdentityArgs
    The managed service identities assigned to this resource.
    location str
    The geo-location where the resource lives
    messaging MessagingArgs
    Assigned and unassigned messaging endpoints.
    namespace_name str
    The name of the namespace.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    identity Property Map
    The managed service identities assigned to this resource.
    location String
    The geo-location where the resource lives
    messaging Property Map
    Assigned and unassigned messaging endpoints.
    namespaceName String
    The name of the namespace.
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Namespace 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
    ProvisioningState string
    Provisioning state of the resource.
    SystemData Pulumi.AzureNative.DeviceRegistry.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"
    Uuid string
    Globally unique, immutable, non-reusable ID.
    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
    ProvisioningState string
    Provisioning state 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"
    Uuid string
    Globally unique, immutable, non-reusable ID.
    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
    provisioningState String
    Provisioning state 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"
    uuid String
    Globally unique, immutable, non-reusable ID.
    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
    provisioningState string
    Provisioning state 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"
    uuid string
    Globally unique, immutable, non-reusable ID.
    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
    provisioning_state str
    Provisioning state 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"
    uuid str
    Globally unique, immutable, non-reusable ID.
    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
    provisioningState String
    Provisioning state 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"
    uuid String
    Globally unique, immutable, non-reusable ID.

    Supporting Types

    Messaging, MessagingArgs

    Endpoints Dictionary<string, Pulumi.AzureNative.DeviceRegistry.Inputs.MessagingEndpoint>
    Dictionary of messaging endpoints.
    Endpoints map[string]MessagingEndpoint
    Dictionary of messaging endpoints.
    endpoints Map<String,MessagingEndpoint>
    Dictionary of messaging endpoints.
    endpoints {[key: string]: MessagingEndpoint}
    Dictionary of messaging endpoints.
    endpoints Mapping[str, MessagingEndpoint]
    Dictionary of messaging endpoints.
    endpoints Map<Property Map>
    Dictionary of messaging endpoints.

    MessagingEndpoint, MessagingEndpointArgs

    Address string
    The endpoint address to connect to.
    EndpointType string
    Type of connection used for messaging endpoint.
    ResourceId string
    The messaging endpoint Azure resource Id.
    Address string
    The endpoint address to connect to.
    EndpointType string
    Type of connection used for messaging endpoint.
    ResourceId string
    The messaging endpoint Azure resource Id.
    address String
    The endpoint address to connect to.
    endpointType String
    Type of connection used for messaging endpoint.
    resourceId String
    The messaging endpoint Azure resource Id.
    address string
    The endpoint address to connect to.
    endpointType string
    Type of connection used for messaging endpoint.
    resourceId string
    The messaging endpoint Azure resource Id.
    address str
    The endpoint address to connect to.
    endpoint_type str
    Type of connection used for messaging endpoint.
    resource_id str
    The messaging endpoint Azure resource Id.
    address String
    The endpoint address to connect to.
    endpointType String
    Type of connection used for messaging endpoint.
    resourceId String
    The messaging endpoint Azure resource Id.

    MessagingEndpointResponse, MessagingEndpointResponseArgs

    Address string
    The endpoint address to connect to.
    EndpointType string
    Type of connection used for messaging endpoint.
    ResourceId string
    The messaging endpoint Azure resource Id.
    Address string
    The endpoint address to connect to.
    EndpointType string
    Type of connection used for messaging endpoint.
    ResourceId string
    The messaging endpoint Azure resource Id.
    address String
    The endpoint address to connect to.
    endpointType String
    Type of connection used for messaging endpoint.
    resourceId String
    The messaging endpoint Azure resource Id.
    address string
    The endpoint address to connect to.
    endpointType string
    Type of connection used for messaging endpoint.
    resourceId string
    The messaging endpoint Azure resource Id.
    address str
    The endpoint address to connect to.
    endpoint_type str
    Type of connection used for messaging endpoint.
    resource_id str
    The messaging endpoint Azure resource Id.
    address String
    The endpoint address to connect to.
    endpointType String
    Type of connection used for messaging endpoint.
    resourceId String
    The messaging endpoint Azure resource Id.

    MessagingResponse, MessagingResponseArgs

    Endpoints Dictionary<string, Pulumi.AzureNative.DeviceRegistry.Inputs.MessagingEndpointResponse>
    Dictionary of messaging endpoints.
    Endpoints map[string]MessagingEndpointResponse
    Dictionary of messaging endpoints.
    endpoints Map<String,MessagingEndpointResponse>
    Dictionary of messaging endpoints.
    endpoints {[key: string]: MessagingEndpointResponse}
    Dictionary of messaging endpoints.
    endpoints Mapping[str, MessagingEndpointResponse]
    Dictionary of messaging endpoints.
    endpoints Map<Property Map>
    Dictionary of messaging endpoints.

    SystemAssignedServiceIdentity, SystemAssignedServiceIdentityArgs

    Type string | Pulumi.AzureNative.DeviceRegistry.SystemAssignedServiceIdentityType
    Type of managed service identity (either system assigned, or none).
    Type string | SystemAssignedServiceIdentityType
    Type of managed service identity (either system assigned, or none).
    type String | SystemAssignedServiceIdentityType
    Type of managed service identity (either system assigned, or none).
    type string | SystemAssignedServiceIdentityType
    Type of managed service identity (either system assigned, or none).
    type str | SystemAssignedServiceIdentityType
    Type of managed service identity (either system assigned, or none).
    type String | "None" | "SystemAssigned"
    Type of managed service identity (either system assigned, or none).

    SystemAssignedServiceIdentityResponse, SystemAssignedServiceIdentityResponseArgs

    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 (either system assigned, or none).
    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 (either system assigned, or none).
    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 (either system assigned, or none).
    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 (either system assigned, or none).
    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 (either system assigned, or none).
    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 (either system assigned, or none).

    SystemAssignedServiceIdentityType, SystemAssignedServiceIdentityTypeArgs

    None
    None
    SystemAssigned
    SystemAssigned
    SystemAssignedServiceIdentityTypeNone
    None
    SystemAssignedServiceIdentityTypeSystemAssigned
    SystemAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    NONE
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    "None"
    None
    "SystemAssigned"
    SystemAssigned

    SystemDataResponse, SystemDataResponseArgs

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

    Import

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

    $ pulumi import azure-native:deviceregistry:Namespace adr-namespace-gbk0925-n01 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeviceRegistry/namespaces/{namespaceName} 
    

    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.
    Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi