Configuration of a destination as it is available through the destination service.

interface DestinationConfiguration {
    Authentication?: AuthenticationType;
    Name?: string;
    Password?: string;
    ProxyType?: string;
    SystemUser?: string;
    TrustAll?: string;
    Type?: "HTTP" | "LDAP" | "MAIL" | "RFC";
    URL?: string;
    User?: string;
    clientId?: string;
    clientSecret?: string;
    sap-client?: string;
    tokenServicePass?: string;
    tokenServiceURL?: string;
    tokenServiceURLType?: "Common" | "Dedicated;";
    tokenServiceUsername?: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Authentication?: AuthenticationType

Represents the authentication type of a destination.

Name?: string

Name of the destination.

Password?: string

Password in case of basic authentication destinations.

ProxyType?: string

ProxyType of the destination, e.g., Internet or OnPremise.

SystemUser?: string

Deprecated option of the destination service to fix a user in OnPremise principal propagation.

TrustAll?: string

Value of the TrustAll property of the destination.

Type?: "HTTP" | "LDAP" | "MAIL" | "RFC"

Type of the destination.

URL?: string

URL of the destination.

User?: string

Username in case of basic authentication destinations.

clientId?: string

ClientId to retrieve an auth token from the token service endpoint.

clientSecret?: string

ClientSecret to retrieve an auth token from the token service endpoint.

sap-client?: string

sap-client defined in the destination.

tokenServicePass?: string

Password to retrieve an auth token from the endpoint.

tokenServiceURL?: string

URL of the token service endpoint to retrieve access token. This may contain placeholders in multi-tenant scenarios.

See

SAML Bearer Assertion Authentication. In most cases the XSUAA will be used here.

tokenServiceURLType?: "Common" | "Dedicated;"

Decides if the token service subdomain is fixed or adjusted in multi-tenant scenarios.

tokenServiceUsername?: string

Fixed username to retrieve an auth token from the endpoint.

Copyright Ⓒ 2024 SAP SE or an SAP affiliate company. All rights reserved.