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