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

[DataFactory]SapBwCube and Sybase Dataset #6756

Merged
merged 1 commit into from
Jul 29, 2019
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 @@ -1569,6 +1569,44 @@
}
}
},
"SybaseTableDataset": {
"x-ms-discriminator-value": "SybaseTable",
"description": "The Sybase table dataset.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Dataset"
}
],
"properties": {
"typeProperties": {
"description": "Sybase table dataset properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/SybaseTableDatasetTypeProperties"
}
}
},
"SybaseTableDatasetTypeProperties": {
"description": "Sybase table dataset properties.",
"properties": {
"tableName": {
"type": "object",
"description": "The Sybase table name. Type: string (or Expression with resultType string)."
}
}
},
"SapBwCubeDataset": {
"x-ms-discriminator-value": "SapBwCube",
"description": "The SAP BW cube dataset.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Dataset"
}
],
"properties": {
}
},
"SapCloudForCustomerResourceDataset": {
"x-ms-discriminator-value": "SapCloudForCustomerResource",
"description": "The path of the SAP Cloud for Customer OData entity.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1074,6 +1074,21 @@
}
}
},
"SapBwSource": {
"description": "A copy activity source for SapBW server via MDX.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CopySource"
}
],
"properties": {
"query": {
"type": "object",
"description": "MDX query. Type: string (or Expression with resultType string)."
}
}
},
"ODataSource": {
"description": "A copy activity source for OData source.",
"type": "object",
Expand Down