Package com.google.cloud.aiplatform.v1
Interface IdMatcherOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
IdMatcher,IdMatcher.Builder
public interface IdMatcherOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetIds(int index)Required.com.google.protobuf.ByteStringgetIdsBytes(int index)Required.intgetIdsCount()Required.List<String>getIdsList()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIdsList
List<String> getIdsList()
Required. The following are accepted as `ids`: * A single-element list containing only `*`, which selects all Features in the target EntityType, or * A list containing only Feature IDs, which selects only Features with those IDs in the target EntityType.
repeated string ids = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- A list containing the ids.
-
getIdsCount
int getIdsCount()
Required. The following are accepted as `ids`: * A single-element list containing only `*`, which selects all Features in the target EntityType, or * A list containing only Feature IDs, which selects only Features with those IDs in the target EntityType.
repeated string ids = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The count of ids.
-
getIds
String getIds(int index)
Required. The following are accepted as `ids`: * A single-element list containing only `*`, which selects all Features in the target EntityType, or * A list containing only Feature IDs, which selects only Features with those IDs in the target EntityType.
repeated string ids = 1 [(.google.api.field_behavior) = REQUIRED];- Parameters:
index- The index of the element to return.- Returns:
- The ids at the given index.
-
getIdsBytes
com.google.protobuf.ByteString getIdsBytes(int index)
Required. The following are accepted as `ids`: * A single-element list containing only `*`, which selects all Features in the target EntityType, or * A list containing only Feature IDs, which selects only Features with those IDs in the target EntityType.
repeated string ids = 1 [(.google.api.field_behavior) = REQUIRED];- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the ids at the given index.
-
-