Interface CreateProjectMetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateProjectMetadata
,CreateProjectMetadata.Builder
public interface CreateProjectMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Timestamp
getCreateTime()
Creation time of the project creation workflow.com.google.protobuf.TimestampOrBuilder
getCreateTimeOrBuilder()
Creation time of the project creation workflow.boolean
getGettable()
True if the project can be retrieved using `GetProject`.boolean
getReady()
True if the project creation process is complete.boolean
hasCreateTime()
Creation time of the project creation workflow.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasCreateTime
boolean hasCreateTime()
Creation time of the project creation workflow.
.google.protobuf.Timestamp create_time = 1;
- Returns:
- Whether the createTime field is set.
-
getCreateTime
com.google.protobuf.Timestamp getCreateTime()
Creation time of the project creation workflow.
.google.protobuf.Timestamp create_time = 1;
- Returns:
- The createTime.
-
getCreateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder()
Creation time of the project creation workflow.
.google.protobuf.Timestamp create_time = 1;
-
getGettable
boolean getGettable()
True if the project can be retrieved using `GetProject`. No other operations on the project are guaranteed to work until the project creation is complete.
bool gettable = 2;
- Returns:
- The gettable.
-
getReady
boolean getReady()
True if the project creation process is complete.
bool ready = 3;
- Returns:
- The ready.
-
-