123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- syntax = "proto3";
- package google.cloud.eventarc.v1;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/protobuf/timestamp.proto";
- import "google/rpc/code.proto";
- option go_package = "google.golang.org/genproto/googleapis/cloud/eventarc/v1;eventarc";
- option java_multiple_files = true;
- option java_outer_classname = "TriggerProto";
- option java_package = "com.google.cloud.eventarc.v1";
- option (google.api.resource_definition) = {
- type: "cloudfunctions.googleapis.com/CloudFunction"
- pattern: "projects/{project}/locations/{location}/functions/{function}"
- };
- option (google.api.resource_definition) = {
- type: "iam.googleapis.com/ServiceAccount"
- pattern: "projects/{project}/serviceAccounts/{service_account}"
- };
- option (google.api.resource_definition) = {
- type: "run.googleapis.com/Service"
- pattern: "*"
- };
- option (google.api.resource_definition) = {
- type: "workflows.googleapis.com/Workflow"
- pattern: "projects/{project}/locations/{location}/workflows/{workflow}"
- };
- message Trigger {
- option (google.api.resource) = {
- type: "eventarc.googleapis.com/Trigger"
- pattern: "projects/{project}/locations/{location}/triggers/{trigger}"
- plural: "triggers"
- singular: "trigger"
- };
-
-
-
- string name = 1 [(google.api.field_behavior) = REQUIRED];
-
-
- string uid = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp create_time = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp update_time = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- repeated EventFilter event_filters = 8 [
- (google.api.field_behavior) = UNORDERED_LIST,
- (google.api.field_behavior) = REQUIRED
- ];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string service_account = 9 [
- (google.api.field_behavior) = OPTIONAL,
- (google.api.resource_reference) = {
- type: "iam.googleapis.com/ServiceAccount"
- }
- ];
-
- Destination destination = 10 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- Transport transport = 11 [(google.api.field_behavior) = OPTIONAL];
-
- map<string, string> labels = 12 [(google.api.field_behavior) = OPTIONAL];
-
-
-
- string channel = 13 [(google.api.field_behavior) = OPTIONAL];
-
- map<string, StateCondition> conditions = 15 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
- string etag = 99 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message EventFilter {
-
-
-
-
- string attribute = 1 [(google.api.field_behavior) = REQUIRED];
-
- string value = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- string operator = 3 [(google.api.field_behavior) = OPTIONAL];
- }
- message StateCondition {
-
- google.rpc.Code code = 1;
-
- string message = 2;
- }
- message Destination {
- oneof descriptor {
-
-
- CloudRun cloud_run = 1;
-
-
- string cloud_function = 2 [(google.api.resource_reference) = {
- type: "cloudfunctions.googleapis.com/CloudFunction"
- }];
-
-
- GKE gke = 3;
-
-
-
-
- string workflow = 4 [(google.api.resource_reference) = {
- type: "workflows.googleapis.com/Workflow"
- }];
- }
- }
- message Transport {
- oneof intermediary {
-
-
- Pubsub pubsub = 1;
- }
- }
- message CloudRun {
-
-
-
-
-
- string service = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "run.googleapis.com/Service"
- }
- ];
-
-
-
-
- string path = 2 [(google.api.field_behavior) = OPTIONAL];
-
- string region = 3 [(google.api.field_behavior) = REQUIRED];
- }
- message GKE {
-
-
- string cluster = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
- string location = 2 [(google.api.field_behavior) = REQUIRED];
-
- string namespace = 3 [(google.api.field_behavior) = REQUIRED];
-
- string service = 4 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- string path = 5 [(google.api.field_behavior) = OPTIONAL];
- }
- message Pubsub {
-
-
-
-
-
-
-
- string topic = 1 [(google.api.field_behavior) = OPTIONAL];
-
-
-
- string subscription = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
|