You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: branches/update-datastore/gcloud-java-resourcemanager/src/main/java/com/google/gcloud/resourcemanager/Project.java
Copy file name to clipboardExpand all lines: branches/update-datastore/gcloud-java-resourcemanager/src/main/java/com/google/gcloud/resourcemanager/ProjectInfo.java
+22-18Lines changed: 22 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,6 @@
19
19
importcom.google.common.collect.ImmutableMap;
20
20
importcom.google.common.collect.Maps;
21
21
22
-
importorg.joda.time.DateTime;
23
22
importorg.joda.time.format.ISODateTimeFormat;
24
23
25
24
importjava.io.Serializable;
@@ -45,19 +44,32 @@ public class ProjectInfo implements Serializable {
45
44
* The project lifecycle state.
46
45
*
47
46
* <ul>
48
-
* <li>LIFECYCLE_STATE_UNSPECIFIED: only used/useful for distinguishing unset values
49
-
* <li>ACTIVE: the normal and active state
50
-
* <li>DELETE_REQUESTED: the project has been marked for deletion by the user or by the system
51
-
* (Google Cloud Platform). This can generally be reversed by calling
52
-
* {@link ResourceManager#undelete}.
53
-
* <li>DELETE_IN_PROGRESS: the process of deleting the project has begun. Reversing the deletion
54
-
* is no longer possible.
47
+
* <li>LIFECYCLE_STATE_UNSPECIFIED:
48
+
* <li>ACTIVE:
49
+
* <li>DELETE_REQUESTED:
50
+
* <li>DELETE_IN_PROGRESS:
55
51
* <ul>
56
52
*/
57
53
publicenumState {
54
+
/**
55
+
* Only used/useful for distinguishing unset values
56
+
*/
58
57
LIFECYCLE_STATE_UNSPECIFIED,
58
+
59
+
/**
60
+
* The normal and active state
61
+
*/
59
62
ACTIVE,
63
+
64
+
/**
65
+
* The project has been marked for deletion by the user or by the system (Google Cloud
66
+
* Platform). This can generally be reversed by calling {@link ResourceManager#undelete}.
67
+
*/
60
68
DELETE_REQUESTED,
69
+
70
+
/**
71
+
* the process of deleting the project has begun. Reversing the deletion is no longer possible.
Copy file name to clipboardExpand all lines: branches/update-datastore/gcloud-java-resourcemanager/src/main/java/com/google/gcloud/resourcemanager/ResourceId.java
+21-1Lines changed: 21 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,11 @@
20
20
importjava.util.Objects;
21
21
22
22
/**
23
-
* Represents a Google Cloud Resource Manager Resource ID
23
+
* Represents a Google Cloud Resource Manager Resource ID.
24
+
*
25
+
* A 'resource' in Google Cloud Platform is a generic term for something you (a developer) may want
26
+
* to interact with through one of our API's. Some examples are an AppEngine app, a Compute Engine
Copy file name to clipboardExpand all lines: branches/update-datastore/gcloud-java-resourcemanager/src/main/java/com/google/gcloud/resourcemanager/ResourceManager.java
Copy file name to clipboardExpand all lines: branches/update-datastore/gcloud-java-resourcemanager/src/main/java/com/google/gcloud/spi/ResourceManagerRpc.java
0 commit comments