Package com.google.cloud.dialogflow.v2
Interface BatchDeleteEntityTypesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BatchDeleteEntityTypesRequest,BatchDeleteEntityTypesRequest.Builder
public interface BatchDeleteEntityTypesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEntityTypeNames(int index)Required.com.google.protobuf.ByteStringgetEntityTypeNamesBytes(int index)Required.intgetEntityTypeNamesCount()Required.List<String>getEntityTypeNamesList()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. Format: `projects/<Project 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. Format: `projects/<Project ID>/agent`.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The bytes for parent.
-
getEntityTypeNamesList
List<String> getEntityTypeNamesList()
Required. The names entity types to delete. All names must point to the same agent as `parent`.
repeated string entity_type_names = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- A list containing the entityTypeNames.
-
getEntityTypeNamesCount
int getEntityTypeNamesCount()
Required. The names entity types to delete. All names must point to the same agent as `parent`.
repeated string entity_type_names = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The count of entityTypeNames.
-
getEntityTypeNames
String getEntityTypeNames(int index)
Required. The names entity types to delete. All names must point to the same agent as `parent`.
repeated string entity_type_names = 2 [(.google.api.field_behavior) = REQUIRED];- Parameters:
index- The index of the element to return.- Returns:
- The entityTypeNames at the given index.
-
getEntityTypeNamesBytes
com.google.protobuf.ByteString getEntityTypeNamesBytes(int index)
Required. The names entity types to delete. All names must point to the same agent as `parent`.
repeated string entity_type_names = 2 [(.google.api.field_behavior) = REQUIRED];- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the entityTypeNames at the given index.
-
-