mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-12 11:08:31 -05:00
Add versioning for accounts (#11497)
* Add versioning for accounts * deletion value
This commit is contained in:
14
src/sql/azdata.proposed.d.ts
vendored
14
src/sql/azdata.proposed.d.ts
vendored
@@ -512,4 +512,18 @@ declare module 'azdata' {
|
||||
getAccountSecurityToken(account: Account, tenant: string, resource: AzureResource): Thenable<{ token: string } | undefined>;
|
||||
}
|
||||
|
||||
export interface AccountKey {
|
||||
/**
|
||||
* A version string for an account
|
||||
*/
|
||||
accountVersion?: string;
|
||||
}
|
||||
|
||||
export interface Account {
|
||||
/**
|
||||
* Specifies if an account should be deleted
|
||||
*/
|
||||
delete?: boolean;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user