1. Packages
  2. Azure Native
  3. API Docs
  4. deviceregistry
  5. AssetEndpointProfile
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi

azure-native.deviceregistry.AssetEndpointProfile

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi

    Asset Endpoint Profile definition. Azure REST API version: 2023-11-01-preview.

    Example Usage

    Create_AssetEndpointProfile

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var assetEndpointProfile = new AzureNative.DeviceRegistry.AssetEndpointProfile("assetEndpointProfile", new()
        {
            AssetEndpointProfileName = "my-assetendpointprofile",
            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",
            Tags = 
            {
                { "site", "building-1" },
            },
            TargetAddress = "https://www.example.com/myTargetAddress",
            UserAuthentication = new AzureNative.DeviceRegistry.Inputs.UserAuthenticationArgs
            {
                Mode = AzureNative.DeviceRegistry.UserAuthenticationMode.Anonymous,
            },
        });
    
    });
    
    package main
    
    import (
    	"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.NewAssetEndpointProfile(ctx, "assetEndpointProfile", &deviceregistry.AssetEndpointProfileArgs{
    			AssetEndpointProfileName: pulumi.String("my-assetendpointprofile"),
    			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"),
    			Tags: pulumi.StringMap{
    				"site": pulumi.String("building-1"),
    			},
    			TargetAddress: pulumi.String("https://www.example.com/myTargetAddress"),
    			UserAuthentication: &deviceregistry.UserAuthenticationArgs{
    				Mode: pulumi.String(deviceregistry.UserAuthenticationModeAnonymous),
    			},
    		})
    		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.AssetEndpointProfile;
    import com.pulumi.azurenative.deviceregistry.AssetEndpointProfileArgs;
    import com.pulumi.azurenative.deviceregistry.inputs.ExtendedLocationArgs;
    import com.pulumi.azurenative.deviceregistry.inputs.UserAuthenticationArgs;
    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 assetEndpointProfile = new AssetEndpointProfile("assetEndpointProfile", AssetEndpointProfileArgs.builder()        
                .assetEndpointProfileName("my-assetendpointprofile")
                .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")
                .tags(Map.of("site", "building-1"))
                .targetAddress("https://www.example.com/myTargetAddress")
                .userAuthentication(UserAuthenticationArgs.builder()
                    .mode("Anonymous")
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    asset_endpoint_profile = azure_native.deviceregistry.AssetEndpointProfile("assetEndpointProfile",
        asset_endpoint_profile_name="my-assetendpointprofile",
        extended_location=azure_native.deviceregistry.ExtendedLocationArgs(
            name="/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1",
            type="CustomLocation",
        ),
        location="West Europe",
        resource_group_name="myResourceGroup",
        tags={
            "site": "building-1",
        },
        target_address="https://www.example.com/myTargetAddress",
        user_authentication=azure_native.deviceregistry.UserAuthenticationArgs(
            mode=azure_native.deviceregistry.UserAuthenticationMode.ANONYMOUS,
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const assetEndpointProfile = new azure_native.deviceregistry.AssetEndpointProfile("assetEndpointProfile", {
        assetEndpointProfileName: "my-assetendpointprofile",
        extendedLocation: {
            name: "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1",
            type: "CustomLocation",
        },
        location: "West Europe",
        resourceGroupName: "myResourceGroup",
        tags: {
            site: "building-1",
        },
        targetAddress: "https://www.example.com/myTargetAddress",
        userAuthentication: {
            mode: azure_native.deviceregistry.UserAuthenticationMode.Anonymous,
        },
    });
    
    resources:
      assetEndpointProfile:
        type: azure-native:deviceregistry:AssetEndpointProfile
        properties:
          assetEndpointProfileName: my-assetendpointprofile
          extendedLocation:
            name: /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1
            type: CustomLocation
          location: West Europe
          resourceGroupName: myResourceGroup
          tags:
            site: building-1
          targetAddress: https://www.example.com/myTargetAddress
          userAuthentication:
            mode: Anonymous
    

    Create AssetEndpointProfile Resource

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

    Constructor syntax

    new AssetEndpointProfile(name: string, args: AssetEndpointProfileArgs, opts?: CustomResourceOptions);
    @overload
    def AssetEndpointProfile(resource_name: str,
                             args: AssetEndpointProfileArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def AssetEndpointProfile(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             extended_location: Optional[ExtendedLocationArgs] = None,
                             resource_group_name: Optional[str] = None,
                             target_address: Optional[str] = None,
                             additional_configuration: Optional[str] = None,
                             asset_endpoint_profile_name: Optional[str] = None,
                             location: Optional[str] = None,
                             tags: Optional[Mapping[str, str]] = None,
                             transport_authentication: Optional[TransportAuthenticationArgs] = None,
                             user_authentication: Optional[UserAuthenticationArgs] = None)
    func NewAssetEndpointProfile(ctx *Context, name string, args AssetEndpointProfileArgs, opts ...ResourceOption) (*AssetEndpointProfile, error)
    public AssetEndpointProfile(string name, AssetEndpointProfileArgs args, CustomResourceOptions? opts = null)
    public AssetEndpointProfile(String name, AssetEndpointProfileArgs args)
    public AssetEndpointProfile(String name, AssetEndpointProfileArgs args, CustomResourceOptions options)
    
    type: azure-native:deviceregistry:AssetEndpointProfile
    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 AssetEndpointProfileArgs
    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 AssetEndpointProfileArgs
    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 AssetEndpointProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AssetEndpointProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AssetEndpointProfileArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var assetEndpointProfileResource = new AzureNative.DeviceRegistry.AssetEndpointProfile("assetEndpointProfileResource", new()
    {
        ExtendedLocation = new AzureNative.DeviceRegistry.Inputs.ExtendedLocationArgs
        {
            Name = "string",
            Type = "string",
        },
        ResourceGroupName = "string",
        TargetAddress = "string",
        AdditionalConfiguration = "string",
        AssetEndpointProfileName = "string",
        Location = "string",
        Tags = 
        {
            { "string", "string" },
        },
        TransportAuthentication = new AzureNative.DeviceRegistry.Inputs.TransportAuthenticationArgs
        {
            OwnCertificates = new[]
            {
                new AzureNative.DeviceRegistry.Inputs.OwnCertificateArgs
                {
                    CertPasswordReference = "string",
                    CertSecretReference = "string",
                    CertThumbprint = "string",
                },
            },
        },
        UserAuthentication = new AzureNative.DeviceRegistry.Inputs.UserAuthenticationArgs
        {
            Mode = "string",
            UsernamePasswordCredentials = new AzureNative.DeviceRegistry.Inputs.UsernamePasswordCredentialsArgs
            {
                PasswordReference = "string",
                UsernameReference = "string",
            },
            X509Credentials = new AzureNative.DeviceRegistry.Inputs.X509CredentialsArgs
            {
                CertificateReference = "string",
            },
        },
    });
    
    example, err := deviceregistry.NewAssetEndpointProfile(ctx, "assetEndpointProfileResource", &deviceregistry.AssetEndpointProfileArgs{
    ExtendedLocation: &deviceregistry.ExtendedLocationArgs{
    Name: pulumi.String("string"),
    Type: pulumi.String("string"),
    },
    ResourceGroupName: pulumi.String("string"),
    TargetAddress: pulumi.String("string"),
    AdditionalConfiguration: pulumi.String("string"),
    AssetEndpointProfileName: pulumi.String("string"),
    Location: pulumi.String("string"),
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    TransportAuthentication: &deviceregistry.TransportAuthenticationArgs{
    OwnCertificates: deviceregistry.OwnCertificateArray{
    &deviceregistry.OwnCertificateArgs{
    CertPasswordReference: pulumi.String("string"),
    CertSecretReference: pulumi.String("string"),
    CertThumbprint: pulumi.String("string"),
    },
    },
    },
    UserAuthentication: &deviceregistry.UserAuthenticationArgs{
    Mode: pulumi.String("string"),
    UsernamePasswordCredentials: &deviceregistry.UsernamePasswordCredentialsArgs{
    PasswordReference: pulumi.String("string"),
    UsernameReference: pulumi.String("string"),
    },
    X509Credentials: &deviceregistry.X509CredentialsArgs{
    CertificateReference: pulumi.String("string"),
    },
    },
    })
    
    var assetEndpointProfileResource = new AssetEndpointProfile("assetEndpointProfileResource", AssetEndpointProfileArgs.builder()        
        .extendedLocation(ExtendedLocationArgs.builder()
            .name("string")
            .type("string")
            .build())
        .resourceGroupName("string")
        .targetAddress("string")
        .additionalConfiguration("string")
        .assetEndpointProfileName("string")
        .location("string")
        .tags(Map.of("string", "string"))
        .transportAuthentication(TransportAuthenticationArgs.builder()
            .ownCertificates(OwnCertificateArgs.builder()
                .certPasswordReference("string")
                .certSecretReference("string")
                .certThumbprint("string")
                .build())
            .build())
        .userAuthentication(UserAuthenticationArgs.builder()
            .mode("string")
            .usernamePasswordCredentials(UsernamePasswordCredentialsArgs.builder()
                .passwordReference("string")
                .usernameReference("string")
                .build())
            .x509Credentials(X509CredentialsArgs.builder()
                .certificateReference("string")
                .build())
            .build())
        .build());
    
    asset_endpoint_profile_resource = azure_native.deviceregistry.AssetEndpointProfile("assetEndpointProfileResource",
        extended_location=azure_native.deviceregistry.ExtendedLocationArgs(
            name="string",
            type="string",
        ),
        resource_group_name="string",
        target_address="string",
        additional_configuration="string",
        asset_endpoint_profile_name="string",
        location="string",
        tags={
            "string": "string",
        },
        transport_authentication=azure_native.deviceregistry.TransportAuthenticationArgs(
            own_certificates=[azure_native.deviceregistry.OwnCertificateArgs(
                cert_password_reference="string",
                cert_secret_reference="string",
                cert_thumbprint="string",
            )],
        ),
        user_authentication=azure_native.deviceregistry.UserAuthenticationArgs(
            mode="string",
            username_password_credentials=azure_native.deviceregistry.UsernamePasswordCredentialsArgs(
                password_reference="string",
                username_reference="string",
            ),
            x509_credentials=azure_native.deviceregistry.X509CredentialsArgs(
                certificate_reference="string",
            ),
        ))
    
    const assetEndpointProfileResource = new azure_native.deviceregistry.AssetEndpointProfile("assetEndpointProfileResource", {
        extendedLocation: {
            name: "string",
            type: "string",
        },
        resourceGroupName: "string",
        targetAddress: "string",
        additionalConfiguration: "string",
        assetEndpointProfileName: "string",
        location: "string",
        tags: {
            string: "string",
        },
        transportAuthentication: {
            ownCertificates: [{
                certPasswordReference: "string",
                certSecretReference: "string",
                certThumbprint: "string",
            }],
        },
        userAuthentication: {
            mode: "string",
            usernamePasswordCredentials: {
                passwordReference: "string",
                usernameReference: "string",
            },
            x509Credentials: {
                certificateReference: "string",
            },
        },
    });
    
    type: azure-native:deviceregistry:AssetEndpointProfile
    properties:
        additionalConfiguration: string
        assetEndpointProfileName: string
        extendedLocation:
            name: string
            type: string
        location: string
        resourceGroupName: string
        tags:
            string: string
        targetAddress: string
        transportAuthentication:
            ownCertificates:
                - certPasswordReference: string
                  certSecretReference: string
                  certThumbprint: string
        userAuthentication:
            mode: string
            usernamePasswordCredentials:
                passwordReference: string
                usernameReference: string
            x509Credentials:
                certificateReference: string
    

    AssetEndpointProfile Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The AssetEndpointProfile resource accepts the following input properties:

    ExtendedLocation Pulumi.AzureNative.DeviceRegistry.Inputs.ExtendedLocation
    The extended location.
    ResourceGroupName string
    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.
    AdditionalConfiguration string
    Contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
    AssetEndpointProfileName string
    Asset Endpoint Profile name parameter.
    Location string
    The geo-location where the resource lives
    Tags Dictionary<string, string>
    Resource tags.
    TransportAuthentication Pulumi.AzureNative.DeviceRegistry.Inputs.TransportAuthentication
    Defines the authentication mechanism for the southbound connector connecting to the shop floor/OT device.
    UserAuthentication Pulumi.AzureNative.DeviceRegistry.Inputs.UserAuthentication
    Defines the client authentication mechanism to the server.
    ExtendedLocation ExtendedLocationArgs
    The extended location.
    ResourceGroupName string
    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.
    AdditionalConfiguration string
    Contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
    AssetEndpointProfileName string
    Asset Endpoint Profile name parameter.
    Location string
    The geo-location where the resource lives
    Tags map[string]string
    Resource tags.
    TransportAuthentication TransportAuthenticationArgs
    Defines the authentication mechanism for the southbound connector connecting to the shop floor/OT device.
    UserAuthentication UserAuthenticationArgs
    Defines the client authentication mechanism to the server.
    extendedLocation ExtendedLocation
    The extended location.
    resourceGroupName String
    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.
    additionalConfiguration String
    Contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
    assetEndpointProfileName String
    Asset Endpoint Profile name parameter.
    location String
    The geo-location where the resource lives
    tags Map<String,String>
    Resource tags.
    transportAuthentication TransportAuthentication
    Defines the authentication mechanism for the southbound connector connecting to the shop floor/OT device.
    userAuthentication UserAuthentication
    Defines the client authentication mechanism to the server.
    extendedLocation ExtendedLocation
    The extended location.
    resourceGroupName string
    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.
    additionalConfiguration string
    Contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
    assetEndpointProfileName string
    Asset Endpoint Profile name parameter.
    location string
    The geo-location where the resource lives
    tags {[key: string]: string}
    Resource tags.
    transportAuthentication TransportAuthentication
    Defines the authentication mechanism for the southbound connector connecting to the shop floor/OT device.
    userAuthentication UserAuthentication
    Defines the client authentication mechanism to the server.
    extended_location ExtendedLocationArgs
    The extended location.
    resource_group_name str
    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.
    additional_configuration str
    Contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
    asset_endpoint_profile_name str
    Asset Endpoint Profile name parameter.
    location str
    The geo-location where the resource lives
    tags Mapping[str, str]
    Resource tags.
    transport_authentication TransportAuthenticationArgs
    Defines the authentication mechanism for the southbound connector connecting to the shop floor/OT device.
    user_authentication UserAuthenticationArgs
    Defines the client authentication mechanism to the server.
    extendedLocation Property Map
    The extended location.
    resourceGroupName String
    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.
    additionalConfiguration String
    Contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
    assetEndpointProfileName String
    Asset Endpoint Profile name parameter.
    location String
    The geo-location where the resource lives
    tags Map<String>
    Resource tags.
    transportAuthentication Property Map
    Defines the authentication mechanism for the southbound connector connecting to the shop floor/OT device.
    userAuthentication Property Map
    Defines the client authentication mechanism to the server.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AssetEndpointProfile 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"
    Uuid string
    Globally unique, immutable, non-reusable id.
    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"
    Uuid string
    Globally unique, immutable, non-reusable id.
    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"
    uuid String
    Globally unique, immutable, non-reusable id.
    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"
    uuid string
    Globally unique, immutable, non-reusable id.
    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"
    uuid str
    Globally unique, immutable, non-reusable id.
    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"
    uuid String
    Globally unique, immutable, non-reusable id.

    Supporting Types

    ExtendedLocation, ExtendedLocationArgs

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

    ExtendedLocationResponse, ExtendedLocationResponseArgs

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

    OwnCertificate, OwnCertificateArgs

    CertPasswordReference string
    Secret Reference Name (Pfx or Pem password).
    CertSecretReference string
    Secret Reference name (cert and private key).
    CertThumbprint string
    Certificate thumbprint.
    CertPasswordReference string
    Secret Reference Name (Pfx or Pem password).
    CertSecretReference string
    Secret Reference name (cert and private key).
    CertThumbprint string
    Certificate thumbprint.
    certPasswordReference String
    Secret Reference Name (Pfx or Pem password).
    certSecretReference String
    Secret Reference name (cert and private key).
    certThumbprint String
    Certificate thumbprint.
    certPasswordReference string
    Secret Reference Name (Pfx or Pem password).
    certSecretReference string
    Secret Reference name (cert and private key).
    certThumbprint string
    Certificate thumbprint.
    cert_password_reference str
    Secret Reference Name (Pfx or Pem password).
    cert_secret_reference str
    Secret Reference name (cert and private key).
    cert_thumbprint str
    Certificate thumbprint.
    certPasswordReference String
    Secret Reference Name (Pfx or Pem password).
    certSecretReference String
    Secret Reference name (cert and private key).
    certThumbprint String
    Certificate thumbprint.

    OwnCertificateResponse, OwnCertificateResponseArgs

    CertPasswordReference string
    Secret Reference Name (Pfx or Pem password).
    CertSecretReference string
    Secret Reference name (cert and private key).
    CertThumbprint string
    Certificate thumbprint.
    CertPasswordReference string
    Secret Reference Name (Pfx or Pem password).
    CertSecretReference string
    Secret Reference name (cert and private key).
    CertThumbprint string
    Certificate thumbprint.
    certPasswordReference String
    Secret Reference Name (Pfx or Pem password).
    certSecretReference String
    Secret Reference name (cert and private key).
    certThumbprint String
    Certificate thumbprint.
    certPasswordReference string
    Secret Reference Name (Pfx or Pem password).
    certSecretReference string
    Secret Reference name (cert and private key).
    certThumbprint string
    Certificate thumbprint.
    cert_password_reference str
    Secret Reference Name (Pfx or Pem password).
    cert_secret_reference str
    Secret Reference name (cert and private key).
    cert_thumbprint str
    Certificate thumbprint.
    certPasswordReference String
    Secret Reference Name (Pfx or Pem password).
    certSecretReference String
    Secret Reference name (cert and private key).
    certThumbprint String
    Certificate thumbprint.

    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.

    TransportAuthentication, TransportAuthenticationArgs

    OwnCertificates List<Pulumi.AzureNative.DeviceRegistry.Inputs.OwnCertificate>
    Defines a reference to a secret which contains all certificates and private keys that can be used by the southbound connector connecting to the shop floor/OT device. The accepted extensions are .der for certificates and .pfx/.pem for private keys.
    OwnCertificates []OwnCertificate
    Defines a reference to a secret which contains all certificates and private keys that can be used by the southbound connector connecting to the shop floor/OT device. The accepted extensions are .der for certificates and .pfx/.pem for private keys.
    ownCertificates List<OwnCertificate>
    Defines a reference to a secret which contains all certificates and private keys that can be used by the southbound connector connecting to the shop floor/OT device. The accepted extensions are .der for certificates and .pfx/.pem for private keys.
    ownCertificates OwnCertificate[]
    Defines a reference to a secret which contains all certificates and private keys that can be used by the southbound connector connecting to the shop floor/OT device. The accepted extensions are .der for certificates and .pfx/.pem for private keys.
    own_certificates Sequence[OwnCertificate]
    Defines a reference to a secret which contains all certificates and private keys that can be used by the southbound connector connecting to the shop floor/OT device. The accepted extensions are .der for certificates and .pfx/.pem for private keys.
    ownCertificates List<Property Map>
    Defines a reference to a secret which contains all certificates and private keys that can be used by the southbound connector connecting to the shop floor/OT device. The accepted extensions are .der for certificates and .pfx/.pem for private keys.

    TransportAuthenticationResponse, TransportAuthenticationResponseArgs

    OwnCertificates List<Pulumi.AzureNative.DeviceRegistry.Inputs.OwnCertificateResponse>
    Defines a reference to a secret which contains all certificates and private keys that can be used by the southbound connector connecting to the shop floor/OT device. The accepted extensions are .der for certificates and .pfx/.pem for private keys.
    OwnCertificates []OwnCertificateResponse
    Defines a reference to a secret which contains all certificates and private keys that can be used by the southbound connector connecting to the shop floor/OT device. The accepted extensions are .der for certificates and .pfx/.pem for private keys.
    ownCertificates List<OwnCertificateResponse>
    Defines a reference to a secret which contains all certificates and private keys that can be used by the southbound connector connecting to the shop floor/OT device. The accepted extensions are .der for certificates and .pfx/.pem for private keys.
    ownCertificates OwnCertificateResponse[]
    Defines a reference to a secret which contains all certificates and private keys that can be used by the southbound connector connecting to the shop floor/OT device. The accepted extensions are .der for certificates and .pfx/.pem for private keys.
    own_certificates Sequence[OwnCertificateResponse]
    Defines a reference to a secret which contains all certificates and private keys that can be used by the southbound connector connecting to the shop floor/OT device. The accepted extensions are .der for certificates and .pfx/.pem for private keys.
    ownCertificates List<Property Map>
    Defines a reference to a secret which contains all certificates and private keys that can be used by the southbound connector connecting to the shop floor/OT device. The accepted extensions are .der for certificates and .pfx/.pem for private keys.

    UserAuthentication, UserAuthenticationArgs

    Mode string | Pulumi.AzureNative.DeviceRegistry.UserAuthenticationMode
    Defines the mode to authenticate the user of the client at the server.
    UsernamePasswordCredentials Pulumi.AzureNative.DeviceRegistry.Inputs.UsernamePasswordCredentials
    Defines the username and password references when UsernamePassword user authentication mode is selected.
    X509Credentials Pulumi.AzureNative.DeviceRegistry.Inputs.X509Credentials
    Defines the certificate reference when Certificate user authentication mode is selected.
    Mode string | UserAuthenticationMode
    Defines the mode to authenticate the user of the client at the server.
    UsernamePasswordCredentials UsernamePasswordCredentials
    Defines the username and password references when UsernamePassword user authentication mode is selected.
    X509Credentials X509Credentials
    Defines the certificate reference when Certificate user authentication mode is selected.
    mode String | UserAuthenticationMode
    Defines the mode to authenticate the user of the client at the server.
    usernamePasswordCredentials UsernamePasswordCredentials
    Defines the username and password references when UsernamePassword user authentication mode is selected.
    x509Credentials X509Credentials
    Defines the certificate reference when Certificate user authentication mode is selected.
    mode string | UserAuthenticationMode
    Defines the mode to authenticate the user of the client at the server.
    usernamePasswordCredentials UsernamePasswordCredentials
    Defines the username and password references when UsernamePassword user authentication mode is selected.
    x509Credentials X509Credentials
    Defines the certificate reference when Certificate user authentication mode is selected.
    mode str | UserAuthenticationMode
    Defines the mode to authenticate the user of the client at the server.
    username_password_credentials UsernamePasswordCredentials
    Defines the username and password references when UsernamePassword user authentication mode is selected.
    x509_credentials X509Credentials
    Defines the certificate reference when Certificate user authentication mode is selected.
    mode String | "Anonymous" | "Certificate" | "UsernamePassword"
    Defines the mode to authenticate the user of the client at the server.
    usernamePasswordCredentials Property Map
    Defines the username and password references when UsernamePassword user authentication mode is selected.
    x509Credentials Property Map
    Defines the certificate reference when Certificate user authentication mode is selected.

    UserAuthenticationMode, UserAuthenticationModeArgs

    Anonymous
    AnonymousThe user authentication mode is anonymous.
    Certificate
    CertificateThe user authentication mode is an x509 certificate.
    UsernamePassword
    UsernamePasswordThe user authentication mode is a username and password.
    UserAuthenticationModeAnonymous
    AnonymousThe user authentication mode is anonymous.
    UserAuthenticationModeCertificate
    CertificateThe user authentication mode is an x509 certificate.
    UserAuthenticationModeUsernamePassword
    UsernamePasswordThe user authentication mode is a username and password.
    Anonymous
    AnonymousThe user authentication mode is anonymous.
    Certificate
    CertificateThe user authentication mode is an x509 certificate.
    UsernamePassword
    UsernamePasswordThe user authentication mode is a username and password.
    Anonymous
    AnonymousThe user authentication mode is anonymous.
    Certificate
    CertificateThe user authentication mode is an x509 certificate.
    UsernamePassword
    UsernamePasswordThe user authentication mode is a username and password.
    ANONYMOUS
    AnonymousThe user authentication mode is anonymous.
    CERTIFICATE
    CertificateThe user authentication mode is an x509 certificate.
    USERNAME_PASSWORD
    UsernamePasswordThe user authentication mode is a username and password.
    "Anonymous"
    AnonymousThe user authentication mode is anonymous.
    "Certificate"
    CertificateThe user authentication mode is an x509 certificate.
    "UsernamePassword"
    UsernamePasswordThe user authentication mode is a username and password.

    UserAuthenticationResponse, UserAuthenticationResponseArgs

    Mode string
    Defines the mode to authenticate the user of the client at the server.
    UsernamePasswordCredentials Pulumi.AzureNative.DeviceRegistry.Inputs.UsernamePasswordCredentialsResponse
    Defines the username and password references when UsernamePassword user authentication mode is selected.
    X509Credentials Pulumi.AzureNative.DeviceRegistry.Inputs.X509CredentialsResponse
    Defines the certificate reference when Certificate user authentication mode is selected.
    Mode string
    Defines the mode to authenticate the user of the client at the server.
    UsernamePasswordCredentials UsernamePasswordCredentialsResponse
    Defines the username and password references when UsernamePassword user authentication mode is selected.
    X509Credentials X509CredentialsResponse
    Defines the certificate reference when Certificate user authentication mode is selected.
    mode String
    Defines the mode to authenticate the user of the client at the server.
    usernamePasswordCredentials UsernamePasswordCredentialsResponse
    Defines the username and password references when UsernamePassword user authentication mode is selected.
    x509Credentials X509CredentialsResponse
    Defines the certificate reference when Certificate user authentication mode is selected.
    mode string
    Defines the mode to authenticate the user of the client at the server.
    usernamePasswordCredentials UsernamePasswordCredentialsResponse
    Defines the username and password references when UsernamePassword user authentication mode is selected.
    x509Credentials X509CredentialsResponse
    Defines the certificate reference when Certificate user authentication mode is selected.
    mode str
    Defines the mode to authenticate the user of the client at the server.
    username_password_credentials UsernamePasswordCredentialsResponse
    Defines the username and password references when UsernamePassword user authentication mode is selected.
    x509_credentials X509CredentialsResponse
    Defines the certificate reference when Certificate user authentication mode is selected.
    mode String
    Defines the mode to authenticate the user of the client at the server.
    usernamePasswordCredentials Property Map
    Defines the username and password references when UsernamePassword user authentication mode is selected.
    x509Credentials Property Map
    Defines the certificate reference when Certificate user authentication mode is selected.

    UsernamePasswordCredentials, UsernamePasswordCredentialsArgs

    PasswordReference string
    A reference to secret containing the password.
    UsernameReference string
    A reference to secret containing the username.
    PasswordReference string
    A reference to secret containing the password.
    UsernameReference string
    A reference to secret containing the username.
    passwordReference String
    A reference to secret containing the password.
    usernameReference String
    A reference to secret containing the username.
    passwordReference string
    A reference to secret containing the password.
    usernameReference string
    A reference to secret containing the username.
    password_reference str
    A reference to secret containing the password.
    username_reference str
    A reference to secret containing the username.
    passwordReference String
    A reference to secret containing the password.
    usernameReference String
    A reference to secret containing the username.

    UsernamePasswordCredentialsResponse, UsernamePasswordCredentialsResponseArgs

    PasswordReference string
    A reference to secret containing the password.
    UsernameReference string
    A reference to secret containing the username.
    PasswordReference string
    A reference to secret containing the password.
    UsernameReference string
    A reference to secret containing the username.
    passwordReference String
    A reference to secret containing the password.
    usernameReference String
    A reference to secret containing the username.
    passwordReference string
    A reference to secret containing the password.
    usernameReference string
    A reference to secret containing the username.
    password_reference str
    A reference to secret containing the password.
    username_reference str
    A reference to secret containing the username.
    passwordReference String
    A reference to secret containing the password.
    usernameReference String
    A reference to secret containing the username.

    X509Credentials, X509CredentialsArgs

    CertificateReference string
    A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
    CertificateReference string
    A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
    certificateReference String
    A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
    certificateReference string
    A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
    certificate_reference str
    A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
    certificateReference String
    A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).

    X509CredentialsResponse, X509CredentialsResponseArgs

    CertificateReference string
    A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
    CertificateReference string
    A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
    certificateReference String
    A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
    certificateReference string
    A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
    certificate_reference str
    A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
    certificateReference String
    A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).

    Import

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

    $ pulumi import azure-native:deviceregistry:AssetEndpointProfile my-assetendpointprofile /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeviceRegistry/assetEndpointProfiles/{assetEndpointProfileName} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi