|
|
|
@ -413,7 +413,7 @@ message UpdateFeaturestoreRequest { |
|
|
|
|
// * `display_name` |
|
|
|
|
// * `labels` |
|
|
|
|
// * `online_serving_config.fixed_node_count` |
|
|
|
|
// * `online_serving_config.max_online_serving_size` |
|
|
|
|
// * `retention_policy.online_storage_ttl_days` |
|
|
|
|
google.protobuf.FieldMask update_mask = 2; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -510,6 +510,13 @@ message ImportFeatureValuesResponse { |
|
|
|
|
|
|
|
|
|
// Number of Feature values that have been imported by the operation. |
|
|
|
|
int64 imported_feature_value_count = 2; |
|
|
|
|
|
|
|
|
|
// The number of rows in input source that weren't imported due to either |
|
|
|
|
// * Not having any featureValues. |
|
|
|
|
// * Having a null entityId. |
|
|
|
|
// * Having a null timestamp. |
|
|
|
|
// * Not being parsable (applicable for CSV sources). |
|
|
|
|
int64 invalid_row_count = 6; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Request message for [FeaturestoreService.BatchReadFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.BatchReadFeatureValues]. |
|
|
|
@ -1124,6 +1131,13 @@ message ImportFeatureValuesOperationMetadata { |
|
|
|
|
|
|
|
|
|
// Number of feature values that have been imported by the operation. |
|
|
|
|
int64 imported_feature_value_count = 3; |
|
|
|
|
|
|
|
|
|
// The number of rows in input source that weren't imported due to either |
|
|
|
|
// * Not having any featureValues. |
|
|
|
|
// * Having a null entityId. |
|
|
|
|
// * Having a null timestamp. |
|
|
|
|
// * Not being parsable (applicable for CSV sources). |
|
|
|
|
int64 invalid_row_count = 6; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Details of operations that exports Features values. |
|
|
|
|