123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- syntax = "proto3";
- package google.monitoring.v3;
- import "google/api/label.proto";
- import "google/api/launch_stage.proto";
- import "google/api/resource.proto";
- import "google/monitoring/v3/common.proto";
- import "google/monitoring/v3/mutation_record.proto";
- import "google/protobuf/wrappers.proto";
- option csharp_namespace = "Google.Cloud.Monitoring.V3";
- option go_package = "google.golang.org/genproto/googleapis/monitoring/v3;monitoring";
- option java_multiple_files = true;
- option java_outer_classname = "NotificationProto";
- option java_package = "com.google.monitoring.v3";
- option php_namespace = "Google\\Cloud\\Monitoring\\V3";
- option ruby_package = "Google::Cloud::Monitoring::V3";
- message NotificationChannelDescriptor {
- option (google.api.resource) = {
- type: "monitoring.googleapis.com/NotificationChannelDescriptor"
- pattern: "projects/{project}/notificationChannelDescriptors/{channel_descriptor}"
- pattern: "organizations/{organization}/notificationChannelDescriptors/{channel_descriptor}"
- pattern: "folders/{folder}/notificationChannelDescriptors/{channel_descriptor}"
- pattern: "*"
- };
-
-
-
-
-
- string name = 6;
-
-
-
-
-
- string type = 1;
-
-
- string display_name = 2;
-
-
-
- string description = 3;
-
-
-
- repeated google.api.LabelDescriptor labels = 4;
-
-
- repeated ServiceTier supported_tiers = 5 [deprecated = true];
-
- google.api.LaunchStage launch_stage = 7;
- }
- message NotificationChannel {
- option (google.api.resource) = {
- type: "monitoring.googleapis.com/NotificationChannel"
- pattern: "projects/{project}/notificationChannels/{notification_channel}"
- pattern: "organizations/{organization}/notificationChannels/{notification_channel}"
- pattern: "folders/{folder}/notificationChannels/{notification_channel}"
- pattern: "*"
- };
-
-
-
-
-
-
- enum VerificationStatus {
-
-
-
- VERIFICATION_STATUS_UNSPECIFIED = 0;
-
-
-
-
- UNVERIFIED = 1;
-
-
-
- VERIFIED = 2;
- }
-
-
- string type = 1;
-
-
-
-
-
- string name = 6;
-
-
-
-
- string display_name = 3;
-
-
-
- string description = 4;
-
-
-
-
- map<string, string> labels = 5;
-
-
-
-
-
-
-
-
-
- map<string, string> user_labels = 8;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- VerificationStatus verification_status = 9;
-
-
-
-
-
-
- google.protobuf.BoolValue enabled = 11;
-
- MutationRecord creation_record = 12;
-
- repeated MutationRecord mutation_records = 13;
- }
|