123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- syntax = "proto3";
- package google.cloud.aiplatform.v1beta1;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/aiplatform/v1beta1/feature_monitoring_stats.proto";
- import "google/cloud/aiplatform/v1beta1/featurestore_monitoring.proto";
- import "google/protobuf/timestamp.proto";
- option csharp_namespace = "Google.Cloud.AIPlatform.V1Beta1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1beta1;aiplatform";
- option java_multiple_files = true;
- option java_outer_classname = "FeatureProto";
- option java_package = "com.google.cloud.aiplatform.v1beta1";
- option php_namespace = "Google\\Cloud\\AIPlatform\\V1beta1";
- option ruby_package = "Google::Cloud::AIPlatform::V1beta1";
- message Feature {
- option (google.api.resource) = {
- type: "aiplatform.googleapis.com/Feature"
- pattern: "projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature}"
- };
-
-
-
-
- message MonitoringStatsAnomaly {
-
-
-
-
- enum Objective {
-
- OBJECTIVE_UNSPECIFIED = 0;
-
- IMPORT_FEATURE_ANALYSIS = 1;
-
- SNAPSHOT_ANALYSIS = 2;
- }
-
- Objective objective = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- FeatureStatsAnomaly feature_stats_anomaly = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
-
- enum ValueType {
-
- VALUE_TYPE_UNSPECIFIED = 0;
-
- BOOL = 1;
-
- BOOL_ARRAY = 2;
-
- DOUBLE = 3;
-
- DOUBLE_ARRAY = 4;
-
- INT64 = 9;
-
- INT64_ARRAY = 10;
-
- STRING = 11;
-
- STRING_ARRAY = 12;
-
- BYTES = 13;
- }
-
-
-
-
-
-
-
-
- string name = 1 [(google.api.field_behavior) = IMMUTABLE];
-
- string description = 2;
-
- ValueType value_type = 3 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.field_behavior) = IMMUTABLE
- ];
-
- google.protobuf.Timestamp create_time = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp update_time = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
-
-
-
-
-
-
- map<string, string> labels = 6 [(google.api.field_behavior) = OPTIONAL];
-
-
- string etag = 7;
-
-
-
-
-
-
-
-
-
-
-
-
- FeaturestoreMonitoringConfig monitoring_config = 9 [
- deprecated = true,
- (google.api.field_behavior) = OPTIONAL
- ];
-
-
-
-
-
-
-
- bool disable_monitoring = 12 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
- repeated FeatureStatsAnomaly monitoring_stats = 10 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- repeated MonitoringStatsAnomaly monitoring_stats_anomalies = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
|