Interface DeploymentOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Deployment
,Deployment.Builder
public interface DeploymentOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Timestamp
getEndTime()
End time of this deployment.com.google.protobuf.TimestampOrBuilder
getEndTimeOrBuilder()
End time of this deployment.String
getFlowVersion()
The name of the flow version for this deployment.com.google.protobuf.ByteString
getFlowVersionBytes()
The name of the flow version for this deployment.String
getName()
The name of the deployment.com.google.protobuf.ByteString
getNameBytes()
The name of the deployment.Deployment.Result
getResult()
Result of the deployment.Deployment.ResultOrBuilder
getResultOrBuilder()
Result of the deployment.com.google.protobuf.Timestamp
getStartTime()
Start time of this deployment.com.google.protobuf.TimestampOrBuilder
getStartTimeOrBuilder()
Start time of this deployment.Deployment.State
getState()
The current state of the deployment.int
getStateValue()
The current state of the deployment.boolean
hasEndTime()
End time of this deployment.boolean
hasResult()
Result of the deployment.boolean
hasStartTime()
Start time of this deployment.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
The name of the deployment. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/deployments/<Deployment ID>.
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The name of the deployment. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/environments/<Environment ID>/deployments/<Deployment ID>.
string name = 1;
- Returns:
- The bytes for name.
-
getFlowVersion
String getFlowVersion()
The name of the flow version for this deployment. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/versions/<Verion ID>.
string flow_version = 2 [(.google.api.resource_reference) = { ... }
- Returns:
- The flowVersion.
-
getFlowVersionBytes
com.google.protobuf.ByteString getFlowVersionBytes()
The name of the flow version for this deployment. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/versions/<Verion ID>.
string flow_version = 2 [(.google.api.resource_reference) = { ... }
- Returns:
- The bytes for flowVersion.
-
getStateValue
int getStateValue()
The current state of the deployment.
.google.cloud.dialogflow.cx.v3.Deployment.State state = 3;
- Returns:
- The enum numeric value on the wire for state.
-
getState
Deployment.State getState()
The current state of the deployment.
.google.cloud.dialogflow.cx.v3.Deployment.State state = 3;
- Returns:
- The state.
-
hasResult
boolean hasResult()
Result of the deployment.
.google.cloud.dialogflow.cx.v3.Deployment.Result result = 4;
- Returns:
- Whether the result field is set.
-
getResult
Deployment.Result getResult()
Result of the deployment.
.google.cloud.dialogflow.cx.v3.Deployment.Result result = 4;
- Returns:
- The result.
-
getResultOrBuilder
Deployment.ResultOrBuilder getResultOrBuilder()
Result of the deployment.
.google.cloud.dialogflow.cx.v3.Deployment.Result result = 4;
-
hasStartTime
boolean hasStartTime()
Start time of this deployment.
.google.protobuf.Timestamp start_time = 5;
- Returns:
- Whether the startTime field is set.
-
getStartTime
com.google.protobuf.Timestamp getStartTime()
Start time of this deployment.
.google.protobuf.Timestamp start_time = 5;
- Returns:
- The startTime.
-
getStartTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder()
Start time of this deployment.
.google.protobuf.Timestamp start_time = 5;
-
hasEndTime
boolean hasEndTime()
End time of this deployment.
.google.protobuf.Timestamp end_time = 6;
- Returns:
- Whether the endTime field is set.
-
getEndTime
com.google.protobuf.Timestamp getEndTime()
End time of this deployment.
.google.protobuf.Timestamp end_time = 6;
- Returns:
- The endTime.
-
getEndTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder()
End time of this deployment.
.google.protobuf.Timestamp end_time = 6;
-
-