mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-31 17:20:28 -04:00
support rename for login, user and a few other types (#22331)
* rename object * add comment * use URN property * vbump STS * revert loc string change * fix name check * pr comments
This commit is contained in:
@@ -1604,4 +1604,14 @@ export namespace DisposeUserViewRequest {
|
||||
export const type = new RequestType<DisposeUserViewRequestParams, void, void, void>('objectManagement/disposeUserView');
|
||||
}
|
||||
|
||||
export interface RenameObjectRequestParams {
|
||||
connectionUri: string;
|
||||
newName: string;
|
||||
objectUrn: string;
|
||||
}
|
||||
|
||||
export namespace RenameObjectRequest {
|
||||
export const type = new RequestType<RenameObjectRequestParams, void, void, void>('objectManagement/rename');
|
||||
}
|
||||
|
||||
// ------------------------------- < Object Management > ------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user