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

[ReleasePR datafactory] Add isServerVersionAbove32 in CosmosDbMongoDbApi linked service #1618

Closed
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
24 changes: 20 additions & 4 deletions schemas/2018-06-01/Microsoft.DataFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -10820,7 +10820,8 @@
"type": "string",
"enum": [
"IntegrationRuntimeReference",
"LinkedServiceReference"
"LinkedServiceReference",
"CredentialReference"
]
},
{
Expand Down Expand Up @@ -10943,15 +10944,19 @@
"properties": {},
"description": "The partial data of one sheet. Type: string (or Expression with resultType string)."
},
"sheetIndex": {
"type": "object",
"properties": {},
"description": "The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)"
},
"sheetName": {
"type": "object",
"properties": {},
"description": "The sheet of excel file. Type: string (or Expression with resultType string)."
"description": "The sheet name of excel file. Type: string (or Expression with resultType string)."
}
},
"required": [
"location",
"sheetName"
"location"
],
"description": "Excel dataset properties."
},
Expand Down Expand Up @@ -16328,6 +16333,17 @@
],
"description": "License type for bringing your own license scenario."
},
"managedCredential": {
"oneOf": [
{
"$ref": "#/definitions/EntityReference"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The entity reference."
},
"packageStores": {
"oneOf": [
{
Expand Down