Interface AgentValidationResultOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AgentValidationResult
,AgentValidationResult.Builder
public interface AgentValidationResultOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlowValidationResult
getFlowValidationResults(int index)
Contains all flow validation results.int
getFlowValidationResultsCount()
Contains all flow validation results.List<FlowValidationResult>
getFlowValidationResultsList()
Contains all flow validation results.FlowValidationResultOrBuilder
getFlowValidationResultsOrBuilder(int index)
Contains all flow validation results.List<? extends FlowValidationResultOrBuilder>
getFlowValidationResultsOrBuilderList()
Contains all flow validation results.String
getName()
The unique identifier of the agent validation result.com.google.protobuf.ByteString
getNameBytes()
The unique identifier of the agent validation result.-
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 unique identifier of the agent validation result. Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/validationResult`.
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The unique identifier of the agent validation result. Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/validationResult`.
string name = 1;
- Returns:
- The bytes for name.
-
getFlowValidationResultsList
List<FlowValidationResult> getFlowValidationResultsList()
Contains all flow validation results.
repeated .google.cloud.dialogflow.cx.v3beta1.FlowValidationResult flow_validation_results = 2;
-
getFlowValidationResults
FlowValidationResult getFlowValidationResults(int index)
Contains all flow validation results.
repeated .google.cloud.dialogflow.cx.v3beta1.FlowValidationResult flow_validation_results = 2;
-
getFlowValidationResultsCount
int getFlowValidationResultsCount()
Contains all flow validation results.
repeated .google.cloud.dialogflow.cx.v3beta1.FlowValidationResult flow_validation_results = 2;
-
getFlowValidationResultsOrBuilderList
List<? extends FlowValidationResultOrBuilder> getFlowValidationResultsOrBuilderList()
Contains all flow validation results.
repeated .google.cloud.dialogflow.cx.v3beta1.FlowValidationResult flow_validation_results = 2;
-
getFlowValidationResultsOrBuilder
FlowValidationResultOrBuilder getFlowValidationResultsOrBuilder(int index)
Contains all flow validation results.
repeated .google.cloud.dialogflow.cx.v3beta1.FlowValidationResult flow_validation_results = 2;
-
-