mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-27 17:23:21 -05:00
Add support for Encrypt=Strict for TDS 8.0 connections with SQL Server 2022 (#21256)
This commit is contained in:
32
src/sql/azdata.proposed.d.ts
vendored
32
src/sql/azdata.proposed.d.ts
vendored
@@ -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 --------------------------------
|
||||
|
||||
Reference in New Issue
Block a user