azure-native.deviceregistry.DiscoveredAssetEndpointProfile
Explore with Pulumi AI
Discovered Asset Endpoint Profile definition.
Uses 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,
    });
});
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
	})
}
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());
    }
}
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,
});
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)
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
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 string
- The unique name of the resource.
- args DiscoveredAssetEndpointProfileArgs
- 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 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 string
- The unique name of the resource.
- args DiscoveredAssetEndpointProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DiscoveredAssetEndpointProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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 = new AzureNative.DeviceRegistry.Inputs.ExtendedLocationArgs
    {
        Name = "string",
        Type = "string",
    },
    ResourceGroupName = "string",
    TargetAddress = "string",
    Version = 0,
    AdditionalConfiguration = "string",
    DiscoveredAssetEndpointProfileName = "string",
    Location = "string",
    SupportedAuthenticationMethods = new[]
    {
        "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := deviceregistry.NewDiscoveredAssetEndpointProfile(ctx, "discoveredAssetEndpointProfileResource", &deviceregistry.DiscoveredAssetEndpointProfileArgs{
	DiscoveryId:         pulumi.String("string"),
	EndpointProfileType: pulumi.String("string"),
	ExtendedLocation: &deviceregistry.ExtendedLocationArgs{
		Name: pulumi.String("string"),
		Type: pulumi.String("string"),
	},
	ResourceGroupName:                  pulumi.String("string"),
	TargetAddress:                      pulumi.String("string"),
	Version:                            pulumi.Float64(0),
	AdditionalConfiguration:            pulumi.String("string"),
	DiscoveredAssetEndpointProfileName: pulumi.String("string"),
	Location:                           pulumi.String("string"),
	SupportedAuthenticationMethods: pulumi.StringArray{
		pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var discoveredAssetEndpointProfileResource = new DiscoveredAssetEndpointProfile("discoveredAssetEndpointProfileResource", DiscoveredAssetEndpointProfileArgs.builder()
    .discoveryId("string")
    .endpointProfileType("string")
    .extendedLocation(ExtendedLocationArgs.builder()
        .name("string")
        .type("string")
        .build())
    .resourceGroupName("string")
    .targetAddress("string")
    .version(0)
    .additionalConfiguration("string")
    .discoveredAssetEndpointProfileName("string")
    .location("string")
    .supportedAuthenticationMethods("string")
    .tags(Map.of("string", "string"))
    .build());
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",
    })
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",
    },
});
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
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 string
- Identifier used to detect changes in the asset endpoint profile.
- EndpointProfile stringType 
- Defines the configuration for the connector type that is being used with the endpoint profile.
- ExtendedLocation Pulumi.Azure Native. Device Registry. Inputs. Extended Location 
- The extended location.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- TargetAddress 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 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).
- DiscoveredAsset stringEndpoint Profile Name 
- Discovered Asset Endpoint Profile name parameter.
- Location string
- The geo-location where the resource lives
- SupportedAuthentication List<Union<string, Pulumi.Methods Azure Native. Device Registry. Authentication Method>> 
- List of supported authentication methods supported by the target server.
- Dictionary<string, string>
- Resource tags.
- DiscoveryId string
- Identifier used to detect changes in the asset endpoint profile.
- EndpointProfile stringType 
- Defines the configuration for the connector type that is being used with the endpoint profile.
- ExtendedLocation ExtendedLocation Args 
- The extended location.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- TargetAddress 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 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).
- DiscoveredAsset stringEndpoint Profile Name 
- Discovered Asset Endpoint Profile name parameter.
- Location string
- The geo-location where the resource lives
- SupportedAuthentication []stringMethods 
- List of supported authentication methods supported by the target server.
- map[string]string
- Resource tags.
- discoveryId String
- Identifier used to detect changes in the asset endpoint profile.
- endpointProfile StringType 
- Defines the configuration for the connector type that is being used with the endpoint profile.
- extendedLocation ExtendedLocation 
- The extended location.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- targetAddress 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 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).
- discoveredAsset StringEndpoint Profile Name 
- Discovered Asset Endpoint Profile name parameter.
- location String
- The geo-location where the resource lives
- supportedAuthentication List<Either<String,AuthenticationMethods Method>> 
- List of supported authentication methods supported by the target server.
- Map<String,String>
- Resource tags.
- discoveryId string
- Identifier used to detect changes in the asset endpoint profile.
- endpointProfile stringType 
- Defines the configuration for the connector type that is being used with the endpoint profile.
- extendedLocation ExtendedLocation 
- The extended location.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- targetAddress 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 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).
- discoveredAsset stringEndpoint Profile Name 
- Discovered Asset Endpoint Profile name parameter.
- location string
- The geo-location where the resource lives
- supportedAuthentication (string | AuthenticationMethods Method)[] 
- List of supported authentication methods supported by the target server.
- {[key: string]: string}
- Resource tags.
- discovery_id str
- Identifier used to detect changes in the asset endpoint profile.
- endpoint_profile_ strtype 
- Defines the configuration for the connector type that is being used with the endpoint profile.
- extended_location ExtendedLocation Args 
- The extended location.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- target_address 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 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_ strendpoint_ profile_ name 
- Discovered Asset Endpoint Profile name parameter.
- location str
- The geo-location where the resource lives
- supported_authentication_ Sequence[Union[str, Authenticationmethods Method]] 
- List of supported authentication methods supported by the target server.
- Mapping[str, str]
- Resource tags.
- discoveryId String
- Identifier used to detect changes in the asset endpoint profile.
- endpointProfile StringType 
- Defines the configuration for the connector type that is being used with the endpoint profile.
- extendedLocation Property Map
- The extended location.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- targetAddress 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 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).
- discoveredAsset StringEndpoint Profile Name 
- Discovered Asset Endpoint Profile name parameter.
- location String
- The geo-location where the resource lives
- supportedAuthentication List<String | "Anonymous" | "Certificate" | "UsernameMethods Password"> 
- List of supported authentication methods supported by the target server.
- 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.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
- ProvisioningState string
- Provisioning state of the resource.
- SystemData 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
- provisioningState String
- Provisioning state of the resource.
- systemData 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
- provisioningState string
- Provisioning state of the resource.
- systemData 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
- 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.
- AuthenticationMethod Anonymous 
- AnonymousThe user authentication method is anonymous.
- AuthenticationMethod Certificate 
- CertificateThe user authentication method is an x509 certificate.
- AuthenticationMethod 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.
- 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    
ExtendedLocationResponse, ExtendedLocationResponseArgs      
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0