@@ -30,6 +30,7 @@ static void Main(string[] args)
30
30
ProcessWorkflow ( getSettings . ToString ( ) ) ;
31
31
32
32
// Add the test get blob API - before running this create a storage account using AMS called stackedstorage
33
+ // TO CHECK THIS DEMO CREATE THE STORAGE ACOUNT AND CONTAINER "docs" AND THEN UPLOAD A "test.txt" FILE
33
34
IWorkflow getBlob = new BuildGetBlobRequest ( Settings . SubscriptionId , Settings . ManagementCertificate ) ;
34
35
Workflows . Add ( getBlob . ToString ( ) , getBlob ) ;
35
36
ProcessWorkflow ( getBlob . ToString ( ) ) ;
@@ -39,32 +40,32 @@ static void Main(string[] args)
39
40
// test paas orchestration
40
41
IWorkflow fluentDeployment = new WorkflowFluentDeployment ( Settings . SubscriptionId , Settings . ManagementCertificate ) ;
41
42
Workflows . Add ( fluentDeployment . ToString ( ) , fluentDeployment ) ;
42
- // ProcessWorkflow(fluentDeployment.ToString());
43
+ ProcessWorkflow ( fluentDeployment . ToString ( ) ) ;
43
44
44
45
// create a virtual machine
45
46
IBuilder virtualMachine = new BuildVirtualMachine ( args [ 0 ] , Settings . ManagementCertificate ) ;
46
47
Builders . Add ( virtualMachine . ToString ( ) , virtualMachine ) ;
47
- // ProcessBuilder(virtualMachine.ToString());
48
+ ProcessBuilder ( virtualMachine . ToString ( ) ) ;
48
49
49
50
// test linq to azure with storage
50
51
IWorkflow linqToStorage = new WorkflowLinqToStorage ( Settings . SubscriptionId , Settings . ManagementCertificate ) ;
51
52
Workflows . Add ( linqToStorage . ToString ( ) , linqToStorage ) ;
52
- // ProcessWorkflow(linqToStorage.ToString());
53
+ ProcessWorkflow ( linqToStorage . ToString ( ) ) ;
53
54
54
55
// test create a mobile services deployment
55
56
IBuilder mobileService = new BuildMobileService ( Settings . SubscriptionId , Settings . ManagementCertificate ) ;
56
57
Builders . Add ( mobileService . ToString ( ) , mobileService ) ;
57
- // ProcessBuilder(mobileService.ToString());
58
+ ProcessBuilder ( mobileService . ToString ( ) ) ;
58
59
59
60
// test role system watcher
60
61
var watcher = new WorkflowRoleSystemWatcher ( Settings . SubscriptionId , Settings . ManagementCertificate ) ;
61
62
Workflows . Add ( watcher . ToString ( ) , watcher ) ;
62
- // ProcessWorkflow(watcher.ToString());
63
+ ProcessWorkflow ( watcher . ToString ( ) ) ;
63
64
64
65
// test paas build
65
66
var workflowSSL = new WorkflowFluentDeploymentWithSSL ( Settings . SubscriptionId , Settings . ManagementCertificate ) ;
66
67
Workflows . Add ( workflowSSL . ToString ( ) , workflowSSL ) ;
67
- // ProcessWorkflow(workflowSSL.ToString());
68
+ ProcessWorkflow ( workflowSSL . ToString ( ) ) ;
68
69
69
70
Console . WriteLine ( "Press [ENTER] to exit" ) ;
70
71
Console . Read ( ) ;
0 commit comments