Added NoAuth authenticationType for Kusto (#14375)

* Added NoAuth authenticationType for Kusto

* Added SqlLogin to Kusto as an AuthType. Renamed NoAuth to None
This commit is contained in:
Justin M
2021-02-26 12:28:43 -08:00
committed by GitHub
parent 862d0d88fa
commit c6c65000ca
4 changed files with 24 additions and 2 deletions

View File

@@ -291,6 +291,14 @@
{
"displayName": "%kusto.connectionOptions.authType.categoryValues.azureMFA%",
"name": "AzureMFA"
},
{
"displayName": "%kusto.connectionOptions.authType.categoryValues.none%",
"name": "None"
},
{
"displayName": "%kusto.connectionOptions.authType.categoryValues.sqlLogin%",
"name": "SqlLogin"
}
],
"isRequired": true,

View File

@@ -27,6 +27,8 @@
"kusto.connectionOptions.authType.displayName": "Authentication type",
"kusto.connectionOptions.authType.description": "Specifies the method of authenticating with Kusto Server",
"kusto.connectionOptions.authType.categoryValues.azureMFA": "Azure Active Directory - Universal with MFA support",
"kusto.connectionOptions.authType.categoryValues.none": "No Authentication",
"kusto.connectionOptions.authType.categoryValues.sqlLogin": "User Authentication",
"kusto.connectionOptions.userName.displayName": "User name",
"kusto.connectionOptions.userName.description": "Indicates the user ID to be used when connecting to the data source",
"kusto.connectionOptions.password.displayName": "Password",