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

[AutoPR datafactory] [datafactory] add sql always encrypted settings #2124

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion schemas/2017-09-01-preview/Microsoft.DataFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -12175,4 +12175,4 @@
"description": "Zoho server dataset."
}
}
}
}
75 changes: 74 additions & 1 deletion schemas/2018-06-01/Microsoft.DataFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -4812,6 +4812,17 @@
"AzureSqlDatabaseLinkedServiceTypeProperties": {
"type": "object",
"properties": {
"alwaysEncryptedSettings": {
"oneOf": [
{
"$ref": "#/definitions/SqlAlwaysEncryptedProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Sql always encrypted properties."
},
"azureCloudType": {
"type": "object",
"properties": {},
Expand Down Expand Up @@ -5025,6 +5036,17 @@
"AzureSqlMILinkedServiceTypeProperties": {
"type": "object",
"properties": {
"alwaysEncryptedSettings": {
"oneOf": [
{
"$ref": "#/definitions/SqlAlwaysEncryptedProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Sql always encrypted properties."
},
"azureCloudType": {
"type": "object",
"properties": {},
Expand Down Expand Up @@ -25259,6 +25281,46 @@
],
"description": "A copy activity Spark Server source."
},
"SqlAlwaysEncryptedProperties": {
"type": "object",
"properties": {
"alwaysEncryptedAkvAuthType": {
"oneOf": [
{
"type": "string",
"enum": [
"ServicePrincipal",
"ManagedIdentity"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Sql always encrypted AKV authentication type. Type: string (or Expression with resultType string)."
},
"servicePrincipalId": {
"type": "object",
"properties": {},
"description": "The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string)."
},
"servicePrincipalKey": {
"oneOf": [
{
"$ref": "#/definitions/SecretBase"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The base definition of a secret type."
}
},
"required": [
"alwaysEncryptedAkvAuthType"
],
"description": "Sql always encrypted properties."
},
"SqlDWSink": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -25529,6 +25591,17 @@
"SqlServerLinkedServiceTypeProperties": {
"type": "object",
"properties": {
"alwaysEncryptedSettings": {
"oneOf": [
{
"$ref": "#/definitions/SqlAlwaysEncryptedProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Sql always encrypted properties."
},
"connectionString": {
"type": "object",
"properties": {},
Expand Down Expand Up @@ -28861,4 +28934,4 @@
"description": "A copy activity Zoho server source."
}
}
}
}