Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/30/12 17:39:27 (12 years ago)
Author:
spimming
Message:

#1680:

  • ChangeInstanceCount method added
  • Deployment: added properties to indicate modification and the new instance count
  • Textbox validation
  • Form resized
File:
1 edited

Legend:

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

    r7424 r7429  
    168168      return services;
    169169    }
     170
     171    public string ChangeInstanceCount(Subscription subscription, string serviceName, string deploymentSlot, string roleName, int instanceCount) {
     172      if (subscription == null) {
     173        throw new ArgumentNullException("Subscription must not be null.", "subscription");
     174      }
     175      return ServiceManagementOperation.ChangeInstanceCount(subscription.SubscriptionID, subscription.CertificateThumbprint, serviceName, deploymentSlot, roleName, instanceCount);
     176    }
    170177  }
    171178}
Note: See TracChangeset for help on using the changeset viewer.