Skip to content

Commit

Permalink
Add Dataset and CopySource for SAP HANA (#6314)
Browse files Browse the repository at this point in the history
* Add Dataset and CopySource for SAP HANA

* Update LinkedService.json

* Update Pipeline.json
  • Loading branch information
TinaHu1 authored and kpajdzik committed Jun 13, 2019
1 parent 5355994 commit a9771cc
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1327,6 +1327,36 @@
"path"
]
},
"SapHanaTableDataset": {
"x-ms-discriminator-value": "SapHanaTable",
"description": "SAP HANA Table properties.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Dataset"
}
],
"properties": {
"typeProperties": {
"description": "SAP HANA Table properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/SapHanaTableDatasetTypeProperties"
}
}
},
"SapHanaTableDatasetTypeProperties": {
"description": "SAP HANA Table properties.",
"properties": {
"schema": {
"type": "object",
"description": "The schema name of SAP HANA. Type: string (or Expression with resultType string)."
},
"table": {
"type": "object",
"description": "The table name of SAP HANA. Type: string (or Expression with resultType string)."
}
}
},
"SapOpenHubTableDataset": {
"x-ms-discriminator-value": "SapOpenHubTable",
"description": "Sap Business Warehouse Open Hub Destination Table properties.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2410,6 +2410,10 @@
"SapHanaLinkedServiceProperties": {
"description": "Properties specific to this linked service type.",
"properties": {
"connectionString": {
"type": "object",
"description": "SAP HANA ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference."
},
"server": {
"type": "object",
"description": "Host name of the SAP HANA server. Type: string (or Expression with resultType string)."
Expand Down Expand Up @@ -5055,4 +5059,4 @@
]
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -981,6 +981,25 @@
}
}
},
"SapHanaSource": {
"description": "A copy activity source for SAP HANA source.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CopySource"
}
],
"properties": {
"query": {
"type": "object",
"description": "SAP HANA Sql query. Type: string (or Expression with resultType string)."
},
"packetSize": {
"type": "object",
"description": "The packet size of data read from SAP HANA. Type: integer(or Expression with resultType integer)."
}
}
},
"SapOpenHubSource": {
"description": "A copy activity source for SAP Business Warehouse Open Hub Destination source.",
"type": "object",
Expand Down Expand Up @@ -4433,4 +4452,4 @@
]
}
}
}
}

0 comments on commit a9771cc

Please sign in to comment.