azure-native.deviceregistry.DiscoveredAsset
Explore with Pulumi AI
Discovered Asset definition. Azure REST 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,
});
});
package main
import (
deviceregistry "github.com/pulumi/pulumi-azure-native-sdk/deviceregistry/v2"
"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
})
}
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)
.build());
}
}
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)
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,
});
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
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 string
- The unique name of the resource.
- args DiscoveredAssetArgs
- 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 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 string
- The unique name of the resource.
- args DiscoveredAssetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DiscoveredAssetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
},
},
},
});
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"),
},
},
},
})
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());
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",
},
}])
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",
},
}],
});
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
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:
- Asset
Endpoint stringProfile Ref - 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 string - Identifier used to detect changes in the asset.
- Extended
Location Pulumi.Azure Native. Device Registry. Inputs. Extended Location - The extended location.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Version double
- An integer that is incremented each time the resource is modified.
- Datasets
List<Pulumi.
Azure Native. Device Registry. Inputs. Discovered Dataset> - Array of datasets that are part of the asset. Each dataset spec describes the data points that make up the set.
- Default
Datasets stringConfiguration - 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 stringConfiguration - 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 Pulumi.Azure Native. Device Registry. Inputs. Topic - Object that describes the default topic information for the asset.
- Discovered
Asset stringName - Discovered Asset name parameter.
- Documentation
Uri string - Reference to the documentation.
- Events
List<Pulumi.
Azure Native. Device Registry. Inputs. Discovered Event> - Array of events that are part of the asset. Each event can have per-event configuration.
- Hardware
Revision string - Revision number of the hardware.
- Location string
- The geo-location where the resource lives
- Manufacturer string
- Asset manufacturer name.
- Manufacturer
Uri string - Asset manufacturer URI.
- Model string
- Asset model name.
- Product
Code string - Asset product code.
- Serial
Number string - Asset serial number.
- Software
Revision string - Revision number of the software.
- Dictionary<string, string>
- Resource tags.
- Asset
Endpoint stringProfile Ref - 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 string - Identifier used to detect changes in the asset.
- Extended
Location ExtendedLocation Args - The extended location.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Version float64
- An integer that is incremented each time the resource is modified.
- Datasets
[]Discovered
Dataset Args - Array of datasets that are part of the asset. Each dataset spec describes the data points that make up the set.
- Default
Datasets stringConfiguration - 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 stringConfiguration - 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 stringName - Discovered Asset name parameter.
- Documentation
Uri string - Reference to the documentation.
- Events
[]Discovered
Event Args - Array of events that are part of the asset. Each event can have per-event configuration.
- Hardware
Revision string - Revision number of the hardware.
- Location string
- The geo-location where the resource lives
- Manufacturer string
- Asset manufacturer name.
- Manufacturer
Uri string - Asset manufacturer URI.
- Model string
- Asset model name.
- Product
Code string - Asset product code.
- Serial
Number string - Asset serial number.
- Software
Revision string - Revision number of the software.
- map[string]string
- Resource tags.
- asset
Endpoint StringProfile Ref - 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 String - Identifier used to detect changes in the asset.
- extended
Location ExtendedLocation - The extended location.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- version Double
- An integer that is incremented each time the resource is modified.
- datasets
List<Discovered
Dataset> - Array of datasets that are part of the asset. Each dataset spec describes the data points that make up the set.
- default
Datasets StringConfiguration - 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 StringConfiguration - 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 Topic - Object that describes the default topic information for the asset.
- discovered
Asset StringName - Discovered Asset name parameter.
- documentation
Uri String - Reference to the documentation.
- events
List<Discovered
Event> - Array of events that are part of the asset. Each event can have per-event configuration.
- hardware
Revision String - Revision number of the hardware.
- location String
- The geo-location where the resource lives
- manufacturer String
- Asset manufacturer name.
- manufacturer
Uri String - Asset manufacturer URI.
- model String
- Asset model name.
- product
Code String - Asset product code.
- serial
Number String - Asset serial number.
- software
Revision String - Revision number of the software.
- Map<String,String>
- Resource tags.
- asset
Endpoint stringProfile Ref - 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 string - Identifier used to detect changes in the asset.
- extended
Location ExtendedLocation - The extended location.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- version number
- An integer that is incremented each time the resource is modified.
- datasets
Discovered
Dataset[] - Array of datasets that are part of the asset. Each dataset spec describes the data points that make up the set.
- default
Datasets stringConfiguration - 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 stringConfiguration - 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 Topic - Object that describes the default topic information for the asset.
- discovered
Asset stringName - Discovered Asset name parameter.
- documentation
Uri string - Reference to the documentation.
- events
Discovered
Event[] - Array of events that are part of the asset. Each event can have per-event configuration.
- hardware
Revision string - Revision number of the hardware.
- location string
- The geo-location where the resource lives
- manufacturer string
- Asset manufacturer name.
- manufacturer
Uri string - Asset manufacturer URI.
- model string
- Asset model name.
- product
Code string - Asset product code.
- serial
Number string - Asset serial number.
- software
Revision string - Revision number of the software.
- {[key: string]: string}
- Resource tags.
- asset_
endpoint_ strprofile_ ref - 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 str - Identifier used to detect changes in the asset.
- extended_
location ExtendedLocation Args - The extended location.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- version float
- An integer that is incremented each time the resource is modified.
- datasets
Sequence[Discovered
Dataset Args] - Array of datasets that are part of the asset. Each dataset spec describes the data points that make up the set.
- default_
datasets_ strconfiguration - 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_ strconfiguration - 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_ strname - Discovered Asset name parameter.
- documentation_
uri str - Reference to the documentation.
- events
Sequence[Discovered
Event Args] - 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 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.
- Mapping[str, str]
- Resource tags.
- asset
Endpoint StringProfile Ref - 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 String - Identifier used to detect changes in the asset.
- extended
Location Property Map - The extended location.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- version 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.
- default
Datasets StringConfiguration - 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 StringConfiguration - 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 Property Map - Object that describes the default topic information for the asset.
- discovered
Asset StringName - Discovered Asset name parameter.
- documentation
Uri 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.
- hardware
Revision String - Revision number of the hardware.
- location String
- The geo-location where the resource lives
- manufacturer String
- Asset manufacturer name.
- manufacturer
Uri String - Asset manufacturer URI.
- model String
- Asset model name.
- product
Code String - Asset product code.
- serial
Number String - Asset serial number.
- software
Revision String - Revision number of the software.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the DiscoveredAsset resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning state of the resource.
- System
Data Pulumi.Azure Native. Device Registry. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning state of the resource.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning state of the resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - Provisioning state of the resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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 SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning state of the resource.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
DiscoveredDataPoint, DiscoveredDataPointArgs
- Data
Source 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 string
- The name of the data point.
- Data
Point stringConfiguration - 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 stringOn - UTC timestamp indicating when the data point was added or modified.
- Data
Source 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 string
- The name of the data point.
- Data
Point stringConfiguration - 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 stringOn - UTC timestamp indicating when the data point was added or modified.
- data
Source 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 String
- The name of the data point.
- data
Point StringConfiguration - 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 StringOn - UTC timestamp indicating when the data point was added or modified.
- data
Source 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 string
- The name of the data point.
- data
Point stringConfiguration - 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 stringOn - UTC timestamp indicating when the data point was added or modified.
- data_
source 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 str
- The name of the data point.
- data_
point_ strconfiguration - 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_ stron - UTC timestamp indicating when the data point was added or modified.
- data
Source 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 String
- The name of the data point.
- data
Point StringConfiguration - 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 StringOn - UTC timestamp indicating when the data point was added or modified.
DiscoveredDataPointResponse, DiscoveredDataPointResponseArgs
- Data
Source 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 string
- The name of the data point.
- Data
Point stringConfiguration - 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 stringOn - UTC timestamp indicating when the data point was added or modified.
- Data
Source 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 string
- The name of the data point.
- Data
Point stringConfiguration - 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 stringOn - UTC timestamp indicating when the data point was added or modified.
- data
Source 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 String
- The name of the data point.
- data
Point StringConfiguration - 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 StringOn - UTC timestamp indicating when the data point was added or modified.
- data
Source 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 string
- The name of the data point.
- data
Point stringConfiguration - 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 stringOn - UTC timestamp indicating when the data point was added or modified.
- data_
source 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 str
- The name of the data point.
- data_
point_ strconfiguration - 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_ stron - UTC timestamp indicating when the data point was added or modified.
- data
Source 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 String
- The name of the data point.
- data
Point StringConfiguration - 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 StringOn - UTC timestamp indicating when the data point was added or modified.
DiscoveredDataset, DiscoveredDatasetArgs
- Name string
- Name of the dataset.
- Data
Points List<Pulumi.Azure Native. Device Registry. Inputs. Discovered Data Point> - Array of data points that are part of the dataset. Each data point can have per-data point configuration.
- Dataset
Configuration string - Stringified JSON that contains connector-specific properties that describes configuration for the specific dataset.
- Topic
Pulumi.
Azure Native. Device Registry. Inputs. Topic - Object that describes the topic information for the specific dataset.
- Name string
- Name of the dataset.
- Data
Points []DiscoveredData Point - Array of data points that are part of the dataset. Each data point can have per-data point configuration.
- Dataset
Configuration 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 String
- Name of the dataset.
- data
Points List<DiscoveredData Point> - Array of data points that are part of the dataset. Each data point can have per-data point configuration.
- dataset
Configuration 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 string
- Name of the dataset.
- data
Points DiscoveredData Point[] - Array of data points that are part of the dataset. Each data point can have per-data point configuration.
- dataset
Configuration 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 str
- Name of the dataset.
- data_
points Sequence[DiscoveredData Point] - 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 String
- Name of the dataset.
- data
Points List<Property Map> - Array of data points that are part of the dataset. Each data point can have per-data point configuration.
- dataset
Configuration 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 string
- Name of the dataset.
- Data
Points List<Pulumi.Azure Native. Device Registry. Inputs. Discovered Data Point Response> - Array of data points that are part of the dataset. Each data point can have per-data point configuration.
- Dataset
Configuration string - Stringified JSON that contains connector-specific properties that describes configuration for the specific dataset.
- Topic
Pulumi.
Azure Native. Device Registry. Inputs. Topic Response - Object that describes the topic information for the specific dataset.
- Name string
- Name of the dataset.
- Data
Points []DiscoveredData Point Response - Array of data points that are part of the dataset. Each data point can have per-data point configuration.
- Dataset
Configuration string - Stringified JSON that contains connector-specific properties that describes configuration for the specific dataset.
- Topic
Topic
Response - Object that describes the topic information for the specific dataset.
- name String
- Name of the dataset.
- data
Points List<DiscoveredData Point Response> - Array of data points that are part of the dataset. Each data point can have per-data point configuration.
- dataset
Configuration String - Stringified JSON that contains connector-specific properties that describes configuration for the specific dataset.
- topic
Topic
Response - Object that describes the topic information for the specific dataset.
- name string
- Name of the dataset.
- data
Points DiscoveredData Point Response[] - Array of data points that are part of the dataset. Each data point can have per-data point configuration.
- dataset
Configuration string - Stringified JSON that contains connector-specific properties that describes configuration for the specific dataset.
- topic
Topic
Response - Object that describes the topic information for the specific dataset.
- name str
- Name of the dataset.
- data_
points Sequence[DiscoveredData Point Response] - 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
Response - Object that describes the topic information for the specific dataset.
- name String
- Name of the dataset.
- data
Points List<Property Map> - Array of data points that are part of the dataset. Each data point can have per-data point configuration.
- dataset
Configuration 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
- Event
Notifier 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 string
- The name of the event.
- Event
Configuration string - Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
- Last
Updated stringOn - UTC timestamp indicating when the event was added or modified.
- Topic
Pulumi.
Azure Native. Device Registry. Inputs. Topic - Object that describes the topic information for the specific event.
- Event
Notifier 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 string
- The name of the event.
- Event
Configuration string - Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
- Last
Updated stringOn - UTC timestamp indicating when the event was added or modified.
- Topic Topic
- Object that describes the topic information for the specific event.
- event
Notifier 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 String
- The name of the event.
- event
Configuration String - Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
- last
Updated StringOn - UTC timestamp indicating when the event was added or modified.
- topic Topic
- Object that describes the topic information for the specific event.
- event
Notifier 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 string
- The name of the event.
- event
Configuration string - Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
- last
Updated stringOn - UTC timestamp indicating when the event was added or modified.
- topic Topic
- Object that describes the topic information for the specific event.
- event_
notifier 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 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_ stron - UTC timestamp indicating when the event was added or modified.
- topic Topic
- Object that describes the topic information for the specific event.
- event
Notifier 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 String
- The name of the event.
- event
Configuration String - Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
- last
Updated StringOn - 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
- Event
Notifier 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 string
- The name of the event.
- Event
Configuration string - Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
- Last
Updated stringOn - UTC timestamp indicating when the event was added or modified.
- Topic
Pulumi.
Azure Native. Device Registry. Inputs. Topic Response - Object that describes the topic information for the specific event.
- Event
Notifier 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 string
- The name of the event.
- Event
Configuration string - Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
- Last
Updated stringOn - UTC timestamp indicating when the event was added or modified.
- Topic
Topic
Response - Object that describes the topic information for the specific event.
- event
Notifier 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 String
- The name of the event.
- event
Configuration String - Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
- last
Updated StringOn - UTC timestamp indicating when the event was added or modified.
- topic
Topic
Response - Object that describes the topic information for the specific event.
- event
Notifier 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 string
- The name of the event.
- event
Configuration string - Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
- last
Updated stringOn - UTC timestamp indicating when the event was added or modified.
- topic
Topic
Response - Object that describes the topic information for the specific event.
- event_
notifier 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 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_ stron - UTC timestamp indicating when the event was added or modified.
- topic
Topic
Response - Object that describes the topic information for the specific event.
- event
Notifier 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 String
- The name of the event.
- event
Configuration String - Stringified JSON that contains connector-specific configuration for the event. For OPC UA, this could include configuration like, publishingInterval, samplingInterval, and queueSize.
- last
Updated StringOn - 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
ExtendedLocationResponse, ExtendedLocationResponseArgs
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Topic, TopicArgs
- Path string
- The topic path for messages published to an MQTT broker.
- Retain
string | Pulumi.
Azure Native. Device Registry. Topic Retain Type - When set to 'Keep', messages published to an MQTT broker will have the retain flag set. Default: 'Never'.
- Path string
- The topic path for messages published to an MQTT broker.
- Retain
string | Topic
Retain Type - When set to 'Keep', messages published to an MQTT broker will have the retain flag set. Default: 'Never'.
- path String
- The topic path for messages published to an MQTT broker.
- retain
String | Topic
Retain Type - When set to 'Keep', messages published to an MQTT broker will have the retain flag set. Default: 'Never'.
- path string
- The topic path for messages published to an MQTT broker.
- retain
string | Topic
Retain Type - When set to 'Keep', messages published to an MQTT broker will have the retain flag set. Default: 'Never'.
- path str
- The topic path for messages published to an MQTT broker.
- retain
str | Topic
Retain Type - When set to 'Keep', messages published to an MQTT broker will have the retain flag set. Default: 'Never'.
- path 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
TopicRetainType, TopicRetainTypeArgs
- Keep
- KeepRetain the messages.
- Never
- NeverNever retain messages.
- Topic
Retain Type Keep - KeepRetain the messages.
- Topic
Retain Type 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.
- "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}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0