azure-native.deviceregistry.DiscoveredAssetEndpointProfile
Explore with Pulumi AI
Discovered Asset Endpoint Profile definition. Azure REST API version: 2024-09-01-preview.
Example Usage
Create_DiscoveredAssetEndpointProfile
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var discoveredAssetEndpointProfile = new AzureNative.DeviceRegistry.DiscoveredAssetEndpointProfile("discoveredAssetEndpointProfile", new()
{
AdditionalConfiguration = "{\"foo\": \"bar\"}",
DiscoveredAssetEndpointProfileName = "my-discoveredassetendpointprofile",
DiscoveryId = "11111111-1111-1111-1111-111111111111",
EndpointProfileType = "myEndpointProfileType",
ExtendedLocation = new AzureNative.DeviceRegistry.Inputs.ExtendedLocationArgs
{
Name = "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.extendedlocation/customlocations/location1",
Type = "CustomLocation",
},
Location = "West Europe",
ResourceGroupName = "myResourceGroup",
SupportedAuthenticationMethods = new[]
{
AzureNative.DeviceRegistry.AuthenticationMethod.Anonymous,
AzureNative.DeviceRegistry.AuthenticationMethod.Certificate,
AzureNative.DeviceRegistry.AuthenticationMethod.UsernamePassword,
},
Tags =
{
{ "site", "building-1" },
},
TargetAddress = "https://www.example.com/myTargetAddress",
Version = 73766,
});
});
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
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:
- Discovery
Id string - Identifier used to detect changes in the asset endpoint profile.
- Endpoint
Profile stringType - Defines the configuration for the connector type that is being used with the endpoint profile.
- Extended
Location Pulumi.Azure Native. Device Registry. Inputs. Extended Location - The extended location.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Target
Address 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.
- Additional
Configuration string - Stringified JSON that contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
- Discovered
Asset stringEndpoint Profile Name - Discovered Asset Endpoint Profile name parameter.
- Location string
- The geo-location where the resource lives
- Supported
Authentication 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.
- Discovery
Id string - Identifier used to detect changes in the asset endpoint profile.
- Endpoint
Profile stringType - Defines the configuration for the connector type that is being used with the endpoint profile.
- Extended
Location ExtendedLocation Args - The extended location.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Target
Address 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.
- Additional
Configuration string - Stringified JSON that contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
- Discovered
Asset stringEndpoint Profile Name - Discovered Asset Endpoint Profile name parameter.
- Location string
- The geo-location where the resource lives
- Supported
Authentication []stringMethods - List of supported authentication methods supported by the target server.
- map[string]string
- Resource tags.
- discovery
Id String - Identifier used to detect changes in the asset endpoint profile.
- endpoint
Profile StringType - Defines the configuration for the connector type that is being used with the endpoint profile.
- extended
Location ExtendedLocation - The extended location.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- target
Address 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.
- additional
Configuration String - Stringified JSON that contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
- discovered
Asset StringEndpoint Profile Name - Discovered Asset Endpoint Profile name parameter.
- location String
- The geo-location where the resource lives
- supported
Authentication List<Either<String,AuthenticationMethods Method>> - List of supported authentication methods supported by the target server.
- Map<String,String>
- Resource tags.
- discovery
Id string - Identifier used to detect changes in the asset endpoint profile.
- endpoint
Profile stringType - Defines the configuration for the connector type that is being used with the endpoint profile.
- extended
Location ExtendedLocation - The extended location.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- target
Address 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.
- additional
Configuration string - Stringified JSON that contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
- discovered
Asset stringEndpoint Profile Name - Discovered Asset Endpoint Profile name parameter.
- location string
- The geo-location where the resource lives
- supported
Authentication (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.
- discovery
Id String - Identifier used to detect changes in the asset endpoint profile.
- endpoint
Profile StringType - Defines the configuration for the connector type that is being used with the endpoint profile.
- extended
Location Property Map - The extended location.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- target
Address 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.
- additional
Configuration String - Stringified JSON that contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
- discovered
Asset StringEndpoint Profile Name - Discovered Asset Endpoint Profile name parameter.
- location String
- The geo-location where the resource lives
- supported
Authentication 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
- Provisioning
State string - Provisioning state of the resource.
- System
Data Pulumi.Azure Native. Device Registry. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning state of the resource.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning state of the resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - Provisioning state of the resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_
state str - Provisioning state of the resource.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning state of the resource.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AuthenticationMethod, AuthenticationMethodArgs
- 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.
- Authentication
Method Anonymous - AnonymousThe user authentication method is anonymous.
- Authentication
Method Certificate - CertificateThe user authentication method is an x509 certificate.
- Authentication
Method 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.
- 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.
- 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.
- 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.
- "Username
Password" - UsernamePasswordThe user authentication method is a username and password.
ExtendedLocation, ExtendedLocationArgs
ExtendedLocationResponse, ExtendedLocationResponseArgs
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
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