/// <summary>
 /// Initializes a new instance of the ServerCreateOrUpdateParameters
 /// class with required arguments.
 /// </summary>
 public ServerCreateOrUpdateParameters(ServerCreateOrUpdateProperties properties, string location)
     : this()
 {
     if (properties == null)
     {
         throw new ArgumentNullException("properties");
     }
     if (location == null)
     {
         throw new ArgumentNullException("location");
     }
     this.Properties = properties;
     this.Location = location;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the ServerCreateOrUpdateParameters
 /// class with required arguments.
 /// </summary>
 public ServerCreateOrUpdateParameters(ServerCreateOrUpdateProperties properties, string location)
     : this()
 {
     if (properties == null)
     {
         throw new ArgumentNullException("properties");
     }
     if (location == null)
     {
         throw new ArgumentNullException("location");
     }
     this.Properties = properties;
     this.Location   = location;
 }
Example #3
0
 /// <summary>
 /// Initializes a new instance of the ServerCreateOrUpdateParameters
 /// class with required arguments.
 /// </summary>
 public ServerCreateOrUpdateParameters(ServerCreateOrUpdateProperties properties, string location, IDictionary <string, string> tags)
     : this()
 {
     if (properties == null)
     {
         throw new ArgumentNullException("properties");
     }
     if (location == null)
     {
         throw new ArgumentNullException("location");
     }
     if (tags == null)
     {
         throw new ArgumentNullException("tags");
     }
     this.Properties = properties;
     this.Location   = location;
     this.Tags       = tags;
 }
 /// <summary>
 /// Initializes a new instance of the ServerCreateOrUpdateParameters
 /// class with required arguments.
 /// </summary>
 public ServerCreateOrUpdateParameters(ServerCreateOrUpdateProperties properties, string location, IDictionary<string, string> tags)
     : this()
 {
     if (properties == null)
     {
         throw new ArgumentNullException("properties");
     }
     if (location == null)
     {
         throw new ArgumentNullException("location");
     }
     if (tags == null)
     {
         throw new ArgumentNullException("tags");
     }
     this.Properties = properties;
     this.Location = location;
     this.Tags = tags;
 }