forked from Azure-Samples/resources-dotnet-manage-resource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
134 lines (106 loc) · 5.02 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using Microsoft.Azure.Management.Fluent;
using Microsoft.Azure.Management.ResourceManager.Fluent;
using Microsoft.Azure.Management.ResourceManager.Fluent.Authentication;
using Microsoft.Azure.Management.ResourceManager.Fluent.Core;
using Microsoft.Azure.Management.Samples.Common;
using System;
namespace ManageResource
{
public class Program
{
/**
* Azure Resource sample for managing resources -
* - Create a resource
* - Update a resource
* - Create another resource
* - List resources
* - Delete a resource.
*/
public static void RunSample(IAzure azure)
{
var resourceGroupName = SdkContext.RandomResourceName("rgRSMR", 24);
var resourceName1 = SdkContext.RandomResourceName("rn1", 24);
var resourceName2 = SdkContext.RandomResourceName("rn2", 24);
try
{
//=============================================================
// Create resource group.
Utilities.Log("Creating a resource group with name: " + resourceGroupName);
azure.ResourceGroups
.Define(resourceGroupName)
.WithRegion(Region.USWest)
.Create();
//=============================================================
// Create storage account.
Utilities.Log("Creating a storage account with name: " + resourceName1);
var storageAccount = azure.StorageAccounts
.Define(resourceName1)
.WithRegion(Region.USWest)
.WithExistingResourceGroup(resourceGroupName)
.Create();
Utilities.Log("Storage account created: " + storageAccount.Id);
//=============================================================
// Update - set the sku name
Utilities.Log("Updating the storage account with name: " + resourceName1);
storageAccount.Update()
.WithSku(Microsoft.Azure.Management.Storage.Fluent.Models.SkuName.StandardRAGRS)
.Apply();
Utilities.Log("Updated the storage account with name: " + resourceName1);
//=============================================================
// Create another storage account.
Utilities.Log("Creating another storage account with name: " + resourceName2);
var storageAccount2 = azure.StorageAccounts.Define(resourceName2)
.WithRegion(Region.USWest)
.WithExistingResourceGroup(resourceGroupName)
.Create();
Utilities.Log("Storage account created: " + storageAccount2.Id);
//=============================================================
// List storage accounts.
Utilities.Log("Listing all storage accounts for resource group: " + resourceGroupName);
foreach (var sAccount in azure.StorageAccounts.List())
{
Utilities.Log("Storage account: " + sAccount.Name);
}
//=============================================================
// Delete a storage accounts.
Utilities.Log("Deleting storage account: " + resourceName2);
azure.StorageAccounts.DeleteById(storageAccount2.Id);
Utilities.Log("Deleted storage account: " + resourceName2);
}
finally
{
try
{
Utilities.Log("Deleting Resource Group: " + resourceGroupName);
azure.ResourceGroups.DeleteByName(resourceGroupName);
Utilities.Log("Deleted Resource Group: " + resourceGroupName);
}
catch (Exception ex)
{
Utilities.Log(ex);
}
}
}
public static void Main(string[] args)
{
try
{
//=================================================================
// Authenticate
AzureCredentials credentials = SdkContext.AzureCredentialsFactory.FromFile(Environment.GetEnvironmentVariable("AZURE_AUTH_LOCATION"));
var azure = Azure
.Configure()
.WithLogLevel(HttpLoggingDelegatingHandler.Level.Basic)
.Authenticate(credentials)
.WithDefaultSubscription();
RunSample(azure);
}
catch (Exception ex)
{
Utilities.Log(ex);
}
}
}
}