Package com.google.cloud.aiplatform.v1
Interface CreateFeaturestoreRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateFeaturestoreRequest
,CreateFeaturestoreRequest.Builder
public interface CreateFeaturestoreRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Featurestore
getFeaturestore()
Required.String
getFeaturestoreId()
Required.com.google.protobuf.ByteString
getFeaturestoreIdBytes()
Required.FeaturestoreOrBuilder
getFeaturestoreOrBuilder()
Required.String
getParent()
Required.com.google.protobuf.ByteString
getParentBytes()
Required.boolean
hasFeaturestore()
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 resource name of the Location to create Featurestores. Format: `projects/{project}/locations/{location}`
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The resource name of the Location to create Featurestores. Format: `projects/{project}/locations/{location}`
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for parent.
-
hasFeaturestore
boolean hasFeaturestore()
Required. The Featurestore to create.
.google.cloud.aiplatform.v1.Featurestore featurestore = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the featurestore field is set.
-
getFeaturestore
Featurestore getFeaturestore()
Required. The Featurestore to create.
.google.cloud.aiplatform.v1.Featurestore featurestore = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The featurestore.
-
getFeaturestoreOrBuilder
FeaturestoreOrBuilder getFeaturestoreOrBuilder()
Required. The Featurestore to create.
.google.cloud.aiplatform.v1.Featurestore featurestore = 2 [(.google.api.field_behavior) = REQUIRED];
-
getFeaturestoreId
String getFeaturestoreId()
Required. The ID to use for this Featurestore, which will become the final component of the Featurestore's resource name. This value may be up to 60 characters, and valid characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within the project and location.
string featurestore_id = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The featurestoreId.
-
getFeaturestoreIdBytes
com.google.protobuf.ByteString getFeaturestoreIdBytes()
Required. The ID to use for this Featurestore, which will become the final component of the Featurestore's resource name. This value may be up to 60 characters, and valid characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within the project and location.
string featurestore_id = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for featurestoreId.
-
-