123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- syntax = "proto3";
- package google.cloud.eventarc.v1;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/protobuf/timestamp.proto";
- option csharp_namespace = "Google.Cloud.Eventarc.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/eventarc/v1;eventarc";
- option java_multiple_files = true;
- option java_outer_classname = "ChannelProto";
- option java_package = "com.google.cloud.eventarc.v1";
- option php_namespace = "Google\\Cloud\\Eventarc\\V1";
- option ruby_package = "Google::Cloud::Eventarc::V1";
- message Channel {
- option (google.api.resource) = {
- type: "eventarc.googleapis.com/Channel"
- pattern: "projects/{project}/locations/{location}/channels/{channel}"
- plural: "channels"
- singular: "channel"
- };
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
-
-
- PENDING = 1;
-
-
-
-
- ACTIVE = 2;
-
-
-
-
-
-
-
-
-
- INACTIVE = 3;
- }
-
-
-
- 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];
-
-
-
-
- string provider = 7;
- oneof transport {
-
-
-
- string pubsub_topic = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
-
- State state = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string activation_token = 10 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
- string crypto_key_name = 11 [
- (google.api.field_behavior) = OPTIONAL,
- (google.api.resource_reference) = {
- type: "cloudkms.googleapis.com/CryptoKey"
- }
- ];
- }
|