Interface DeployFlowResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DeployFlowResponse
,DeployFlowResponse.Builder
public interface DeployFlowResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDeployment()
The name of the flow version [Deployment][google.cloud.dialogflow.cx.v3.Deployment].com.google.protobuf.ByteString
getDeploymentBytes()
The name of the flow version [Deployment][google.cloud.dialogflow.cx.v3.Deployment].Environment
getEnvironment()
The updated environment where the flow is deployed.EnvironmentOrBuilder
getEnvironmentOrBuilder()
The updated environment where the flow is deployed.boolean
hasEnvironment()
The updated environment where the flow is deployed.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasEnvironment
boolean hasEnvironment()
The updated environment where the flow is deployed.
.google.cloud.dialogflow.cx.v3.Environment environment = 1;
- Returns:
- Whether the environment field is set.
-
getEnvironment
Environment getEnvironment()
The updated environment where the flow is deployed.
.google.cloud.dialogflow.cx.v3.Environment environment = 1;
- Returns:
- The environment.
-
getEnvironmentOrBuilder
EnvironmentOrBuilder getEnvironmentOrBuilder()
The updated environment where the flow is deployed.
.google.cloud.dialogflow.cx.v3.Environment environment = 1;
-
getDeployment
String getDeployment()
The name of the flow version [Deployment][google.cloud.dialogflow.cx.v3.Deployment]. Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/ environments/<Environment ID>/deployments/<Deployment ID>`.
string deployment = 2;
- Returns:
- The deployment.
-
getDeploymentBytes
com.google.protobuf.ByteString getDeploymentBytes()
The name of the flow version [Deployment][google.cloud.dialogflow.cx.v3.Deployment]. Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/ environments/<Environment ID>/deployments/<Deployment ID>`.
string deployment = 2;
- Returns:
- The bytes for deployment.
-
-