azure-native.deviceregistry.AssetEndpointProfile
Explore with Pulumi AI
Asset Endpoint Profile definition.
Uses Azure REST API version 2023-11-01-preview.
Other available API versions: 2024-09-01-preview, 2024-11-01.
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
This property is required. string - The unique name of the resource.
- args
This property is required. AssetEndpointProfileArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. 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
This property is required. string - The unique name of the resource.
- args
This property is required. AssetEndpointProfileArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. AssetEndpointProfileArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. AssetEndpointProfileArgs - 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 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={
"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={
"own_certificates": [{
"cert_password_reference": "string",
"cert_secret_reference": "string",
"cert_thumbprint": "string",
}],
},
user_authentication={
"mode": "string",
"username_password_credentials": {
"password_reference": "string",
"username_reference": "string",
},
"x509_credentials": {
"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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The AssetEndpointProfile resource accepts the following input properties:
- Extended
Location This property is required. Changes to this property will trigger replacement.
Azure Native. Device Registry. Inputs. Extended Location - The extended location.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- Target
Address This property is required. string - The local valid URI specifying the network address/DNS name of a southbound device. The scheme part of the targetAddress URI specifies the type of the device. The additionalConfiguration field holds further connector type specific configuration.
- Additional
Configuration string - Stringified JSON that contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
- Asset
Endpoint Profile Name Changes to this property will trigger replacement.
- Asset Endpoint Profile name parameter.
- Location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- Dictionary<string, string>
- Resource tags.
- Transport
Authentication Pulumi.Azure Native. Device Registry. Inputs. Transport Authentication - Defines the authentication mechanism for the southbound connector connecting to the shop floor/OT device.
- User
Authentication Pulumi.Azure Native. Device Registry. Inputs. User Authentication - Defines the client authentication mechanism to the server.
- Extended
Location This property is required. Changes to this property will trigger replacement.
Location Args - The extended location.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- Target
Address This property is required. string - The local valid URI specifying the network address/DNS name of a southbound device. The scheme part of the targetAddress URI specifies the type of the device. The additionalConfiguration field holds further connector type specific configuration.
- Additional
Configuration string - Stringified JSON that contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
- Asset
Endpoint Profile Name Changes to this property will trigger replacement.
- Asset Endpoint Profile name parameter.
- Location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- map[string]string
- Resource tags.
- Transport
Authentication TransportAuthentication Args - Defines the authentication mechanism for the southbound connector connecting to the shop floor/OT device.
- User
Authentication UserAuthentication Args - Defines the client authentication mechanism to the server.
- extended
Location This property is required. Changes to this property will trigger replacement.
Location - The extended location.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- target
Address This property is required. String - The local valid URI specifying the network address/DNS name of a southbound device. The scheme part of the targetAddress URI specifies the type of the device. The additionalConfiguration field holds further connector type specific configuration.
- additional
Configuration String - Stringified JSON that contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
- asset
Endpoint Profile Name Changes to this property will trigger replacement.
- Asset Endpoint Profile name parameter.
- location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- Map<String,String>
- Resource tags.
- transport
Authentication TransportAuthentication - Defines the authentication mechanism for the southbound connector connecting to the shop floor/OT device.
- user
Authentication UserAuthentication - Defines the client authentication mechanism to the server.
- extended
Location This property is required. Changes to this property will trigger replacement.
Location - The extended location.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- target
Address This property is required. string - The local valid URI specifying the network address/DNS name of a southbound device. The scheme part of the targetAddress URI specifies the type of the device. The additionalConfiguration field holds further connector type specific configuration.
- additional
Configuration string - Stringified JSON that contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
- asset
Endpoint Profile Name Changes to this property will trigger replacement.
- Asset Endpoint Profile name parameter.
- location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- {[key: string]: string}
- Resource tags.
- transport
Authentication TransportAuthentication - Defines the authentication mechanism for the southbound connector connecting to the shop floor/OT device.
- user
Authentication UserAuthentication - Defines the client authentication mechanism to the server.
- extended_
location This property is required. Changes to this property will trigger replacement.
Location Args - The extended location.
- resource_
group_ name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- target_
address This property is required. str - The local valid URI specifying the network address/DNS name of a southbound device. The scheme part of the targetAddress URI specifies the type of the device. The additionalConfiguration field holds further connector type specific configuration.
- additional_
configuration str - Stringified JSON that contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
- asset_
endpoint_ profile_ name Changes to this property will trigger replacement.
- Asset Endpoint Profile name parameter.
- location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- Mapping[str, str]
- Resource tags.
- transport_
authentication TransportAuthentication Args - Defines the authentication mechanism for the southbound connector connecting to the shop floor/OT device.
- user_
authentication UserAuthentication Args - Defines the client authentication mechanism to the server.
- extended
Location This property is required. Changes to this property will trigger replacement.
- The extended location.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- target
Address This property is required. String - The local valid URI specifying the network address/DNS name of a southbound device. The scheme part of the targetAddress URI specifies the type of the device. The additionalConfiguration field holds further connector type specific configuration.
- additional
Configuration String - Stringified JSON that contains connectivity type specific further configuration (e.g. OPC UA, Modbus, ONVIF).
- asset
Endpoint Profile Name Changes to this property will trigger replacement.
- Asset Endpoint Profile name parameter.
- location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- Map<String>
- Resource tags.
- transport
Authentication Property Map - Defines the authentication mechanism for the southbound connector connecting to the shop floor/OT device.
- user
Authentication 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
- 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"
- 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
- 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"
- 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
- 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"
- 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
- 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"
- 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 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"
- 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
- 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"
- uuid String
- Globally unique, immutable, non-reusable id.
Supporting Types
ExtendedLocation, ExtendedLocationArgs
ExtendedLocationResponse, ExtendedLocationResponseArgs
OwnCertificate, OwnCertificateArgs
- Cert
Password stringReference - Secret Reference Name (Pfx or Pem password).
- Cert
Secret stringReference - Secret Reference name (cert and private key).
- Cert
Thumbprint string - Certificate thumbprint.
- Cert
Password stringReference - Secret Reference Name (Pfx or Pem password).
- Cert
Secret stringReference - Secret Reference name (cert and private key).
- Cert
Thumbprint string - Certificate thumbprint.
- cert
Password StringReference - Secret Reference Name (Pfx or Pem password).
- cert
Secret StringReference - Secret Reference name (cert and private key).
- cert
Thumbprint String - Certificate thumbprint.
- cert
Password stringReference - Secret Reference Name (Pfx or Pem password).
- cert
Secret stringReference - Secret Reference name (cert and private key).
- cert
Thumbprint string - Certificate thumbprint.
- cert_
password_ strreference - Secret Reference Name (Pfx or Pem password).
- cert_
secret_ strreference - Secret Reference name (cert and private key).
- cert_
thumbprint str - Certificate thumbprint.
- cert
Password StringReference - Secret Reference Name (Pfx or Pem password).
- cert
Secret StringReference - Secret Reference name (cert and private key).
- cert
Thumbprint String - Certificate thumbprint.
OwnCertificateResponse, OwnCertificateResponseArgs
- Cert
Password stringReference - Secret Reference Name (Pfx or Pem password).
- Cert
Secret stringReference - Secret Reference name (cert and private key).
- Cert
Thumbprint string - Certificate thumbprint.
- Cert
Password stringReference - Secret Reference Name (Pfx or Pem password).
- Cert
Secret stringReference - Secret Reference name (cert and private key).
- Cert
Thumbprint string - Certificate thumbprint.
- cert
Password StringReference - Secret Reference Name (Pfx or Pem password).
- cert
Secret StringReference - Secret Reference name (cert and private key).
- cert
Thumbprint String - Certificate thumbprint.
- cert
Password stringReference - Secret Reference Name (Pfx or Pem password).
- cert
Secret stringReference - Secret Reference name (cert and private key).
- cert
Thumbprint string - Certificate thumbprint.
- cert_
password_ strreference - Secret Reference Name (Pfx or Pem password).
- cert_
secret_ strreference - Secret Reference name (cert and private key).
- cert_
thumbprint str - Certificate thumbprint.
- cert
Password StringReference - Secret Reference Name (Pfx or Pem password).
- cert
Secret StringReference - Secret Reference name (cert and private key).
- cert
Thumbprint String - Certificate thumbprint.
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.
TransportAuthentication, TransportAuthenticationArgs
- Own
Certificates This property is required. List<Pulumi.Azure Native. Device Registry. Inputs. Own Certificate> - 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 This property is required. []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 This property is required. 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.
- own
Certificates This property is required. 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 This property is required. 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.
- own
Certificates This property is required. 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
- Own
Certificates This property is required. List<Pulumi.Azure Native. Device Registry. Inputs. Own Certificate Response> - 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 This property is required. []OwnCertificate Response - 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 This property is required. List<OwnCertificate Response> - 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 This property is required. OwnCertificate Response[] - 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 This property is required. Sequence[OwnCertificate Response] - 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 This property is required. 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
This property is required. string | Pulumi.Azure Native. Device Registry. User Authentication Mode - Defines the method to authenticate the user of the client at the server.
- Username
Password Pulumi.Credentials Azure Native. Device Registry. Inputs. Username Password Credentials - Defines the username and password references when UsernamePassword user authentication mode is selected.
- X509Credentials
Pulumi.
Azure Native. Device Registry. Inputs. X509Credentials - Defines the certificate reference when Certificate user authentication mode is selected.
- Mode
This property is required. string | UserAuthentication Mode - Defines the method to authenticate the user of the client at the server.
- Username
Password UsernameCredentials Password Credentials - 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
This property is required. String | UserAuthentication Mode - Defines the method to authenticate the user of the client at the server.
- username
Password UsernameCredentials Password Credentials - 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
This property is required. string | UserAuthentication Mode - Defines the method to authenticate the user of the client at the server.
- username
Password UsernameCredentials Password Credentials - 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
This property is required. str | UserAuthentication Mode - Defines the method to authenticate the user of the client at the server.
- username_
password_ Usernamecredentials Password Credentials - 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
This property is required. String | "Anonymous" | "Certificate" | "UsernamePassword" - Defines the method to authenticate the user of the client at the server.
- username
Password Property MapCredentials - 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 method is anonymous.
- Certificate
- CertificateThe user authentication method is an x509 certificate.
- Username
Password - UsernamePasswordThe user authentication method is a username and password.
- User
Authentication Mode Anonymous - AnonymousThe user authentication method is anonymous.
- User
Authentication Mode Certificate - CertificateThe user authentication method is an x509 certificate.
- User
Authentication Mode 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.
UserAuthenticationResponse, UserAuthenticationResponseArgs
- Mode
This property is required. string - Defines the method to authenticate the user of the client at the server.
- Username
Password Pulumi.Credentials Azure Native. Device Registry. Inputs. Username Password Credentials Response - Defines the username and password references when UsernamePassword user authentication mode is selected.
- X509Credentials
Pulumi.
Azure Native. Device Registry. Inputs. X509Credentials Response - Defines the certificate reference when Certificate user authentication mode is selected.
- Mode
This property is required. string - Defines the method to authenticate the user of the client at the server.
- Username
Password UsernameCredentials Password Credentials Response - Defines the username and password references when UsernamePassword user authentication mode is selected.
- X509Credentials
X509Credentials
Response - Defines the certificate reference when Certificate user authentication mode is selected.
- mode
This property is required. String - Defines the method to authenticate the user of the client at the server.
- username
Password UsernameCredentials Password Credentials Response - Defines the username and password references when UsernamePassword user authentication mode is selected.
- x509Credentials
X509Credentials
Response - Defines the certificate reference when Certificate user authentication mode is selected.
- mode
This property is required. string - Defines the method to authenticate the user of the client at the server.
- username
Password UsernameCredentials Password Credentials Response - Defines the username and password references when UsernamePassword user authentication mode is selected.
- x509Credentials
X509Credentials
Response - Defines the certificate reference when Certificate user authentication mode is selected.
- mode
This property is required. str - Defines the method to authenticate the user of the client at the server.
- username_
password_ Usernamecredentials Password Credentials Response - 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
This property is required. String - Defines the method to authenticate the user of the client at the server.
- username
Password Property MapCredentials - 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
- Password
Reference This property is required. string - A reference to secret containing the password.
- Username
Reference This property is required. string - A reference to secret containing the username.
- Password
Reference This property is required. string - A reference to secret containing the password.
- Username
Reference This property is required. string - A reference to secret containing the username.
- password
Reference This property is required. String - A reference to secret containing the password.
- username
Reference This property is required. String - A reference to secret containing the username.
- password
Reference This property is required. string - A reference to secret containing the password.
- username
Reference This property is required. string - A reference to secret containing the username.
- password_
reference This property is required. str - A reference to secret containing the password.
- username_
reference This property is required. str - A reference to secret containing the username.
- password
Reference This property is required. String - A reference to secret containing the password.
- username
Reference This property is required. String - A reference to secret containing the username.
UsernamePasswordCredentialsResponse, UsernamePasswordCredentialsResponseArgs
- Password
Reference This property is required. string - A reference to secret containing the password.
- Username
Reference This property is required. string - A reference to secret containing the username.
- Password
Reference This property is required. string - A reference to secret containing the password.
- Username
Reference This property is required. string - A reference to secret containing the username.
- password
Reference This property is required. String - A reference to secret containing the password.
- username
Reference This property is required. String - A reference to secret containing the username.
- password
Reference This property is required. string - A reference to secret containing the password.
- username
Reference This property is required. string - A reference to secret containing the username.
- password_
reference This property is required. str - A reference to secret containing the password.
- username_
reference This property is required. str - A reference to secret containing the username.
- password
Reference This property is required. String - A reference to secret containing the password.
- username
Reference This property is required. String - A reference to secret containing the username.
X509Credentials, X509CredentialsArgs
- Certificate
Reference This property is required. string - A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
- Certificate
Reference This property is required. string - A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
- certificate
Reference This property is required. String - A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
- certificate
Reference This property is required. string - A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
- certificate_
reference This property is required. str - A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
- certificate
Reference This property is required. String - A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
X509CredentialsResponse, X509CredentialsResponseArgs
- Certificate
Reference This property is required. string - A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
- Certificate
Reference This property is required. string - A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
- certificate
Reference This property is required. String - A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
- certificate
Reference This property is required. string - A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
- certificate_
reference This property is required. str - A reference to secret containing the certificate and private key (e.g. stored as .der/.pem or .der/.pfx).
- certificate
Reference This property is required. 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