Skip to content
Merged
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 @@ -281,6 +281,10 @@
"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)."
},
"alwaysEncryptedSettings": {
"$ref": "#/definitions/SqlAlwaysEncryptedProperties",
"description": "Sql always encrypted properties."
}
},
"required": [
Expand Down Expand Up @@ -337,6 +341,10 @@
"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)."
},
"alwaysEncryptedSettings": {
"$ref": "#/definitions/SqlAlwaysEncryptedProperties",
"description": "Sql always encrypted properties."
}
},
"required": [
Expand Down Expand Up @@ -393,12 +401,44 @@
"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)."
},
"alwaysEncryptedSettings": {
"$ref": "#/definitions/SqlAlwaysEncryptedProperties",
"description": "Sql always encrypted properties."
}
},
"required": [
"connectionString"
]
},
"SqlAlwaysEncryptedProperties": {
"description": "Sql always encrypted properties.",
"properties": {
"alwaysEncryptedAkvAuthType": {
"x-ms-enum": {
"name": "SqlAlwaysEncryptedAkvAuthType",
"modelAsString": true
},
"enum": [
"ServicePrincipal",
"ManagedIdentity"
],
"type": "string",
"description": "Sql always encrypted AKV authentication type. Type: string (or Expression with resultType string)."
},
"servicePrincipalId": {
"type": "object",
"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": {
"$ref": "../datafactory.json#/definitions/SecretBase",
"description": "The key of the service principal used to authenticate against Azure Key Vault."
}
},
"required": [
"alwaysEncryptedAkvAuthType"
]
},
"AzureBatchLinkedService": {
"x-ms-discriminator-value": "AzureBatch",
"description": "Azure Batch linked service.",
Expand Down