mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Add Secure Enclaves dropdown with customizable Advanced options (#22019)
This commit is contained in:
@@ -928,15 +928,66 @@
|
||||
"categoryValues": [
|
||||
{
|
||||
"displayName": "%mssql.disabled%",
|
||||
"name": "Disabled"
|
||||
"name": "disabled"
|
||||
},
|
||||
{
|
||||
"displayName": "%mssql.enabled%",
|
||||
"name": "Enabled"
|
||||
"name": "enabled"
|
||||
}
|
||||
],
|
||||
"isRequired": false,
|
||||
"isArray": false
|
||||
"isArray": false,
|
||||
"onSelectionChange": [
|
||||
{
|
||||
"values": [
|
||||
"disabled",
|
||||
""
|
||||
],
|
||||
"dependentOptionActions": [
|
||||
{
|
||||
"optionName": "secureEnclaves",
|
||||
"action": "hide"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"specialValueType": null,
|
||||
"isIdentity": false,
|
||||
"name": "secureEnclaves",
|
||||
"displayName": "%mssql.connectionOptions.secureEnclaves.displayName%",
|
||||
"description": "%mssql.connectionOptions.secureEnclaves.description%",
|
||||
"groupName": "%mssql.connectionOptions.groupName.security%",
|
||||
"valueType": "category",
|
||||
"defaultValue": null,
|
||||
"objectType": null,
|
||||
"categoryValues": [
|
||||
{
|
||||
"displayName": "%mssql.disabled%",
|
||||
"name": "disabled"
|
||||
},
|
||||
{
|
||||
"displayName": "%mssql.enabled%",
|
||||
"name": "enabled"
|
||||
}
|
||||
],
|
||||
"isRequired": false,
|
||||
"isArray": false,
|
||||
"onSelectionChange": [
|
||||
{
|
||||
"values": [
|
||||
"disabled",
|
||||
""
|
||||
],
|
||||
"dependentOptionActions": [
|
||||
{
|
||||
"optionName": "attestationProtocol",
|
||||
"action": "hide"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"specialValueType": null,
|
||||
@@ -951,15 +1002,33 @@
|
||||
"categoryValues": [
|
||||
{
|
||||
"displayName": "%mssql.connectionOptions.enclaveAttestationProtocol.categoryValues.HGS%",
|
||||
"name": "HGS"
|
||||
"name": "hgs"
|
||||
},
|
||||
{
|
||||
"displayName": "%mssql.connectionOptions.enclaveAttestationProtocol.categoryValues.AAS%",
|
||||
"name": "AAS"
|
||||
"name": "aas"
|
||||
},
|
||||
{
|
||||
"displayName": "%mssql.connectionOptions.enclaveAttestationProtocol.categoryValues.None%",
|
||||
"name": "none"
|
||||
}
|
||||
],
|
||||
"isRequired": false,
|
||||
"isArray": false
|
||||
"isArray": false,
|
||||
"onSelectionChange": [
|
||||
{
|
||||
"values": [
|
||||
"none",
|
||||
""
|
||||
],
|
||||
"dependentOptionActions": [
|
||||
{
|
||||
"optionName": "enclaveAttestationUrl",
|
||||
"action": "hide"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"specialValueType": null,
|
||||
|
||||
@@ -111,10 +111,13 @@
|
||||
"mssql.connectionOptions.currentLanguage.description": "The SQL Server language record name",
|
||||
"mssql.connectionOptions.columnEncryptionSetting.displayName": "Always Encrypted",
|
||||
"mssql.connectionOptions.columnEncryptionSetting.description": "Enables or disables Always Encrypted for the connection",
|
||||
"mssql.connectionOptions.secureEnclaves.displayName": "Secure Enclaves",
|
||||
"mssql.connectionOptions.secureEnclaves.description": "Enables or disables Secure Enclaves for the connection",
|
||||
"mssql.connectionOptions.enclaveAttestationProtocol.displayName": "Attestation Protocol",
|
||||
"mssql.connectionOptions.enclaveAttestationProtocol.description": "Specifies a protocol for attesting a server-side enclave used with Always Encrypted with secure enclaves",
|
||||
"mssql.connectionOptions.enclaveAttestationProtocol.categoryValues.AAS": "Azure Attestation",
|
||||
"mssql.connectionOptions.enclaveAttestationProtocol.categoryValues.HGS": "Host Guardian Service",
|
||||
"mssql.connectionOptions.enclaveAttestationProtocol.categoryValues.None": "None",
|
||||
"mssql.connectionOptions.enclaveAttestationUrl.displayName": "Enclave Attestation URL",
|
||||
"mssql.connectionOptions.enclaveAttestationUrl.description": "Specifies an endpoint for attesting a server-side enclave used with Always Encrypted with secure enclaves",
|
||||
"mssql.connectionOptions.encrypt.displayName": "Encrypt",
|
||||
|
||||
Reference in New Issue
Block a user