Show / Hide Table of Contents

Class DynamicsAXLinkedService

Dynamics AX linked service.

Inheritance
System.Object
LinkedService
DynamicsAXLinkedService
Inherited Members
LinkedService.AdditionalProperties
LinkedService.Annotations
LinkedService.ConnectVia
LinkedService.Description
LinkedService.Parameters
LinkedService.Version
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.DynamicsAXLinkedService/DynamicsAXLinkedServiceConverter))]
public class DynamicsAXLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService

Constructors

DynamicsAXLinkedService(Object, Object, SecretBase, Object, Object)

Initializes a new instance of DynamicsAXLinkedService.

Declaration
public DynamicsAXLinkedService (object url, object servicePrincipalId, Azure.Analytics.Synapse.Artifacts.Models.SecretBase servicePrincipalKey, object tenant, object aadResourceId);
Parameters
System.Object url

The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.

System.Object servicePrincipalId

Specify the application's client ID. Type: string (or Expression with resultType string).

SecretBase servicePrincipalKey

Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string). Please note SecretBase is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include AzureKeyVaultSecretReference and SecureString.

System.Object tenant

Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).

System.Object aadResourceId

Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).

Exceptions
System.ArgumentNullException

url, servicePrincipalId, servicePrincipalKey, tenant or aadResourceId is null.

Properties

AadResourceId

Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).

Declaration
public object AadResourceId { get; set; }
Property Value
System.Object

EncryptedCredential

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).

Declaration
public object EncryptedCredential { get; set; }
Property Value
System.Object

ServicePrincipalId

Specify the application's client ID. Type: string (or Expression with resultType string).

Declaration
public object ServicePrincipalId { get; set; }
Property Value
System.Object

ServicePrincipalKey

Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string). Please note SecretBase is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include AzureKeyVaultSecretReference and SecureString.

Declaration
public Azure.Analytics.Synapse.Artifacts.Models.SecretBase ServicePrincipalKey { get; set; }
Property Value
SecretBase

Tenant

Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).

Declaration
public object Tenant { get; set; }
Property Value
System.Object

Url

The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.

Declaration
public object Url { get; set; }
Property Value
System.Object

Back to top Azure SDK for .NET