google-cloud-security_center-v1 0.6.0 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/AUTHENTICATION.md +8 -8
- data/README.md +1 -1
- data/lib/google/cloud/security_center/v1/security_center/client.rb +67 -70
- data/lib/google/cloud/security_center/v1/security_center/operations.rb +4 -4
- data/lib/google/cloud/security_center/v1/security_center/paths.rb +174 -16
- data/lib/google/cloud/security_center/v1/version.rb +1 -1
- data/lib/google/cloud/securitycenter/v1/asset_pb.rb +4 -1
- data/lib/google/cloud/securitycenter/v1/finding_pb.rb +13 -1
- data/lib/google/cloud/securitycenter/v1/folder_pb.rb +24 -0
- data/lib/google/cloud/securitycenter/v1/indicator_pb.rb +24 -0
- data/lib/google/cloud/securitycenter/v1/notification_config_pb.rb +1 -1
- data/lib/google/cloud/securitycenter/v1/notification_message_pb.rb +1 -1
- data/lib/google/cloud/securitycenter/v1/organization_settings_pb.rb +2 -1
- data/lib/google/cloud/securitycenter/v1/resource_pb.rb +3 -0
- data/lib/google/cloud/securitycenter/v1/run_asset_discovery_response_pb.rb +1 -1
- data/lib/google/cloud/securitycenter/v1/security_marks_pb.rb +2 -1
- data/lib/google/cloud/securitycenter/v1/securitycenter_service_pb.rb +2 -0
- data/lib/google/cloud/securitycenter/v1/securitycenter_service_services_pb.rb +4 -1
- data/lib/google/cloud/securitycenter/v1/source_pb.rb +2 -1
- data/proto_docs/google/api/field_behavior.rb +7 -1
- data/proto_docs/google/cloud/securitycenter/v1/asset.rb +13 -2
- data/proto_docs/google/cloud/securitycenter/v1/finding.rb +40 -1
- data/proto_docs/google/cloud/securitycenter/v1/folder.rb +40 -0
- data/proto_docs/google/cloud/securitycenter/v1/indicator.rb +41 -0
- data/proto_docs/google/cloud/securitycenter/v1/organization_settings.rb +4 -0
- data/proto_docs/google/cloud/securitycenter/v1/resource.rb +5 -0
- data/proto_docs/google/cloud/securitycenter/v1/security_marks.rb +10 -0
- data/proto_docs/google/cloud/securitycenter/v1/securitycenter_service.rb +57 -24
- data/proto_docs/google/cloud/securitycenter/v1/source.rb +8 -0
- data/proto_docs/google/type/expr.rb +35 -12
- metadata +19 -9
@@ -3,11 +3,12 @@
|
|
3
3
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
|
-
require 'google/api/annotations_pb'
|
7
6
|
require 'google/api/resource_pb'
|
7
|
+
require 'google/cloud/securitycenter/v1/folder_pb'
|
8
8
|
require 'google/cloud/securitycenter/v1/security_marks_pb'
|
9
9
|
require 'google/protobuf/struct_pb'
|
10
10
|
require 'google/protobuf/timestamp_pb'
|
11
|
+
require 'google/api/annotations_pb'
|
11
12
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
12
13
|
add_file("google/cloud/securitycenter/v1/asset.proto", :syntax => :proto3) do
|
13
14
|
add_message "google.cloud.securitycenter.v1.Asset" do
|
@@ -18,6 +19,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
18
19
|
optional :create_time, :message, 9, "google.protobuf.Timestamp"
|
19
20
|
optional :update_time, :message, 10, "google.protobuf.Timestamp"
|
20
21
|
optional :iam_policy, :message, 11, "google.cloud.securitycenter.v1.Asset.IamPolicy"
|
22
|
+
optional :canonical_name, :string, 13
|
21
23
|
end
|
22
24
|
add_message "google.cloud.securitycenter.v1.Asset.SecurityCenterProperties" do
|
23
25
|
optional :resource_name, :string, 1
|
@@ -28,6 +30,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
28
30
|
optional :resource_display_name, :string, 6
|
29
31
|
optional :resource_parent_display_name, :string, 7
|
30
32
|
optional :resource_project_display_name, :string, 8
|
33
|
+
repeated :folders, :message, 10, "google.cloud.securitycenter.v1.Folder"
|
31
34
|
end
|
32
35
|
add_message "google.cloud.securitycenter.v1.Asset.IamPolicy" do
|
33
36
|
optional :policy_blob, :string, 1
|
@@ -3,12 +3,13 @@
|
|
3
3
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
|
-
require 'google/api/annotations_pb'
|
7
6
|
require 'google/api/field_behavior_pb'
|
8
7
|
require 'google/api/resource_pb'
|
8
|
+
require 'google/cloud/securitycenter/v1/indicator_pb'
|
9
9
|
require 'google/cloud/securitycenter/v1/security_marks_pb'
|
10
10
|
require 'google/protobuf/struct_pb'
|
11
11
|
require 'google/protobuf/timestamp_pb'
|
12
|
+
require 'google/api/annotations_pb'
|
12
13
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
13
14
|
add_file("google/cloud/securitycenter/v1/finding.proto", :syntax => :proto3) do
|
14
15
|
add_message "google.cloud.securitycenter.v1.Finding" do
|
@@ -23,6 +24,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
23
24
|
optional :event_time, :message, 9, "google.protobuf.Timestamp"
|
24
25
|
optional :create_time, :message, 10, "google.protobuf.Timestamp"
|
25
26
|
optional :severity, :enum, 12, "google.cloud.securitycenter.v1.Finding.Severity"
|
27
|
+
optional :canonical_name, :string, 14
|
28
|
+
optional :finding_class, :enum, 17, "google.cloud.securitycenter.v1.Finding.FindingClass"
|
29
|
+
optional :indicator, :message, 18, "google.cloud.securitycenter.v1.Indicator"
|
26
30
|
end
|
27
31
|
add_enum "google.cloud.securitycenter.v1.Finding.State" do
|
28
32
|
value :STATE_UNSPECIFIED, 0
|
@@ -36,6 +40,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
36
40
|
value :MEDIUM, 3
|
37
41
|
value :LOW, 4
|
38
42
|
end
|
43
|
+
add_enum "google.cloud.securitycenter.v1.Finding.FindingClass" do
|
44
|
+
value :FINDING_CLASS_UNSPECIFIED, 0
|
45
|
+
value :THREAT, 1
|
46
|
+
value :VULNERABILITY, 2
|
47
|
+
value :MISCONFIGURATION, 3
|
48
|
+
value :OBSERVATION, 4
|
49
|
+
end
|
39
50
|
end
|
40
51
|
end
|
41
52
|
|
@@ -46,6 +57,7 @@ module Google
|
|
46
57
|
Finding = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.securitycenter.v1.Finding").msgclass
|
47
58
|
Finding::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.securitycenter.v1.Finding.State").enummodule
|
48
59
|
Finding::Severity = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.securitycenter.v1.Finding.Severity").enummodule
|
60
|
+
Finding::FindingClass = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.securitycenter.v1.Finding.FindingClass").enummodule
|
49
61
|
end
|
50
62
|
end
|
51
63
|
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: google/cloud/securitycenter/v1/folder.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'google/api/annotations_pb'
|
7
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
8
|
+
add_file("google/cloud/securitycenter/v1/folder.proto", :syntax => :proto3) do
|
9
|
+
add_message "google.cloud.securitycenter.v1.Folder" do
|
10
|
+
optional :resource_folder, :string, 1
|
11
|
+
optional :resource_folder_display_name, :string, 2
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
module Google
|
17
|
+
module Cloud
|
18
|
+
module SecurityCenter
|
19
|
+
module V1
|
20
|
+
Folder = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.securitycenter.v1.Folder").msgclass
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: google/cloud/securitycenter/v1/indicator.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'google/api/annotations_pb'
|
7
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
8
|
+
add_file("google/cloud/securitycenter/v1/indicator.proto", :syntax => :proto3) do
|
9
|
+
add_message "google.cloud.securitycenter.v1.Indicator" do
|
10
|
+
repeated :ip_addresses, :string, 1
|
11
|
+
repeated :domains, :string, 2
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
module Google
|
17
|
+
module Cloud
|
18
|
+
module SecurityCenter
|
19
|
+
module V1
|
20
|
+
Indicator = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.securitycenter.v1.Indicator").msgclass
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -3,9 +3,9 @@
|
|
3
3
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
|
-
require 'google/api/annotations_pb'
|
7
6
|
require 'google/api/field_behavior_pb'
|
8
7
|
require 'google/api/resource_pb'
|
8
|
+
require 'google/api/annotations_pb'
|
9
9
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
10
10
|
add_file("google/cloud/securitycenter/v1/notification_config.proto", :syntax => :proto3) do
|
11
11
|
add_message "google.cloud.securitycenter.v1.NotificationConfig" do
|
@@ -3,9 +3,9 @@
|
|
3
3
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
|
-
require 'google/api/annotations_pb'
|
7
6
|
require 'google/cloud/securitycenter/v1/finding_pb'
|
8
7
|
require 'google/cloud/securitycenter/v1/resource_pb'
|
8
|
+
require 'google/api/annotations_pb'
|
9
9
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
10
10
|
add_file("google/cloud/securitycenter/v1/notification_message.proto", :syntax => :proto3) do
|
11
11
|
add_message "google.cloud.securitycenter.v1.NotificationMessage" do
|
@@ -3,8 +3,8 @@
|
|
3
3
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
|
-
require 'google/api/annotations_pb'
|
7
6
|
require 'google/api/resource_pb'
|
7
|
+
require 'google/api/annotations_pb'
|
8
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
9
|
add_file("google/cloud/securitycenter/v1/organization_settings.proto", :syntax => :proto3) do
|
10
10
|
add_message "google.cloud.securitycenter.v1.OrganizationSettings" do
|
@@ -15,6 +15,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
15
15
|
add_message "google.cloud.securitycenter.v1.OrganizationSettings.AssetDiscoveryConfig" do
|
16
16
|
repeated :project_ids, :string, 1
|
17
17
|
optional :inclusion_mode, :enum, 2, "google.cloud.securitycenter.v1.OrganizationSettings.AssetDiscoveryConfig.InclusionMode"
|
18
|
+
repeated :folder_ids, :string, 3
|
18
19
|
end
|
19
20
|
add_enum "google.cloud.securitycenter.v1.OrganizationSettings.AssetDiscoveryConfig.InclusionMode" do
|
20
21
|
value :INCLUSION_MODE_UNSPECIFIED, 0
|
@@ -3,6 +3,8 @@
|
|
3
3
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
|
+
require 'google/api/field_behavior_pb'
|
7
|
+
require 'google/cloud/securitycenter/v1/folder_pb'
|
6
8
|
require 'google/api/annotations_pb'
|
7
9
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
8
10
|
add_file("google/cloud/securitycenter/v1/resource.proto", :syntax => :proto3) do
|
@@ -12,6 +14,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
12
14
|
optional :project_display_name, :string, 3
|
13
15
|
optional :parent, :string, 4
|
14
16
|
optional :parent_display_name, :string, 5
|
17
|
+
repeated :folders, :message, 7, "google.cloud.securitycenter.v1.Folder"
|
15
18
|
end
|
16
19
|
end
|
17
20
|
end
|
@@ -3,8 +3,8 @@
|
|
3
3
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
|
-
require 'google/api/annotations_pb'
|
7
6
|
require 'google/protobuf/duration_pb'
|
7
|
+
require 'google/api/annotations_pb'
|
8
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
9
|
add_file("google/cloud/securitycenter/v1/run_asset_discovery_response.proto", :syntax => :proto3) do
|
10
10
|
add_message "google.cloud.securitycenter.v1.RunAssetDiscoveryResponse" do
|
@@ -3,13 +3,14 @@
|
|
3
3
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
|
-
require 'google/api/annotations_pb'
|
7
6
|
require 'google/api/resource_pb'
|
7
|
+
require 'google/api/annotations_pb'
|
8
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
9
|
add_file("google/cloud/securitycenter/v1/security_marks.proto", :syntax => :proto3) do
|
10
10
|
add_message "google.cloud.securitycenter.v1.SecurityMarks" do
|
11
11
|
optional :name, :string, 1
|
12
12
|
map :marks, :string, :string, 2
|
13
|
+
optional :canonical_name, :string, 3
|
13
14
|
end
|
14
15
|
end
|
15
16
|
end
|
@@ -10,6 +10,7 @@ require 'google/api/field_behavior_pb'
|
|
10
10
|
require 'google/api/resource_pb'
|
11
11
|
require 'google/cloud/securitycenter/v1/asset_pb'
|
12
12
|
require 'google/cloud/securitycenter/v1/finding_pb'
|
13
|
+
require 'google/cloud/securitycenter/v1/folder_pb'
|
13
14
|
require 'google/cloud/securitycenter/v1/notification_config_pb'
|
14
15
|
require 'google/cloud/securitycenter/v1/organization_settings_pb'
|
15
16
|
require 'google/cloud/securitycenter/v1/security_marks_pb'
|
@@ -155,6 +156,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
155
156
|
optional :project_display_name, :string, 3
|
156
157
|
optional :parent_name, :string, 4
|
157
158
|
optional :parent_display_name, :string, 5
|
159
|
+
repeated :folders, :message, 7, "google.cloud.securitycenter.v1.Folder"
|
158
160
|
end
|
159
161
|
add_enum "google.cloud.securitycenter.v1.ListFindingsResponse.ListFindingsResult.StateChange" do
|
160
162
|
value :UNUSED, 0
|
@@ -57,7 +57,9 @@ module Google
|
|
57
57
|
# specified properties.
|
58
58
|
#
|
59
59
|
# To group across all sources provide a `-` as the source id.
|
60
|
-
# Example: /v1/organizations/{organization_id}/sources/-/findings
|
60
|
+
# Example: /v1/organizations/{organization_id}/sources/-/findings,
|
61
|
+
# /v1/folders/{folder_id}/sources/-/findings,
|
62
|
+
# /v1/projects/{project_id}/sources/-/findings
|
61
63
|
rpc :GroupFindings, ::Google::Cloud::SecurityCenter::V1::GroupFindingsRequest, ::Google::Cloud::SecurityCenter::V1::GroupFindingsResponse
|
62
64
|
# Lists an organization's assets.
|
63
65
|
rpc :ListAssets, ::Google::Cloud::SecurityCenter::V1::ListAssetsRequest, ::Google::Cloud::SecurityCenter::V1::ListAssetsResponse
|
@@ -86,6 +88,7 @@ module Google
|
|
86
88
|
# Creates or updates a finding. The corresponding source must exist for a
|
87
89
|
# finding creation to succeed.
|
88
90
|
rpc :UpdateFinding, ::Google::Cloud::SecurityCenter::V1::UpdateFindingRequest, ::Google::Cloud::SecurityCenter::V1::Finding
|
91
|
+
#
|
89
92
|
# Updates a notification config. The following update
|
90
93
|
# fields are allowed: description, pubsub_topic, streaming_config.filter
|
91
94
|
rpc :UpdateNotificationConfig, ::Google::Cloud::SecurityCenter::V1::UpdateNotificationConfigRequest, ::Google::Cloud::SecurityCenter::V1::NotificationConfig
|
@@ -3,14 +3,15 @@
|
|
3
3
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
|
-
require 'google/api/annotations_pb'
|
7
6
|
require 'google/api/resource_pb'
|
7
|
+
require 'google/api/annotations_pb'
|
8
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
9
|
add_file("google/cloud/securitycenter/v1/source.proto", :syntax => :proto3) do
|
10
10
|
add_message "google.cloud.securitycenter.v1.Source" do
|
11
11
|
optional :name, :string, 1
|
12
12
|
optional :display_name, :string, 2
|
13
13
|
optional :description, :string, 3
|
14
|
+
optional :canonical_name, :string, 14
|
14
15
|
end
|
15
16
|
end
|
16
17
|
end
|
@@ -57,9 +57,15 @@ module Google
|
|
57
57
|
|
58
58
|
# Denotes that a (repeated) field is an unordered list.
|
59
59
|
# This indicates that the service may provide the elements of the list
|
60
|
-
# in any arbitrary
|
60
|
+
# in any arbitrary order, rather than the order the user originally
|
61
61
|
# provided. Additionally, the list's order may or may not be stable.
|
62
62
|
UNORDERED_LIST = 6
|
63
|
+
|
64
|
+
# Denotes that this field returns a non-empty default value if not set.
|
65
|
+
# This indicates that if the user provides the empty value in a request,
|
66
|
+
# a non-empty value will be returned. The user will not be aware of what
|
67
|
+
# non-empty value to expect.
|
68
|
+
NON_EMPTY_DEFAULT = 7
|
63
69
|
end
|
64
70
|
end
|
65
71
|
end
|
@@ -51,14 +51,20 @@ module Google
|
|
51
51
|
# The time at which the asset was created in Security Command Center.
|
52
52
|
# @!attribute [rw] update_time
|
53
53
|
# @return [::Google::Protobuf::Timestamp]
|
54
|
-
# The time at which the asset was last updated
|
55
|
-
# Command Center.
|
54
|
+
# The time at which the asset was last updated or added in Cloud SCC.
|
56
55
|
# @!attribute [rw] iam_policy
|
57
56
|
# @return [::Google::Cloud::SecurityCenter::V1::Asset::IamPolicy]
|
58
57
|
# Cloud IAM Policy information associated with the Google Cloud resource
|
59
58
|
# described by the Security Command Center asset. This information is managed
|
60
59
|
# and defined by the Google Cloud resource and cannot be modified by the
|
61
60
|
# user.
|
61
|
+
# @!attribute [rw] canonical_name
|
62
|
+
# @return [::String]
|
63
|
+
# The canonical name of the resource. It's either
|
64
|
+
# "organizations/\\{organization_id}/assets/\\{asset_id}",
|
65
|
+
# "folders/\\{folder_id}/assets/\\{asset_id}" or
|
66
|
+
# "projects/\\{project_number}/assets/\\{asset_id}", depending on the closest CRM
|
67
|
+
# ancestor of the resource.
|
62
68
|
class Asset
|
63
69
|
include ::Google::Protobuf::MessageExts
|
64
70
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -96,6 +102,11 @@ module Google
|
|
96
102
|
# @!attribute [rw] resource_project_display_name
|
97
103
|
# @return [::String]
|
98
104
|
# The user defined display name for the project of this resource.
|
105
|
+
# @!attribute [rw] folders
|
106
|
+
# @return [::Array<::Google::Cloud::SecurityCenter::V1::Folder>]
|
107
|
+
# Contains a Folder message for each folder in the assets ancestry.
|
108
|
+
# The first folder is the deepest nested folder, and the last folder is the
|
109
|
+
# folder directly under the Organization.
|
99
110
|
class SecurityCenterProperties
|
100
111
|
include ::Google::Protobuf::MessageExts
|
101
112
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -79,7 +79,8 @@ module Google
|
|
79
79
|
# occurred. For example, if the finding represents an open firewall it would
|
80
80
|
# capture the time the detector believes the firewall became open. The
|
81
81
|
# accuracy is determined by the detector. If the finding were to be resolved
|
82
|
-
# afterward, this time would reflect when the finding was resolved.
|
82
|
+
# afterward, this time would reflect when the finding was resolved. Must not
|
83
|
+
# be set to a value greater than the current timestamp.
|
83
84
|
# @!attribute [rw] create_time
|
84
85
|
# @return [::Google::Protobuf::Timestamp]
|
85
86
|
# The time at which the finding was created in Security Command Center.
|
@@ -87,6 +88,24 @@ module Google
|
|
87
88
|
# @return [::Google::Cloud::SecurityCenter::V1::Finding::Severity]
|
88
89
|
# The severity of the finding. This field is managed by the source that
|
89
90
|
# writes the finding.
|
91
|
+
# @!attribute [rw] canonical_name
|
92
|
+
# @return [::String]
|
93
|
+
# The canonical name of the finding. It's either
|
94
|
+
# "organizations/\\{organization_id}/sources/\\{source_id}/findings/\\{finding_id}",
|
95
|
+
# "folders/\\{folder_id}/sources/\\{source_id}/findings/\\{finding_id}" or
|
96
|
+
# "projects/\\{project_number}/sources/\\{source_id}/findings/\\{finding_id}",
|
97
|
+
# depending on the closest CRM ancestor of the resource associated with the
|
98
|
+
# finding.
|
99
|
+
# @!attribute [rw] finding_class
|
100
|
+
# @return [::Google::Cloud::SecurityCenter::V1::Finding::FindingClass]
|
101
|
+
# The class of the finding.
|
102
|
+
# @!attribute [rw] indicator
|
103
|
+
# @return [::Google::Cloud::SecurityCenter::V1::Indicator]
|
104
|
+
# Represents what's commonly known as an Indicator of compromise (IoC) in
|
105
|
+
# computer forensics. This is an artifact observed on a network or in an
|
106
|
+
# operating system that, with high confidence, indicates a computer
|
107
|
+
# intrusion.
|
108
|
+
# Reference: https://en.wikipedia.org/wiki/Indicator_of_compromise
|
90
109
|
class Finding
|
91
110
|
include ::Google::Protobuf::MessageExts
|
92
111
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -171,6 +190,26 @@ module Google
|
|
171
190
|
# is not able to access data, execute code, or create resources.
|
172
191
|
LOW = 4
|
173
192
|
end
|
193
|
+
|
194
|
+
# Represents what kind of Finding it is.
|
195
|
+
module FindingClass
|
196
|
+
# Unspecified finding class.
|
197
|
+
FINDING_CLASS_UNSPECIFIED = 0
|
198
|
+
|
199
|
+
# Describes unwanted or malicious activity.
|
200
|
+
THREAT = 1
|
201
|
+
|
202
|
+
# Describes a potential weakness in software that increases risk to
|
203
|
+
# Confidentiality & Integrity & Availability.
|
204
|
+
VULNERABILITY = 2
|
205
|
+
|
206
|
+
# Describes a potential weakness in cloud resource/asset configuration that
|
207
|
+
# increases risk.
|
208
|
+
MISCONFIGURATION = 3
|
209
|
+
|
210
|
+
# Describes a security observation that is for informational purposes.
|
211
|
+
OBSERVATION = 4
|
212
|
+
end
|
174
213
|
end
|
175
214
|
end
|
176
215
|
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2021 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
|
+
# Message that contains the resource name and display name of a folder
|
25
|
+
# resource.
|
26
|
+
# @!attribute [rw] resource_folder
|
27
|
+
# @return [::String]
|
28
|
+
# Full resource name of this folder. See:
|
29
|
+
# https://cloud.google.com/apis/design/resource_names#full_resource_name
|
30
|
+
# @!attribute [rw] resource_folder_display_name
|
31
|
+
# @return [::String]
|
32
|
+
# The user defined display name for this folder.
|
33
|
+
class Folder
|
34
|
+
include ::Google::Protobuf::MessageExts
|
35
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2021 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 what's commonly known as an Indicator of compromise (IoC) in
|
25
|
+
# computer forensics. This is an artifact observed on a network or in an
|
26
|
+
# operating system that, with high confidence, indicates a computer intrusion.
|
27
|
+
# Reference: https://en.wikipedia.org/wiki/Indicator_of_compromise
|
28
|
+
# @!attribute [rw] ip_addresses
|
29
|
+
# @return [::Array<::String>]
|
30
|
+
# List of ip addresses associated to the Finding.
|
31
|
+
# @!attribute [rw] domains
|
32
|
+
# @return [::Array<::String>]
|
33
|
+
# List of domains associated to the Finding.
|
34
|
+
class Indicator
|
35
|
+
include ::Google::Protobuf::MessageExts
|
36
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|