mirror of
https://github.com/google/nomulus.git
synced 2025-05-15 00:47:11 +02:00
Add config parameters to point at us to use cloud-dns staging
Add cloudDns.{rootUrl, servicePath} to allow us to point an environment at the Cloud DNS staging API for testing. Make sandbox and alpha point to staging. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=170340859
This commit is contained in:
parent
d4ab6fe90b
commit
d09bd89629
4 changed files with 43 additions and 4 deletions
|
@ -25,6 +25,7 @@ public class RegistryConfigSettings {
|
|||
public OAuth oAuth;
|
||||
public RegistryPolicy registryPolicy;
|
||||
public Datastore datastore;
|
||||
public CloudDns cloudDns;
|
||||
public Caching caching;
|
||||
public IcannReporting icannReporting;
|
||||
public Rde rde;
|
||||
|
@ -96,6 +97,12 @@ public class RegistryConfigSettings {
|
|||
public String projectId;
|
||||
}
|
||||
|
||||
/** Configuration for Cloud DNS. */
|
||||
public static class CloudDns {
|
||||
public String rootUrl;
|
||||
public String servicePath;
|
||||
}
|
||||
|
||||
/** Configuration for caching. */
|
||||
public static class Caching {
|
||||
public int singletonCacheRefreshSeconds;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue