aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Azure/Tango.AzureUtils/Environment/CreateEnvironmentConfiguration.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Azure/Tango.AzureUtils/Environment/CreateEnvironmentConfiguration.cs')
-rw-r--r--Software/Visual_Studio/Azure/Tango.AzureUtils/Environment/CreateEnvironmentConfiguration.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Azure/Tango.AzureUtils/Environment/CreateEnvironmentConfiguration.cs b/Software/Visual_Studio/Azure/Tango.AzureUtils/Environment/CreateEnvironmentConfiguration.cs
new file mode 100644
index 000000000..bf1c2cb31
--- /dev/null
+++ b/Software/Visual_Studio/Azure/Tango.AzureUtils/Environment/CreateEnvironmentConfiguration.cs
@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.AzureUtils.Environment
+{
+ public class CreateEnvironmentConfiguration
+ {
+ public String Email { get; set; }
+ public String Password { get; set; }
+
+ public bool CreateEnvironmentGroup { get; set; } = true;
+ public bool AddEnvironmentGroupAdminUser { get; set; } = true;
+ public bool CloneEnvironmentGroupUsers { get; set; } = true;
+ public bool CreateDeploymentSlot { get; set; } = true;
+ public bool CreateDatabase { get; set; } = true;
+ public bool AddDatabasePermissionsForEnvironmentGroup { get; set; } = true;
+ public bool CreateDatabaseBackupUser { get; set; } = true;
+ public bool SynchronizeDatabaseSchema { get; set; } = true;
+ public bool SynchronizeDatabaseData { get; set; } = true;
+ public bool CreateStorageContainers { get; set; } = true;
+ public bool CopyStorageBlobs { get; set; } = true;
+ public bool CopyMachineServiceFiles { get; set; } = true;
+ public bool IgnoreExistingSlot { get; set; } = false;
+ }
+}