Package version:

Interface ServiceNowV2LinkedService

ServiceNowV2 server linked service.

interface ServiceNowV2LinkedService {
    annotations?: any[];
    authenticationType: string;
    clientId?: any;
    clientSecret?: SecretBaseUnion;
    connectVia?: IntegrationRuntimeReference;
    description?: string;
    encryptedCredential?: string;
    endpoint: any;
    grantType?: any;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    password?: SecretBaseUnion;
    type: "ServiceNowV2";
    username?: any;
    version?: string;
}

Hierarchy (view full)

Properties

annotations?: any[]

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

authenticationType: string

The authentication type to use.

clientId?: any

The client id for OAuth2 authentication.

clientSecret?: SecretBaseUnion

The client secret for OAuth2 authentication.

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.

endpoint: any

The endpoint of the ServiceNowV2 server. (i.e. .service-now.com)

grantType?: any

GrantType for OAuth2 authentication. Default value is password.

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

Parameters for linked service.

password?: SecretBaseUnion

The password corresponding to the user name for Basic and OAuth2 authentication.

type

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

username?: any

The user name used to connect to the ServiceNowV2 server for Basic and OAuth2 authentication.

version?: string

Version of the linked service.