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