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

@@ -556,6 +556,38 @@ declare module 'azdata' {
* and not the Advanced Options window.
*/
showOnConnectionDialog?: boolean;
/**
* Used to define list of values based on which another option is rendered visible/hidden.
*/
onSelectionChange?: SelectionChangeEvent[];
}
/**
* This change event defines actions
*/
export interface SelectionChangeEvent {
/**
* Values that affect actions defined in this event.
*/
values: string[];
/**
* Action to be taken on another option when selected value matches to the list of values provided.
*/
dependentOptionActions: DependentOptionAction[];
}
export interface DependentOptionAction {
/**
* Name of option affected by defined action.
*/
optionName: string,
/**
* Action to be taken, Supported values: 'show', 'hide'.
*/
action: string;
}
// Object Explorer interfaces --------------------------------