Add support for Encrypt=Strict for TDS 8.0 connections with SQL Server 2022 (#21256)

This commit is contained in:
Cheena Malhotra
2023-02-10 10:34:36 -08:00
committed by GitHub
parent c75628639c
commit 3fb8d57d25
13 changed files with 256 additions and 24 deletions

View File

@@ -848,13 +848,37 @@
"displayName": "%mssql.connectionOptions.encrypt.displayName%",
"description": "%mssql.connectionOptions.encrypt.description%",
"groupName": "%mssql.connectionOptions.groupName.security%",
"valueType": "boolean",
"valueType": "category",
"defaultValue": "true",
"objectType": null,
"categoryValues": null,
"categoryValues": [
{
"displayName": "%mssql.connectionOptions.encrypt.categoryValues.true%",
"name": "true"
},
{
"displayName": "%mssql.connectionOptions.encrypt.categoryValues.strict%",
"name": "strict"
},
{
"displayName": "%mssql.connectionOptions.encrypt.categoryValues.false%",
"name": "false"
}
],
"isRequired": false,
"isArray": false,
"showOnConnectionDialog": true
"showOnConnectionDialog": true,
"onSelectionChange": [
{
"values": ["strict"],
"dependentOptionActions": [
{
"optionName": "trustServerCertificate",
"action": "hide"
}
]
}
]
},
{
"specialValueType": null,