Package com.google.cloud.aiplatform.v1
Interface RemoveDatapointsRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RemoveDatapointsRequest,RemoveDatapointsRequest.Builder
public interface RemoveDatapointsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDatapointIds(int index)A list of datapoint ids to be deleted.com.google.protobuf.ByteStringgetDatapointIdsBytes(int index)A list of datapoint ids to be deleted.intgetDatapointIdsCount()A list of datapoint ids to be deleted.List<String>getDatapointIdsList()A list of datapoint ids to be deleted.StringgetIndex()Required.com.google.protobuf.ByteStringgetIndexBytes()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIndex
String getIndex()
Required. The name of the Index resource to be updated. Format: `projects/{project}/locations/{location}/indexes/{index}`string index = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The index.
-
getIndexBytes
com.google.protobuf.ByteString getIndexBytes()
Required. The name of the Index resource to be updated. Format: `projects/{project}/locations/{location}/indexes/{index}`string index = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The bytes for index.
-
getDatapointIdsList
List<String> getDatapointIdsList()
A list of datapoint ids to be deleted.
repeated string datapoint_ids = 2;- Returns:
- A list containing the datapointIds.
-
getDatapointIdsCount
int getDatapointIdsCount()
A list of datapoint ids to be deleted.
repeated string datapoint_ids = 2;- Returns:
- The count of datapointIds.
-
getDatapointIds
String getDatapointIds(int index)
A list of datapoint ids to be deleted.
repeated string datapoint_ids = 2;- Parameters:
index- The index of the element to return.- Returns:
- The datapointIds at the given index.
-
getDatapointIdsBytes
com.google.protobuf.ByteString getDatapointIdsBytes(int index)
A list of datapoint ids to be deleted.
repeated string datapoint_ids = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the datapointIds at the given index.
-
-