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] add support for azure databricks delta lake #10794

Merged
merged 1 commit into from
Sep 21, 2020
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 @@ -3249,6 +3249,36 @@
"description": "The name of the SharePoint Online list. Type: string (or Expression with resultType string)."
}
}
},
"AzureDatabricksDeltaLakeDataset": {
"x-ms-discriminator-value": "AzureDatabricksDeltaLakeDataset",
"description": "Azure Databricks Delta Lake dataset.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Dataset"
}
],
"properties": {
"typeProperties": {
"description": "Properties specific to this dataset type.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/AzureDatabricksDeltaLakeDatasetTypeProperties"
}
}
},
"AzureDatabricksDeltaLakeDatasetTypeProperties": {
"description": "Azure Databricks Delta Lake Dataset Properties",
"properties": {
"table": {
"type": "object",
"description": "The name of delta table. Type: string (or Expression with resultType string)."
},
"database": {
"type": "object",
"description": "The database name of delta table. Type: string (or Expression with resultType string)."
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5322,6 +5322,50 @@
"accessToken"
]
},
"AzureDatabricksDeltaLakeLinkedService": {
"x-ms-discriminator-value": "AzureDatabricksDeltaLake",
"description": "Azure Databricks Delta Lake linked service.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/LinkedService"
}
],
"properties": {
"typeProperties": {
"description": "Azure Databricks Delta Lake linked service properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/AzureDatabricksDetltaLakeLinkedServiceTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"AzureDatabricksDetltaLakeLinkedServiceTypeProperties": {
"description": "Azure Databricks Delta Lake linked service properties.",
"properties": {
"domain": {
"type": "object",
"description": "<REGION>.azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string)."
},
"accessToken": {
"description": "Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.",
"$ref": "../datafactory.json#/definitions/SecretBase"
},
"clusterId": {
"type": "object",
"description": "The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string)."
},
"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": [
"domain"
]
},
"ResponsysLinkedService": {
"x-ms-discriminator-value": "Responsys",
"description": "Responsys linked service.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3621,6 +3621,82 @@
}
}
},
"AzureDatabricksDeltaLakeSource": {
"description": "A copy activity Azure Databricks Delta Lake source.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CopySource"
}
],
"properties": {
"query": {
"type": "object",
"description": "Azure Databricks Delta Lake Sql query. Type: string (or Expression with resultType string)."
},
"exportSettings": {
"$ref": "#/definitions/AzureDatabricksDeltaLakeExportCommand",
"description": "Azure Databricks Delta Lake export settings."
}
}
},
"AzureDatabricksDeltaLakeExportCommand": {
"description": "Azure Databricks Delta Lake export command settings.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/ExportSettings"
}
],
"properties": {
"dateFormat": {
"type": "object",
"description": "Specify the date format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string)."
},
"timestampFormat": {
"type": "object",
"description": "Specify the timestamp format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string)."
}
}
},
"AzureDatabricksDeltaLakeSink": {
"description": "A copy activity Azure Databricks Delta Lake sink.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CopySink"
}
],
"properties": {
"preCopyScript": {
"type": "object",
"description": "SQL pre-copy script. Type: string (or Expression with resultType string)."
},
"importSettings": {
"$ref": "#/definitions/AzureDatabricksDeltaLakeImportCommand",
"description": "Azure Databricks Delta Lake import settings."
}
}
},
"AzureDatabricksDeltaLakeImportCommand": {
"description": "Azure Databricks Delta Lake import command settings.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/ImportSettings"
}
],
"properties": {
"dateFormat": {
"type": "object",
"description": "Specify the date format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string)."
},
"timestampFormat": {
"type": "object",
"description": "Specify the timestamp format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string)."
}
}
},
"StoredProcedureParameter": {
"description": "SQL stored procedure parameter.",
"type": "object",
Expand Down