mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-13 19:48:34 -05:00
Introduce AAD interactive auth mode (#1860)
This commit is contained in:
18
src/Microsoft.SqlTools.Shared/Utility/Constants.cs
Normal file
18
src/Microsoft.SqlTools.Shared/Utility/Constants.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
//
|
||||
// Copyright (c) Microsoft. All rights reserved.
|
||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
namespace Microsoft.SqlTools.Shared.Utility
|
||||
{
|
||||
public class Constants
|
||||
{
|
||||
// Authentication Types
|
||||
public const string Integrated = "Integrated";
|
||||
public const string SqlLogin = "SqlLogin";
|
||||
public const string AzureMFA = "AzureMFA";
|
||||
public const string dstsAuth = "dstsAuth";
|
||||
public const string ActiveDirectoryInteractive = "ActiveDirectoryInteractive";
|
||||
public const string ActiveDirectoryPassword = "ActiveDirectoryPassword";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user