Package version:

Interface IntegrationRuntimeConnectionInfo

Connection information for encrypting the on-premises data source credentials.

interface IntegrationRuntimeConnectionInfo {
    hostServiceUri?: string;
    identityCertThumbprint?: string;
    isIdentityCertExprired?: boolean;
    publicKey?: string;
    serviceToken?: string;
    version?: string;
    [property: string]: any;
}

Indexable

  • [property: string]: any

    Describes unknown properties. The value of an unknown property can be of "any" type.

Properties

hostServiceUri?: string

The on-premises integration runtime host URL. NOTE: This property will not be serialized. It can only be populated by the server.

identityCertThumbprint?: string

The integration runtime SSL certificate thumbprint. Click-Once application uses it to do server validation. NOTE: This property will not be serialized. It can only be populated by the server.

isIdentityCertExprired?: boolean

Whether the identity certificate is expired. NOTE: This property will not be serialized. It can only be populated by the server.

publicKey?: string

The public key for encrypting a credential when transferring the credential to the integration runtime. NOTE: This property will not be serialized. It can only be populated by the server.

serviceToken?: string

The token generated in service. Callers use this token to authenticate to integration runtime. NOTE: This property will not be serialized. It can only be populated by the server.

version?: string

The integration runtime version. NOTE: This property will not be serialized. It can only be populated by the server.