Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/24/12 13:48:19 (12 years ago)
Author:
spimming
Message:

#1680:

  • Enum for instance size of roles
  • Set reference to subscription in hosted services and deployments
  • Add properties for subscription in hosted services and deployments
  • Extend properties in RoleInstance
File:
1 edited

Legend:

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

    r7386 r7402  
    2828    public string ServiceName { get; set; }
    2929    public string Url { get; set; }
    30     public string SubscriptionId { get; set; }
     30    public Subscription Subscription { get; set; }
    3131    public HostedServiceProperties HostedServiceProperties { get; set; }
    3232    public List<Deployment> Deployments { get; set; }
     
    3939      this.ServiceName = original.ServiceName;
    4040      this.Url = original.Url;
    41       this.HostedServiceProperties = cloner.Clone(HostedServiceProperties);
     41      this.Subscription = cloner.Clone(original.Subscription);
     42      this.HostedServiceProperties = cloner.Clone(original.HostedServiceProperties);
    4243      this.Deployments = new List<Deployment>(original.Deployments);
    4344    }
Note: See TracChangeset for help on using the changeset viewer.