Files
sqltoolsservice/test/Microsoft.SqlTools.ServiceLayer.Test.Common/Constants.cs
Nemanja Milovančević 881c335cdf Backup/Restore Managed Instance (#1428)
* Enabled backup to and restore from URL

* Created RPC, but when process tries to load Microsoft.Azure.Storage.Blob.dll, it crashes

* Added create shared access token

* Code refactor

* Minor changes

* Changed RPC path

* Moved createSas RPC to the newly created BlobService, fixed PR comments

* Added sas expiration date parameter to the RPC

* Added copyright headers

* Removed ConnectionInstance property from BlobService

* Removed unhelpful comment

* Removed unused using statements

* Changed copy/paste comments

* Disposable objects fix

* Small formatting fix

* Changed backup to/restore from url supported device types

* Added backup to url integration test

* Created restore integration test. Test are now getting azure blob params from env variables instead of file.

* Culture invariant epiration date param, fixed comment, and typo

* Updated headers

* PR comments fix

* Changed supported device type logic

* string localization fix

* String formatting fix

* build failure fix

* Typo

* Updated supported restore device types
2022-04-20 14:01:13 -07:00

45 lines
1.5 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.ServiceLayer.Test.Common
{
public static class Constants
{
public const string SqlConectionSettingsEnvironmentVariable = "SettingsFileName";
public const string AzureStorageAccountKey = "AzureStorageAccountKey";
public const string AzureStorageAccountName = "AzureStorageAccountName";
public const string AzureBlobContainerUri = "AzureBlobContainerUri";
/// <summary>
/// Environment variable used to get the TSDATA source directory root.
/// K2 is under it.
/// </summary>
public const string SourceDirectoryEnvVariable = "Enlistment_Root";
/// <summary>
/// Environment variable used to get the build output directory.
/// DTRun will set this automatically
/// </summary>
public const string BinariesDirectoryEnvVariable = "DacFxBuildOutputDir";
public const string DDSuiteBuiltTarget = "DD_SuitesTarget";
public const string DBBackupFileLocation = "DBBackupPath";
public const string ProjectPath = "ProjectPath";
public const string BVTLocalRoot = "BVT_LOCALROOT";
public const string DBIMode = "DBI_MODE";
public const string OwnerUri = "testFile";
public const string StandardQuery = "SELECT * FROM sys.objects";
}
}