mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-13 17:23:02 -05:00
25 lines
1.0 KiB
C#
25 lines
1.0 KiB
C#
//
|
|
// 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.Utility
|
|
{
|
|
public class SqlConstants
|
|
{
|
|
// 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";
|
|
|
|
// Microsoft Entra authentication (MSAL) constants
|
|
public const string ApplicationClientId = "a69788c6-1d43-44ed-9ca3-b83e194da255";
|
|
public const string AzureTokenFolder = "Azure Accounts";
|
|
public const string AzureAccountProviderCredentials = "azureAccountProviderCredentials";
|
|
public const string MsalCacheName = "accessTokenCache";
|
|
}
|
|
}
|