Package version:

Interface MongoDbLinkedService

Linked service for MongoDb data source.

interface MongoDbLinkedService {
    allowSelfSignedServerCert?: any;
    annotations?: any[];
    authenticationType?: string;
    authSource?: any;
    connectVia?: IntegrationRuntimeReference;
    databaseName: any;
    description?: string;
    enableSsl?: any;
    encryptedCredential?: string;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    password?: SecretBaseUnion;
    port?: any;
    server: any;
    type: "MongoDb";
    username?: any;
    version?: string;
}

Hierarchy (view full)

Properties

allowSelfSignedServerCert?: any

Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).

annotations?: any[]

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

authenticationType?: string

The authentication type to be used to connect to the MongoDB database.

authSource?: any

Database to verify the username and password. Type: string (or Expression with resultType string).

The integration runtime reference.

databaseName: any

The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).

description?: string

Linked service description.

enableSsl?: any

Specifies whether the connections to the server are encrypted using SSL. The default value is false. Type: boolean (or Expression with resultType boolean).

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.

password?: SecretBaseUnion

Password for authentication.

port?: any

The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.

server: any

The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).

type

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

username?: any

Username for authentication. Type: string (or Expression with resultType string).

version?: string

Version of the linked service.