xref: /aosp_15_r20/external/googleapis/google/cloud/securitycenter/settings/v1beta1/sink_settings.proto (revision d5c09012810ac0c9f33fe448fb6da8260d444cc9)
1// Copyright 2020 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.securitycenter.settings.v1beta1;
18
19
20option cc_enable_arenas = true;
21option csharp_namespace = "Google.Cloud.SecurityCenter.Settings.V1Beta1";
22option go_package = "cloud.google.com/go/securitycenter/settings/apiv1beta1/settingspb;settingspb";
23option java_multiple_files = true;
24option java_outer_classname = "SinkProto";
25option java_package = "com.google.cloud.securitycenter.settings.v1beta1";
26option php_namespace = "Google\\Cloud\\SecurityCenter\\Settings\\V1beta1";
27option ruby_package = "Google::Cloud::SecurityCenter::Settings::V1beta1";
28
29// Sink Settings for Security Command Center
30message SinkSettings {
31  // The resource name of the project to send logs to. This project must be
32  // part of the same organization where the Security Center API is
33  // enabled. The format is `projects/{project}`. If it is empty, we do
34  // not output logs. If a project ID is provided it will be normalized to a
35  // project number.
36  string logging_sink_project = 1;
37}
38