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 String
getEntityTypeNames(int index)
Required.com.google.protobuf.ByteString
getEntityTypeNamesBytes(int index)
Required.int
getEntityTypeNamesCount()
Required.List<String>
getEntityTypeNamesList()
Required.String
getParent()
Required.com.google.protobuf.ByteString
getParentBytes()
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.
-
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.
-
-