Skip to content

Commit

Permalink
Improve Salesforce V2 properties (#27412)
Browse files Browse the repository at this point in the history
  • Loading branch information
wenqibu authored Jan 23, 2024
1 parent 51a6e41 commit f9f1a6a
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 34 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7743,6 +7743,11 @@
"x-ms-format": "dfe-string",
"description": "The URL of Salesforce instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string)."
},
"authenticationType": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value"
},
"clientId": {
"type": "object",
"x-ms-format": "dfe-string",
Expand Down Expand Up @@ -7792,6 +7797,11 @@
"x-ms-format": "dfe-string",
"description": "The URL of Salesforce Service Cloud instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string)."
},
"authenticationType": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value"
},
"clientId": {
"type": "object",
"x-ms-format": "dfe-string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9065,10 +9065,10 @@
"x-ms-format": "dfe-string",
"description": "Database query. Type: string (or Expression with resultType string)."
},
"readBehavior": {
"description": "The read behavior for the operation. Default is query. Allowed values: query/queryAll. Type: string (or Expression with resultType string).",
"includeDeletedObjects": {
"description": "This property control whether query result contains Deleted objects. Default is false. Type: boolean (or Expression with resultType boolean).",
"type": "object",
"x-ms-format": "dfe-string"
"x-ms-format": "dfe-bool"
}
}
},
Expand All @@ -9086,29 +9086,17 @@
"x-ms-format": "dfe-string",
"description": "Database query. Type: string (or Expression with resultType string)."
},
"readBehavior": {
"description": "The read behavior for the operation. Default is query. Allowed values: query/queryAll. Type: string (or Expression with resultType string).",
"includeDeletedObjects": {
"description": "This property control whether query result contains Deleted objects. Default is false. Type: boolean (or Expression with resultType boolean).",
"type": "object",
"x-ms-format": "dfe-string"
"x-ms-format": "dfe-bool"
},
"additionalColumns": {
"type": "object",
"description": "Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects)."
}
}
},
"SalesforceV2SourceReadBehavior": {
"description": "The Salesforce read behavior for the operation",
"type": "string",
"enum": [
"query",
"queryAll"
],
"x-ms-enum": {
"name": "SalesforceV2SourceReadBehavior",
"modelAsString": true
}
},
"SalesforceV2Sink": {
"description": "A copy activity Salesforce V2 sink.",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7142,6 +7142,10 @@
"type": "object",
"description": "The URL of Salesforce instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string)."
},
"authenticationType": {
"type": "object",
"description": "The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value"
},
"clientId": {
"type": "object",
"description": "The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string)."
Expand Down Expand Up @@ -7188,6 +7192,10 @@
"type": "object",
"description": "The URL of Salesforce Service Cloud instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string)."
},
"authenticationType": {
"type": "object",
"description": "The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value"
},
"clientId": {
"type": "object",
"description": "The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string)."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7984,8 +7984,8 @@
"type": "object",
"description": "Database query. Type: string (or Expression with resultType string)."
},
"readBehavior": {
"description": "The read behavior for the operation. Default is query. Allowed values: query/queryAll. Type: string (or Expression with resultType string).",
"includeDeletedObjects": {
"description": "This property control whether query result contains Deleted objects. Default is false. Type: boolean (or Expression with resultType boolean).",
"type": "object"
}
}
Expand All @@ -8003,8 +8003,8 @@
"type": "object",
"description": "Database query. Type: string (or Expression with resultType string)."
},
"readBehavior": {
"description": "The read behavior for the operation. Default is query. Allowed values: query/queryAll. Type: string (or Expression with resultType string).",
"includeDeletedObjects": {
"description": "This property control whether query result contains Deleted objects. Default is false. Type: boolean (or Expression with resultType boolean).",
"type": "object"
},
"additionalColumns": {
Expand All @@ -8013,18 +8013,6 @@
}
}
},
"SalesforceV2SourceReadBehavior": {
"description": "The Salesforce read behavior for the operation",
"type": "string",
"enum": [
"query",
"queryAll"
],
"x-ms-enum": {
"name": "SalesforceV2SourceReadBehavior",
"modelAsString": true
}
},
"SalesforceV2Sink": {
"description": "A copy activity Salesforce V2 sink.",
"type": "object",
Expand Down

0 comments on commit f9f1a6a

Please sign in to comment.