1. Packages
  2. Azure Native
  3. API Docs
  4. deviceregistry
  5. NamespaceDiscoveredDevice
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.NamespaceDiscoveredDevice

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

    Discovered device definition.

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

    Example Usage

    CreateOrReplace_NamespaceDiscoveredDevice

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var namespaceDiscoveredDevice = new AzureNative.DeviceRegistry.NamespaceDiscoveredDevice("namespaceDiscoveredDevice", new()
        {
            DiscoveredDeviceName = "my-discovereddevice-1",
            DiscoveryId = "discoveryId1",
            Endpoints = new AzureNative.DeviceRegistry.Inputs.DiscoveredMessagingEndpointsArgs
            {
                Outbound = new AzureNative.DeviceRegistry.Inputs.DiscoveredOutboundEndpointsArgs
                {
                    Assigned = 
                    {
                        { "eventGridEndpoint", new AzureNative.DeviceRegistry.Inputs.DeviceMessagingEndpointArgs
                        {
                            Address = "https://myeventgridtopic.westeurope-1.eventgrid.azure.net/api/events",
                            EndpointType = "Microsoft.EventGrid",
                        } },
                    },
                },
            },
            ExtendedLocation = new AzureNative.DeviceRegistry.Inputs.ExtendedLocationArgs
            {
                Name = "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1",
                Type = "CustomLocation",
            },
            Location = "West Europe",
            NamespaceName = "my-namespace-1",
            ResourceGroupName = "myResourceGroup",
            Tags = 
            {
                { "site", "building-1" },
            },
            Version = 1,
        });
    
    });
    
    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.NewNamespaceDiscoveredDevice(ctx, "namespaceDiscoveredDevice", &deviceregistry.NamespaceDiscoveredDeviceArgs{
    			DiscoveredDeviceName: pulumi.String("my-discovereddevice-1"),
    			DiscoveryId:          pulumi.String("discoveryId1"),
    			Endpoints: &deviceregistry.DiscoveredMessagingEndpointsArgs{
    				Outbound: &deviceregistry.DiscoveredOutboundEndpointsArgs{
    					Assigned: deviceregistry.DeviceMessagingEndpointMap{
    						"eventGridEndpoint": &deviceregistry.DeviceMessagingEndpointArgs{
    							Address:      pulumi.String("https://myeventgridtopic.westeurope-1.eventgrid.azure.net/api/events"),
    							EndpointType: pulumi.String("Microsoft.EventGrid"),
    						},
    					},
    				},
    			},
    			ExtendedLocation: &deviceregistry.ExtendedLocationArgs{
    				Name: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1"),
    				Type: pulumi.String("CustomLocation"),
    			},
    			Location:          pulumi.String("West Europe"),
    			NamespaceName:     pulumi.String("my-namespace-1"),
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    			Tags: pulumi.StringMap{
    				"site": pulumi.String("building-1"),
    			},
    			Version: pulumi.Float64(1),
    		})
    		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.NamespaceDiscoveredDevice;
    import com.pulumi.azurenative.deviceregistry.NamespaceDiscoveredDeviceArgs;
    import com.pulumi.azurenative.deviceregistry.inputs.DiscoveredMessagingEndpointsArgs;
    import com.pulumi.azurenative.deviceregistry.inputs.DiscoveredOutboundEndpointsArgs;
    import com.pulumi.azurenative.deviceregistry.inputs.ExtendedLocationArgs;
    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 namespaceDiscoveredDevice = new NamespaceDiscoveredDevice("namespaceDiscoveredDevice", NamespaceDiscoveredDeviceArgs.builder()
                .discoveredDeviceName("my-discovereddevice-1")
                .discoveryId("discoveryId1")
                .endpoints(DiscoveredMessagingEndpointsArgs.builder()
                    .outbound(DiscoveredOutboundEndpointsArgs.builder()
                        .assigned(Map.of("eventGridEndpoint", DeviceMessagingEndpointArgs.builder()
                            .address("https://myeventgridtopic.westeurope-1.eventgrid.azure.net/api/events")
                            .endpointType("Microsoft.EventGrid")
                            .build()))
                        .build())
                    .build())
                .extendedLocation(ExtendedLocationArgs.builder()
                    .name("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1")
                    .type("CustomLocation")
                    .build())
                .location("West Europe")
                .namespaceName("my-namespace-1")
                .resourceGroupName("myResourceGroup")
                .tags(Map.of("site", "building-1"))
                .version(1.0)
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const namespaceDiscoveredDevice = new azure_native.deviceregistry.NamespaceDiscoveredDevice("namespaceDiscoveredDevice", {
        discoveredDeviceName: "my-discovereddevice-1",
        discoveryId: "discoveryId1",
        endpoints: {
            outbound: {
                assigned: {
                    eventGridEndpoint: {
                        address: "https://myeventgridtopic.westeurope-1.eventgrid.azure.net/api/events",
                        endpointType: "Microsoft.EventGrid",
                    },
                },
            },
        },
        extendedLocation: {
            name: "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1",
            type: "CustomLocation",
        },
        location: "West Europe",
        namespaceName: "my-namespace-1",
        resourceGroupName: "myResourceGroup",
        tags: {
            site: "building-1",
        },
        version: 1,
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    namespace_discovered_device = azure_native.deviceregistry.NamespaceDiscoveredDevice("namespaceDiscoveredDevice",
        discovered_device_name="my-discovereddevice-1",
        discovery_id="discoveryId1",
        endpoints={
            "outbound": {
                "assigned": {
                    "eventGridEndpoint": {
                        "address": "https://myeventgridtopic.westeurope-1.eventgrid.azure.net/api/events",
                        "endpoint_type": "Microsoft.EventGrid",
                    },
                },
            },
        },
        extended_location={
            "name": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1",
            "type": "CustomLocation",
        },
        location="West Europe",
        namespace_name="my-namespace-1",
        resource_group_name="myResourceGroup",
        tags={
            "site": "building-1",
        },
        version=1)
    
    resources:
      namespaceDiscoveredDevice:
        type: azure-native:deviceregistry:NamespaceDiscoveredDevice
        properties:
          discoveredDeviceName: my-discovereddevice-1
          discoveryId: discoveryId1
          endpoints:
            outbound:
              assigned:
                eventGridEndpoint:
                  address: https://myeventgridtopic.westeurope-1.eventgrid.azure.net/api/events
                  endpointType: Microsoft.EventGrid
          extendedLocation:
            name: /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1
            type: CustomLocation
          location: West Europe
          namespaceName: my-namespace-1
          resourceGroupName: myResourceGroup
          tags:
            site: building-1
          version: 1
    

    Create NamespaceDiscoveredDevice Resource

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

    Constructor syntax

    new NamespaceDiscoveredDevice(name: string, args: NamespaceDiscoveredDeviceArgs, opts?: CustomResourceOptions);
    @overload
    def NamespaceDiscoveredDevice(resource_name: str,
                                  args: NamespaceDiscoveredDeviceArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def NamespaceDiscoveredDevice(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  namespace_name: Optional[str] = None,
                                  version: Optional[float] = None,
                                  discovery_id: Optional[str] = None,
                                  resource_group_name: Optional[str] = None,
                                  extended_location: Optional[ExtendedLocationArgs] = None,
                                  endpoints: Optional[DiscoveredMessagingEndpointsArgs] = None,
                                  location: Optional[str] = None,
                                  manufacturer: Optional[str] = None,
                                  model: Optional[str] = None,
                                  external_device_id: Optional[str] = None,
                                  operating_system: Optional[str] = None,
                                  operating_system_version: Optional[str] = None,
                                  attributes: Optional[Any] = None,
                                  tags: Optional[Mapping[str, str]] = None,
                                  discovered_device_name: Optional[str] = None)
    func NewNamespaceDiscoveredDevice(ctx *Context, name string, args NamespaceDiscoveredDeviceArgs, opts ...ResourceOption) (*NamespaceDiscoveredDevice, error)
    public NamespaceDiscoveredDevice(string name, NamespaceDiscoveredDeviceArgs args, CustomResourceOptions? opts = null)
    public NamespaceDiscoveredDevice(String name, NamespaceDiscoveredDeviceArgs args)
    public NamespaceDiscoveredDevice(String name, NamespaceDiscoveredDeviceArgs args, CustomResourceOptions options)
    
    type: azure-native:deviceregistry:NamespaceDiscoveredDevice
    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 NamespaceDiscoveredDeviceArgs
    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 NamespaceDiscoveredDeviceArgs
    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 NamespaceDiscoveredDeviceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NamespaceDiscoveredDeviceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NamespaceDiscoveredDeviceArgs
    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 namespaceDiscoveredDeviceResource = new AzureNative.DeviceRegistry.NamespaceDiscoveredDevice("namespaceDiscoveredDeviceResource", new()
    {
        NamespaceName = "string",
        Version = 0,
        DiscoveryId = "string",
        ResourceGroupName = "string",
        ExtendedLocation = new AzureNative.DeviceRegistry.Inputs.ExtendedLocationArgs
        {
            Name = "string",
            Type = "string",
        },
        Endpoints = new AzureNative.DeviceRegistry.Inputs.DiscoveredMessagingEndpointsArgs
        {
            Inbound = 
            {
                { "string", new AzureNative.DeviceRegistry.Inputs.DiscoveredInboundEndpointsArgs
                {
                    Address = "string",
                    EndpointType = "string",
                    AdditionalConfiguration = "string",
                    LastUpdatedOn = "string",
                    SupportedAuthenticationMethods = new[]
                    {
                        "string",
                    },
                    Version = "string",
                } },
            },
            Outbound = new AzureNative.DeviceRegistry.Inputs.DiscoveredOutboundEndpointsArgs
            {
                Assigned = 
                {
                    { "string", new AzureNative.DeviceRegistry.Inputs.DeviceMessagingEndpointArgs
                    {
                        Address = "string",
                        EndpointType = "string",
                    } },
                },
            },
        },
        Location = "string",
        Manufacturer = "string",
        Model = "string",
        ExternalDeviceId = "string",
        OperatingSystem = "string",
        OperatingSystemVersion = "string",
        Attributes = "any",
        Tags = 
        {
            { "string", "string" },
        },
        DiscoveredDeviceName = "string",
    });
    
    example, err := deviceregistry.NewNamespaceDiscoveredDevice(ctx, "namespaceDiscoveredDeviceResource", &deviceregistry.NamespaceDiscoveredDeviceArgs{
    	NamespaceName:     pulumi.String("string"),
    	Version:           pulumi.Float64(0),
    	DiscoveryId:       pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	ExtendedLocation: &deviceregistry.ExtendedLocationArgs{
    		Name: pulumi.String("string"),
    		Type: pulumi.String("string"),
    	},
    	Endpoints: &deviceregistry.DiscoveredMessagingEndpointsArgs{
    		Inbound: deviceregistry.DiscoveredInboundEndpointsMap{
    			"string": &deviceregistry.DiscoveredInboundEndpointsArgs{
    				Address:                 pulumi.String("string"),
    				EndpointType:            pulumi.String("string"),
    				AdditionalConfiguration: pulumi.String("string"),
    				LastUpdatedOn:           pulumi.String("string"),
    				SupportedAuthenticationMethods: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				Version: pulumi.String("string"),
    			},
    		},
    		Outbound: &deviceregistry.DiscoveredOutboundEndpointsArgs{
    			Assigned: deviceregistry.DeviceMessagingEndpointMap{
    				"string": &deviceregistry.DeviceMessagingEndpointArgs{
    					Address:      pulumi.String("string"),
    					EndpointType: pulumi.String("string"),
    				},
    			},
    		},
    	},
    	Location:               pulumi.String("string"),
    	Manufacturer:           pulumi.String("string"),
    	Model:                  pulumi.String("string"),
    	ExternalDeviceId:       pulumi.String("string"),
    	OperatingSystem:        pulumi.String("string"),
    	OperatingSystemVersion: pulumi.String("string"),
    	Attributes:             pulumi.Any("any"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	DiscoveredDeviceName: pulumi.String("string"),
    })
    
    var namespaceDiscoveredDeviceResource = new NamespaceDiscoveredDevice("namespaceDiscoveredDeviceResource", NamespaceDiscoveredDeviceArgs.builder()
        .namespaceName("string")
        .version(0.0)
        .discoveryId("string")
        .resourceGroupName("string")
        .extendedLocation(ExtendedLocationArgs.builder()
            .name("string")
            .type("string")
            .build())
        .endpoints(DiscoveredMessagingEndpointsArgs.builder()
            .inbound(Map.of("string", DiscoveredInboundEndpointsArgs.builder()
                .address("string")
                .endpointType("string")
                .additionalConfiguration("string")
                .lastUpdatedOn("string")
                .supportedAuthenticationMethods("string")
                .version("string")
                .build()))
            .outbound(DiscoveredOutboundEndpointsArgs.builder()
                .assigned(Map.of("string", DeviceMessagingEndpointArgs.builder()
                    .address("string")
                    .endpointType("string")
                    .build()))
                .build())
            .build())
        .location("string")
        .manufacturer("string")
        .model("string")
        .externalDeviceId("string")
        .operatingSystem("string")
        .operatingSystemVersion("string")
        .attributes("any")
        .tags(Map.of("string", "string"))
        .discoveredDeviceName("string")
        .build());
    
    namespace_discovered_device_resource = azure_native.deviceregistry.NamespaceDiscoveredDevice("namespaceDiscoveredDeviceResource",
        namespace_name="string",
        version=0,
        discovery_id="string",
        resource_group_name="string",
        extended_location={
            "name": "string",
            "type": "string",
        },
        endpoints={
            "inbound": {
                "string": {
                    "address": "string",
                    "endpoint_type": "string",
                    "additional_configuration": "string",
                    "last_updated_on": "string",
                    "supported_authentication_methods": ["string"],
                    "version": "string",
                },
            },
            "outbound": {
                "assigned": {
                    "string": {
                        "address": "string",
                        "endpoint_type": "string",
                    },
                },
            },
        },
        location="string",
        manufacturer="string",
        model="string",
        external_device_id="string",
        operating_system="string",
        operating_system_version="string",
        attributes="any",
        tags={
            "string": "string",
        },
        discovered_device_name="string")
    
    const namespaceDiscoveredDeviceResource = new azure_native.deviceregistry.NamespaceDiscoveredDevice("namespaceDiscoveredDeviceResource", {
        namespaceName: "string",
        version: 0,
        discoveryId: "string",
        resourceGroupName: "string",
        extendedLocation: {
            name: "string",
            type: "string",
        },
        endpoints: {
            inbound: {
                string: {
                    address: "string",
                    endpointType: "string",
                    additionalConfiguration: "string",
                    lastUpdatedOn: "string",
                    supportedAuthenticationMethods: ["string"],
                    version: "string",
                },
            },
            outbound: {
                assigned: {
                    string: {
                        address: "string",
                        endpointType: "string",
                    },
                },
            },
        },
        location: "string",
        manufacturer: "string",
        model: "string",
        externalDeviceId: "string",
        operatingSystem: "string",
        operatingSystemVersion: "string",
        attributes: "any",
        tags: {
            string: "string",
        },
        discoveredDeviceName: "string",
    });
    
    type: azure-native:deviceregistry:NamespaceDiscoveredDevice
    properties:
        attributes: any
        discoveredDeviceName: string
        discoveryId: string
        endpoints:
            inbound:
                string:
                    additionalConfiguration: string
                    address: string
                    endpointType: string
                    lastUpdatedOn: string
                    supportedAuthenticationMethods:
                        - string
                    version: string
            outbound:
                assigned:
                    string:
                        address: string
                        endpointType: string
        extendedLocation:
            name: string
            type: string
        externalDeviceId: string
        location: string
        manufacturer: string
        model: string
        namespaceName: string
        operatingSystem: string
        operatingSystemVersion: string
        resourceGroupName: string
        tags:
            string: string
        version: 0
    

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

    DiscoveryId string
    Identifier used to detect changes in the discovered device.
    ExtendedLocation Pulumi.AzureNative.DeviceRegistry.Inputs.ExtendedLocation
    The extended location.
    NamespaceName string
    The name of the namespace.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Version double
    An integer that is incremented each time the resource is modified.
    Attributes object
    A set of key-value pairs that contain custom attributes.
    DiscoveredDeviceName string
    The name of the discovered device.
    Endpoints Pulumi.AzureNative.DeviceRegistry.Inputs.DiscoveredMessagingEndpoints
    Endpoints for discovered devices.
    ExternalDeviceId string
    A device ID that represents the device in a system external to Azure. Unique within scope of an Azure tenant.
    Location string
    The geo-location where the resource lives
    Manufacturer string
    Device manufacturer.
    Model string
    Device model.
    OperatingSystem string
    Device operating system name.
    OperatingSystemVersion string
    Device operating system version.
    Tags Dictionary<string, string>
    Resource tags.
    DiscoveryId string
    Identifier used to detect changes in the discovered device.
    ExtendedLocation ExtendedLocationArgs
    The extended location.
    NamespaceName string
    The name of the namespace.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Version float64
    An integer that is incremented each time the resource is modified.
    Attributes interface{}
    A set of key-value pairs that contain custom attributes.
    DiscoveredDeviceName string
    The name of the discovered device.
    Endpoints DiscoveredMessagingEndpointsArgs
    Endpoints for discovered devices.
    ExternalDeviceId string
    A device ID that represents the device in a system external to Azure. Unique within scope of an Azure tenant.
    Location string
    The geo-location where the resource lives
    Manufacturer string
    Device manufacturer.
    Model string
    Device model.
    OperatingSystem string
    Device operating system name.
    OperatingSystemVersion string
    Device operating system version.
    Tags map[string]string
    Resource tags.
    discoveryId String
    Identifier used to detect changes in the discovered device.
    extendedLocation ExtendedLocation
    The extended location.
    namespaceName String
    The name of the namespace.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    version Double
    An integer that is incremented each time the resource is modified.
    attributes Object
    A set of key-value pairs that contain custom attributes.
    discoveredDeviceName String
    The name of the discovered device.
    endpoints DiscoveredMessagingEndpoints
    Endpoints for discovered devices.
    externalDeviceId String
    A device ID that represents the device in a system external to Azure. Unique within scope of an Azure tenant.
    location String
    The geo-location where the resource lives
    manufacturer String
    Device manufacturer.
    model String
    Device model.
    operatingSystem String
    Device operating system name.
    operatingSystemVersion String
    Device operating system version.
    tags Map<String,String>
    Resource tags.
    discoveryId string
    Identifier used to detect changes in the discovered device.
    extendedLocation ExtendedLocation
    The extended location.
    namespaceName string
    The name of the namespace.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    version number
    An integer that is incremented each time the resource is modified.
    attributes any
    A set of key-value pairs that contain custom attributes.
    discoveredDeviceName string
    The name of the discovered device.
    endpoints DiscoveredMessagingEndpoints
    Endpoints for discovered devices.
    externalDeviceId string
    A device ID that represents the device in a system external to Azure. Unique within scope of an Azure tenant.
    location string
    The geo-location where the resource lives
    manufacturer string
    Device manufacturer.
    model string
    Device model.
    operatingSystem string
    Device operating system name.
    operatingSystemVersion string
    Device operating system version.
    tags {[key: string]: string}
    Resource tags.
    discovery_id str
    Identifier used to detect changes in the discovered device.
    extended_location ExtendedLocationArgs
    The extended location.
    namespace_name str
    The name of the namespace.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    version float
    An integer that is incremented each time the resource is modified.
    attributes Any
    A set of key-value pairs that contain custom attributes.
    discovered_device_name str
    The name of the discovered device.
    endpoints DiscoveredMessagingEndpointsArgs
    Endpoints for discovered devices.
    external_device_id str
    A device ID that represents the device in a system external to Azure. Unique within scope of an Azure tenant.
    location str
    The geo-location where the resource lives
    manufacturer str
    Device manufacturer.
    model str
    Device model.
    operating_system str
    Device operating system name.
    operating_system_version str
    Device operating system version.
    tags Mapping[str, str]
    Resource tags.
    discoveryId String
    Identifier used to detect changes in the discovered device.
    extendedLocation Property Map
    The extended location.
    namespaceName String
    The name of the namespace.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    version Number
    An integer that is incremented each time the resource is modified.
    attributes Any
    A set of key-value pairs that contain custom attributes.
    discoveredDeviceName String
    The name of the discovered device.
    endpoints Property Map
    Endpoints for discovered devices.
    externalDeviceId String
    A device ID that represents the device in a system external to Azure. Unique within scope of an Azure tenant.
    location String
    The geo-location where the resource lives
    manufacturer String
    Device manufacturer.
    model String
    Device model.
    operatingSystem String
    Device operating system name.
    operatingSystemVersion String
    Device operating system version.
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the NamespaceDiscoveredDevice 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"
    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"
    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"
    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"
    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"
    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"

    Supporting Types

    AuthenticationMethod, AuthenticationMethodArgs

    Anonymous
    AnonymousThe user authentication method is anonymous.
    Certificate
    CertificateThe user authentication method is an x509 certificate.
    UsernamePassword
    UsernamePasswordThe user authentication method is a username and password.
    AuthenticationMethodAnonymous
    AnonymousThe user authentication method is anonymous.
    AuthenticationMethodCertificate
    CertificateThe user authentication method is an x509 certificate.
    AuthenticationMethodUsernamePassword
    UsernamePasswordThe user authentication method is a username and password.
    Anonymous
    AnonymousThe user authentication method is anonymous.
    Certificate
    CertificateThe user authentication method is an x509 certificate.
    UsernamePassword
    UsernamePasswordThe user authentication method is a username and password.
    Anonymous
    AnonymousThe user authentication method is anonymous.
    Certificate
    CertificateThe user authentication method is an x509 certificate.
    UsernamePassword
    UsernamePasswordThe user authentication method is a username and password.
    ANONYMOUS
    AnonymousThe user authentication method is anonymous.
    CERTIFICATE
    CertificateThe user authentication method is an x509 certificate.
    USERNAME_PASSWORD
    UsernamePasswordThe user authentication method is a username and password.
    "Anonymous"
    AnonymousThe user authentication method is anonymous.
    "Certificate"
    CertificateThe user authentication method is an x509 certificate.
    "UsernamePassword"
    UsernamePasswordThe user authentication method is a username and password.

    DeviceMessagingEndpoint, DeviceMessagingEndpointArgs

    Address string
    The endpoint address to connect to.
    EndpointType string
    Type of connection used for the messaging endpoint.
    Address string
    The endpoint address to connect to.
    EndpointType string
    Type of connection used for the messaging endpoint.
    address String
    The endpoint address to connect to.
    endpointType String
    Type of connection used for the messaging endpoint.
    address string
    The endpoint address to connect to.
    endpointType string
    Type of connection used for the messaging endpoint.
    address str
    The endpoint address to connect to.
    endpoint_type str
    Type of connection used for the messaging endpoint.
    address String
    The endpoint address to connect to.
    endpointType String
    Type of connection used for the messaging endpoint.

    DeviceMessagingEndpointResponse, DeviceMessagingEndpointResponseArgs

    Address string
    The endpoint address to connect to.
    EndpointType string
    Type of connection used for the messaging endpoint.
    Address string
    The endpoint address to connect to.
    EndpointType string
    Type of connection used for the messaging endpoint.
    address String
    The endpoint address to connect to.
    endpointType String
    Type of connection used for the messaging endpoint.
    address string
    The endpoint address to connect to.
    endpointType string
    Type of connection used for the messaging endpoint.
    address str
    The endpoint address to connect to.
    endpoint_type str
    Type of connection used for the messaging endpoint.
    address String
    The endpoint address to connect to.
    endpointType String
    Type of connection used for the messaging endpoint.

    DiscoveredInboundEndpoints, DiscoveredInboundEndpointsArgs

    Address string
    The endpoint address & port. This can be either an IP address (e.g., 192.168.1.1) or a fully qualified domain name (FQDN, e.g., server.example.com).
    EndpointType string
    Type of connection endpoint.
    AdditionalConfiguration string
    Stringified JSON that contains configuration to be used by the connector (e.g., OPC UA, ONVIF).
    LastUpdatedOn string
    The timestamp (in UTC) when the endpoint was discovered.
    SupportedAuthenticationMethods List<Union<string, Pulumi.AzureNative.DeviceRegistry.AuthenticationMethod>>
    List of supported authentication methods supported by device for Inbound connections.
    Version string
    Protocol version associated with the endpoint e.g. 1 or 2 for endpointType Microsoft.HTTP, and 3.5 or 5.0 for endpointType Microsoft.Mqtt etc.
    Address string
    The endpoint address & port. This can be either an IP address (e.g., 192.168.1.1) or a fully qualified domain name (FQDN, e.g., server.example.com).
    EndpointType string
    Type of connection endpoint.
    AdditionalConfiguration string
    Stringified JSON that contains configuration to be used by the connector (e.g., OPC UA, ONVIF).
    LastUpdatedOn string
    The timestamp (in UTC) when the endpoint was discovered.
    SupportedAuthenticationMethods []string
    List of supported authentication methods supported by device for Inbound connections.
    Version string
    Protocol version associated with the endpoint e.g. 1 or 2 for endpointType Microsoft.HTTP, and 3.5 or 5.0 for endpointType Microsoft.Mqtt etc.
    address String
    The endpoint address & port. This can be either an IP address (e.g., 192.168.1.1) or a fully qualified domain name (FQDN, e.g., server.example.com).
    endpointType String
    Type of connection endpoint.
    additionalConfiguration String
    Stringified JSON that contains configuration to be used by the connector (e.g., OPC UA, ONVIF).
    lastUpdatedOn String
    The timestamp (in UTC) when the endpoint was discovered.
    supportedAuthenticationMethods List<Either<String,AuthenticationMethod>>
    List of supported authentication methods supported by device for Inbound connections.
    version String
    Protocol version associated with the endpoint e.g. 1 or 2 for endpointType Microsoft.HTTP, and 3.5 or 5.0 for endpointType Microsoft.Mqtt etc.
    address string
    The endpoint address & port. This can be either an IP address (e.g., 192.168.1.1) or a fully qualified domain name (FQDN, e.g., server.example.com).
    endpointType string
    Type of connection endpoint.
    additionalConfiguration string
    Stringified JSON that contains configuration to be used by the connector (e.g., OPC UA, ONVIF).
    lastUpdatedOn string
    The timestamp (in UTC) when the endpoint was discovered.
    supportedAuthenticationMethods (string | AuthenticationMethod)[]
    List of supported authentication methods supported by device for Inbound connections.
    version string
    Protocol version associated with the endpoint e.g. 1 or 2 for endpointType Microsoft.HTTP, and 3.5 or 5.0 for endpointType Microsoft.Mqtt etc.
    address str
    The endpoint address & port. This can be either an IP address (e.g., 192.168.1.1) or a fully qualified domain name (FQDN, e.g., server.example.com).
    endpoint_type str
    Type of connection endpoint.
    additional_configuration str
    Stringified JSON that contains configuration to be used by the connector (e.g., OPC UA, ONVIF).
    last_updated_on str
    The timestamp (in UTC) when the endpoint was discovered.
    supported_authentication_methods Sequence[Union[str, AuthenticationMethod]]
    List of supported authentication methods supported by device for Inbound connections.
    version str
    Protocol version associated with the endpoint e.g. 1 or 2 for endpointType Microsoft.HTTP, and 3.5 or 5.0 for endpointType Microsoft.Mqtt etc.
    address String
    The endpoint address & port. This can be either an IP address (e.g., 192.168.1.1) or a fully qualified domain name (FQDN, e.g., server.example.com).
    endpointType String
    Type of connection endpoint.
    additionalConfiguration String
    Stringified JSON that contains configuration to be used by the connector (e.g., OPC UA, ONVIF).
    lastUpdatedOn String
    The timestamp (in UTC) when the endpoint was discovered.
    supportedAuthenticationMethods List<String | "Anonymous" | "Certificate" | "UsernamePassword">
    List of supported authentication methods supported by device for Inbound connections.
    version String
    Protocol version associated with the endpoint e.g. 1 or 2 for endpointType Microsoft.HTTP, and 3.5 or 5.0 for endpointType Microsoft.Mqtt etc.

    DiscoveredInboundEndpointsResponse, DiscoveredInboundEndpointsResponseArgs

    Address string
    The endpoint address & port. This can be either an IP address (e.g., 192.168.1.1) or a fully qualified domain name (FQDN, e.g., server.example.com).
    EndpointType string
    Type of connection endpoint.
    AdditionalConfiguration string
    Stringified JSON that contains configuration to be used by the connector (e.g., OPC UA, ONVIF).
    LastUpdatedOn string
    The timestamp (in UTC) when the endpoint was discovered.
    SupportedAuthenticationMethods List<string>
    List of supported authentication methods supported by device for Inbound connections.
    Version string
    Protocol version associated with the endpoint e.g. 1 or 2 for endpointType Microsoft.HTTP, and 3.5 or 5.0 for endpointType Microsoft.Mqtt etc.
    Address string
    The endpoint address & port. This can be either an IP address (e.g., 192.168.1.1) or a fully qualified domain name (FQDN, e.g., server.example.com).
    EndpointType string
    Type of connection endpoint.
    AdditionalConfiguration string
    Stringified JSON that contains configuration to be used by the connector (e.g., OPC UA, ONVIF).
    LastUpdatedOn string
    The timestamp (in UTC) when the endpoint was discovered.
    SupportedAuthenticationMethods []string
    List of supported authentication methods supported by device for Inbound connections.
    Version string
    Protocol version associated with the endpoint e.g. 1 or 2 for endpointType Microsoft.HTTP, and 3.5 or 5.0 for endpointType Microsoft.Mqtt etc.
    address String
    The endpoint address & port. This can be either an IP address (e.g., 192.168.1.1) or a fully qualified domain name (FQDN, e.g., server.example.com).
    endpointType String
    Type of connection endpoint.
    additionalConfiguration String
    Stringified JSON that contains configuration to be used by the connector (e.g., OPC UA, ONVIF).
    lastUpdatedOn String
    The timestamp (in UTC) when the endpoint was discovered.
    supportedAuthenticationMethods List<String>
    List of supported authentication methods supported by device for Inbound connections.
    version String
    Protocol version associated with the endpoint e.g. 1 or 2 for endpointType Microsoft.HTTP, and 3.5 or 5.0 for endpointType Microsoft.Mqtt etc.
    address string
    The endpoint address & port. This can be either an IP address (e.g., 192.168.1.1) or a fully qualified domain name (FQDN, e.g., server.example.com).
    endpointType string
    Type of connection endpoint.
    additionalConfiguration string
    Stringified JSON that contains configuration to be used by the connector (e.g., OPC UA, ONVIF).
    lastUpdatedOn string
    The timestamp (in UTC) when the endpoint was discovered.
    supportedAuthenticationMethods string[]
    List of supported authentication methods supported by device for Inbound connections.
    version string
    Protocol version associated with the endpoint e.g. 1 or 2 for endpointType Microsoft.HTTP, and 3.5 or 5.0 for endpointType Microsoft.Mqtt etc.
    address str
    The endpoint address & port. This can be either an IP address (e.g., 192.168.1.1) or a fully qualified domain name (FQDN, e.g., server.example.com).
    endpoint_type str
    Type of connection endpoint.
    additional_configuration str
    Stringified JSON that contains configuration to be used by the connector (e.g., OPC UA, ONVIF).
    last_updated_on str
    The timestamp (in UTC) when the endpoint was discovered.
    supported_authentication_methods Sequence[str]
    List of supported authentication methods supported by device for Inbound connections.
    version str
    Protocol version associated with the endpoint e.g. 1 or 2 for endpointType Microsoft.HTTP, and 3.5 or 5.0 for endpointType Microsoft.Mqtt etc.
    address String
    The endpoint address & port. This can be either an IP address (e.g., 192.168.1.1) or a fully qualified domain name (FQDN, e.g., server.example.com).
    endpointType String
    Type of connection endpoint.
    additionalConfiguration String
    Stringified JSON that contains configuration to be used by the connector (e.g., OPC UA, ONVIF).
    lastUpdatedOn String
    The timestamp (in UTC) when the endpoint was discovered.
    supportedAuthenticationMethods List<String>
    List of supported authentication methods supported by device for Inbound connections.
    version String
    Protocol version associated with the endpoint e.g. 1 or 2 for endpointType Microsoft.HTTP, and 3.5 or 5.0 for endpointType Microsoft.Mqtt etc.

    DiscoveredMessagingEndpoints, DiscoveredMessagingEndpointsArgs

    Inbound Dictionary<string, Pulumi.AzureNative.DeviceRegistry.Inputs.DiscoveredInboundEndpoints>
    Set of endpoints to connect to the device.
    Outbound Pulumi.AzureNative.DeviceRegistry.Inputs.DiscoveredOutboundEndpoints
    Set of endpoints a device can connect to.
    Inbound map[string]DiscoveredInboundEndpoints
    Set of endpoints to connect to the device.
    Outbound DiscoveredOutboundEndpoints
    Set of endpoints a device can connect to.
    inbound Map<String,DiscoveredInboundEndpoints>
    Set of endpoints to connect to the device.
    outbound DiscoveredOutboundEndpoints
    Set of endpoints a device can connect to.
    inbound {[key: string]: DiscoveredInboundEndpoints}
    Set of endpoints to connect to the device.
    outbound DiscoveredOutboundEndpoints
    Set of endpoints a device can connect to.
    inbound Mapping[str, DiscoveredInboundEndpoints]
    Set of endpoints to connect to the device.
    outbound DiscoveredOutboundEndpoints
    Set of endpoints a device can connect to.
    inbound Map<Property Map>
    Set of endpoints to connect to the device.
    outbound Property Map
    Set of endpoints a device can connect to.

    DiscoveredMessagingEndpointsResponse, DiscoveredMessagingEndpointsResponseArgs

    Inbound Dictionary<string, Pulumi.AzureNative.DeviceRegistry.Inputs.DiscoveredInboundEndpointsResponse>
    Set of endpoints to connect to the device.
    Outbound Pulumi.AzureNative.DeviceRegistry.Inputs.DiscoveredOutboundEndpointsResponse
    Set of endpoints a device can connect to.
    Inbound map[string]DiscoveredInboundEndpointsResponse
    Set of endpoints to connect to the device.
    Outbound DiscoveredOutboundEndpointsResponse
    Set of endpoints a device can connect to.
    inbound Map<String,DiscoveredInboundEndpointsResponse>
    Set of endpoints to connect to the device.
    outbound DiscoveredOutboundEndpointsResponse
    Set of endpoints a device can connect to.
    inbound {[key: string]: DiscoveredInboundEndpointsResponse}
    Set of endpoints to connect to the device.
    outbound DiscoveredOutboundEndpointsResponse
    Set of endpoints a device can connect to.
    inbound Mapping[str, DiscoveredInboundEndpointsResponse]
    Set of endpoints to connect to the device.
    outbound DiscoveredOutboundEndpointsResponse
    Set of endpoints a device can connect to.
    inbound Map<Property Map>
    Set of endpoints to connect to the device.
    outbound Property Map
    Set of endpoints a device can connect to.

    DiscoveredOutboundEndpoints, DiscoveredOutboundEndpointsArgs

    Assigned Dictionary<string, Pulumi.AzureNative.DeviceRegistry.Inputs.DeviceMessagingEndpoint>
    Endpoints the device can connect to.
    Assigned map[string]DeviceMessagingEndpoint
    Endpoints the device can connect to.
    assigned Map<String,DeviceMessagingEndpoint>
    Endpoints the device can connect to.
    assigned {[key: string]: DeviceMessagingEndpoint}
    Endpoints the device can connect to.
    assigned Mapping[str, DeviceMessagingEndpoint]
    Endpoints the device can connect to.
    assigned Map<Property Map>
    Endpoints the device can connect to.

    DiscoveredOutboundEndpointsResponse, DiscoveredOutboundEndpointsResponseArgs

    Assigned Dictionary<string, Pulumi.AzureNative.DeviceRegistry.Inputs.DeviceMessagingEndpointResponse>
    Endpoints the device can connect to.
    Assigned map[string]DeviceMessagingEndpointResponse
    Endpoints the device can connect to.
    assigned Map<String,DeviceMessagingEndpointResponse>
    Endpoints the device can connect to.
    assigned {[key: string]: DeviceMessagingEndpointResponse}
    Endpoints the device can connect to.
    assigned Mapping[str, DeviceMessagingEndpointResponse]
    Endpoints the device can connect to.
    assigned Map<Property Map>
    Endpoints the device can connect to.

    ExtendedLocation, ExtendedLocationArgs

    Name string
    The extended location name.
    Type string
    The extended location type.
    Name string
    The extended location name.
    Type string
    The extended location type.
    name String
    The extended location name.
    type String
    The extended location type.
    name string
    The extended location name.
    type string
    The extended location type.
    name str
    The extended location name.
    type str
    The extended location type.
    name String
    The extended location name.
    type String
    The extended location type.

    ExtendedLocationResponse, ExtendedLocationResponseArgs

    Name string
    The extended location name.
    Type string
    The extended location type.
    Name string
    The extended location name.
    Type string
    The extended location type.
    name String
    The extended location name.
    type String
    The extended location type.
    name string
    The extended location name.
    type string
    The extended location type.
    name str
    The extended location name.
    type str
    The extended location type.
    name String
    The extended location name.
    type String
    The extended location type.

    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:NamespaceDiscoveredDevice my-discovereddevice-1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeviceRegistry/namespaces/{namespaceName}/discoveredDevices/{discoveredDeviceName} 
    

    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