- 1.35.0 (latest)
- 1.34.0
- 1.33.0
- 1.32.1
- 1.31.0
- 1.30.0
- 1.26.0
- 1.23.0
- 1.22.0
- 1.21.0
- 1.20.0
- 1.19.0
- 1.18.0
- 1.17.0
- 1.16.0
- 1.15.0
- 1.14.0
- 1.13.1
- 1.12.0
- 1.11.0
- 1.10.0
- 1.9.0
- 1.8.0
- 1.7.0
- 1.6.0
- 1.5.0
- 1.4.0
- 1.3.0
- 1.2.0
- 1.1.0
- 1.0.0
- 0.39.0
- 0.38.0
- 0.37.1
- 0.32.0
- 0.31.0
- 0.30.0
- 0.29.0
- 0.28.0
- 0.27.0
- 0.26.2
- 0.25.0
- 0.24.0
- 0.23.0
- 0.22.0
- 0.21.0
- 0.20.0
- 0.19.0
- 0.18.0
- 0.17.0
- 0.16.0
- 0.15.0
- 0.13.0
- 0.12.0
- 0.11.1
- 0.10.0
Reference documentation and code samples for the Google Cloud Ai Platform V1 Client class ImportFeatureValuesRequest.
Request message for FeaturestoreService.ImportFeatureValues .
Generated from protobuf message google.cloud.aiplatform.v1.ImportFeatureValuesRequest
Methods
__construct
Constructor.
data
array
Optional. Data for populating the Message object.
↳ avro_source
↳ bigquery_source
↳ csv_source
↳ feature_time_field
string
Source column that holds the Feature timestamp for all Feature values in each entity.
↳ feature_time
Google\Protobuf\Timestamp
Single Feature timestamp for all entities being imported. The timestamp must not have higher than millisecond precision.
↳ entity_type
string
Required. The resource name of the EntityType grouping the Features for which values are being imported. Format: projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entityType}
↳ entity_id_field
string
Source column that holds entity IDs. If not provided, entity IDs are extracted from the column named entity_id
.
↳ feature_specs
array< Google\Cloud\AIPlatform\V1\ImportFeatureValuesRequest\FeatureSpec
>
Required. Specifications defining which Feature values to import from the entity. The request fails if no feature_specs are provided, and having multiple feature_specs for one Feature is not allowed.
↳ disable_online_serving
bool
If set, data will not be imported for online serving. This is typically used for backfilling, where Feature generation timestamps are not in the timestamp range needed for online serving.
↳ worker_count
int
Specifies the number of workers that are used to write data to the Featurestore. Consider the online serving capacity that you require to achieve the desired import throughput without interfering with online serving. The value must be positive, and less than or equal to 100. If not set, defaults to using 1 worker. The low count ensures minimal impact on online serving performance.
↳ disable_ingestion_analysis
bool
If true, API doesn't start ingestion analysis pipeline.
getAvroSource
Generated from protobuf field .google.cloud.aiplatform.v1.AvroSource avro_source = 2;
hasAvroSource
setAvroSource
Generated from protobuf field .google.cloud.aiplatform.v1.AvroSource avro_source = 2;
$this
getBigquerySource
Generated from protobuf field .google.cloud.aiplatform.v1.BigQuerySource bigquery_source = 3;
hasBigquerySource
setBigquerySource
Generated from protobuf field .google.cloud.aiplatform.v1.BigQuerySource bigquery_source = 3;
$this
getCsvSource
Generated from protobuf field .google.cloud.aiplatform.v1.CsvSource csv_source = 4;
hasCsvSource
setCsvSource
Generated from protobuf field .google.cloud.aiplatform.v1.CsvSource csv_source = 4;
$this
getFeatureTimeField
Source column that holds the Feature timestamp for all Feature values in each entity.
Generated from protobuf field string feature_time_field = 6;
string
hasFeatureTimeField
setFeatureTimeField
Source column that holds the Feature timestamp for all Feature values in each entity.
Generated from protobuf field string feature_time_field = 6;
var
string
$this
getFeatureTime
Single Feature timestamp for all entities being imported. The timestamp must not have higher than millisecond precision.
Generated from protobuf field .google.protobuf.Timestamp feature_time = 7;
Google\Protobuf\Timestamp|null
hasFeatureTime
setFeatureTime
Single Feature timestamp for all entities being imported. The timestamp must not have higher than millisecond precision.
Generated from protobuf field .google.protobuf.Timestamp feature_time = 7;
var
Google\Protobuf\Timestamp
$this
getEntityType
Required. The resource name of the EntityType grouping the Features for which values
are being imported. Format: projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entityType}
Generated from protobuf field string entity_type = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {
string
setEntityType
Required. The resource name of the EntityType grouping the Features for which values
are being imported. Format: projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entityType}
Generated from protobuf field string entity_type = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {
var
string
$this
getEntityIdField
Source column that holds entity IDs. If not provided, entity IDs are
extracted from the column named entity_id
.
Generated from protobuf field string entity_id_field = 5;
string
setEntityIdField
Source column that holds entity IDs. If not provided, entity IDs are
extracted from the column named entity_id
.
Generated from protobuf field string entity_id_field = 5;
var
string
$this
getFeatureSpecs
Required. Specifications defining which Feature values to import from the entity. The request fails if no feature_specs are provided, and having multiple feature_specs for one Feature is not allowed.
Generated from protobuf field repeated .google.cloud.aiplatform.v1.ImportFeatureValuesRequest.FeatureSpec feature_specs = 8 [(.google.api.field_behavior) = REQUIRED];
Google\Protobuf\Internal\RepeatedField
setFeatureSpecs
Required. Specifications defining which Feature values to import from the entity. The request fails if no feature_specs are provided, and having multiple feature_specs for one Feature is not allowed.
Generated from protobuf field repeated .google.cloud.aiplatform.v1.ImportFeatureValuesRequest.FeatureSpec feature_specs = 8 [(.google.api.field_behavior) = REQUIRED];
$this
getDisableOnlineServing
If set, data will not be imported for online serving. This is typically used for backfilling, where Feature generation timestamps are not in the timestamp range needed for online serving.
Generated from protobuf field bool disable_online_serving = 9;
bool
setDisableOnlineServing
If set, data will not be imported for online serving. This is typically used for backfilling, where Feature generation timestamps are not in the timestamp range needed for online serving.
Generated from protobuf field bool disable_online_serving = 9;
var
bool
$this
getWorkerCount
Specifies the number of workers that are used to write data to the Featurestore. Consider the online serving capacity that you require to achieve the desired import throughput without interfering with online serving. The value must be positive, and less than or equal to 100.
If not set, defaults to using 1 worker. The low count ensures minimal impact on online serving performance.
Generated from protobuf field int32 worker_count = 11;
int
setWorkerCount
Specifies the number of workers that are used to write data to the Featurestore. Consider the online serving capacity that you require to achieve the desired import throughput without interfering with online serving. The value must be positive, and less than or equal to 100.
If not set, defaults to using 1 worker. The low count ensures minimal impact on online serving performance.
Generated from protobuf field int32 worker_count = 11;
var
int
$this
getDisableIngestionAnalysis
If true, API doesn't start ingestion analysis pipeline.
Generated from protobuf field bool disable_ingestion_analysis = 12;
bool
setDisableIngestionAnalysis
If true, API doesn't start ingestion analysis pipeline.
Generated from protobuf field bool disable_ingestion_analysis = 12;
var
bool
$this
getSource
string
getFeatureTimeSource
string