123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632 |
- // Copyright 2022 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- syntax = "proto3";
- package google.cloud.eventarc.v1;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/eventarc/v1/channel.proto";
- import "google/cloud/eventarc/v1/channel_connection.proto";
- import "google/cloud/eventarc/v1/discovery.proto";
- import "google/cloud/eventarc/v1/google_channel_config.proto";
- import "google/cloud/eventarc/v1/trigger.proto";
- import "google/longrunning/operations.proto";
- import "google/protobuf/field_mask.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 = "EventarcProto";
- option java_package = "com.google.cloud.eventarc.v1";
- option php_namespace = "Google\\Cloud\\Eventarc\\V1";
- option ruby_package = "Google::Cloud::Eventarc::V1";
- // Eventarc allows users to subscribe to various events that are provided by
- // Google Cloud services and forward them to supported destinations.
- service Eventarc {
- option (google.api.default_host) = "eventarc.googleapis.com";
- option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
- // Get a single trigger.
- rpc GetTrigger(GetTriggerRequest) returns (Trigger) {
- option (google.api.http) = {
- get: "/v1/{name=projects/*/locations/*/triggers/*}"
- };
- option (google.api.method_signature) = "name";
- }
- // List triggers.
- rpc ListTriggers(ListTriggersRequest) returns (ListTriggersResponse) {
- option (google.api.http) = {
- get: "/v1/{parent=projects/*/locations/*}/triggers"
- };
- option (google.api.method_signature) = "parent";
- }
- // Create a new trigger in a particular project and location.
- rpc CreateTrigger(CreateTriggerRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- post: "/v1/{parent=projects/*/locations/*}/triggers"
- body: "trigger"
- };
- option (google.api.method_signature) = "parent,trigger,trigger_id";
- option (google.longrunning.operation_info) = {
- response_type: "Trigger"
- metadata_type: "OperationMetadata"
- };
- }
- // Update a single trigger.
- rpc UpdateTrigger(UpdateTriggerRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- patch: "/v1/{trigger.name=projects/*/locations/*/triggers/*}"
- body: "trigger"
- };
- option (google.api.method_signature) = "trigger,update_mask,allow_missing";
- option (google.longrunning.operation_info) = {
- response_type: "Trigger"
- metadata_type: "OperationMetadata"
- };
- }
- // Delete a single trigger.
- rpc DeleteTrigger(DeleteTriggerRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- delete: "/v1/{name=projects/*/locations/*/triggers/*}"
- };
- option (google.api.method_signature) = "name,allow_missing";
- option (google.longrunning.operation_info) = {
- response_type: "Trigger"
- metadata_type: "OperationMetadata"
- };
- }
- // Get a single Channel.
- rpc GetChannel(GetChannelRequest) returns (Channel) {
- option (google.api.http) = {
- get: "/v1/{name=projects/*/locations/*/channels/*}"
- };
- option (google.api.method_signature) = "name";
- }
- // List channels.
- rpc ListChannels(ListChannelsRequest) returns (ListChannelsResponse) {
- option (google.api.http) = {
- get: "/v1/{parent=projects/*/locations/*}/channels"
- };
- option (google.api.method_signature) = "parent";
- }
- // Create a new channel in a particular project and location.
- rpc CreateChannel(CreateChannelRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- post: "/v1/{parent=projects/*/locations/*}/channels"
- body: "channel"
- };
- option (google.api.method_signature) = "parent,channel,channel_id";
- option (google.longrunning.operation_info) = {
- response_type: "Channel"
- metadata_type: "OperationMetadata"
- };
- }
- // Update a single channel.
- rpc UpdateChannel(UpdateChannelRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- patch: "/v1/{channel.name=projects/*/locations/*/channels/*}"
- body: "channel"
- };
- option (google.api.method_signature) = "channel,update_mask";
- option (google.longrunning.operation_info) = {
- response_type: "Channel"
- metadata_type: "OperationMetadata"
- };
- }
- // Delete a single channel.
- rpc DeleteChannel(DeleteChannelRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- delete: "/v1/{name=projects/*/locations/*/channels/*}"
- };
- option (google.api.method_signature) = "name";
- option (google.longrunning.operation_info) = {
- response_type: "Channel"
- metadata_type: "OperationMetadata"
- };
- }
- // Get a single Provider.
- rpc GetProvider(GetProviderRequest) returns (Provider) {
- option (google.api.http) = {
- get: "/v1/{name=projects/*/locations/*/providers/*}"
- };
- option (google.api.method_signature) = "name";
- }
- // List providers.
- rpc ListProviders(ListProvidersRequest) returns (ListProvidersResponse) {
- option (google.api.http) = {
- get: "/v1/{parent=projects/*/locations/*}/providers"
- };
- option (google.api.method_signature) = "parent";
- }
- // Get a single ChannelConnection.
- rpc GetChannelConnection(GetChannelConnectionRequest) returns (ChannelConnection) {
- option (google.api.http) = {
- get: "/v1/{name=projects/*/locations/*/channelConnections/*}"
- };
- option (google.api.method_signature) = "name";
- }
- // List channel connections.
- rpc ListChannelConnections(ListChannelConnectionsRequest) returns (ListChannelConnectionsResponse) {
- option (google.api.http) = {
- get: "/v1/{parent=projects/*/locations/*}/channelConnections"
- };
- option (google.api.method_signature) = "parent";
- }
- // Create a new ChannelConnection in a particular project and location.
- rpc CreateChannelConnection(CreateChannelConnectionRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- post: "/v1/{parent=projects/*/locations/*}/channelConnections"
- body: "channel_connection"
- };
- option (google.api.method_signature) = "parent,channel_connection,channel_connection_id";
- option (google.longrunning.operation_info) = {
- response_type: "ChannelConnection"
- metadata_type: "OperationMetadata"
- };
- }
- // Delete a single ChannelConnection.
- rpc DeleteChannelConnection(DeleteChannelConnectionRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- delete: "/v1/{name=projects/*/locations/*/channelConnections/*}"
- };
- option (google.api.method_signature) = "name";
- option (google.longrunning.operation_info) = {
- response_type: "ChannelConnection"
- metadata_type: "OperationMetadata"
- };
- }
- // Get a GoogleChannelConfig
- rpc GetGoogleChannelConfig(GetGoogleChannelConfigRequest) returns (GoogleChannelConfig) {
- option (google.api.http) = {
- get: "/v1/{name=projects/*/locations/*/googleChannelConfig}"
- };
- option (google.api.method_signature) = "name";
- }
- // Update a single GoogleChannelConfig
- rpc UpdateGoogleChannelConfig(UpdateGoogleChannelConfigRequest) returns (GoogleChannelConfig) {
- option (google.api.http) = {
- patch: "/v1/{google_channel_config.name=projects/*/locations/*/googleChannelConfig}"
- body: "google_channel_config"
- };
- option (google.api.method_signature) = "google_channel_config,update_mask";
- }
- }
- // The request message for the GetTrigger method.
- message GetTriggerRequest {
- // Required. The name of the trigger to get.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "eventarc.googleapis.com/Trigger"
- }
- ];
- }
- // The request message for the ListTriggers method.
- message ListTriggersRequest {
- // Required. The parent collection to list triggers on.
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "eventarc.googleapis.com/Trigger"
- }
- ];
- // The maximum number of triggers to return on each page.
- //
- // Note: The service may send fewer.
- int32 page_size = 2;
- // The page token; provide the value from the `next_page_token` field in a
- // previous `ListTriggers` call to retrieve the subsequent page.
- //
- // When paginating, all other parameters provided to `ListTriggers` must match
- // the call that provided the page token.
- string page_token = 3;
- // The sorting order of the resources returned. Value should be a
- // comma-separated list of fields. The default sorting order is ascending. To
- // specify descending order for a field, append a `desc` suffix; for example:
- // `name desc, trigger_id`.
- string order_by = 4;
- // Filter field. Used to filter the Triggers to be listed. Possible filters
- // are described in https://google.aip.dev/160. For example, using
- // "?filter=destination:gke" would list only Triggers with a gke destination.
- string filter = 5;
- }
- // The response message for the `ListTriggers` method.
- message ListTriggersResponse {
- // The requested triggers, up to the number specified in `page_size`.
- repeated Trigger triggers = 1;
- // A page token that can be sent to `ListTriggers` to request the next page.
- // If this is empty, then there are no more pages.
- string next_page_token = 2;
- // Unreachable resources, if any.
- repeated string unreachable = 3;
- }
- // The request message for the CreateTrigger method.
- message CreateTriggerRequest {
- // Required. The parent collection in which to add this trigger.
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "eventarc.googleapis.com/Trigger"
- }
- ];
- // Required. The trigger to create.
- Trigger trigger = 2 [(google.api.field_behavior) = REQUIRED];
- // Required. The user-provided ID to be assigned to the trigger.
- string trigger_id = 3 [(google.api.field_behavior) = REQUIRED];
- // Required. If set, validate the request and preview the review, but do not
- // post it.
- bool validate_only = 4 [(google.api.field_behavior) = REQUIRED];
- }
- // The request message for the UpdateTrigger method.
- message UpdateTriggerRequest {
- // The trigger to be updated.
- Trigger trigger = 1;
- // The fields to be updated; only fields explicitly provided are updated.
- // If no field mask is provided, all provided fields in the request are
- // updated. To update all fields, provide a field mask of "*".
- google.protobuf.FieldMask update_mask = 2;
- // If set to true, and the trigger is not found, a new trigger will be
- // created. In this situation, `update_mask` is ignored.
- bool allow_missing = 3;
- // Required. If set, validate the request and preview the review, but do not
- // post it.
- bool validate_only = 4 [(google.api.field_behavior) = REQUIRED];
- }
- // The request message for the DeleteTrigger method.
- message DeleteTriggerRequest {
- // Required. The name of the trigger to be deleted.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "eventarc.googleapis.com/Trigger"
- }
- ];
- // If provided, the trigger will only be deleted if the etag matches the
- // current etag on the resource.
- string etag = 2;
- // If set to true, and the trigger is not found, the request will succeed
- // but no action will be taken on the server.
- bool allow_missing = 3;
- // Required. If set, validate the request and preview the review, but do not
- // post it.
- bool validate_only = 4 [(google.api.field_behavior) = REQUIRED];
- }
- // The request message for the GetChannel method.
- message GetChannelRequest {
- // Required. The name of the channel to get.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "eventarc.googleapis.com/Channel"
- }
- ];
- }
- // The request message for the ListChannels method.
- message ListChannelsRequest {
- // Required. The parent collection to list channels on.
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "eventarc.googleapis.com/Channel"
- }
- ];
- // The maximum number of channels to return on each page.
- //
- // Note: The service may send fewer.
- int32 page_size = 2;
- // The page token; provide the value from the `next_page_token` field in a
- // previous `ListChannels` call to retrieve the subsequent page.
- //
- // When paginating, all other parameters provided to `ListChannels` must
- // match the call that provided the page token.
- string page_token = 3;
- // The sorting order of the resources returned. Value should be a
- // comma-separated list of fields. The default sorting order is ascending. To
- // specify descending order for a field, append a `desc` suffix; for example:
- // `name desc, channel_id`.
- string order_by = 4;
- }
- // The response message for the `ListChannels` method.
- message ListChannelsResponse {
- // The requested channels, up to the number specified in `page_size`.
- repeated Channel channels = 1;
- // A page token that can be sent to `ListChannels` to request the next page.
- // If this is empty, then there are no more pages.
- string next_page_token = 2;
- // Unreachable resources, if any.
- repeated string unreachable = 3;
- }
- // The request message for the CreateChannel method.
- message CreateChannelRequest {
- // Required. The parent collection in which to add this channel.
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "eventarc.googleapis.com/Channel"
- }
- ];
- // Required. The channel to create.
- Channel channel = 2 [(google.api.field_behavior) = REQUIRED];
- // Required. The user-provided ID to be assigned to the channel.
- string channel_id = 3 [(google.api.field_behavior) = REQUIRED];
- // Required. If set, validate the request and preview the review, but do not
- // post it.
- bool validate_only = 4 [(google.api.field_behavior) = REQUIRED];
- }
- // The request message for the UpdateChannel method.
- message UpdateChannelRequest {
- // The channel to be updated.
- Channel channel = 1;
- // The fields to be updated; only fields explicitly provided are updated.
- // If no field mask is provided, all provided fields in the request are
- // updated. To update all fields, provide a field mask of "*".
- google.protobuf.FieldMask update_mask = 2;
- // Required. If set, validate the request and preview the review, but do not
- // post it.
- bool validate_only = 3 [(google.api.field_behavior) = REQUIRED];
- }
- // The request message for the DeleteChannel method.
- message DeleteChannelRequest {
- // Required. The name of the channel to be deleted.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "eventarc.googleapis.com/Channel"
- }
- ];
- // Required. If set, validate the request and preview the review, but do not
- // post it.
- bool validate_only = 2 [(google.api.field_behavior) = REQUIRED];
- }
- // The request message for the GetProvider method.
- message GetProviderRequest {
- // Required. The name of the provider to get.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "eventarc.googleapis.com/Provider"
- }
- ];
- }
- // The request message for the ListProviders method.
- message ListProvidersRequest {
- // Required. The parent of the provider to get.
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "eventarc.googleapis.com/Provider"
- }
- ];
- // The maximum number of providers to return on each page.
- int32 page_size = 2;
- // The page token; provide the value from the `next_page_token` field in a
- // previous `ListProviders` call to retrieve the subsequent page.
- //
- // When paginating, all other parameters provided to `ListProviders` must
- // match the call that provided the page token.
- string page_token = 3;
- // The sorting order of the resources returned. Value should be a
- // comma-separated list of fields. The default sorting oder is ascending. To
- // specify descending order for a field, append a `desc` suffix; for example:
- // `name desc, _id`.
- string order_by = 4;
- // The filter field that the list request will filter on.
- string filter = 5;
- }
- // The response message for the `ListProviders` method.
- message ListProvidersResponse {
- // The requested providers, up to the number specified in `page_size`.
- repeated Provider providers = 1;
- // A page token that can be sent to `ListProviders` to request the next page.
- // If this is empty, then there are no more pages.
- string next_page_token = 2;
- // Unreachable resources, if any.
- repeated string unreachable = 3;
- }
- // The request message for the GetChannelConnection method.
- message GetChannelConnectionRequest {
- // Required. The name of the channel connection to get.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "eventarc.googleapis.com/ChannelConnection"
- }
- ];
- }
- // The request message for the ListChannelConnections method.
- message ListChannelConnectionsRequest {
- // Required. The parent collection from which to list channel connections.
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "eventarc.googleapis.com/ChannelConnection"
- }
- ];
- // The maximum number of channel connections to return on each page.
- //
- // Note: The service may send fewer responses.
- int32 page_size = 2;
- // The page token; provide the value from the `next_page_token` field in a
- // previous `ListChannelConnections` call to retrieve the subsequent page.
- //
- // When paginating, all other parameters provided to `ListChannelConnetions`
- // match the call that provided the page token.
- string page_token = 3;
- }
- // The response message for the `ListChannelConnections` method.
- message ListChannelConnectionsResponse {
- // The requested channel connections, up to the number specified in
- // `page_size`.
- repeated ChannelConnection channel_connections = 1;
- // A page token that can be sent to `ListChannelConnections` to request the
- // next page.
- // If this is empty, then there are no more pages.
- string next_page_token = 2;
- // Unreachable resources, if any.
- repeated string unreachable = 3;
- }
- // The request message for the CreateChannelConnection method.
- message CreateChannelConnectionRequest {
- // Required. The parent collection in which to add this channel connection.
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "eventarc.googleapis.com/ChannelConnection"
- }
- ];
- // Required. Channel connection to create.
- ChannelConnection channel_connection = 2 [(google.api.field_behavior) = REQUIRED];
- // Required. The user-provided ID to be assigned to the channel connection.
- string channel_connection_id = 3 [(google.api.field_behavior) = REQUIRED];
- }
- // The request message for the DeleteChannelConnection method.
- message DeleteChannelConnectionRequest {
- // Required. The name of the channel connection to delete.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "eventarc.googleapis.com/ChannelConnection"
- }
- ];
- }
- // The request message for the UpdateGoogleChannelConfig method.
- message UpdateGoogleChannelConfigRequest {
- // Required. The config to be updated.
- GoogleChannelConfig google_channel_config = 1 [(google.api.field_behavior) = REQUIRED];
- // The fields to be updated; only fields explicitly provided are updated.
- // If no field mask is provided, all provided fields in the request are
- // updated. To update all fields, provide a field mask of "*".
- google.protobuf.FieldMask update_mask = 2;
- }
- // The request message for the GetGoogleChannelConfig method.
- message GetGoogleChannelConfigRequest {
- // Required. The name of the config to get.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "eventarc.googleapis.com/GoogleChannelConfig"
- }
- ];
- }
- // Represents the metadata of the long-running operation.
- message OperationMetadata {
- // Output only. The time the operation was created.
- google.protobuf.Timestamp create_time = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
- // Output only. The time the operation finished running.
- google.protobuf.Timestamp end_time = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
- // Output only. Server-defined resource path for the target of the operation.
- string target = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
- // Output only. Name of the verb executed by the operation.
- string verb = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
- // Output only. Human-readable status of the operation, if any.
- string status_message = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
- // Output only. Identifies whether the user has requested cancellation
- // of the operation. Operations that have successfully been cancelled
- // have [Operation.error][] value with a [google.rpc.Status.code][google.rpc.Status.code] of 1,
- // corresponding to `Code.CANCELLED`.
- bool requested_cancellation = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
- // Output only. API version used to start the operation.
- string api_version = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
|