Skip to content

Commit 3dd482f

Browse files
author
Dongwei Wang
committed
Update dataset, linked service and pipeline
1 parent a818f7c commit 3dd482f

File tree

3 files changed

+114
-0
lines changed

3 files changed

+114
-0
lines changed

specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/entityTypes/Dataset.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2318,6 +2318,37 @@
23182318
}
23192319
}
23202320
},
2321+
"AmazonRdsForSqlServerTableDataset": {
2322+
"x-ms-discriminator-value": "AmazonRdsForSqlServerTable",
2323+
"description": "The Amazon RDS for SQL Server dataset.",
2324+
"type": "object",
2325+
"allOf": [
2326+
{
2327+
"$ref": "#/definitions/Dataset"
2328+
}
2329+
],
2330+
"properties": {
2331+
"typeProperties": {
2332+
"description": "The Amazon RDS for SQL Server dataset properties.",
2333+
"x-ms-client-flatten": true,
2334+
"$ref": "#/definitions/AmazonRdsForSqlServerTableDatasetTypeProperties"
2335+
}
2336+
}
2337+
},
2338+
"AmazonRdsForSqlServerTableDatasetTypeProperties": {
2339+
"description": "The Amazon RDS for SQL Server dataset properties.",
2340+
"type": "object",
2341+
"properties": {
2342+
"schema": {
2343+
"type": "object",
2344+
"description": "The schema name of the SQL Server dataset. Type: string (or Expression with resultType string)."
2345+
},
2346+
"table": {
2347+
"type": "object",
2348+
"description": "The table name of the SQL Server dataset. Type: string (or Expression with resultType string)."
2349+
}
2350+
}
2351+
},
23212352
"RestResourceDataset": {
23222353
"x-ms-discriminator-value": "RestResource",
23232354
"description": "A Rest service dataset.",

specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/entityTypes/LinkedService.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,51 @@
280280
"connectionString"
281281
]
282282
},
283+
"AmazonRdsForSqlServerLinkedService": {
284+
"x-ms-discriminator-value": "AmazonRdsForSqlServer",
285+
"description": "Amazon RDS for SQL Server linked service.",
286+
"type": "object",
287+
"allOf": [
288+
{
289+
"$ref": "#/definitions/LinkedService"
290+
}
291+
],
292+
"properties": {
293+
"typeProperties": {
294+
"description": "Amazon RDS for SQL Server linked service properties.",
295+
"x-ms-client-flatten": true,
296+
"$ref": "#/definitions/AmazonRdsForSqlServerLinkedServiceTypeProperties"
297+
}
298+
},
299+
"required": [
300+
"typeProperties"
301+
]
302+
},
303+
"AmazonRdsForSqlServerLinkedServiceTypeProperties": {
304+
"description": "SQL Server linked service properties.",
305+
"type": "object",
306+
"properties": {
307+
"connectionString": {
308+
"description": "The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.",
309+
"type": "object"
310+
},
311+
"userName": {
312+
"type": "object",
313+
"description": "The on-premises Windows authentication user name. Type: string (or Expression with resultType string)."
314+
},
315+
"password": {
316+
"description": "The on-premises Windows authentication password.",
317+
"$ref": "../artifacts.json#/definitions/SecretBase"
318+
},
319+
"encryptedCredential": {
320+
"type": "object",
321+
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string)."
322+
}
323+
},
324+
"required": [
325+
"connectionString"
326+
]
327+
},
283328
"AzureSqlDatabaseLinkedService": {
284329
"x-ms-discriminator-value": "AzureSqlDatabase",
285330
"description": "Microsoft Azure SQL Database linked service.",

specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/entityTypes/Pipeline.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2274,6 +2274,44 @@
22742274
}
22752275
}
22762276
},
2277+
"AmazonRdsForSqlServerSource": {
2278+
"description": "A copy activity Amazon RDS for SQL Server source.",
2279+
"type": "object",
2280+
"allOf": [
2281+
{
2282+
"$ref": "#/definitions/TabularSource"
2283+
}
2284+
],
2285+
"properties": {
2286+
"sqlReaderQuery": {
2287+
"type": "object",
2288+
"description": "SQL reader query. Type: string (or Expression with resultType string)."
2289+
},
2290+
"sqlReaderStoredProcedureName": {
2291+
"type": "object",
2292+
"description": "Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string)."
2293+
},
2294+
"storedProcedureParameters": {
2295+
"description": "Value and type setting for stored procedure parameters. Example: \"{Parameter1: {value: \"1\", type: \"int\"}}\".",
2296+
"type": "object",
2297+
"additionalProperties": {
2298+
"$ref": "#/definitions/StoredProcedureParameter"
2299+
}
2300+
},
2301+
"produceAdditionalTypes": {
2302+
"description": "Which additional types to produce.",
2303+
"type": "object"
2304+
},
2305+
"partitionOption": {
2306+
"description": "The partition mechanism that will be used for Sql read in parallel. Possible values include: \"None\", \"PhysicalPartitionsOfTable\", \"DynamicRange\".",
2307+
"type": "object"
2308+
},
2309+
"partitionSettings": {
2310+
"description": "The settings that will be leveraged for Sql source partitioning.",
2311+
"$ref": "#/definitions/SqlPartitionSettings"
2312+
}
2313+
}
2314+
},
22772315
"AzureSqlSource": {
22782316
"description": "A copy activity Azure SQL source.",
22792317
"type": "object",

0 commit comments

Comments
 (0)