-
Notifications
You must be signed in to change notification settings - Fork 5.6k
[ADF] Swagger Change for Responsys Source #2735
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4060,6 +4060,63 @@ | |
| "domain", | ||
| "accessToken" | ||
| ] | ||
| }, | ||
| "ResponsysLinkedService": { | ||
| "x-ms-discriminator-value": "Responsys", | ||
| "description": "Responsys linked service.", | ||
| "type": "object", | ||
| "allOf": [ | ||
| { | ||
| "$ref": "#/definitions/LinkedService" | ||
| } | ||
| ], | ||
| "properties": { | ||
| "typeProperties": { | ||
| "description": "Responsys linked service properties.", | ||
| "x-ms-client-flatten": true, | ||
| "$ref": "#/definitions/ResponsysLinkedServiceTypeProperties" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "typeProperties" | ||
| ] | ||
| }, | ||
| "ResponsysLinkedServiceTypeProperties": { | ||
| "description": "Responsys linked service properties.", | ||
| "properties": { | ||
| "endpoint": { | ||
|
Contributor
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. nit: please check which of these properties should be marked
Contributor
Author
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. Keep align with other ODBC connectors. BTW, how can it be marked as read only?
Contributor
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. Here's an example |
||
| "description": "The endpoint of the Responsys server.", | ||
| "type": "object" | ||
| }, | ||
| "clientId": { | ||
| "description": "The client ID associated with the Responsys application. Type: string (or Expression with resultType string).", | ||
| "type": "object" | ||
| }, | ||
| "clientSecret": { | ||
| "description": "The client secret associated with the Responsys application. Type: string (or Expression with resultType string).", | ||
| "$ref": "../datafactory.json#/definitions/SecretBase" | ||
| }, | ||
| "useEncryptedEndpoints": { | ||
| "description": "Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).", | ||
| "type": "object" | ||
| }, | ||
| "useHostVerification": { | ||
| "description": "Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).", | ||
| "type": "object" | ||
| }, | ||
| "usePeerVerification": { | ||
| "description": "Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).", | ||
| "type": "object" | ||
| }, | ||
| "encryptedCredential": { | ||
| "description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).", | ||
| "type": "object" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "endpoint", | ||
| "clientId" | ||
| ] | ||
| } | ||
| } | ||
| } | ||
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.
Please update the examples if any
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.
nothing should be updated in example since we just added a new connector.