Add a throw-away tool to remove IP addresses of external hosts

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=121279715
This commit is contained in:
Michael Muller 2016-05-02 09:38:13 -07:00 committed by Justine Tunney
parent b672643194
commit 05803bbc33
10 changed files with 129 additions and 9 deletions

View file

@ -19,6 +19,7 @@ import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSortedMap;
import google.registry.tools.javascrap.LoadAndResaveCommand;
import google.registry.tools.javascrap.RemoveIpAddressCommand;
/** Container class to create and run remote commands against a datastore instance. */
public final class RegistryTool {
@ -61,6 +62,7 @@ public final class RegistryTool {
.put("load_snapshot", LoadSnapshotCommand.class)
.put("make_billing_tables", MakeBillingTablesCommand.class)
.put("pending_escrow", PendingEscrowCommand.class)
.put("remove_ip_address", RemoveIpAddressCommand.class)
.put("resave_environment_entities", ResaveEnvironmentEntitiesCommand.class)
.put("send_escrow_report_to_icann", SendEscrowReportToIcannCommand.class)
.put("update_application_status", UpdateApplicationStatusCommand.class)