Skip to content
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 @@ -802,6 +802,35 @@
"tableName"
]
},
"AzureMySqlTableDataset": {
"x-ms-discriminator-value": "AzureMySqlTable",
"description": "The Azure MySQL database dataset.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Dataset"
}
],
"properties": {
"typeProperties": {
"description": "Azure MySQL database dataset properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/AzureMySqlTableDatasetTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"AzureMySqlTableDatasetTypeProperties": {
"description": "Azure MySQL database dataset properties.",
"properties": {
"tableName": {
"type": "object",
"description": "The Azure MySQL database table name. Type: string (or Expression with resultType string)."
}
}
},
"RelationalTableDataset": {
"x-ms-discriminator-value": "RelationalTable",
"description": "The relational table dataset.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,42 @@
"connectionString"
]
},
"AzureMySqlLinkedService": {
"x-ms-discriminator-value": "AzureMySql",
"description": "Azure MySQL database linked service.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/LinkedService"
}
],
"properties": {
"typeProperties": {
"description": "Azure MySQL database linked service properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/AzureMySqlLinkedServiceTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"AzureMySqlLinkedServiceTypeProperties": {
"description": "Azure MySQL database linked service properties.",
"properties": {
"connectionString": {
"description": "The connection string.",
"$ref": "../datafactory.json#/definitions/SecureString"
},
"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": [
"connectionString"
]
},
"MySqlLinkedService": {
"x-ms-discriminator-value": "MySql",
"description": "Linked service for MySQL data source.",
Expand Down Expand Up @@ -2033,4 +2069,4 @@
]
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@
}
},
"HdfsSource": {
"description": "A copy activity source for HDFS source.",
"description": "A copy activity HDFS source.",
"type": "object",
"allOf": [
{
Expand Down Expand Up @@ -449,6 +449,21 @@
"tempScriptPath"
]
},
"AzureMySqlSource": {
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this referenced somewhere?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a newly added data source and can be used by customers via SDK. Currently it is used in test.

"description": "A copy activity Azure MySQL source.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CopySource"
}
],
"properties": {
"query": {
"type": "object",
"description": "Database query. Type: string (or Expression with resultType string)."
}
}
},
"OracleSource": {
"description": "A copy activity Oracle source.",
"type": "object",
Expand Down