Interface BatchDeleteIntentsRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BatchDeleteIntentsRequest,BatchDeleteIntentsRequest.Builder
public interface BatchDeleteIntentsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntentgetIntents(int index)Required.intgetIntentsCount()Required.List<Intent>getIntentsList()Required.IntentOrBuildergetIntentsOrBuilder(int index)Required.List<? extends IntentOrBuilder>getIntentsOrBuilderList()Required.StringgetParent()Required.com.google.protobuf.ByteStringgetParentBytes()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Required. The name of the agent to delete all entities types for. Supported formats: - `projects/<Project ID>/agent` - `projects/<Project ID>/locations/<Location ID>/agent`
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The name of the agent to delete all entities types for. Supported formats: - `projects/<Project ID>/agent` - `projects/<Project ID>/locations/<Location ID>/agent`
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The bytes for parent.
-
getIntentsList
List<Intent> getIntentsList()
Required. The collection of intents to delete. Only intent `name` must be filled in.
repeated .google.cloud.dialogflow.v2beta1.Intent intents = 2 [(.google.api.field_behavior) = REQUIRED];
-
getIntents
Intent getIntents(int index)
Required. The collection of intents to delete. Only intent `name` must be filled in.
repeated .google.cloud.dialogflow.v2beta1.Intent intents = 2 [(.google.api.field_behavior) = REQUIRED];
-
getIntentsCount
int getIntentsCount()
Required. The collection of intents to delete. Only intent `name` must be filled in.
repeated .google.cloud.dialogflow.v2beta1.Intent intents = 2 [(.google.api.field_behavior) = REQUIRED];
-
getIntentsOrBuilderList
List<? extends IntentOrBuilder> getIntentsOrBuilderList()
Required. The collection of intents to delete. Only intent `name` must be filled in.
repeated .google.cloud.dialogflow.v2beta1.Intent intents = 2 [(.google.api.field_behavior) = REQUIRED];
-
getIntentsOrBuilder
IntentOrBuilder getIntentsOrBuilder(int index)
Required. The collection of intents to delete. Only intent `name` must be filled in.
repeated .google.cloud.dialogflow.v2beta1.Intent intents = 2 [(.google.api.field_behavior) = REQUIRED];
-
-