xref: /aosp_15_r20/external/googleapis/google/cloud/integrations/v1alpha/event_parameter.proto (revision d5c09012810ac0c9f33fe448fb6da8260d444cc9)
1// Copyright 2023 Google LLC
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15syntax = "proto3";
16
17package google.cloud.integrations.v1alpha;
18
19import "google/cloud/integrations/v1alpha/value_type.proto";
20
21option csharp_namespace = "Google.Cloud.Integrations.V1Alpha";
22option go_package = "cloud.google.com/go/integrations/apiv1alpha/integrationspb;integrationspb";
23option java_multiple_files = true;
24option java_outer_classname = "EventParameterProto";
25option java_package = "com.google.cloud.integrations.v1alpha";
26
27// This message is used for processing and persisting (when applicable) key
28// value pair parameters for each event in the event bus.
29// Next available id: 4
30message EventParameter {
31  // Key is used to retrieve the corresponding parameter value. This should be
32  // unique for a given fired event. These parameters must be predefined in the
33  // integration definition.
34  string key = 1;
35
36  // Values for the defined keys. Each value can either be string, int, double
37  // or any proto message.
38  ValueType value = 2;
39
40  // True if this parameter should be masked in the logs
41  bool masked = 3;
42}
43