/// <summary>
 /// Initializes a new instance of the
 /// ApiServiceCreateOrUpdateParameters class with required arguments.
 /// </summary>
 public ApiServiceCreateOrUpdateParameters(string location, ApiServiceProperties properties)
     : this()
 {
     if (location == null)
     {
         throw new ArgumentNullException("location");
     }
     if (properties == null)
     {
         throw new ArgumentNullException("properties");
     }
     this.Location = location;
     this.Properties = properties;
 }
 /// <summary>
 /// Initializes a new instance of the
 /// ApiServiceCreateOrUpdateParameters class with required arguments.
 /// </summary>
 public ApiServiceCreateOrUpdateParameters(string location, ApiServiceProperties properties)
     : this()
 {
     if (location == null)
     {
         throw new ArgumentNullException("location");
     }
     if (properties == null)
     {
         throw new ArgumentNullException("properties");
     }
     this.Location   = location;
     this.Properties = properties;
 }