aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Azure/Tango.AzureUtils/Environment/UpgradeEnvironmentConfiguration.cs
blob: 6243b65a0e9117f2fa01193a226ad93a659bcc94 (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 CopyTwineStudioStorageBlobs { get; set; }
        public bool UpgradeTwineStudioDatabaseVersion { get; set; }
        public bool CopyMachineServiceFiles { get; set; }
    }
}