blob: 44cde77319572dee515b748cd2ce072323ecf433 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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; }
public bool SynchronizeDatabaseData { get; set; }
public bool CopyMachineStudioStorageBlobs { get; set; }
public bool UpgradeMachineStudioDatabaseVersion { get; set; }
public bool CopyPPCStorageBlobs { get; set; }
public bool UpgradePPCDatabaseVersion { get; set; }
public bool CopyFSEStorageBlobs { get; set; }
public bool UpgradeFSEDatabaseVersion { get; set; }
public bool CopyTwineRSMStorageBlobs { get; set; }
public bool UpgradeTwineRSMDatabaseVersion { get; set; }
public bool CopyMachineServiceFiles { get; set; }
}
}
|