Package version:

Interface DynamicsAXLinkedService

Dynamics AX linked service.

interface DynamicsAXLinkedService {
    aadResourceId: any;
    annotations?: any[];
    connectVia?: IntegrationRuntimeReference;
    description?: string;
    encryptedCredential?: string;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    servicePrincipalId: any;
    servicePrincipalKey: SecretBaseUnion;
    tenant: any;
    type: "DynamicsAX";
    url: any;
    version?: string;
}

Hierarchy (view full)

Properties

aadResourceId: any

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

annotations?: any[]

List of tags that can be used for describing the linked service.

The integration runtime reference.

description?: string

Linked service description.

encryptedCredential?: string

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.

parameters?: {
    [propertyName: string]: ParameterSpecification;
}

Parameters for linked service.

servicePrincipalId: any

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

servicePrincipalKey: SecretBaseUnion

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).

tenant: any

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).

type

Polymorphic discriminator, which specifies the different types this object can be

url: any

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

version?: string

Version of the linked service.