mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Add security tab for server properties (#24209)
Co-authored-by: Cory Rivera <corivera@microsoft.com>
This commit is contained in:
@@ -538,6 +538,26 @@ export interface Server extends ObjectManagement.SqlObject {
|
||||
autoProcessorAffinityMaskForAll: boolean;
|
||||
autoProcessorAffinityIOMaskForAll: boolean;
|
||||
numaNodes: NumaNode[];
|
||||
authenticationMode: ServerLoginMode;
|
||||
loginAuditing: AuditLevel;
|
||||
}
|
||||
|
||||
/**
|
||||
* The server login types.
|
||||
*/
|
||||
export const enum ServerLoginMode {
|
||||
Integrated, //windows auth only
|
||||
Mixed // both sql server and windows auth
|
||||
}
|
||||
|
||||
/**
|
||||
* The server audit levels.
|
||||
*/
|
||||
export const enum AuditLevel {
|
||||
None,
|
||||
Success,
|
||||
Failure,
|
||||
All
|
||||
}
|
||||
|
||||
export interface NumericServerProperty {
|
||||
|
||||
Reference in New Issue
Block a user