mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 01:25:40 -05:00
* Add linting for copyright and unused usings * Add one more + comment * Enforce in build and fix errors * Fix build
32 lines
911 B
C#
32 lines
911 B
C#
//
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
//
|
|
|
|
using System;
|
|
using Microsoft.SqlTools.ResourceProvider.Core.Authentication;
|
|
|
|
namespace Microsoft.SqlTools.ResourceProvider.Core
|
|
{
|
|
/// <summary>
|
|
/// A session used by <see cref="IAzureResourceManager" />. Includes all the clients that the resource management needs to get ther resources
|
|
/// </summary>
|
|
public interface IAzureResourceManagementSession : IDisposable
|
|
{
|
|
/// <summary>
|
|
/// Closes the session
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
bool CloseSession();
|
|
|
|
/// <summary>
|
|
/// Teh subscription for the current session
|
|
/// </summary>
|
|
IAzureUserAccountSubscriptionContext SubscriptionContext
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|