/// <summary>
 /// Initializes a new instance of the AutomationAccountCreateParameters
 /// class with required arguments.
 /// </summary>
 public AutomationAccountCreateParameters(string name, CloudServiceSettings cloudServiceSettings)
     : this()
 {
     if (name == null)
     {
         throw new ArgumentNullException("name");
     }
     if (cloudServiceSettings == null)
     {
         throw new ArgumentNullException("cloudServiceSettings");
     }
     this.Name = name;
     this.CloudServiceSettings = cloudServiceSettings;
 }
 /// <summary>
 /// Initializes a new instance of the AutomationAccountCreateParameters
 /// class with required arguments.
 /// </summary>
 public AutomationAccountCreateParameters(string name, CloudServiceSettings cloudServiceSettings)
     : this()
 {
     if (name == null)
     {
         throw new ArgumentNullException("name");
     }
     if (cloudServiceSettings == null)
     {
         throw new ArgumentNullException("cloudServiceSettings");
     }
     this.Name = name;
     this.CloudServiceSettings = cloudServiceSettings;
 }