Package com.google.cloud.aiplatform.v1
Interface ImportFeatureValuesRequest.FeatureSpecOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ImportFeatureValuesRequest.FeatureSpec
,ImportFeatureValuesRequest.FeatureSpec.Builder
- Enclosing class:
- ImportFeatureValuesRequest
public static interface ImportFeatureValuesRequest.FeatureSpecOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getId()
Required.com.google.protobuf.ByteString
getIdBytes()
Required.String
getSourceField()
Source column to get the Feature values from.com.google.protobuf.ByteString
getSourceFieldBytes()
Source column to get the Feature values from.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getId
String getId()
Required. ID of the Feature to import values of. This Feature must exist in the target EntityType, or the request will fail.
string id = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The id.
-
getIdBytes
com.google.protobuf.ByteString getIdBytes()
Required. ID of the Feature to import values of. This Feature must exist in the target EntityType, or the request will fail.
string id = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for id.
-
getSourceField
String getSourceField()
Source column to get the Feature values from. If not set, uses the column with the same name as the Feature ID.
string source_field = 2;
- Returns:
- The sourceField.
-
getSourceFieldBytes
com.google.protobuf.ByteString getSourceFieldBytes()
Source column to get the Feature values from. If not set, uses the column with the same name as the Feature ID.
string source_field = 2;
- Returns:
- The bytes for sourceField.
-
-