Package version:

Interface SalesforceV2Source

A copy activity Salesforce V2 source.

interface SalesforceV2Source {
    additionalColumns?: any;
    disableMetricsCollection?: any;
    includeDeletedObjects?: any;
    maxConcurrentConnections?: any;
    pageSize?: any;
    query?: any;
    queryTimeout?: any;
    soqlQuery?: any;
    sourceRetryCount?: any;
    sourceRetryWait?: any;
    type: "SalesforceV2Source";
}

Hierarchy (view full)

Properties

additionalColumns?: any

Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).

disableMetricsCollection?: any

If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).

includeDeletedObjects?: any

This property control whether query result contains Deleted objects. Default is false. Type: boolean (or Expression with resultType boolean).

maxConcurrentConnections?: any

The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).

pageSize?: any

Page size for each http request, too large pageSize will caused timeout, default 300,000. Type: integer (or Expression with resultType integer).

query?: any

You can only use Salesforce Object Query Language (SOQL) query with limitations. For SOQL limitations, see this article: https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/queries.htm#SOQL Considerations. If query is not specified, all the data of the Salesforce object specified in ObjectApiName/reportId in dataset will be retrieved. Type: string (or Expression with resultType string).

queryTimeout?: any

Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

soqlQuery?: any

Deprecating, please use 'query' property instead. Type: string (or Expression with resultType string).

sourceRetryCount?: any

Source retry count. Type: integer (or Expression with resultType integer).

sourceRetryWait?: any

Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

type

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