mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-29 17:23:25 -05:00
28 lines
1.1 KiB
TypeScript
28 lines
1.1 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
// ------------------------------- < Cancel Connect Request > ---------------------------------------
|
|
|
|
/**
|
|
* Cancel connect request message format
|
|
*/
|
|
export class CancelConnectParams {
|
|
/**
|
|
* URI identifying the owner of the connection
|
|
*/
|
|
public ownerUri: string;
|
|
}
|
|
|
|
// ------------------------------- </ Cancel Connect Request > --------------------------------------
|
|
|
|
// ------------------------------- < Disconnect Request > -------------------------------------------
|
|
|
|
// Disconnect request message format
|
|
export class DisconnectParams {
|
|
// URI identifying the owner of the connection
|
|
public ownerUri: string;
|
|
}
|
|
|
|
// ------------------------------- </ Disconnect Request > ------------------------------------------
|