Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Azure/AzureProvider.cs @ 7386

Last change on this file since 7386 was 7386, checked in by spimming, 12 years ago

#1680:

  • Added property to refer to the corresponding subscription
  • Added new methods to azure management utils
File size: 7.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Collections.Generic;
24using HeuristicLab.Clients.Hive.CloudManager.Model;
25
26namespace HeuristicLab.Clients.Hive.CloudManager.Azure {
27  public class AzureProvider : IAzureProvider {
28
29    public Subscription GetSubscriptionInfo(string subscriptionId, string thumbprint) {
30      if (subscriptionId.Length == 0) {
31        throw new ArgumentException("Subscription Id is not valid.", "subscriptionId");
32      }
33
34      if (thumbprint.Length == 0) {
35        throw new ArgumentException("Certificate thumbprint is not valid.", "thumbprint");
36      }
37      return ServiceManagementOperation.GetSubscriptionInfo(subscriptionId, thumbprint);
38    }
39
40    public HostedService GetHostedService(Subscription subscription, string serviceName) {
41      if (subscription == null) {
42        throw new ArgumentNullException("Subscription must not be null.", "subscription");
43      }
44      if (serviceName.Length == 0) {
45        throw new ArgumentException("Servicename is not valid.", "serviceName");
46      }
47      return ServiceManagementOperation.GetHostedServiceDetailed(subscription.SubscriptionID, subscription.CertificateThumbprint, serviceName);
48    }
49
50    public List<string> ListLocations(Subscription subscription) {
51      if (subscription == null) {
52        throw new ArgumentNullException("Subscription must not be null.", "subscription");
53      }
54      return ServiceManagementOperation.ListLocations(subscription.SubscriptionID, subscription.CertificateThumbprint);
55    }
56
57    public List<HostedService> ListHostedServices(Subscription subscription) {
58      if (subscription == null) {
59        throw new ArgumentNullException("Subscription must not be null.", "subscription");
60      }
61      return ServiceManagementOperation.ListHostedServices(subscription.SubscriptionID, subscription.CertificateThumbprint);
62    }
63
64    public List<AffinityGroup> ListAffinityGroups(Subscription subscription) {
65      if (subscription == null) {
66        throw new ArgumentNullException("Subscription must not be null.", "subscription");
67      }
68      return ServiceManagementOperation.ListAffinityGroups(subscription.SubscriptionID, subscription.CertificateThumbprint);
69    }
70
71    public string CreateHostedService(Subscription subscription, string serviceName, string label, string description, AffinityGroup affinityGroup) {
72      if (subscription == null) {
73        throw new ArgumentNullException("Subscription must not be null.", "subscription");
74      }
75      if (serviceName.Length == 0) {
76        throw new ArgumentException("Servicename is not valid.", "serviceName");
77      }
78      if (label.Length == 0) {
79        throw new ArgumentException("Label is not valid.", "label");
80      }
81      if (affinityGroup == null) {
82        throw new ArgumentNullException("AffinityGroup must not be null.", "affinityGroup");
83      }
84
85      return ServiceManagementOperation.CreateHostedServiceWithAffinityGroup(subscription.SubscriptionID, subscription.CertificateThumbprint, serviceName, label, description, affinityGroup.Name);
86    }
87
88    public string CreateHostedService(Subscription subscription, string serviceName, string label, string description, string location) {
89      if (subscription == null) {
90        throw new ArgumentNullException("Subscription must not be null.", "subscription");
91      }
92      if (serviceName.Length == 0) {
93        throw new ArgumentException("Servicename is not valid.", "serviceName");
94      }
95      if (label.Length == 0) {
96        throw new ArgumentException("Label is not valid.", "label");
97      }
98      if (location.Length == 0) {
99        throw new ArgumentException("Location is not valid.", "location");
100      }
101
102      return ServiceManagementOperation.CreateHostedServiceWithLocation(subscription.SubscriptionID, subscription.CertificateThumbprint, serviceName, label, description, location);
103    }
104
105    public string AddCertificate(Subscription subscription, HostedService service, string certficateFilePath, string certificatePassword) {
106      if (subscription == null) {
107        throw new ArgumentNullException("Subscription must not be null.", "subscription");
108      }
109      if (service == null) {
110        throw new ArgumentNullException("HostedService must not be null.", "service");
111      }
112      return ServiceManagementOperation.AddCertificate(subscription.SubscriptionID, subscription.CertificateThumbprint, service.ServiceName, certficateFilePath, certificatePassword);
113    }
114
115    public string CreateDeployment(Subscription subscription, string serviceName, string deploymentName, string deploymentSlot, string packageUrl, string configurationUrl, string label) {
116      return CreateDeployment(subscription, serviceName, deploymentName, deploymentSlot, packageUrl, configurationUrl, label, 1);
117    }
118
119    public string CreateDeployment(Subscription subscription, string serviceName, string deploymentName, string deploymentSlot, string packageUrl, string configurationUrl, string label, int instanceCount) {
120      if (subscription == null) {
121        throw new ArgumentNullException("Subscription must not be null.", "subscription");
122      }
123      if (instanceCount <= 0) {
124        throw new ArgumentException("Instance count must be greater than zero.", "instanceCount");
125      }
126
127      string configuration = ServiceManagementOperation.DownloadBlobAsString(new Uri(Constants.DeploymentConfigurationUrl));
128      return ServiceManagementOperation.CreateDeployment(subscription.SubscriptionID, subscription.CertificateThumbprint, serviceName, deploymentName, deploymentSlot, packageUrl, configuration, label, instanceCount);
129
130    }
131
132    public string DeleteHostedService(Subscription subscription, string serviceName) {
133      if (subscription == null) {
134        throw new ArgumentNullException("Subscription must not be null.", "subscription");
135      }
136      if (serviceName.Length == 0) {
137        throw new ArgumentException("Servicename is not valid.", "serviceName");
138      }
139
140      return ServiceManagementOperation.DeleteHostedService(subscription.SubscriptionID, subscription.CertificateThumbprint, serviceName);
141    }
142
143    public List<HostedService> DiscoverSlaveService(Subscription subscription) {
144      if (subscription == null) {
145        throw new ArgumentNullException("Subscription must not be null.", "subscription");
146      }
147      return ServiceManagementOperation.DiscoverSlaveService(subscription.SubscriptionID, subscription.CertificateThumbprint);
148    }
149  }
150}
Note: See TracBrowser for help on using the repository browser.