Add versioning for accounts (#11497)

* Add versioning for accounts

* deletion value
This commit is contained in:
Amir Omidi
2020-07-23 19:13:44 -07:00
committed by GitHub
parent 83211d6e2d
commit 5b8039379e
3 changed files with 53 additions and 38 deletions

View File

@@ -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;
}
}