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