@@ -413,7 +413,7 @@ message UpdateFeaturestoreRequest {
413413 // * `display_name`
414414 // * `labels`
415415 // * `online_serving_config.fixed_node_count`
416- // * `online_serving_config.max_online_serving_size `
416+ // * `retention_policy.online_storage_ttl_days `
417417 google.protobuf.FieldMask update_mask = 2 ;
418418}
419419
@@ -510,6 +510,13 @@ message ImportFeatureValuesResponse {
510510
511511 // Number of Feature values that have been imported by the operation.
512512 int64 imported_feature_value_count = 2 ;
513+
514+ // The number of rows in input source that weren't imported due to either
515+ // * Not having any featureValues.
516+ // * Having a null entityId.
517+ // * Having a null timestamp.
518+ // * Not being parsable (applicable for CSV sources).
519+ int64 invalid_row_count = 6 ;
513520}
514521
515522// Request message for [FeaturestoreService.BatchReadFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.BatchReadFeatureValues].
@@ -1124,6 +1131,13 @@ message ImportFeatureValuesOperationMetadata {
11241131
11251132 // Number of feature values that have been imported by the operation.
11261133 int64 imported_feature_value_count = 3 ;
1134+
1135+ // The number of rows in input source that weren't imported due to either
1136+ // * Not having any featureValues.
1137+ // * Having a null entityId.
1138+ // * Having a null timestamp.
1139+ // * Not being parsable (applicable for CSV sources).
1140+ int64 invalid_row_count = 6 ;
11271141}
11281142
11291143// Details of operations that exports Features values.
0 commit comments