Skip to content

Commit 025d441

Browse files
committed
Sync config.cs and config.json
1 parent c92d901 commit 025d441

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

src/Microsoft.Data.SqlClient/tests/tools/Microsoft.Data.SqlClient.TestUtilities/Config.cs

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,33 +15,32 @@ public class Config
1515
public string TCPConnectionStringHGSVBS = null;
1616
public string TCPConnectionStringNoneVBS = null;
1717
public string TCPConnectionStringAASSGX = null;
18+
public bool EnclaveEnabled = false;
19+
public bool TracingEnabled = false;
1820
public string AADAuthorityURL = null;
1921
public string AADPasswordConnectionString = null;
2022
public string AADServicePrincipalId = null;
2123
public string AADServicePrincipalSecret = null;
2224
public string AzureKeyVaultURL = null;
2325
public string AzureKeyVaultTenantId = null;
26+
public bool SupportsIntegratedSecurity = false;
2427
public string LocalDbAppName = null;
2528
public string LocalDbSharedInstanceName = null;
26-
public bool EnclaveEnabled = false;
27-
public bool TracingEnabled = false;
28-
public bool SupportsIntegratedSecurity = false;
29-
public bool ManagedIdentitySupported = true;
3029
public string FileStreamDirectory = null;
3130
public bool UseManagedSNIOnWindows = false;
3231
public string DNSCachingConnString = null;
3332
public string DNSCachingServerCR = null; // this is for the control ring
3433
public string DNSCachingServerTR = null; // this is for the tenant ring
35-
public bool IsAzureSynapse = false; // True for Azure Data Warehouse/Synapse
3634
public bool IsDNSCachingSupportedCR = false; // this is for the control ring
3735
public bool IsDNSCachingSupportedTR = false; // this is for the tenant ring
3836
public string EnclaveAzureDatabaseConnString = null;
37+
public bool ManagedIdentitySupported = true;
3938
public string UserManagedIdentityClientId = null;
4039
public string PowerShellPath = null;
40+
public string AliasName = null;
4141
public string KerberosDomainPassword = null;
4242
public string KerberosDomainUser = null;
4343
public bool IsManagedInstance = false;
44-
public string AliasName = null;
4544

4645
public static Config Load(string configPath = @"config.json")
4746
{

src/Microsoft.Data.SqlClient/tests/tools/Microsoft.Data.SqlClient.TestUtilities/config.default.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,20 @@
2222
"SupportsIntegratedSecurity": true,
2323
"LocalDbAppName": "",
2424
"LocalDbSharedInstanceName": "",
25-
"SupportsFileStream": false,
2625
"FileStreamDirectory": "",
2726
"UseManagedSNIOnWindows": false,
2827
"DNSCachingConnString": "",
2928
"DNSCachingServerCR": "",
3029
"DNSCachingServerTR": "",
3130
"IsDNSCachingSupportedCR": false,
3231
"IsDNSCachingSupportedTR": false,
33-
"IsAzureSynapse": false,
3432
"EnclaveAzureDatabaseConnString": "",
3533
"ManagedIdentitySupported": true,
3634
"UserManagedIdentityClientId": "",
3735
"PowerShellPath": "",
3836
"AliasName": "",
39-
"WorkloadIdentityFederationServiceConnectionId": ""
37+
"WorkloadIdentityFederationServiceConnectionId": "",
38+
"KerberosDomainPassword": "",
39+
"KerberosDomainuser": "",
40+
"IsManagedInstance": false
4041
}

0 commit comments

Comments
 (0)