mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-04-01 09:30:31 -04:00
Notify STS when encryption keys are updated in azurecore (#22384)
This commit is contained in:
@@ -1604,3 +1604,25 @@ export namespace DropObjectRequest {
|
||||
export const type = new RequestType<DropObjectRequestParams, void, void, void>('objectManagement/drop');
|
||||
}
|
||||
// ------------------------------- < Object Management > ------------------------------------
|
||||
|
||||
// ------------------------------- < Encryption IV/KEY updation Event > ------------------------------------
|
||||
/**
|
||||
* Parameters for the MSAL cache encryption key notification
|
||||
*/
|
||||
export class DidChangeEncryptionIVKeyParams {
|
||||
/**
|
||||
* Buffer encoded IV string for MSAL cache encryption
|
||||
*/
|
||||
public iv: string;
|
||||
/**
|
||||
* Buffer encoded Key string for MSAL cache encryption
|
||||
*/
|
||||
public key: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Notification sent when the encryption keys are changed.
|
||||
*/
|
||||
export namespace EncryptionKeysChangedNotification {
|
||||
export const type = new NotificationType<DidChangeEncryptionIVKeyParams, void>('connection/encryptionKeysChanged');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user