Package version:

Interface SapEccLinkedService

Linked service for SAP ERP Central Component(SAP ECC).

interface SapEccLinkedService {
    annotations?: any[];
    connectVia?: IntegrationRuntimeReference;
    description?: string;
    encryptedCredential?: string;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    password?: SecretBaseUnion;
    type: "SapEcc";
    url: any;
    username?: any;
    version?: string;
}

Hierarchy (view full)

Properties

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. Either encryptedCredential or username/password must be provided. Type: string.

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

Parameters for linked service.

password?: SecretBaseUnion

The password for Basic authentication.

type

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

url: any

The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).

username?: any

The username for Basic authentication. Type: string (or Expression with resultType string).

version?: string

Version of the linked service.