Skip to content

Commit 2eebc55

Browse files
feat(google-cloud-security_center-v1): Add application field to finding's list of attributes (#24815)
1 parent 9fc101b commit 2eebc55

File tree

5 files changed

+90
-1
lines changed

5 files changed

+90
-1
lines changed

google-cloud-security_center-v1/.owlbot-manifest.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"lib/google/cloud/security_center/v1/security_center/rest/service_stub.rb",
2828
"lib/google/cloud/security_center/v1/version.rb",
2929
"lib/google/cloud/securitycenter/v1/access_pb.rb",
30+
"lib/google/cloud/securitycenter/v1/application_pb.rb",
3031
"lib/google/cloud/securitycenter/v1/asset_pb.rb",
3132
"lib/google/cloud/securitycenter/v1/bigquery_export_pb.rb",
3233
"lib/google/cloud/securitycenter/v1/cloud_dlp_data_profile_pb.rb",
@@ -68,6 +69,7 @@
6869
"proto_docs/google/api/launch_stage.rb",
6970
"proto_docs/google/api/resource.rb",
7071
"proto_docs/google/cloud/securitycenter/v1/access.rb",
72+
"proto_docs/google/cloud/securitycenter/v1/application.rb",
7173
"proto_docs/google/cloud/securitycenter/v1/asset.rb",
7274
"proto_docs/google/cloud/securitycenter/v1/bigquery_export.rb",
7375
"proto_docs/google/cloud/securitycenter/v1/cloud_dlp_data_profile.rb",

google-cloud-security_center-v1/lib/google/cloud/securitycenter/v1/application_pb.rb

Lines changed: 42 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

google-cloud-security_center-v1/lib/google/cloud/securitycenter/v1/finding_pb.rb

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# frozen_string_literal: true
2+
3+
# Copyright 2024 Google LLC
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# https://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
17+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18+
19+
20+
module Google
21+
module Cloud
22+
module SecurityCenter
23+
module V1
24+
# Represents an application associated with a finding.
25+
# @!attribute [rw] base_uri
26+
# @return [::String]
27+
# The base URI that identifies the network location of the application in
28+
# which the vulnerability was detected. For example, `http://example.com`.
29+
# @!attribute [rw] full_uri
30+
# @return [::String]
31+
# The full URI with payload that can be used to reproduce the
32+
# vulnerability. For example, `http://example.com?p=aMmYgI6H`.
33+
class Application
34+
include ::Google::Protobuf::MessageExts
35+
extend ::Google::Protobuf::MessageExts::ClassMethods
36+
end
37+
end
38+
end
39+
end
40+
end

google-cloud-security_center-v1/proto_docs/google/cloud/securitycenter/v1/finding.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,9 @@ module V1
212212
# @!attribute [rw] kernel_rootkit
213213
# @return [::Google::Cloud::SecurityCenter::V1::KernelRootkit]
214214
# Signature of the kernel rootkit.
215+
# @!attribute [rw] application
216+
# @return [::Google::Cloud::SecurityCenter::V1::Application]
217+
# Represents an application associated with the finding.
215218
class Finding
216219
include ::Google::Protobuf::MessageExts
217220
extend ::Google::Protobuf::MessageExts::ClassMethods

0 commit comments

Comments
 (0)