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

[Data Factory] Support rest-based connectors in Synapse (I) #17922

Merged
merged 17 commits into from
Feb 21, 2022
Merged
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 @@ -2774,6 +2774,209 @@
"authenticationType"
]
},
"TeamDeskLinkedService": {
"x-ms-discriminator-value": "TeamDesk",
"description": "Linked service for TeamDesk.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/LinkedService"
}
],
"properties": {
"typeProperties": {
"description": "TeamDesk linked service properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/TeamDeskLinkedServiceTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"TeamDeskLinkedServiceTypeProperties": {
"description": "TeamDesk linked service type properties.",
"type": "object",
"properties": {
"authenticationType": {
"description": "The authentication type to use.",
"type": "string",
"enum": [
"Basic",
"Token"
],
"x-ms-enum": {
"name": "TeamDeskAuthenticationType",
"modelAsString": true
}
},
"url": {
"type": "object",
"description": "The url to connect TeamDesk source. Type: string (or Expression with resultType string)."
},
"userName": {
"type": "object",
"description": "The username of the TeamDesk source. Type: string (or Expression with resultType string)."
},
"password": {
"description": "The password of the TeamDesk source.",
"$ref": "../artifacts.json#/definitions/SecretBase"
},
"apiToken": {
"$ref": "../artifacts.json#/definitions/SecretBase",
"description": "The api token for the TeamDesk source."
},
"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)."
}
},
"required": [
"authenticationType",
"url"
]
},
"QuickbaseLinkedService": {
"x-ms-discriminator-value": "Quickbase",
"description": "Linked service for Quickbase.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/LinkedService"
}
],
"properties": {
"typeProperties": {
"description": "Quickbase linked service properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/QuickbaseLinkedServiceTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"QuickbaseLinkedServiceTypeProperties": {
"description": "Quickbase linked service type properties.",
"type": "object",
"properties": {
"url": {
"type": "object",
"description": "The url to connect Quickbase source. Type: string (or Expression with resultType string)."
},
"userToken": {
"$ref": "../artifacts.json#/definitions/SecretBase",
"description": "The user token for the Quickbase source."
},
"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)."
}
},
"required": [
"url",
"userToken"
]
},
"SmartsheetLinkedService": {
"x-ms-discriminator-value": "Smartsheet",
"description": "Linked service for Smartsheet.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/LinkedService"
}
],
"properties": {
"typeProperties": {
"description": "Smartsheet linked service properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/SmartsheetLinkedServiceTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"SmartsheetLinkedServiceTypeProperties": {
"description": "Smartsheet linked service type properties.",
"type": "object",
"properties": {
"apiToken": {
"$ref": "../artifacts.json#/definitions/SecretBase",
"description": "The api token for the Smartsheet source."
},
"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)."
}
},
"required": [
"apiToken"
]
},
"ZendeskLinkedService": {
"x-ms-discriminator-value": "Zendesk",
"description": "Linked service for Zendesk.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/LinkedService"
}
],
"properties": {
"typeProperties": {
"description": "Zendesk linked service properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/ZendeskLinkedServiceTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"ZendeskLinkedServiceTypeProperties": {
"description": "Zendesk linked service type properties.",
"type": "object",
"properties": {
"authenticationType": {
"description": "The authentication type to use.",
"type": "string",
"enum": [
"Basic",
"Token"
],
"x-ms-enum": {
"name": "ZendeskAuthenticationType",
"modelAsString": true
}
},
"url": {
"type": "object",
"description": "The url to connect Zendesk source. Type: string (or Expression with resultType string)."
},
"userName": {
"type": "object",
"description": "The username of the Zendesk source. Type: string (or Expression with resultType string)."
},
"password": {
"description": "The password of the Zendesk source.",
"$ref": "../artifacts.json#/definitions/SecretBase"
},
"apiToken": {
"$ref": "../artifacts.json#/definitions/SecretBase",
"description": "The api token for the Zendesk source."
},
"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)."
}
},
"required": [
"authenticationType",
"url"
]
},
"AmazonS3LinkedService": {
"x-ms-discriminator-value": "AmazonS3",
"description": "Linked service for Amazon S3.",
Expand Down