123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- syntax = "proto3";
- package google.cloud.networkservices.v1;
- import "google/api/field_behavior.proto";
- import "google/protobuf/timestamp.proto";
- option csharp_namespace = "Google.Cloud.NetworkServices.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/networkservices/v1;networkservices";
- option java_multiple_files = true;
- option java_outer_classname = "CommonProto";
- option java_package = "com.google.cloud.networkservices.v1";
- option php_namespace = "Google\\Cloud\\NetworkServices\\V1";
- option ruby_package = "Google::Cloud::NetworkServices::V1";
- message OperationMetadata {
-
- google.protobuf.Timestamp create_time = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp end_time = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string target = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string verb = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string status_message = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
- bool requested_cancellation = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string api_version = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message TrafficPortSelector {
-
-
-
-
- repeated string ports = 1 [(google.api.field_behavior) = OPTIONAL];
- }
- message EndpointMatcher {
-
- message MetadataLabelMatcher {
-
- message MetadataLabels {
-
- string label_name = 1 [(google.api.field_behavior) = REQUIRED];
-
-
- string label_value = 2 [(google.api.field_behavior) = REQUIRED];
- }
-
- enum MetadataLabelMatchCriteria {
-
- METADATA_LABEL_MATCH_CRITERIA_UNSPECIFIED = 0;
-
-
- MATCH_ANY = 1;
-
-
- MATCH_ALL = 2;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- MetadataLabelMatchCriteria metadata_label_match_criteria = 1;
-
-
-
-
-
- repeated MetadataLabels metadata_labels = 2;
- }
-
- oneof matcher_type {
-
- MetadataLabelMatcher metadata_label_matcher = 1;
- }
- }
|