1. Packages
  2. Azure Native v2
  3. API Docs
  4. deviceregistry
  5. DiscoveredAssetEndpointProfile
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.deviceregistry.DiscoveredAssetEndpointProfile

Explore with Pulumi AI

Discovered Asset Endpoint Profile definition. Azure REST API version: 2024-09-01-preview.

Example Usage

Create_DiscoveredAssetEndpointProfile

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

return await Deployment.RunAsync(() => 
{
    var discoveredAssetEndpointProfile = new AzureNative.DeviceRegistry.DiscoveredAssetEndpointProfile("discoveredAssetEndpointProfile", new()
    {
        AdditionalConfiguration = "{\"foo\": \"bar\"}",
        DiscoveredAssetEndpointProfileName = "my-discoveredassetendpointprofile",
        DiscoveryId = "11111111-1111-1111-1111-111111111111",
        EndpointProfileType = "myEndpointProfileType",
        ExtendedLocation = new AzureNative.DeviceRegistry.Inputs.ExtendedLocationArgs
        {
            Name = "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1",
            Type = "CustomLocation",
        },
        Location = "West Europe",
        ResourceGroupName = "myResourceGroup",
        SupportedAuthenticationMethods = new[]
        {
            AzureNative.DeviceRegistry.AuthenticationMethod.Anonymous,
            AzureNative.DeviceRegistry.AuthenticationMethod.Certificate,
            AzureNative.DeviceRegistry.AuthenticationMethod.UsernamePassword,
        },
        Tags = 
        {
            { "site", "building-1" },
        },
        TargetAddress = "https://www.example.com/myTargetAddress",
        Version = 73766,
    });

});
Copy
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.NewDiscoveredAssetEndpointProfile(ctx, "discoveredAssetEndpointProfile", &deviceregistry.DiscoveredAssetEndpointProfileArgs{
			AdditionalConfiguration:            pulumi.String("{\"foo\": \"bar\"}"),
			DiscoveredAssetEndpointProfileName: pulumi.String("my-discoveredassetendpointprofile"),
			DiscoveryId:                        pulumi.String("11111111-1111-1111-1111-111111111111"),
			EndpointProfileType:                pulumi.String("myEndpointProfileType"),
			ExtendedLocation: &deviceregistry.ExtendedLocationArgs{
				Name: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1"),
				Type: pulumi.String("CustomLocation"),
			},
			Location:          pulumi.String("West Europe"),
			ResourceGroupName: pulumi.String("myResourceGroup"),
			SupportedAuthenticationMethods: pulumi.StringArray{
				pulumi.String(deviceregistry.AuthenticationMethodAnonymous),
				pulumi.String(deviceregistry.AuthenticationMethodCertificate),
				pulumi.String(deviceregistry.AuthenticationMethodUsernamePassword),
			},
			Tags: pulumi.StringMap{
				"site": pulumi.String("building-1"),
			},
			TargetAddress: pulumi.String("https://www.example.com/myTargetAddress"),
			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.DiscoveredAssetEndpointProfile;
import com.pulumi.azurenative.deviceregistry.DiscoveredAssetEndpointProfileArgs;
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 discoveredAssetEndpointProfile = new DiscoveredAssetEndpointProfile("discoveredAssetEndpointProfile", DiscoveredAssetEndpointProfileArgs.builder()
            .additionalConfiguration("{\"foo\": \"bar\"}")
            .discoveredAssetEndpointProfileName("my-discoveredassetendpointprofile")
            .discoveryId("11111111-1111-1111-1111-111111111111")
            .endpointProfileType("myEndpointProfileType")
            .extendedLocation(ExtendedLocationArgs.builder()
                .name("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1")
                .type("CustomLocation")
                .build())
            .location("West Europe")
            .resourceGroupName("myResourceGroup")
            .supportedAuthenticationMethods(            
                "Anonymous",
                "Certificate",
                "UsernamePassword")
            .tags(Map.of("site", "building-1"))
            .targetAddress("https://www.example.com/myTargetAddress")
            .version(73766)
            .build());

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

const discoveredAssetEndpointProfile = new azure_native.deviceregistry.DiscoveredAssetEndpointProfile("discoveredAssetEndpointProfile", {
    additionalConfiguration: "{\"foo\": \"bar\"}",
    discoveredAssetEndpointProfileName: "my-discoveredassetendpointprofile",
    discoveryId: "11111111-1111-1111-1111-111111111111",
    endpointProfileType: "myEndpointProfileType",
    extendedLocation: {
        name: "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1",
        type: "CustomLocation",
    },
    location: "West Europe",
    resourceGroupName: "myResourceGroup",
    supportedAuthenticationMethods: [
        azure_native.deviceregistry.AuthenticationMethod.Anonymous,
        azure_native.deviceregistry.AuthenticationMethod.Certificate,
        azure_native.deviceregistry.AuthenticationMethod.UsernamePassword,
    ],
    tags: {
        site: "building-1",
    },
    targetAddress: "https://www.example.com/myTargetAddress",
    version: 73766,
});
Copy
import pulumi
import pulumi_azure_native as azure_native

discovered_asset_endpoint_profile = azure_native.deviceregistry.DiscoveredAssetEndpointProfile("discoveredAssetEndpointProfile",
    additional_configuration="{\"foo\": \"bar\"}",
    discovered_asset_endpoint_profile_name="my-discoveredassetendpointprofile",
    discovery_id="11111111-1111-1111-1111-111111111111",
    endpoint_profile_type="myEndpointProfileType",
    extended_location={
        "name": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1",
        "type": "CustomLocation",
    },
    location="West Europe",
    resource_group_name="myResourceGroup",
    supported_authentication_methods=[
        azure_native.deviceregistry.AuthenticationMethod.ANONYMOUS,
        azure_native.deviceregistry.AuthenticationMethod.CERTIFICATE,
        azure_native.deviceregistry.AuthenticationMethod.USERNAME_PASSWORD,
    ],
    tags={
        "site": "building-1",
    },
    target_address="https://www.example.com/myTargetAddress",
    version=73766)
Copy
resources:
  discoveredAssetEndpointProfile:
    type: azure-native:deviceregistry:DiscoveredAssetEndpointProfile
    properties:
      additionalConfiguration: '{"foo": "bar"}'
      discoveredAssetEndpointProfileName: my-discoveredassetendpointprofile
      discoveryId: 11111111-1111-1111-1111-111111111111
      endpointProfileType: myEndpointProfileType
      extendedLocation:
        name: /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1
        type: CustomLocation
      location: West Europe
      resourceGroupName: myResourceGroup
      supportedAuthenticationMethods:
        - Anonymous
        - Certificate
        - UsernamePassword
      tags:
        site: building-1
      targetAddress: https://www.example.com/myTargetAddress
      version: 73766
Copy

Create DiscoveredAssetEndpointProfile Resource

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

Constructor syntax

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

@overload
def DiscoveredAssetEndpointProfile(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   discovery_id: Optional[str] = None,
                                   endpoint_profile_type: Optional[str] = None,
                                   extended_location: Optional[ExtendedLocationArgs] = None,
                                   resource_group_name: Optional[str] = None,
                                   target_address: Optional[str] = None,
                                   version: Optional[float] = None,
                                   additional_configuration: Optional[str] = None,
                                   discovered_asset_endpoint_profile_name: Optional[str] = None,
                                   location: Optional[str] = None,
                                   supported_authentication_methods: Optional[Sequence[Union[str, AuthenticationMethod]]] = None,
                                   tags: Optional[Mapping[str, str]] = None)
func NewDiscoveredAssetEndpointProfile(ctx *Context, name string, args DiscoveredAssetEndpointProfileArgs, opts ...ResourceOption) (*DiscoveredAssetEndpointProfile, error)
public DiscoveredAssetEndpointProfile(string name, DiscoveredAssetEndpointProfileArgs args, CustomResourceOptions? opts = null)
public DiscoveredAssetEndpointProfile(String name, DiscoveredAssetEndpointProfileArgs args)
public DiscoveredAssetEndpointProfile(String name, DiscoveredAssetEndpointProfileArgs args, CustomResourceOptions options)
type: azure-native:deviceregistry:DiscoveredAssetEndpointProfile
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. DiscoveredAssetEndpointProfileArgs
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. DiscoveredAssetEndpointProfileArgs
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. DiscoveredAssetEndpointProfileArgs
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. DiscoveredAssetEndpointProfileArgs
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. DiscoveredAssetEndpointProfileArgs
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 discoveredAssetEndpointProfileResource = new AzureNative.Deviceregistry.DiscoveredAssetEndpointProfile("discoveredAssetEndpointProfileResource", new()
{
    DiscoveryId = "string",
    EndpointProfileType = "string",
    ExtendedLocation = 
    {
        { "name", "string" },
        { "type", "string" },
    },
    ResourceGroupName = "string",
    TargetAddress = "string",
    Version = 0,
    AdditionalConfiguration = "string",
    DiscoveredAssetEndpointProfileName = "string",
    Location = "string",
    SupportedAuthenticationMethods = new[]
    {
        "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := deviceregistry.NewDiscoveredAssetEndpointProfile(ctx, "discoveredAssetEndpointProfileResource", &deviceregistry.DiscoveredAssetEndpointProfileArgs{
	DiscoveryId:         "string",
	EndpointProfileType: "string",
	ExtendedLocation: map[string]interface{}{
		"name": "string",
		"type": "string",
	},
	ResourceGroupName:                  "string",
	TargetAddress:                      "string",
	Version:                            0,
	AdditionalConfiguration:            "string",
	DiscoveredAssetEndpointProfileName: "string",
	Location:                           "string",
	SupportedAuthenticationMethods: []string{
		"string",
	},
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var discoveredAssetEndpointProfileResource = new DiscoveredAssetEndpointProfile("discoveredAssetEndpointProfileResource", DiscoveredAssetEndpointProfileArgs.builder()
    .discoveryId("string")
    .endpointProfileType("string")
    .extendedLocation(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .resourceGroupName("string")
    .targetAddress("string")
    .version(0)
    .additionalConfiguration("string")
    .discoveredAssetEndpointProfileName("string")
    .location("string")
    .supportedAuthenticationMethods("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
discovered_asset_endpoint_profile_resource = azure_native.deviceregistry.DiscoveredAssetEndpointProfile("discoveredAssetEndpointProfileResource",
    discovery_id=string,
    endpoint_profile_type=string,
    extended_location={
        name: string,
        type: string,
    },
    resource_group_name=string,
    target_address=string,
    version=0,
    additional_configuration=string,
    discovered_asset_endpoint_profile_name=string,
    location=string,
    supported_authentication_methods=[string],
    tags={
        string: string,
    })
Copy
const discoveredAssetEndpointProfileResource = new azure_native.deviceregistry.DiscoveredAssetEndpointProfile("discoveredAssetEndpointProfileResource", {
    discoveryId: "string",
    endpointProfileType: "string",
    extendedLocation: {
        name: "string",
        type: "string",
    },
    resourceGroupName: "string",
    targetAddress: "string",
    version: 0,
    additionalConfiguration: "string",
    discoveredAssetEndpointProfileName: "string",
    location: "string",
    supportedAuthenticationMethods: ["string"],
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:deviceregistry:DiscoveredAssetEndpointProfile
properties:
    additionalConfiguration: string
    discoveredAssetEndpointProfileName: string
    discoveryId: string
    endpointProfileType: string
    extendedLocation:
        name: string
        type: string
    location: string
    resourceGroupName: string
    supportedAuthenticationMethods:
        - string
    tags:
        string: string
    targetAddress: string
    version: 0
Copy

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

DiscoveryId This property is required. string
Identifier used to detect changes in the asset endpoint profile.
EndpointProfileType This property is required. string
Defines the configuration for the connector type that is being used with the endpoint profile.
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.
TargetAddress This property is required. string
The local valid URI specifying the network address/DNS name of a southbound device. The scheme part of the targetAddress URI specifies the type of the device. The additionalConfiguration field holds further connector type specific configuration.
Version This property is required. double
An integer that is incremented each time the resource is modified.
AdditionalConfiguration string
Stringified JSON that contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
DiscoveredAssetEndpointProfileName Changes to this property will trigger replacement. string
Discovered Asset Endpoint Profile name parameter.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
SupportedAuthenticationMethods List<Union<string, Pulumi.AzureNative.DeviceRegistry.AuthenticationMethod>>
List of supported authentication methods supported by the target server.
Tags Dictionary<string, string>
Resource tags.
DiscoveryId This property is required. string
Identifier used to detect changes in the asset endpoint profile.
EndpointProfileType This property is required. string
Defines the configuration for the connector type that is being used with the endpoint profile.
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.
TargetAddress This property is required. string
The local valid URI specifying the network address/DNS name of a southbound device. The scheme part of the targetAddress URI specifies the type of the device. The additionalConfiguration field holds further connector type specific configuration.
Version This property is required. float64
An integer that is incremented each time the resource is modified.
AdditionalConfiguration string
Stringified JSON that contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
DiscoveredAssetEndpointProfileName Changes to this property will trigger replacement. string
Discovered Asset Endpoint Profile name parameter.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
SupportedAuthenticationMethods []string
List of supported authentication methods supported by the target server.
Tags map[string]string
Resource tags.
discoveryId This property is required. String
Identifier used to detect changes in the asset endpoint profile.
endpointProfileType This property is required. String
Defines the configuration for the connector type that is being used with the endpoint profile.
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.
targetAddress This property is required. String
The local valid URI specifying the network address/DNS name of a southbound device. The scheme part of the targetAddress URI specifies the type of the device. The additionalConfiguration field holds further connector type specific configuration.
version This property is required. Double
An integer that is incremented each time the resource is modified.
additionalConfiguration String
Stringified JSON that contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
discoveredAssetEndpointProfileName Changes to this property will trigger replacement. String
Discovered Asset Endpoint Profile name parameter.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
supportedAuthenticationMethods List<Either<String,AuthenticationMethod>>
List of supported authentication methods supported by the target server.
tags Map<String,String>
Resource tags.
discoveryId This property is required. string
Identifier used to detect changes in the asset endpoint profile.
endpointProfileType This property is required. string
Defines the configuration for the connector type that is being used with the endpoint profile.
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.
targetAddress This property is required. string
The local valid URI specifying the network address/DNS name of a southbound device. The scheme part of the targetAddress URI specifies the type of the device. The additionalConfiguration field holds further connector type specific configuration.
version This property is required. number
An integer that is incremented each time the resource is modified.
additionalConfiguration string
Stringified JSON that contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
discoveredAssetEndpointProfileName Changes to this property will trigger replacement. string
Discovered Asset Endpoint Profile name parameter.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
supportedAuthenticationMethods (string | AuthenticationMethod)[]
List of supported authentication methods supported by the target server.
tags {[key: string]: string}
Resource tags.
discovery_id This property is required. str
Identifier used to detect changes in the asset endpoint profile.
endpoint_profile_type This property is required. str
Defines the configuration for the connector type that is being used with the endpoint profile.
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.
target_address This property is required. str
The local valid URI specifying the network address/DNS name of a southbound device. The scheme part of the targetAddress URI specifies the type of the device. The additionalConfiguration field holds further connector type specific configuration.
version This property is required. float
An integer that is incremented each time the resource is modified.
additional_configuration str
Stringified JSON that contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
discovered_asset_endpoint_profile_name Changes to this property will trigger replacement. str
Discovered Asset Endpoint Profile name parameter.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
supported_authentication_methods Sequence[Union[str, AuthenticationMethod]]
List of supported authentication methods supported by the target server.
tags Mapping[str, str]
Resource tags.
discoveryId This property is required. String
Identifier used to detect changes in the asset endpoint profile.
endpointProfileType This property is required. String
Defines the configuration for the connector type that is being used with the endpoint profile.
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.
targetAddress This property is required. String
The local valid URI specifying the network address/DNS name of a southbound device. The scheme part of the targetAddress URI specifies the type of the device. The additionalConfiguration field holds further connector type specific configuration.
version This property is required. Number
An integer that is incremented each time the resource is modified.
additionalConfiguration String
Stringified JSON that contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
discoveredAssetEndpointProfileName Changes to this property will trigger replacement. String
Discovered Asset Endpoint Profile name parameter.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
supportedAuthenticationMethods List<String | "Anonymous" | "Certificate" | "UsernamePassword">
List of supported authentication methods supported by the target server.
tags Map<String>
Resource tags.

Outputs

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

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"
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"
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"
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"
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"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
Provisioning state of the resource.
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

AuthenticationMethod
, AuthenticationMethodArgs

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

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.

Import

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

$ pulumi import azure-native:deviceregistry:DiscoveredAssetEndpointProfile my-assetendpointprofile /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeviceRegistry/discoveredAssetEndpointProfiles/{discoveredAssetEndpointProfileName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0