Skip to content
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 @@ -1427,6 +1427,18 @@
],
"properties": {
}
},
"ResponsysObjectDataset": {
"x-ms-discriminator-value": "ResponsysObject",
"description": "Responsys dataset.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Dataset"
}
],
"properties": {
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Copy link
Contributor

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

Copy link
Contributor Author

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.

"typeProperties"
]
},
"ResponsysLinkedServiceTypeProperties": {
"description": "Responsys linked service properties.",
"properties": {
"endpoint": {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: please check which of these properties should be marked readonly

Copy link
Contributor Author

Choose a reason for hiding this comment

The 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?

Copy link
Contributor

Choose a reason for hiding this comment

The 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"
]
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -1076,7 +1076,22 @@
"description": "A query to retrieve data from source. Type: string (or Expression with resultType string)."
}
}
},
},
"ResponsysSource": {
"description": "A copy activity Responsys source.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CopySource"
}
],
"properties": {
"query": {
"type": "object",
"description": "A query to retrieve data from source. Type: string (or Expression with resultType string)."
}
}
} ,
"AmazonRedshiftSource": {
"description": "A copy activity source for Amazon Redshift Source.",
"type": "object",
Expand Down