1. Packages
  2. Azure Native
  3. API Docs
  4. deviceregistry
  5. DiscoveredAssetEndpointProfile
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.63.0 published on Tuesday, Sep 24, 2024 by Pulumi

azure-native.deviceregistry.DiscoveredAssetEndpointProfile

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.63.0 published on Tuesday, Sep 24, 2024 by Pulumi

    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,
        });
    
    });
    
    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 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)
    
    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,
    });
    
    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

    The DiscoveredAssetEndpointProfile resource accepts the following input properties:

    DiscoveryId string
    Identifier used to detect changes in the asset endpoint profile.
    EndpointProfileType string
    Defines the configuration for the connector type that is being used with the endpoint profile.
    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.
    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).
    DiscoveredAssetEndpointProfileName string
    Discovered Asset Endpoint Profile name parameter.
    Location 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 string
    Identifier used to detect changes in the asset endpoint profile.
    EndpointProfileType string
    Defines the configuration for the connector type that is being used with the endpoint profile.
    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.
    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).
    DiscoveredAssetEndpointProfileName string
    Discovered Asset Endpoint Profile name parameter.
    Location 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 String
    Identifier used to detect changes in the asset endpoint profile.
    endpointProfileType String
    Defines the configuration for the connector type that is being used with the endpoint profile.
    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.
    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).
    discoveredAssetEndpointProfileName String
    Discovered Asset Endpoint Profile name parameter.
    location 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 string
    Identifier used to detect changes in the asset endpoint profile.
    endpointProfileType string
    Defines the configuration for the connector type that is being used with the endpoint profile.
    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.
    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).
    discoveredAssetEndpointProfileName string
    Discovered Asset Endpoint Profile name parameter.
    location 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 str
    Identifier used to detect changes in the asset endpoint profile.
    endpoint_profile_type str
    Defines the configuration for the connector type that is being used with the endpoint profile.
    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.
    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_endpoint_profile_name str
    Discovered Asset Endpoint Profile name parameter.
    location 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 String
    Identifier used to detect changes in the asset endpoint profile.
    endpointProfileType String
    Defines the configuration for the connector type that is being used with the endpoint profile.
    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.
    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).
    discoveredAssetEndpointProfileName String
    Discovered Asset Endpoint Profile name parameter.
    location 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 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.

    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} 
    

    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.63.0 published on Tuesday, Sep 24, 2024 by Pulumi