Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/16/12 18:24:58 (12 years ago)
Author:
spimming
Message:

#1680:

  • List-Operations added to Interface and AzureProvider
  • AddCertificate- and AddAzureService-Dialog added
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Azure/AzureProvider.cs

    r7299 r7339  
    4444      return ServiceManagementOperation.ListLocations(subscription.SubscriptionID, subscription.CertificateThumbprint);
    4545    }
     46
     47    public List<HostedService> ListHostedServices(Subscription subscription) {
     48      if (subscription == null) {
     49        throw new ArgumentException("Subscription must not be null.", "subscription");
     50      }
     51      return ServiceManagementOperation.ListHostedServices(subscription.SubscriptionID, subscription.CertificateThumbprint);
     52    }
     53
     54    public List<AffinityGroup> ListAffinityGroups(Subscription subscription) {
     55      if (subscription == null) {
     56        throw new ArgumentException("Subscription must not be null.", "subscription");
     57      }
     58      return ServiceManagementOperation.ListAffinityGroups(subscription.SubscriptionID, subscription.CertificateThumbprint);
     59    }
    4660  }
    4761}
Note: See TracChangeset for help on using the changeset viewer.