-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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
Salesforce add apiVersion and set security token optional #8416
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
9dde2e5
Update Salesforce LinkedService Add ApiVersion
Jingshu918 f640637
Merge pull request #1 from Azure/master
Jingshu923 72a16df
Merge pull request #2 from Azure/master
Jingshu923 284e49e
Update GoogleAdWords and GoogleBigQuery clientId for fix issue
Jingshu918 b3a4e9a
Merge pull request #3 from Azure/master
Jingshu923 a1a3e4a
Merge pull request #4 from Azure/master
Jingshu923 9715687
Merge pull request #5 from Azure/master
Jingshu923 b6b3b37
Add DB2 ConnectionString
Jingshu918 e9ebbe2
Merge pull request #6 from Azure/master
Jingshu923 233cd93
Salesforce add apiVersion and set securityToken optional
Jingshu918 cce4898
Revert "Salesforce add apiVersion and set securityToken optional"
Jingshu918 fc4417b
Revert "Add DB2 ConnectionString"
Jingshu918 88ffa9c
Salesforce add apiVersion and set security token optional
Jingshu918 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2263,9 +2263,13 @@ | |
"$ref": "../datafactory.json#/definitions/SecretBase" | ||
}, | ||
"securityToken": { | ||
"description": "The security token is required to remotely access Salesforce instance.", | ||
"description": "The security token is optional to remotely access Salesforce instance.", | ||
"$ref": "../datafactory.json#/definitions/SecretBase" | ||
}, | ||
"apiVersion": { | ||
"type": "object", | ||
"description": "The Salesforce API version used in ADF. Type: string (or Expression with resultType string)." | ||
}, | ||
"encryptedCredential": { | ||
"type": "object", | ||
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string)." | ||
|
@@ -2308,9 +2312,13 @@ | |
"$ref": "../datafactory.json#/definitions/SecretBase" | ||
}, | ||
"securityToken": { | ||
"description": "The security token is required to remotely access Salesforce instance.", | ||
"description": "The security token is optional to remotely access Salesforce instance.", | ||
"$ref": "../datafactory.json#/definitions/SecretBase" | ||
}, | ||
"apiVersion": { | ||
"type": "object", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here |
||
"description": "The Salesforce API version used in ADF. Type: string (or Expression with resultType string)." | ||
}, | ||
"extendedProperties": { | ||
"type": "object", | ||
"description": "Extended properties appended to the connection string. Type: string (or Expression with resultType string)." | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should it be string?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@myronfanqiu If we set object type, customer can input a expression instead a string value.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what's the meaning of expression? Could you give me an example? I think an expression is also a string.