Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Salesforce V2 properties #27412

Merged
merged 1 commit into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -9056,10 +9056,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 @@ -9077,29 +9077,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