blob: 1d7b9de1624253bf36fda2d78dd006db0f03dfac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.AzureUtils.Environment
{
public class UpgradeEnvironmentConfiguration
{
public bool SynchronizeDatabaseSchema { get; set; } = true;
public bool SynchronizeDatabaseData { get; set; } = true;
public bool CopyMachineStudioStorageBlobs { get; set; } = true;
public bool UpgradeMachineStudioDatabaseVersion { get; set; } = true;
public bool CopyPPCStorageBlobs { get; set; } = true;
public bool UpgradePPCDatabaseVersion { get; set; } = true;
public bool CopyFSEStorageBlobs { get; set; } = true;
public bool UpgradeFSEDatabaseVersion { get; set; } = true;
public bool CopyMachineServiceFiles { get; set; } = true;
}
}
|