1. Packages
  2. Azure Native
  3. API Docs
  4. deviceregistry
  5. DiscoveredAsset
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.2.0 published on Monday, Apr 14, 2025 by Pulumi

azure-native.deviceregistry.DiscoveredAsset

Explore with Pulumi AI

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.2.0 published on Monday, Apr 14, 2025 by Pulumi

Discovered Asset definition.

Uses Azure REST API version 2024-09-01-preview. In version 2.x of the Azure Native provider, it used API version 2024-09-01-preview.

Example Usage

Create_DiscoveredAsset

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var discoveredAsset = new AzureNative.DeviceRegistry.DiscoveredAsset("discoveredAsset", new()
    {
        AssetEndpointProfileRef = "myAssetEndpointProfile",
        Datasets = new[]
        {
            new AzureNative.DeviceRegistry.Inputs.DiscoveredDatasetArgs
            {
                DataPoints = new[]
                {
                    new AzureNative.DeviceRegistry.Inputs.DiscoveredDataPointArgs
                    {
                        DataPointConfiguration = "{\"publishingInterval\":8,\"samplingInterval\":8,\"queueSize\":4}",
                        DataSource = "nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt1",
                        Name = "dataPoint1",
                    },
                    new AzureNative.DeviceRegistry.Inputs.DiscoveredDataPointArgs
                    {
                        DataPointConfiguration = "{\"publishingInterval\":4,\"samplingInterval\":4,\"queueSize\":7}",
                        DataSource = "nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt2",
                        Name = "dataPoint2",
                    },
                },
                DatasetConfiguration = "{\"publishingInterval\":10,\"samplingInterval\":15,\"queueSize\":20}",
                Name = "dataset1",
                Topic = new AzureNative.DeviceRegistry.Inputs.TopicArgs
                {
                    Path = "/path/dataset1",
                    Retain = AzureNative.DeviceRegistry.TopicRetainType.Keep,
                },
            },
        },
        DefaultDatasetsConfiguration = "{\"publishingInterval\":10,\"samplingInterval\":15,\"queueSize\":20}",
        DefaultEventsConfiguration = "{\"publishingInterval\":10,\"samplingInterval\":15,\"queueSize\":20}",
        DefaultTopic = new AzureNative.DeviceRegistry.Inputs.TopicArgs
        {
            Path = "/path/defaultTopic",
            Retain = AzureNative.DeviceRegistry.TopicRetainType.Keep,
        },
        DiscoveredAssetName = "my-discoveredasset",
        DiscoveryId = "11111111-1111-1111-1111-111111111111",
        DocumentationUri = "https://www.example.com/manual",
        Events = new[]
        {
            new AzureNative.DeviceRegistry.Inputs.DiscoveredEventArgs
            {
                EventConfiguration = "{\"publishingInterval\":7,\"samplingInterval\":1,\"queueSize\":8}",
                EventNotifier = "nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt3",
                Name = "event1",
                Topic = new AzureNative.DeviceRegistry.Inputs.TopicArgs
                {
                    Path = "/path/event1",
                    Retain = AzureNative.DeviceRegistry.TopicRetainType.Keep,
                },
            },
            new AzureNative.DeviceRegistry.Inputs.DiscoveredEventArgs
            {
                EventConfiguration = "{\"publishingInterval\":7,\"samplingInterval\":8,\"queueSize\":4}",
                EventNotifier = "nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt4",
                Name = "event2",
            },
        },
        ExtendedLocation = new AzureNative.DeviceRegistry.Inputs.ExtendedLocationArgs
        {
            Name = "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1",
            Type = "CustomLocation",
        },
        HardwareRevision = "1.0",
        Location = "West Europe",
        Manufacturer = "Contoso",
        ManufacturerUri = "https://www.contoso.com/manufacturerUri",
        Model = "ContosoModel",
        ProductCode = "SA34VDG",
        ResourceGroupName = "myResourceGroup",
        SerialNumber = "64-103816-519918-8",
        SoftwareRevision = "2.0",
        Tags = 
        {
            { "site", "building-1" },
        },
        Version = 73766,
    });

});
Copy
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.NewDiscoveredAsset(ctx, "discoveredAsset", &deviceregistry.DiscoveredAssetArgs{
			AssetEndpointProfileRef: pulumi.String("myAssetEndpointProfile"),
			Datasets: deviceregistry.DiscoveredDatasetArray{
				&deviceregistry.DiscoveredDatasetArgs{
					DataPoints: deviceregistry.DiscoveredDataPointArray{
						&deviceregistry.DiscoveredDataPointArgs{
							DataPointConfiguration: pulumi.String("{\"publishingInterval\":8,\"samplingInterval\":8,\"queueSize\":4}"),
							DataSource:             pulumi.String("nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt1"),
							Name:                   pulumi.String("dataPoint1"),
						},
						&deviceregistry.DiscoveredDataPointArgs{
							DataPointConfiguration: pulumi.String("{\"publishingInterval\":4,\"samplingInterval\":4,\"queueSize\":7}"),
							DataSource:             pulumi.String("nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt2"),
							Name:                   pulumi.String("dataPoint2"),
						},
					},
					DatasetConfiguration: pulumi.String("{\"publishingInterval\":10,\"samplingInterval\":15,\"queueSize\":20}"),
					Name:                 pulumi.String("dataset1"),
					Topic: &deviceregistry.TopicArgs{
						Path:   pulumi.String("/path/dataset1"),
						Retain: pulumi.String(deviceregistry.TopicRetainTypeKeep),
					},
				},
			},
			DefaultDatasetsConfiguration: pulumi.String("{\"publishingInterval\":10,\"samplingInterval\":15,\"queueSize\":20}"),
			DefaultEventsConfiguration:   pulumi.String("{\"publishingInterval\":10,\"samplingInterval\":15,\"queueSize\":20}"),
			DefaultTopic: &deviceregistry.TopicArgs{
				Path:   pulumi.String("/path/defaultTopic"),
				Retain: pulumi.String(deviceregistry.TopicRetainTypeKeep),
			},
			DiscoveredAssetName: pulumi.String("my-discoveredasset"),
			DiscoveryId:         pulumi.String("11111111-1111-1111-1111-111111111111"),
			DocumentationUri:    pulumi.String("https://www.example.com/manual"),
			Events: deviceregistry.DiscoveredEventArray{
				&deviceregistry.DiscoveredEventArgs{
					EventConfiguration: pulumi.String("{\"publishingInterval\":7,\"samplingInterval\":1,\"queueSize\":8}"),
					EventNotifier:      pulumi.String("nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt3"),
					Name:               pulumi.String("event1"),
					Topic: &deviceregistry.TopicArgs{
						Path:   pulumi.String("/path/event1"),
						Retain: pulumi.String(deviceregistry.TopicRetainTypeKeep),
					},
				},
				&deviceregistry.DiscoveredEventArgs{
					EventConfiguration: pulumi.String("{\"publishingInterval\":7,\"samplingInterval\":8,\"queueSize\":4}"),
					EventNotifier:      pulumi.String("nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt4"),
					Name:               pulumi.String("event2"),
				},
			},
			ExtendedLocation: &deviceregistry.ExtendedLocationArgs{
				Name: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1"),
				Type: pulumi.String("CustomLocation"),
			},
			HardwareRevision:  pulumi.String("1.0"),
			Location:          pulumi.String("West Europe"),
			Manufacturer:      pulumi.String("Contoso"),
			ManufacturerUri:   pulumi.String("https://www.contoso.com/manufacturerUri"),
			Model:             pulumi.String("ContosoModel"),
			ProductCode:       pulumi.String("SA34VDG"),
			ResourceGroupName: pulumi.String("myResourceGroup"),
			SerialNumber:      pulumi.String("64-103816-519918-8"),
			SoftwareRevision:  pulumi.String("2.0"),
			Tags: pulumi.StringMap{
				"site": pulumi.String("building-1"),
			},
			Version: pulumi.Float64(73766),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.deviceregistry.DiscoveredAsset;
import com.pulumi.azurenative.deviceregistry.DiscoveredAssetArgs;
import com.pulumi.azurenative.deviceregistry.inputs.DiscoveredDatasetArgs;
import com.pulumi.azurenative.deviceregistry.inputs.TopicArgs;
import com.pulumi.azurenative.deviceregistry.inputs.DiscoveredEventArgs;
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 discoveredAsset = new DiscoveredAsset("discoveredAsset", DiscoveredAssetArgs.builder()
            .assetEndpointProfileRef("myAssetEndpointProfile")
            .datasets(DiscoveredDatasetArgs.builder()
                .dataPoints(                
                    DiscoveredDataPointArgs.builder()
                        .dataPointConfiguration("{\"publishingInterval\":8,\"samplingInterval\":8,\"queueSize\":4}")
                        .dataSource("nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt1")
                        .name("dataPoint1")
                        .build(),
                    DiscoveredDataPointArgs.builder()
                        .dataPointConfiguration("{\"publishingInterval\":4,\"samplingInterval\":4,\"queueSize\":7}")
                        .dataSource("nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt2")
                        .name("dataPoint2")
                        .build())
                .datasetConfiguration("{\"publishingInterval\":10,\"samplingInterval\":15,\"queueSize\":20}")
                .name("dataset1")
                .topic(TopicArgs.builder()
                    .path("/path/dataset1")
                    .retain("Keep")
                    .build())
                .build())
            .defaultDatasetsConfiguration("{\"publishingInterval\":10,\"samplingInterval\":15,\"queueSize\":20}")
            .defaultEventsConfiguration("{\"publishingInterval\":10,\"samplingInterval\":15,\"queueSize\":20}")
            .defaultTopic(TopicArgs.builder()
                .path("/path/defaultTopic")
                .retain("Keep")
                .build())
            .discoveredAssetName("my-discoveredasset")
            .discoveryId("11111111-1111-1111-1111-111111111111")
            .documentationUri("https://www.example.com/manual")
            .events(            
                DiscoveredEventArgs.builder()
                    .eventConfiguration("{\"publishingInterval\":7,\"samplingInterval\":1,\"queueSize\":8}")
                    .eventNotifier("nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt3")
                    .name("event1")
                    .topic(TopicArgs.builder()
                        .path("/path/event1")
                        .retain("Keep")
                        .build())
                    .build(),
                DiscoveredEventArgs.builder()
                    .eventConfiguration("{\"publishingInterval\":7,\"samplingInterval\":8,\"queueSize\":4}")
                    .eventNotifier("nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt4")
                    .name("event2")
                    .build())
            .extendedLocation(ExtendedLocationArgs.builder()
                .name("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1")
                .type("CustomLocation")
                .build())
            .hardwareRevision("1.0")
            .location("West Europe")
            .manufacturer("Contoso")
            .manufacturerUri("https://www.contoso.com/manufacturerUri")
            .model("ContosoModel")
            .productCode("SA34VDG")
            .resourceGroupName("myResourceGroup")
            .serialNumber("64-103816-519918-8")
            .softwareRevision("2.0")
            .tags(Map.of("site", "building-1"))
            .version(73766.0)
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const discoveredAsset = new azure_native.deviceregistry.DiscoveredAsset("discoveredAsset", {
    assetEndpointProfileRef: "myAssetEndpointProfile",
    datasets: [{
        dataPoints: [
            {
                dataPointConfiguration: "{\"publishingInterval\":8,\"samplingInterval\":8,\"queueSize\":4}",
                dataSource: "nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt1",
                name: "dataPoint1",
            },
            {
                dataPointConfiguration: "{\"publishingInterval\":4,\"samplingInterval\":4,\"queueSize\":7}",
                dataSource: "nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt2",
                name: "dataPoint2",
            },
        ],
        datasetConfiguration: "{\"publishingInterval\":10,\"samplingInterval\":15,\"queueSize\":20}",
        name: "dataset1",
        topic: {
            path: "/path/dataset1",
            retain: azure_native.deviceregistry.TopicRetainType.Keep,
        },
    }],
    defaultDatasetsConfiguration: "{\"publishingInterval\":10,\"samplingInterval\":15,\"queueSize\":20}",
    defaultEventsConfiguration: "{\"publishingInterval\":10,\"samplingInterval\":15,\"queueSize\":20}",
    defaultTopic: {
        path: "/path/defaultTopic",
        retain: azure_native.deviceregistry.TopicRetainType.Keep,
    },
    discoveredAssetName: "my-discoveredasset",
    discoveryId: "11111111-1111-1111-1111-111111111111",
    documentationUri: "https://www.example.com/manual",
    events: [
        {
            eventConfiguration: "{\"publishingInterval\":7,\"samplingInterval\":1,\"queueSize\":8}",
            eventNotifier: "nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt3",
            name: "event1",
            topic: {
                path: "/path/event1",
                retain: azure_native.deviceregistry.TopicRetainType.Keep,
            },
        },
        {
            eventConfiguration: "{\"publishingInterval\":7,\"samplingInterval\":8,\"queueSize\":4}",
            eventNotifier: "nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt4",
            name: "event2",
        },
    ],
    extendedLocation: {
        name: "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1",
        type: "CustomLocation",
    },
    hardwareRevision: "1.0",
    location: "West Europe",
    manufacturer: "Contoso",
    manufacturerUri: "https://www.contoso.com/manufacturerUri",
    model: "ContosoModel",
    productCode: "SA34VDG",
    resourceGroupName: "myResourceGroup",
    serialNumber: "64-103816-519918-8",
    softwareRevision: "2.0",
    tags: {
        site: "building-1",
    },
    version: 73766,
});
Copy
import pulumi
import pulumi_azure_native as azure_native

discovered_asset = azure_native.deviceregistry.DiscoveredAsset("discoveredAsset",
    asset_endpoint_profile_ref="myAssetEndpointProfile",
    datasets=[{
        "data_points": [
            {
                "data_point_configuration": "{\"publishingInterval\":8,\"samplingInterval\":8,\"queueSize\":4}",
                "data_source": "nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt1",
                "name": "dataPoint1",
            },
            {
                "data_point_configuration": "{\"publishingInterval\":4,\"samplingInterval\":4,\"queueSize\":7}",
                "data_source": "nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt2",
                "name": "dataPoint2",
            },
        ],
        "dataset_configuration": "{\"publishingInterval\":10,\"samplingInterval\":15,\"queueSize\":20}",
        "name": "dataset1",
        "topic": {
            "path": "/path/dataset1",
            "retain": azure_native.deviceregistry.TopicRetainType.KEEP,
        },
    }],
    default_datasets_configuration="{\"publishingInterval\":10,\"samplingInterval\":15,\"queueSize\":20}",
    default_events_configuration="{\"publishingInterval\":10,\"samplingInterval\":15,\"queueSize\":20}",
    default_topic={
        "path": "/path/defaultTopic",
        "retain": azure_native.deviceregistry.TopicRetainType.KEEP,
    },
    discovered_asset_name="my-discoveredasset",
    discovery_id="11111111-1111-1111-1111-111111111111",
    documentation_uri="https://www.example.com/manual",
    events=[
        {
            "event_configuration": "{\"publishingInterval\":7,\"samplingInterval\":1,\"queueSize\":8}",
            "event_notifier": "nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt3",
            "name": "event1",
            "topic": {
                "path": "/path/event1",
                "retain": azure_native.deviceregistry.TopicRetainType.KEEP,
            },
        },
        {
            "event_configuration": "{\"publishingInterval\":7,\"samplingInterval\":8,\"queueSize\":4}",
            "event_notifier": "nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt4",
            "name": "event2",
        },
    ],
    extended_location={
        "name": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1",
        "type": "CustomLocation",
    },
    hardware_revision="1.0",
    location="West Europe",
    manufacturer="Contoso",
    manufacturer_uri="https://www.contoso.com/manufacturerUri",
    model="ContosoModel",
    product_code="SA34VDG",
    resource_group_name="myResourceGroup",
    serial_number="64-103816-519918-8",
    software_revision="2.0",
    tags={
        "site": "building-1",
    },
    version=73766)
Copy
resources:
  discoveredAsset:
    type: azure-native:deviceregistry:DiscoveredAsset
    properties:
      assetEndpointProfileRef: myAssetEndpointProfile
      datasets:
        - dataPoints:
            - dataPointConfiguration: '{"publishingInterval":8,"samplingInterval":8,"queueSize":4}'
              dataSource: nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt1
              name: dataPoint1
            - dataPointConfiguration: '{"publishingInterval":4,"samplingInterval":4,"queueSize":7}'
              dataSource: nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt2
              name: dataPoint2
          datasetConfiguration: '{"publishingInterval":10,"samplingInterval":15,"queueSize":20}'
          name: dataset1
          topic:
            path: /path/dataset1
            retain: Keep
      defaultDatasetsConfiguration: '{"publishingInterval":10,"samplingInterval":15,"queueSize":20}'
      defaultEventsConfiguration: '{"publishingInterval":10,"samplingInterval":15,"queueSize":20}'
      defaultTopic:
        path: /path/defaultTopic
        retain: Keep
      discoveredAssetName: my-discoveredasset
      discoveryId: 11111111-1111-1111-1111-111111111111
      documentationUri: https://www.example.com/manual
      events:
        - eventConfiguration: '{"publishingInterval":7,"samplingInterval":1,"queueSize":8}'
          eventNotifier: nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt3
          name: event1
          topic:
            path: /path/event1
            retain: Keep
        - eventConfiguration: '{"publishingInterval":7,"samplingInterval":8,"queueSize":4}'
          eventNotifier: nsu=http://microsoft.com/Opc/OpcPlc/;s=FastUInt4
          name: event2
      extendedLocation:
        name: /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1
        type: CustomLocation
      hardwareRevision: '1.0'
      location: West Europe
      manufacturer: Contoso
      manufacturerUri: https://www.contoso.com/manufacturerUri
      model: ContosoModel
      productCode: SA34VDG
      resourceGroupName: myResourceGroup
      serialNumber: 64-103816-519918-8
      softwareRevision: '2.0'
      tags:
        site: building-1
      version: 73766
Copy

Create DiscoveredAsset Resource

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

Constructor syntax

new DiscoveredAsset(name: string, args: DiscoveredAssetArgs, opts?: CustomResourceOptions);
@overload
def DiscoveredAsset(resource_name: str,
                    args: DiscoveredAssetArgs,
                    opts: Optional[ResourceOptions] = None)

@overload
def DiscoveredAsset(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    discovery_id: Optional[str] = None,
                    version: Optional[float] = None,
                    resource_group_name: Optional[str] = None,
                    asset_endpoint_profile_ref: Optional[str] = None,
                    extended_location: Optional[ExtendedLocationArgs] = None,
                    hardware_revision: Optional[str] = None,
                    manufacturer: Optional[str] = None,
                    documentation_uri: Optional[str] = None,
                    events: Optional[Sequence[DiscoveredEventArgs]] = None,
                    default_topic: Optional[TopicArgs] = None,
                    default_events_configuration: Optional[str] = None,
                    location: Optional[str] = None,
                    discovered_asset_name: Optional[str] = None,
                    manufacturer_uri: Optional[str] = None,
                    model: Optional[str] = None,
                    product_code: Optional[str] = None,
                    default_datasets_configuration: Optional[str] = None,
                    serial_number: Optional[str] = None,
                    software_revision: Optional[str] = None,
                    tags: Optional[Mapping[str, str]] = None,
                    datasets: Optional[Sequence[DiscoveredDatasetArgs]] = None)
func NewDiscoveredAsset(ctx *Context, name string, args DiscoveredAssetArgs, opts ...ResourceOption) (*DiscoveredAsset, error)
public DiscoveredAsset(string name, DiscoveredAssetArgs args, CustomResourceOptions? opts = null)
public DiscoveredAsset(String name, DiscoveredAssetArgs args)
public DiscoveredAsset(String name, DiscoveredAssetArgs args, CustomResourceOptions options)
type: azure-native:deviceregistry:DiscoveredAsset
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DiscoveredAssetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DiscoveredAssetArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DiscoveredAssetArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DiscoveredAssetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DiscoveredAssetArgs
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 discoveredAssetResource = new AzureNative.DeviceRegistry.DiscoveredAsset("discoveredAssetResource", new()
{
    DiscoveryId = "string",
    Version = 0,
    ResourceGroupName = "string",
    AssetEndpointProfileRef = "string",
    ExtendedLocation = new AzureNative.DeviceRegistry.Inputs.ExtendedLocationArgs
    {
        Name = "string",
        Type = "string",
    },
    HardwareRevision = "string",
    Manufacturer = "string",
    DocumentationUri = "string",
    Events = new[]
    {
        new AzureNative.DeviceRegistry.Inputs.DiscoveredEventArgs
        {
            EventNotifier = "string",
            Name = "string",
            EventConfiguration = "string",
            LastUpdatedOn = "string",
            Topic = new AzureNative.DeviceRegistry.Inputs.TopicArgs
            {
                Path = "string",
                Retain = "string",
            },
        },
    },
    DefaultTopic = new AzureNative.DeviceRegistry.Inputs.TopicArgs
    {
        Path = "string",
        Retain = "string",
    },
    DefaultEventsConfiguration = "string",
    Location = "string",
    DiscoveredAssetName = "string",
    ManufacturerUri = "string",
    Model = "string",
    ProductCode = "string",
    DefaultDatasetsConfiguration = "string",
    SerialNumber = "string",
    SoftwareRevision = "string",
    Tags = 
    {
        { "string", "string" },
    },
    Datasets = new[]
    {
        new AzureNative.DeviceRegistry.Inputs.DiscoveredDatasetArgs
        {
            Name = "string",
            DataPoints = new[]
            {
                new AzureNative.DeviceRegistry.Inputs.DiscoveredDataPointArgs
                {
                    DataSource = "string",
                    Name = "string",
                    DataPointConfiguration = "string",
                    LastUpdatedOn = "string",
                },
            },
            DatasetConfiguration = "string",
            Topic = new AzureNative.DeviceRegistry.Inputs.TopicArgs
            {
                Path = "string",
                Retain = "string",
            },
        },
    },
});
Copy
example, err := deviceregistry.NewDiscoveredAsset(ctx, "discoveredAssetResource", &deviceregistry.DiscoveredAssetArgs{
	DiscoveryId:             pulumi.String("string"),
	Version:                 pulumi.Float64(0),
	ResourceGroupName:       pulumi.String("string"),
	AssetEndpointProfileRef: pulumi.String("string"),
	ExtendedLocation: &deviceregistry.ExtendedLocationArgs{
		Name: pulumi.String("string"),
		Type: pulumi.String("string"),
	},
	HardwareRevision: pulumi.String("string"),
	Manufacturer:     pulumi.String("string"),
	DocumentationUri: pulumi.String("string"),
	Events: deviceregistry.DiscoveredEventArray{
		&deviceregistry.DiscoveredEventArgs{
			EventNotifier:      pulumi.String("string"),
			Name:               pulumi.String("string"),
			EventConfiguration: pulumi.String("string"),
			LastUpdatedOn:      pulumi.String("string"),
			Topic: &deviceregistry.TopicArgs{
				Path:   pulumi.String("string"),
				Retain: pulumi.String("string"),
			},
		},
	},
	DefaultTopic: &deviceregistry.TopicArgs{
		Path:   pulumi.String("string"),
		Retain: pulumi.String("string"),
	},
	DefaultEventsConfiguration:   pulumi.String("string"),
	Location:                     pulumi.String("string"),
	DiscoveredAssetName:          pulumi.String("string"),
	ManufacturerUri:              pulumi.String("string"),
	Model:                        pulumi.String("string"),
	ProductCode:                  pulumi.String("string"),
	DefaultDatasetsConfiguration: pulumi.String("string"),
	SerialNumber:                 pulumi.String("string"),
	SoftwareRevision:             pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Datasets: deviceregistry.DiscoveredDatasetArray{
		&deviceregistry.DiscoveredDatasetArgs{
			Name: pulumi.String("string"),
			DataPoints: deviceregistry.DiscoveredDataPointArray{
				&deviceregistry.DiscoveredDataPointArgs{
					DataSource:             pulumi.String("string"),
					Name:                   pulumi.String("string"),
					DataPointConfiguration: pulumi.String("string"),
					LastUpdatedOn:          pulumi.String("string"),
				},
			},
			DatasetConfiguration: pulumi.String("string"),
			Topic: &deviceregistry.TopicArgs{
				Path:   pulumi.String("string"),
				Retain: pulumi.String("string"),
			},
		},
	},
})
Copy
var discoveredAssetResource = new DiscoveredAsset("discoveredAssetResource", DiscoveredAssetArgs.builder()
    .discoveryId("string")
    .version(0)
    .resourceGroupName("string")
    .assetEndpointProfileRef("string")
    .extendedLocation(ExtendedLocationArgs.builder()
        .name("string")
        .type("string")
        .build())
    .hardwareRevision("string")
    .manufacturer("string")
    .documentationUri("string")
    .events(DiscoveredEventArgs.builder()
        .eventNotifier("string")
        .name("string")
        .eventConfiguration("string")
        .lastUpdatedOn("string")
        .topic(TopicArgs.builder()
            .path("string")
            .retain("string")
            .build())
        .build())
    .defaultTopic(TopicArgs.builder()
        .path("string")
        .retain("string")
        .build())
    .defaultEventsConfiguration("string")
    .location("string")
    .discoveredAssetName("string")
    .manufacturerUri("string")
    .model("string")
    .productCode("string")
    .defaultDatasetsConfiguration("string")
    .serialNumber("string")
    .softwareRevision("string")
    .tags(Map.of("string", "string"))
    .datasets(DiscoveredDatasetArgs.builder()
        .name("string")
        .dataPoints(DiscoveredDataPointArgs.builder()
            .dataSource("string")
            .name("string")
            .dataPointConfiguration("string")
            .lastUpdatedOn("string")
            .build())
        .datasetConfiguration("string")
        .topic(TopicArgs.builder()
            .path("string")
            .retain("string")
            .build())
        .build())
    .build());
Copy
discovered_asset_resource = azure_native.deviceregistry.DiscoveredAsset("discoveredAssetResource",
    discovery_id="string",
    version=0,
    resource_group_name="string",
    asset_endpoint_profile_ref="string",
    extended_location={
        "name": "string",
        "type": "string",
    },
    hardware_revision="string",
    manufacturer="string",
    documentation_uri="string",
    events=[{
        "event_notifier": "string",
        "name": "string",
        "event_configuration": "string",
        "last_updated_on": "string",
        "topic": {
            "path": "string",
            "retain": "string",
        },
    }],
    default_topic={
        "path": "string",
        "retain": "string",
    },
    default_events_configuration="string",
    location="string",
    discovered_asset_name="string",
    manufacturer_uri="string",
    model="string",
    product_code="string",
    default_datasets_configuration="string",
    serial_number="string",
    software_revision="string",
    tags={
        "string": "string",
    },
    datasets=[{
        "name": "string",
        "data_points": [{
            "data_source": "string",
            "name": "string",
            "data_point_configuration": "string",
            "last_updated_on": "string",
        }],
        "dataset_configuration": "string",
        "topic": {
            "path": "string",
            "retain": "string",
        },
    }])
Copy
const discoveredAssetResource = new azure_native.deviceregistry.DiscoveredAsset("discoveredAssetResource", {
    discoveryId: "string",
    version: 0,
    resourceGroupName: "string",
    assetEndpointProfileRef: "string",
    extendedLocation: {
        name: "string",
        type: "string",
    },
    hardwareRevision: "string",
    manufacturer: "string",
    documentationUri: "string",
    events: [{
        eventNotifier: "string",
        name: "string",
        eventConfiguration: "string",
        lastUpdatedOn: "string",
        topic: {
            path: "string",
            retain: "string",
        },
    }],
    defaultTopic: {
        path: "string",
        retain: "string",
    },
    defaultEventsConfiguration: "string",
    location: "string",
    discoveredAssetName: "string",
    manufacturerUri: "string",
    model: "string",
    productCode: "string",
    defaultDatasetsConfiguration: "string",
    serialNumber: "string",
    softwareRevision: "string",
    tags: {
        string: "string",
    },
    datasets: [{
        name: "string",
        dataPoints: [{
            dataSource: "string",
            name: "string",
            dataPointConfiguration: "string",
            lastUpdatedOn: "string",
        }],
        datasetConfiguration: "string",
        topic: {
            path: "string",
            retain: "string",
        },
    }],
});
Copy
type: azure-native:deviceregistry:DiscoveredAsset
properties:
    assetEndpointProfileRef: string
    datasets:
        - dataPoints:
            - dataPointConfiguration: string
              dataSource: string
              lastUpdatedOn: string
              name: string
          datasetConfiguration: string
          name: string
          topic:
            path: string
            retain: string
    defaultDatasetsConfiguration: string
    defaultEventsConfiguration: string
    defaultTopic:
        path: string
        retain: string
    discoveredAssetName: string
    discoveryId: string
    documentationUri: string
    events:
        - eventConfiguration: string
          eventNotifier: string
          lastUpdatedOn: string
          name: string
          topic:
            path: string
            retain: string
    extendedLocation:
        name: string
        type: string
    hardwareRevision: string
    location: string
    manufacturer: string
    manufacturerUri: string
    model: string
    productCode: string
    resourceGroupName: string
    serialNumber: string
    softwareRevision: string
    tags:
        string: string
    version: 0
Copy

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

AssetEndpointProfileRef
This property is required.
Changes to this property will trigger replacement.
string
A reference to the asset endpoint profile (connection information) used by brokers to connect to an endpoint that provides data points for this asset. Must provide asset endpoint profile name.
DiscoveryId This property is required. string
Identifier used to detect changes in the asset.
ExtendedLocation
This property is required.
Changes to this property will trigger replacement.
Pulumi.AzureNative.DeviceRegistry.Inputs.ExtendedLocation
The extended location.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Version This property is required. double
An integer that is incremented each time the resource is modified.
Datasets List<Pulumi.AzureNative.DeviceRegistry.Inputs.DiscoveredDataset>
Array of datasets that are part of the asset. Each dataset spec describes the data points that make up the set.
DefaultDatasetsConfiguration string
Stringified JSON that contains connector-specific default configuration for all datasets. Each dataset can have its own configuration that overrides the default settings here.
DefaultEventsConfiguration string
Stringified JSON that contains connector-specific default configuration for all events. Each event can have its own configuration that overrides the default settings here.
DefaultTopic Pulumi.AzureNative.DeviceRegistry.Inputs.Topic
Object that describes the default topic information for the asset.
DiscoveredAssetName Changes to this property will trigger replacement. string
Discovered Asset name parameter.
DocumentationUri string
Reference to the documentation.
Events List<Pulumi.AzureNative.DeviceRegistry.Inputs.DiscoveredEvent>
Array of events that are part of the asset. Each event can have per-event configuration.
HardwareRevision string
Revision number of the hardware.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Manufacturer string
Asset manufacturer name.
ManufacturerUri string
Asset manufacturer URI.
Model string
Asset model name.
ProductCode string
Asset product code.
SerialNumber string
Asset serial number.
SoftwareRevision string
Revision number of the software.
Tags Dictionary<string, string>
Resource tags.
AssetEndpointProfileRef
This property is required.
Changes to this property will trigger replacement.
string
A reference to the asset endpoint profile (connection information) used by brokers to connect to an endpoint that provides data points for this asset. Must provide asset endpoint profile name.
DiscoveryId This property is required. string
Identifier used to detect changes in the asset.
ExtendedLocation
This property is required.
Changes to this property will trigger replacement.
ExtendedLocationArgs
The extended location.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Version This property is required. float64
An integer that is incremented each time the resource is modified.
Datasets []DiscoveredDatasetArgs
Array of datasets that are part of the asset. Each dataset spec describes the data points that make up the set.
DefaultDatasetsConfiguration string
Stringified JSON that contains connector-specific default configuration for all datasets. Each dataset can have its own configuration that overrides the default settings here.
DefaultEventsConfiguration string
Stringified JSON that contains connector-specific default configuration for all events. Each event can have its own configuration that overrides the default settings here.
DefaultTopic TopicArgs
Object that describes the default topic information for the asset.
DiscoveredAssetName Changes to this property will trigger replacement. string
Discovered Asset name parameter.
DocumentationUri string
Reference to the documentation.
Events []DiscoveredEventArgs
Array of events that are part of the asset. Each event can have per-event configuration.
HardwareRevision string
Revision number of the hardware.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Manufacturer string
Asset manufacturer name.
ManufacturerUri string
Asset manufacturer URI.
Model string
Asset model name.
ProductCode string
Asset product code.
SerialNumber string
Asset serial number.
SoftwareRevision string
Revision number of the software.
Tags map[string]string
Resource tags.
assetEndpointProfileRef
This property is required.
Changes to this property will trigger replacement.
String
A reference to the asset endpoint profile (connection information) used by brokers to connect to an endpoint that provides data points for this asset. Must provide asset endpoint profile name.
discoveryId This property is required. String
Identifier used to detect changes in the asset.
extendedLocation
This property is required.
Changes to this property will trigger replacement.
ExtendedLocation
The extended location.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
version This property is required. Double
An integer that is incremented each time the resource is modified.
datasets List<DiscoveredDataset>
Array of datasets that are part of the asset. Each dataset spec describes the data points that make up the set.
defaultDatasetsConfiguration String
Stringified JSON that contains connector-specific default configuration for all datasets. Each dataset can have its own configuration that overrides the default settings here.
defaultEventsConfiguration String
Stringified JSON that contains connector-specific default configuration for all events. Each event can have its own configuration that overrides the default settings here.
defaultTopic Topic
Object that describes the default topic information for the asset.
discoveredAssetName Changes to this property will trigger replacement. String
Discovered Asset name parameter.
documentationUri String
Reference to the documentation.
events List<DiscoveredEvent>
Array of events that are part of the asset. Each event can have per-event configuration.
hardwareRevision String
Revision number of the hardware.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
manufacturer String
Asset manufacturer name.
manufacturerUri String
Asset manufacturer URI.
model String
Asset model name.
productCode String
Asset product code.
serialNumber String
Asset serial number.
softwareRevision String
Revision number of the software.
tags Map<String,String>
Resource tags.
assetEndpointProfileRef
This property is required.
Changes to this property will trigger replacement.
string
A reference to the asset endpoint profile (connection information) used by brokers to connect to an endpoint that provides data points for this asset. Must provide asset endpoint profile name.
discoveryId This property is required. string
Identifier used to detect changes in the asset.
extendedLocation
This property is required.
Changes to this property will trigger replacement.
ExtendedLocation
The extended location.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
version This property is required. number
An integer that is incremented each time the resource is modified.
datasets DiscoveredDataset[]
Array of datasets that are part of the asset. Each dataset spec describes the data points that make up the set.
defaultDatasetsConfiguration string
Stringified JSON that contains connector-specific default configuration for all datasets. Each dataset can have its own configuration that overrides the default settings here.
defaultEventsConfiguration string
Stringified JSON that contains connector-specific default configuration for all events. Each event can have its own configuration that overrides the default settings here.
defaultTopic Topic
Object that describes the default topic information for the asset.
discoveredAssetName Changes to this property will trigger replacement. string
Discovered Asset name parameter.
documentationUri string
Reference to the documentation.
events DiscoveredEvent[]
Array of events that are part of the asset. Each event can have per-event configuration.
hardwareRevision string
Revision number of the hardware.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
manufacturer string
Asset manufacturer name.
manufacturerUri string
Asset manufacturer URI.
model string
Asset model name.
productCode string
Asset product code.
serialNumber string
Asset serial number.
softwareRevision string
Revision number of the software.
tags {[key: string]: string}
Resource tags.
asset_endpoint_profile_ref
This property is required.
Changes to this property will trigger replacement.
str
A reference to the asset endpoint profile (connection information) used by brokers to connect to an endpoint that provides data points for this asset. Must provide asset endpoint profile name.
discovery_id This property is required. str
Identifier used to detect changes in the asset.
extended_location
This property is required.
Changes to this property will trigger replacement.
ExtendedLocationArgs
The extended location.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
version This property is required. float
An integer that is incremented each time the resource is modified.
datasets Sequence[DiscoveredDatasetArgs]
Array of datasets that are part of the asset. Each dataset spec describes the data points that make up the set.
default_datasets_configuration str
Stringified JSON that contains connector-specific default configuration for all datasets. Each dataset can have its own configuration that overrides the default settings here.
default_events_configuration str
Stringified JSON that contains connector-specific default configuration for all events. Each event can have its own configuration that overrides the default settings here.
default_topic TopicArgs
Object that describes the default topic information for the asset.
discovered_asset_name Changes to this property will trigger replacement. str
Discovered Asset name parameter.
documentation_uri str
Reference to the documentation.
events Sequence[DiscoveredEventArgs]
Array of events that are part of the asset. Each event can have per-event configuration.
hardware_revision str
Revision number of the hardware.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
manufacturer str
Asset manufacturer name.
manufacturer_uri str
Asset manufacturer URI.
model str
Asset model name.
product_code str
Asset product code.
serial_number str
Asset serial number.
software_revision str
Revision number of the software.
tags Mapping[str, str]
Resource tags.
assetEndpointProfileRef
This property is required.
Changes to this property will trigger replacement.
String
A reference to the asset endpoint profile (connection information) used by brokers to connect to an endpoint that provides data points for this asset. Must provide asset endpoint profile name.
discoveryId This property is required. String
Identifier used to detect changes in the asset.
extendedLocation
This property is required.
Changes to this property will trigger replacement.
Property Map
The extended location.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
version This property is required. Number
An integer that is incremented each time the resource is modified.
datasets List<Property Map>
Array of datasets that are part of the asset. Each dataset spec describes the data points that make up the set.
defaultDatasetsConfiguration String
Stringified JSON that contains connector-specific default configuration for all datasets. Each dataset can have its own configuration that overrides the default settings here.
defaultEventsConfiguration String
Stringified JSON that contains connector-specific default configuration for all events. Each event can have its own configuration that overrides the default settings here.
defaultTopic Property Map
Object that describes the default topic information for the asset.
discoveredAssetName Changes to this property will trigger replacement. String
Discovered Asset name parameter.
documentationUri String
Reference to the documentation.
events List<Property Map>
Array of events that are part of the asset. Each event can have per-event configuration.
hardwareRevision String
Revision number of the hardware.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
manufacturer String
Asset manufacturer name.
manufacturerUri String
Asset manufacturer URI.
model String
Asset model name.
productCode String
Asset product code.
serialNumber String
Asset serial number.
softwareRevision String
Revision number of the software.
tags Map<String>
Resource tags.

Outputs

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

DiscoveredDataPoint
, DiscoveredDataPointArgs

DataSource This property is required. string
The address of the source of the data in the asset (e.g. URL) so that a client can access the data source on the asset.
Name This property is required. string
The name of the data point.
DataPointConfiguration string
Stringified JSON that contains connector-specific configuration for the data point. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
LastUpdatedOn string
UTC timestamp indicating when the data point was added or modified.
DataSource This property is required. string
The address of the source of the data in the asset (e.g. URL) so that a client can access the data source on the asset.
Name This property is required. string
The name of the data point.
DataPointConfiguration string
Stringified JSON that contains connector-specific configuration for the data point. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
LastUpdatedOn string
UTC timestamp indicating when the data point was added or modified.
dataSource This property is required. String
The address of the source of the data in the asset (e.g. URL) so that a client can access the data source on the asset.
name This property is required. String
The name of the data point.
dataPointConfiguration String
Stringified JSON that contains connector-specific configuration for the data point. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
lastUpdatedOn String
UTC timestamp indicating when the data point was added or modified.
dataSource This property is required. string
The address of the source of the data in the asset (e.g. URL) so that a client can access the data source on the asset.
name This property is required. string
The name of the data point.
dataPointConfiguration string
Stringified JSON that contains connector-specific configuration for the data point. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
lastUpdatedOn string
UTC timestamp indicating when the data point was added or modified.
data_source This property is required. str
The address of the source of the data in the asset (e.g. URL) so that a client can access the data source on the asset.
name This property is required. str
The name of the data point.
data_point_configuration str
Stringified JSON that contains connector-specific configuration for the data point. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
last_updated_on str
UTC timestamp indicating when the data point was added or modified.
dataSource This property is required. String
The address of the source of the data in the asset (e.g. URL) so that a client can access the data source on the asset.
name This property is required. String
The name of the data point.
dataPointConfiguration String
Stringified JSON that contains connector-specific configuration for the data point. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
lastUpdatedOn String
UTC timestamp indicating when the data point was added or modified.

DiscoveredDataPointResponse
, DiscoveredDataPointResponseArgs

DataSource This property is required. string
The address of the source of the data in the asset (e.g. URL) so that a client can access the data source on the asset.
Name This property is required. string
The name of the data point.
DataPointConfiguration string
Stringified JSON that contains connector-specific configuration for the data point. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
LastUpdatedOn string
UTC timestamp indicating when the data point was added or modified.
DataSource This property is required. string
The address of the source of the data in the asset (e.g. URL) so that a client can access the data source on the asset.
Name This property is required. string
The name of the data point.
DataPointConfiguration string
Stringified JSON that contains connector-specific configuration for the data point. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
LastUpdatedOn string
UTC timestamp indicating when the data point was added or modified.
dataSource This property is required. String
The address of the source of the data in the asset (e.g. URL) so that a client can access the data source on the asset.
name This property is required. String
The name of the data point.
dataPointConfiguration String
Stringified JSON that contains connector-specific configuration for the data point. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
lastUpdatedOn String
UTC timestamp indicating when the data point was added or modified.
dataSource This property is required. string
The address of the source of the data in the asset (e.g. URL) so that a client can access the data source on the asset.
name This property is required. string
The name of the data point.
dataPointConfiguration string
Stringified JSON that contains connector-specific configuration for the data point. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
lastUpdatedOn string
UTC timestamp indicating when the data point was added or modified.
data_source This property is required. str
The address of the source of the data in the asset (e.g. URL) so that a client can access the data source on the asset.
name This property is required. str
The name of the data point.
data_point_configuration str
Stringified JSON that contains connector-specific configuration for the data point. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
last_updated_on str
UTC timestamp indicating when the data point was added or modified.
dataSource This property is required. String
The address of the source of the data in the asset (e.g. URL) so that a client can access the data source on the asset.
name This property is required. String
The name of the data point.
dataPointConfiguration String
Stringified JSON that contains connector-specific configuration for the data point. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
lastUpdatedOn String
UTC timestamp indicating when the data point was added or modified.

DiscoveredDataset
, DiscoveredDatasetArgs

Name This property is required. string
Name of the dataset.
DataPoints List<Pulumi.AzureNative.DeviceRegistry.Inputs.DiscoveredDataPoint>
Array of data points that are part of the dataset. Each data point can have per-data point configuration.
DatasetConfiguration string
Stringified JSON that contains connector-specific properties that describes configuration for the specific dataset.
Topic Pulumi.AzureNative.DeviceRegistry.Inputs.Topic
Object that describes the topic information for the specific dataset.
Name This property is required. string
Name of the dataset.
DataPoints []DiscoveredDataPoint
Array of data points that are part of the dataset. Each data point can have per-data point configuration.
DatasetConfiguration string
Stringified JSON that contains connector-specific properties that describes configuration for the specific dataset.
Topic Topic
Object that describes the topic information for the specific dataset.
name This property is required. String
Name of the dataset.
dataPoints List<DiscoveredDataPoint>
Array of data points that are part of the dataset. Each data point can have per-data point configuration.
datasetConfiguration String
Stringified JSON that contains connector-specific properties that describes configuration for the specific dataset.
topic Topic
Object that describes the topic information for the specific dataset.
name This property is required. string
Name of the dataset.
dataPoints DiscoveredDataPoint[]
Array of data points that are part of the dataset. Each data point can have per-data point configuration.
datasetConfiguration string
Stringified JSON that contains connector-specific properties that describes configuration for the specific dataset.
topic Topic
Object that describes the topic information for the specific dataset.
name This property is required. str
Name of the dataset.
data_points Sequence[DiscoveredDataPoint]
Array of data points that are part of the dataset. Each data point can have per-data point configuration.
dataset_configuration str
Stringified JSON that contains connector-specific properties that describes configuration for the specific dataset.
topic Topic
Object that describes the topic information for the specific dataset.
name This property is required. String
Name of the dataset.
dataPoints List<Property Map>
Array of data points that are part of the dataset. Each data point can have per-data point configuration.
datasetConfiguration String
Stringified JSON that contains connector-specific properties that describes configuration for the specific dataset.
topic Property Map
Object that describes the topic information for the specific dataset.

DiscoveredDatasetResponse
, DiscoveredDatasetResponseArgs

Name This property is required. string
Name of the dataset.
DataPoints List<Pulumi.AzureNative.DeviceRegistry.Inputs.DiscoveredDataPointResponse>
Array of data points that are part of the dataset. Each data point can have per-data point configuration.
DatasetConfiguration string
Stringified JSON that contains connector-specific properties that describes configuration for the specific dataset.
Topic Pulumi.AzureNative.DeviceRegistry.Inputs.TopicResponse
Object that describes the topic information for the specific dataset.
Name This property is required. string
Name of the dataset.
DataPoints []DiscoveredDataPointResponse
Array of data points that are part of the dataset. Each data point can have per-data point configuration.
DatasetConfiguration string
Stringified JSON that contains connector-specific properties that describes configuration for the specific dataset.
Topic TopicResponse
Object that describes the topic information for the specific dataset.
name This property is required. String
Name of the dataset.
dataPoints List<DiscoveredDataPointResponse>
Array of data points that are part of the dataset. Each data point can have per-data point configuration.
datasetConfiguration String
Stringified JSON that contains connector-specific properties that describes configuration for the specific dataset.
topic TopicResponse
Object that describes the topic information for the specific dataset.
name This property is required. string
Name of the dataset.
dataPoints DiscoveredDataPointResponse[]
Array of data points that are part of the dataset. Each data point can have per-data point configuration.
datasetConfiguration string
Stringified JSON that contains connector-specific properties that describes configuration for the specific dataset.
topic TopicResponse
Object that describes the topic information for the specific dataset.
name This property is required. str
Name of the dataset.
data_points Sequence[DiscoveredDataPointResponse]
Array of data points that are part of the dataset. Each data point can have per-data point configuration.
dataset_configuration str
Stringified JSON that contains connector-specific properties that describes configuration for the specific dataset.
topic TopicResponse
Object that describes the topic information for the specific dataset.
name This property is required. String
Name of the dataset.
dataPoints List<Property Map>
Array of data points that are part of the dataset. Each data point can have per-data point configuration.
datasetConfiguration String
Stringified JSON that contains connector-specific properties that describes configuration for the specific dataset.
topic Property Map
Object that describes the topic information for the specific dataset.

DiscoveredEvent
, DiscoveredEventArgs

EventNotifier This property is required. string
The address of the notifier of the event in the asset (e.g. URL) so that a client can access the event on the asset.
Name This property is required. string
The name of the event.
EventConfiguration string
Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
LastUpdatedOn string
UTC timestamp indicating when the event was added or modified.
Topic Pulumi.AzureNative.DeviceRegistry.Inputs.Topic
Object that describes the topic information for the specific event.
EventNotifier This property is required. string
The address of the notifier of the event in the asset (e.g. URL) so that a client can access the event on the asset.
Name This property is required. string
The name of the event.
EventConfiguration string
Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
LastUpdatedOn string
UTC timestamp indicating when the event was added or modified.
Topic Topic
Object that describes the topic information for the specific event.
eventNotifier This property is required. String
The address of the notifier of the event in the asset (e.g. URL) so that a client can access the event on the asset.
name This property is required. String
The name of the event.
eventConfiguration String
Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
lastUpdatedOn String
UTC timestamp indicating when the event was added or modified.
topic Topic
Object that describes the topic information for the specific event.
eventNotifier This property is required. string
The address of the notifier of the event in the asset (e.g. URL) so that a client can access the event on the asset.
name This property is required. string
The name of the event.
eventConfiguration string
Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
lastUpdatedOn string
UTC timestamp indicating when the event was added or modified.
topic Topic
Object that describes the topic information for the specific event.
event_notifier This property is required. str
The address of the notifier of the event in the asset (e.g. URL) so that a client can access the event on the asset.
name This property is required. str
The name of the event.
event_configuration str
Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
last_updated_on str
UTC timestamp indicating when the event was added or modified.
topic Topic
Object that describes the topic information for the specific event.
eventNotifier This property is required. String
The address of the notifier of the event in the asset (e.g. URL) so that a client can access the event on the asset.
name This property is required. String
The name of the event.
eventConfiguration String
Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
lastUpdatedOn String
UTC timestamp indicating when the event was added or modified.
topic Property Map
Object that describes the topic information for the specific event.

DiscoveredEventResponse
, DiscoveredEventResponseArgs

EventNotifier This property is required. string
The address of the notifier of the event in the asset (e.g. URL) so that a client can access the event on the asset.
Name This property is required. string
The name of the event.
EventConfiguration string
Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
LastUpdatedOn string
UTC timestamp indicating when the event was added or modified.
Topic Pulumi.AzureNative.DeviceRegistry.Inputs.TopicResponse
Object that describes the topic information for the specific event.
EventNotifier This property is required. string
The address of the notifier of the event in the asset (e.g. URL) so that a client can access the event on the asset.
Name This property is required. string
The name of the event.
EventConfiguration string
Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
LastUpdatedOn string
UTC timestamp indicating when the event was added or modified.
Topic TopicResponse
Object that describes the topic information for the specific event.
eventNotifier This property is required. String
The address of the notifier of the event in the asset (e.g. URL) so that a client can access the event on the asset.
name This property is required. String
The name of the event.
eventConfiguration String
Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
lastUpdatedOn String
UTC timestamp indicating when the event was added or modified.
topic TopicResponse
Object that describes the topic information for the specific event.
eventNotifier This property is required. string
The address of the notifier of the event in the asset (e.g. URL) so that a client can access the event on the asset.
name This property is required. string
The name of the event.
eventConfiguration string
Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
lastUpdatedOn string
UTC timestamp indicating when the event was added or modified.
topic TopicResponse
Object that describes the topic information for the specific event.
event_notifier This property is required. str
The address of the notifier of the event in the asset (e.g. URL) so that a client can access the event on the asset.
name This property is required. str
The name of the event.
event_configuration str
Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
last_updated_on str
UTC timestamp indicating when the event was added or modified.
topic TopicResponse
Object that describes the topic information for the specific event.
eventNotifier This property is required. String
The address of the notifier of the event in the asset (e.g. URL) so that a client can access the event on the asset.
name This property is required. String
The name of the event.
eventConfiguration String
Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
lastUpdatedOn String
UTC timestamp indicating when the event was added or modified.
topic Property Map
Object that describes the topic information for the specific event.

ExtendedLocation
, ExtendedLocationArgs

Name This property is required. string
The extended location name.
Type This property is required. string
The extended location type.
Name This property is required. string
The extended location name.
Type This property is required. string
The extended location type.
name This property is required. String
The extended location name.
type This property is required. String
The extended location type.
name This property is required. string
The extended location name.
type This property is required. string
The extended location type.
name This property is required. str
The extended location name.
type This property is required. str
The extended location type.
name This property is required. String
The extended location name.
type This property is required. String
The extended location type.

ExtendedLocationResponse
, ExtendedLocationResponseArgs

Name This property is required. string
The extended location name.
Type This property is required. string
The extended location type.
Name This property is required. string
The extended location name.
Type This property is required. string
The extended location type.
name This property is required. String
The extended location name.
type This property is required. String
The extended location type.
name This property is required. string
The extended location name.
type This property is required. string
The extended location type.
name This property is required. str
The extended location name.
type This property is required. str
The extended location type.
name This property is required. String
The extended location name.
type This property is required. 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.

Topic
, TopicArgs

Path This property is required. string
The topic path for messages published to an MQTT broker.
Retain string | Pulumi.AzureNative.DeviceRegistry.TopicRetainType
When set to 'Keep', messages published to an MQTT broker will have the retain flag set. Default: 'Never'.
Path This property is required. string
The topic path for messages published to an MQTT broker.
Retain string | TopicRetainType
When set to 'Keep', messages published to an MQTT broker will have the retain flag set. Default: 'Never'.
path This property is required. String
The topic path for messages published to an MQTT broker.
retain String | TopicRetainType
When set to 'Keep', messages published to an MQTT broker will have the retain flag set. Default: 'Never'.
path This property is required. string
The topic path for messages published to an MQTT broker.
retain string | TopicRetainType
When set to 'Keep', messages published to an MQTT broker will have the retain flag set. Default: 'Never'.
path This property is required. str
The topic path for messages published to an MQTT broker.
retain str | TopicRetainType
When set to 'Keep', messages published to an MQTT broker will have the retain flag set. Default: 'Never'.
path This property is required. String
The topic path for messages published to an MQTT broker.
retain String | "Keep" | "Never"
When set to 'Keep', messages published to an MQTT broker will have the retain flag set. Default: 'Never'.

TopicResponse
, TopicResponseArgs

Path This property is required. string
The topic path for messages published to an MQTT broker.
Retain string
When set to 'Keep', messages published to an MQTT broker will have the retain flag set. Default: 'Never'.
Path This property is required. string
The topic path for messages published to an MQTT broker.
Retain string
When set to 'Keep', messages published to an MQTT broker will have the retain flag set. Default: 'Never'.
path This property is required. String
The topic path for messages published to an MQTT broker.
retain String
When set to 'Keep', messages published to an MQTT broker will have the retain flag set. Default: 'Never'.
path This property is required. string
The topic path for messages published to an MQTT broker.
retain string
When set to 'Keep', messages published to an MQTT broker will have the retain flag set. Default: 'Never'.
path This property is required. str
The topic path for messages published to an MQTT broker.
retain str
When set to 'Keep', messages published to an MQTT broker will have the retain flag set. Default: 'Never'.
path This property is required. String
The topic path for messages published to an MQTT broker.
retain String
When set to 'Keep', messages published to an MQTT broker will have the retain flag set. Default: 'Never'.

TopicRetainType
, TopicRetainTypeArgs

Keep
KeepRetain the messages.
Never
NeverNever retain messages.
TopicRetainTypeKeep
KeepRetain the messages.
TopicRetainTypeNever
NeverNever retain messages.
Keep
KeepRetain the messages.
Never
NeverNever retain messages.
Keep
KeepRetain the messages.
Never
NeverNever retain messages.
KEEP
KeepRetain the messages.
NEVER
NeverNever retain messages.
"Keep"
KeepRetain the messages.
"Never"
NeverNever retain messages.

Import

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

$ pulumi import azure-native:deviceregistry:DiscoveredAsset my-discoveredasset /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeviceRegistry/discoveredAssets/{discoveredAssetName} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
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.2.0 published on Monday, Apr 14, 2025 by Pulumi