You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by ga...@apache.org on 2018/04/09 04:59:02 UTC

jclouds git commit: JCLOUDS-1404: Added new Google Storage locations

Repository: jclouds
Updated Branches:
  refs/heads/master ea6b616fa -> b04d2df66


JCLOUDS-1404: Added new Google Storage locations


Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/b04d2df6
Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/b04d2df6
Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/b04d2df6

Branch: refs/heads/master
Commit: b04d2df6614996f850fffa05fa2203023ee1b2e7
Parents: ea6b616
Author: Felipe L. de Souza <fe...@gmail.com>
Authored: Sun Apr 8 20:51:50 2018 -0300
Committer: Andrew Gaul <ga...@apache.org>
Committed: Sun Apr 8 21:57:51 2018 -0700

----------------------------------------------------------------------
 .../domain/DomainResourceReferences.java        | 36 +++++++++++++++++++-
 1 file changed, 35 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds/blob/b04d2df6/providers/google-cloud-storage/src/main/java/org/jclouds/googlecloudstorage/domain/DomainResourceReferences.java
----------------------------------------------------------------------
diff --git a/providers/google-cloud-storage/src/main/java/org/jclouds/googlecloudstorage/domain/DomainResourceReferences.java b/providers/google-cloud-storage/src/main/java/org/jclouds/googlecloudstorage/domain/DomainResourceReferences.java
index f27b08f..5acdb0b 100644
--- a/providers/google-cloud-storage/src/main/java/org/jclouds/googlecloudstorage/domain/DomainResourceReferences.java
+++ b/providers/google-cloud-storage/src/main/java/org/jclouds/googlecloudstorage/domain/DomainResourceReferences.java
@@ -20,6 +20,7 @@ import static com.google.common.base.Preconditions.checkNotNull;
 
 import org.jclouds.blobstore.domain.Tier;
 
+import com.google.common.annotations.Beta;
 import com.google.common.base.CaseFormat;
 
 public final class DomainResourceReferences {
@@ -32,7 +33,40 @@ public final class DomainResourceReferences {
    }
 
    public enum Location {
-      ASIA, EU, US, ASIA_EAST1, US_CENTRAL1, US_CENTRAL2, US_EAST1, US_EAST2, US_EAST3, US_WEST1;
+
+     /*
+      *  Multi-Regional
+      */
+      ASIA, EU, US,
+
+      /*
+       *  Regional
+       */
+      ASIA_EAST1,
+      ASIA_NORTHEAST1,
+      ASIA_SOUTH1,
+      ASIA_SOUTHEAST1,
+
+      NORTHAMERICA_NORTHEAST1,
+      US_CENTRAL1,
+      US_EAST1,
+      US_EAST4,
+      US_WEST1,
+
+      SOUTHAMERICA_EAST1,
+
+      EUROPE_WEST1,
+      EUROPE_WEST2,
+      EUROPE_WEST3,
+      EUROPE_WEST4,
+
+      AUSTRALIA_SOUTHEAST1,
+
+      /*
+       *  Alpha locations
+       */
+      @Beta
+      US_CENTRAL2;
 
       public String value() {
          return name().replace('_', '-');