google-cloud-security_center-v1 0.26.0 → 0.28.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/google/cloud/security_center/v1/security_center/client.rb +856 -15
  4. data/lib/google/cloud/security_center/v1/security_center/operations.rb +2 -2
  5. data/lib/google/cloud/security_center/v1/security_center/paths.rb +229 -0
  6. data/lib/google/cloud/security_center/v1/security_center/rest/client.rb +647 -2
  7. data/lib/google/cloud/security_center/v1/security_center/rest/operations.rb +2 -2
  8. data/lib/google/cloud/security_center/v1/security_center/rest/service_stub.rb +590 -0
  9. data/lib/google/cloud/security_center/v1/version.rb +1 -1
  10. data/lib/google/cloud/securitycenter/v1/cloud_dlp_data_profile_pb.rb +24 -0
  11. data/lib/google/cloud/securitycenter/v1/cloud_dlp_inspection_pb.rb +27 -0
  12. data/lib/google/cloud/securitycenter/v1/effective_security_health_analytics_custom_module_pb.rb +35 -0
  13. data/lib/google/cloud/securitycenter/v1/finding_pb.rb +5 -0
  14. data/lib/google/cloud/securitycenter/v1/security_health_analytics_custom_config_pb.rb +50 -0
  15. data/lib/google/cloud/securitycenter/v1/security_health_analytics_custom_module_pb.rb +40 -0
  16. data/lib/google/cloud/securitycenter/v1/securitycenter_service_pb.rb +58 -1
  17. data/lib/google/cloud/securitycenter/v1/securitycenter_service_services_pb.rb +30 -0
  18. data/proto_docs/google/api/client.rb +57 -3
  19. data/proto_docs/google/cloud/securitycenter/v1/access.rb +28 -29
  20. data/proto_docs/google/cloud/securitycenter/v1/bigquery_export.rb +5 -5
  21. data/proto_docs/google/cloud/securitycenter/v1/cloud_dlp_data_profile.rb +37 -0
  22. data/proto_docs/google/cloud/securitycenter/v1/cloud_dlp_inspection.rb +50 -0
  23. data/proto_docs/google/cloud/securitycenter/v1/contact_details.rb +2 -2
  24. data/proto_docs/google/cloud/securitycenter/v1/database.rb +1 -1
  25. data/proto_docs/google/cloud/securitycenter/v1/effective_security_health_analytics_custom_module.rb +73 -0
  26. data/proto_docs/google/cloud/securitycenter/v1/exfiltration.rb +1 -1
  27. data/proto_docs/google/cloud/securitycenter/v1/finding.rb +41 -27
  28. data/proto_docs/google/cloud/securitycenter/v1/indicator.rb +4 -3
  29. data/proto_docs/google/cloud/securitycenter/v1/kernel_rootkit.rb +8 -8
  30. data/proto_docs/google/cloud/securitycenter/v1/kubernetes.rb +3 -3
  31. data/proto_docs/google/cloud/securitycenter/v1/mute_config.rb +5 -5
  32. data/proto_docs/google/cloud/securitycenter/v1/resource.rb +3 -3
  33. data/proto_docs/google/cloud/securitycenter/v1/security_health_analytics_custom_config.rb +112 -0
  34. data/proto_docs/google/cloud/securitycenter/v1/security_health_analytics_custom_module.rb +90 -0
  35. data/proto_docs/google/cloud/securitycenter/v1/securitycenter_service.rb +169 -0
  36. data/proto_docs/google/iam/v1/policy.rb +8 -4
  37. metadata +12 -2
@@ -0,0 +1,90 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2023 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 instance of a Security Health Analytics custom module,
25
+ # including its full module name, display name, enablement state, and last
26
+ # updated time. You can create a custom module at the organization, folder, or
27
+ # project level. Custom modules that you create at the organization or folder
28
+ # level are inherited by the child folders and projects.
29
+ # @!attribute [rw] name
30
+ # @return [::String]
31
+ # Immutable. The resource name of the custom module.
32
+ # Its format is
33
+ # "organizations/\\{organization}/securityHealthAnalyticsSettings/customModules/\\{customModule}",
34
+ # or
35
+ # "folders/\\{folder}/securityHealthAnalyticsSettings/customModules/\\{customModule}",
36
+ # or
37
+ # "projects/\\{project}/securityHealthAnalyticsSettings/customModules/\\{customModule}"
38
+ #
39
+ # The id \\{customModule} is server-generated and is not user settable.
40
+ # It will be a numeric id containing 1-20 digits.
41
+ # @!attribute [rw] display_name
42
+ # @return [::String]
43
+ # The display name of the Security Health Analytics custom module. This
44
+ # display name becomes the finding category for all findings that are
45
+ # returned by this custom module. The display name must be between 1 and
46
+ # 128 characters, start with a lowercase letter, and contain alphanumeric
47
+ # characters or underscores only.
48
+ # @!attribute [rw] enablement_state
49
+ # @return [::Google::Cloud::SecurityCenter::V1::SecurityHealthAnalyticsCustomModule::EnablementState]
50
+ # The enablement state of the custom module.
51
+ # @!attribute [r] update_time
52
+ # @return [::Google::Protobuf::Timestamp]
53
+ # Output only. The time at which the custom module was last updated.
54
+ # @!attribute [r] last_editor
55
+ # @return [::String]
56
+ # Output only. The editor that last updated the custom module.
57
+ # @!attribute [r] ancestor_module
58
+ # @return [::String]
59
+ # Output only. If empty, indicates that the custom module was created in the
60
+ # organization, folder, or project in which you are viewing the custom
61
+ # module. Otherwise, `ancestor_module` specifies the organization or folder
62
+ # from which the custom module is inherited.
63
+ # @!attribute [rw] custom_config
64
+ # @return [::Google::Cloud::SecurityCenter::V1::CustomConfig]
65
+ # The user specified custom configuration for the module.
66
+ class SecurityHealthAnalyticsCustomModule
67
+ include ::Google::Protobuf::MessageExts
68
+ extend ::Google::Protobuf::MessageExts::ClassMethods
69
+
70
+ # Possible enablement states of a custom module.
71
+ module EnablementState
72
+ # Unspecified enablement state.
73
+ ENABLEMENT_STATE_UNSPECIFIED = 0
74
+
75
+ # The module is enabled at the given CRM resource.
76
+ ENABLED = 1
77
+
78
+ # The module is disabled at the given CRM resource.
79
+ DISABLED = 2
80
+
81
+ # State is inherited from an ancestor module. The module will either
82
+ # be effectively ENABLED or DISABLED based on its closest non-inherited
83
+ # ancestor module in the CRM hierarchy.
84
+ INHERITED = 3
85
+ end
86
+ end
87
+ end
88
+ end
89
+ end
90
+ end
@@ -130,6 +130,23 @@ module Google
130
130
  extend ::Google::Protobuf::MessageExts::ClassMethods
131
131
  end
132
132
 
133
+ # Request message for creating Security Health Analytics custom modules.
134
+ # @!attribute [rw] parent
135
+ # @return [::String]
136
+ # Required. Resource name of the new custom module's parent. Its format is
137
+ # "organizations/\\{organization}/securityHealthAnalyticsSettings",
138
+ # "folders/\\{folder}/securityHealthAnalyticsSettings", or
139
+ # "projects/\\{project}/securityHealthAnalyticsSettings"
140
+ # @!attribute [rw] security_health_analytics_custom_module
141
+ # @return [::Google::Cloud::SecurityCenter::V1::SecurityHealthAnalyticsCustomModule]
142
+ # Required. SecurityHealthAnalytics custom module to create. The provided
143
+ # name is ignored and reset with provided parent information and
144
+ # server-generated ID.
145
+ class CreateSecurityHealthAnalyticsCustomModuleRequest
146
+ include ::Google::Protobuf::MessageExts
147
+ extend ::Google::Protobuf::MessageExts::ClassMethods
148
+ end
149
+
133
150
  # Request message for creating a source.
134
151
  # @!attribute [rw] parent
135
152
  # @return [::String]
@@ -168,6 +185,19 @@ module Google
168
185
  extend ::Google::Protobuf::MessageExts::ClassMethods
169
186
  end
170
187
 
188
+ # Request message for deleting Security Health Analytics custom modules.
189
+ # @!attribute [rw] name
190
+ # @return [::String]
191
+ # Required. Name of the custom module to delete. Its format is
192
+ # "organizations/\\{organization}/securityHealthAnalyticsSettings/customModules/\\{customModule}",
193
+ # "folders/\\{folder}/securityHealthAnalyticsSettings/customModules/\\{customModule}",
194
+ # or
195
+ # "projects/\\{project}/securityHealthAnalyticsSettings/customModules/\\{customModule}"
196
+ class DeleteSecurityHealthAnalyticsCustomModuleRequest
197
+ include ::Google::Protobuf::MessageExts
198
+ extend ::Google::Protobuf::MessageExts::ClassMethods
199
+ end
200
+
171
201
  # Request message for retrieving a BigQuery export.
172
202
  # @!attribute [rw] name
173
203
  # @return [::String]
@@ -214,6 +244,33 @@ module Google
214
244
  extend ::Google::Protobuf::MessageExts::ClassMethods
215
245
  end
216
246
 
247
+ # Request message for getting effective Security Health Analytics custom
248
+ # modules.
249
+ # @!attribute [rw] name
250
+ # @return [::String]
251
+ # Required. Name of the effective custom module to get. Its format is
252
+ # "organizations/\\{organization}/securityHealthAnalyticsSettings/effectiveCustomModules/\\{customModule}",
253
+ # "folders/\\{folder}/securityHealthAnalyticsSettings/effectiveCustomModules/\\{customModule}",
254
+ # or
255
+ # "projects/\\{project}/securityHealthAnalyticsSettings/effectiveCustomModules/\\{customModule}"
256
+ class GetEffectiveSecurityHealthAnalyticsCustomModuleRequest
257
+ include ::Google::Protobuf::MessageExts
258
+ extend ::Google::Protobuf::MessageExts::ClassMethods
259
+ end
260
+
261
+ # Request message for getting Security Health Analytics custom modules.
262
+ # @!attribute [rw] name
263
+ # @return [::String]
264
+ # Required. Name of the custom module to get. Its format is
265
+ # "organizations/\\{organization}/securityHealthAnalyticsSettings/customModules/\\{customModule}",
266
+ # "folders/\\{folder}/securityHealthAnalyticsSettings/customModules/\\{customModule}",
267
+ # or
268
+ # "projects/\\{project}/securityHealthAnalyticsSettings/customModules/\\{customModule}"
269
+ class GetSecurityHealthAnalyticsCustomModuleRequest
270
+ include ::Google::Protobuf::MessageExts
271
+ extend ::Google::Protobuf::MessageExts::ClassMethods
272
+ end
273
+
217
274
  # Request message for getting a source.
218
275
  # @!attribute [rw] name
219
276
  # @return [::String]
@@ -568,6 +625,40 @@ module Google
568
625
  end
569
626
  end
570
627
 
628
+ # Request message for listing descendant Security Health Analytics custom
629
+ # modules.
630
+ # @!attribute [rw] parent
631
+ # @return [::String]
632
+ # Required. Name of parent to list descendant custom modules. Its format is
633
+ # "organizations/\\{organization}/securityHealthAnalyticsSettings",
634
+ # "folders/\\{folder}/securityHealthAnalyticsSettings", or
635
+ # "projects/\\{project}/securityHealthAnalyticsSettings"
636
+ # @!attribute [rw] page_size
637
+ # @return [::Integer]
638
+ # The maximum number of results to return in a single response. Default is
639
+ # 10, minimum is 1, maximum is 1000.
640
+ # @!attribute [rw] page_token
641
+ # @return [::String]
642
+ # The value returned by the last call indicating a continuation
643
+ class ListDescendantSecurityHealthAnalyticsCustomModulesRequest
644
+ include ::Google::Protobuf::MessageExts
645
+ extend ::Google::Protobuf::MessageExts::ClassMethods
646
+ end
647
+
648
+ # Response message for listing descendant Security Health Analytics custom
649
+ # modules.
650
+ # @!attribute [rw] security_health_analytics_custom_modules
651
+ # @return [::Array<::Google::Cloud::SecurityCenter::V1::SecurityHealthAnalyticsCustomModule>]
652
+ # Custom modules belonging to the requested parent and its descendants.
653
+ # @!attribute [rw] next_page_token
654
+ # @return [::String]
655
+ # If not empty, indicates that there may be more custom modules to be
656
+ # returned.
657
+ class ListDescendantSecurityHealthAnalyticsCustomModulesResponse
658
+ include ::Google::Protobuf::MessageExts
659
+ extend ::Google::Protobuf::MessageExts::ClassMethods
660
+ end
661
+
571
662
  # Request message for listing mute configs at a given scope e.g. organization,
572
663
  # folder or project.
573
664
  # @!attribute [rw] parent
@@ -639,6 +730,72 @@ module Google
639
730
  extend ::Google::Protobuf::MessageExts::ClassMethods
640
731
  end
641
732
 
733
+ # Request message for listing effective Security Health Analytics custom
734
+ # modules.
735
+ # @!attribute [rw] parent
736
+ # @return [::String]
737
+ # Required. Name of parent to list effective custom modules. Its format is
738
+ # "organizations/\\{organization}/securityHealthAnalyticsSettings",
739
+ # "folders/\\{folder}/securityHealthAnalyticsSettings", or
740
+ # "projects/\\{project}/securityHealthAnalyticsSettings"
741
+ # @!attribute [rw] page_size
742
+ # @return [::Integer]
743
+ # The maximum number of results to return in a single response. Default is
744
+ # 10, minimum is 1, maximum is 1000.
745
+ # @!attribute [rw] page_token
746
+ # @return [::String]
747
+ # The value returned by the last call indicating a continuation
748
+ class ListEffectiveSecurityHealthAnalyticsCustomModulesRequest
749
+ include ::Google::Protobuf::MessageExts
750
+ extend ::Google::Protobuf::MessageExts::ClassMethods
751
+ end
752
+
753
+ # Response message for listing effective Security Health Analytics custom
754
+ # modules.
755
+ # @!attribute [rw] effective_security_health_analytics_custom_modules
756
+ # @return [::Array<::Google::Cloud::SecurityCenter::V1::EffectiveSecurityHealthAnalyticsCustomModule>]
757
+ # Effective custom modules belonging to the requested parent.
758
+ # @!attribute [rw] next_page_token
759
+ # @return [::String]
760
+ # If not empty, indicates that there may be more effective custom modules to
761
+ # be returned.
762
+ class ListEffectiveSecurityHealthAnalyticsCustomModulesResponse
763
+ include ::Google::Protobuf::MessageExts
764
+ extend ::Google::Protobuf::MessageExts::ClassMethods
765
+ end
766
+
767
+ # Request message for listing Security Health Analytics custom modules.
768
+ # @!attribute [rw] parent
769
+ # @return [::String]
770
+ # Required. Name of parent to list custom modules. Its format is
771
+ # "organizations/\\{organization}/securityHealthAnalyticsSettings",
772
+ # "folders/\\{folder}/securityHealthAnalyticsSettings", or
773
+ # "projects/\\{project}/securityHealthAnalyticsSettings"
774
+ # @!attribute [rw] page_size
775
+ # @return [::Integer]
776
+ # The maximum number of results to return in a single response. Default is
777
+ # 10, minimum is 1, maximum is 1000.
778
+ # @!attribute [rw] page_token
779
+ # @return [::String]
780
+ # The value returned by the last call indicating a continuation
781
+ class ListSecurityHealthAnalyticsCustomModulesRequest
782
+ include ::Google::Protobuf::MessageExts
783
+ extend ::Google::Protobuf::MessageExts::ClassMethods
784
+ end
785
+
786
+ # Response message for listing Security Health Analytics custom modules.
787
+ # @!attribute [rw] security_health_analytics_custom_modules
788
+ # @return [::Array<::Google::Cloud::SecurityCenter::V1::SecurityHealthAnalyticsCustomModule>]
789
+ # Custom modules belonging to the requested parent.
790
+ # @!attribute [rw] next_page_token
791
+ # @return [::String]
792
+ # If not empty, indicates that there may be more custom modules to be
793
+ # returned.
794
+ class ListSecurityHealthAnalyticsCustomModulesResponse
795
+ include ::Google::Protobuf::MessageExts
796
+ extend ::Google::Protobuf::MessageExts::ClassMethods
797
+ end
798
+
642
799
  # Request message for listing sources.
643
800
  # @!attribute [rw] parent
644
801
  # @return [::String]
@@ -1239,6 +1396,18 @@ module Google
1239
1396
  extend ::Google::Protobuf::MessageExts::ClassMethods
1240
1397
  end
1241
1398
 
1399
+ # Request message for updating Security Health Analytics custom modules.
1400
+ # @!attribute [rw] security_health_analytics_custom_module
1401
+ # @return [::Google::Cloud::SecurityCenter::V1::SecurityHealthAnalyticsCustomModule]
1402
+ # Required. The SecurityHealthAnalytics custom module to update.
1403
+ # @!attribute [rw] update_mask
1404
+ # @return [::Google::Protobuf::FieldMask]
1405
+ # The list of fields to update.
1406
+ class UpdateSecurityHealthAnalyticsCustomModuleRequest
1407
+ include ::Google::Protobuf::MessageExts
1408
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1409
+ end
1410
+
1242
1411
  # Request message for updating a source.
1243
1412
  # @!attribute [rw] source
1244
1413
  # @return [::Google::Cloud::SecurityCenter::V1::Source]
@@ -35,7 +35,8 @@ module Google
35
35
  # only if the expression evaluates to `true`. A condition can add constraints
36
36
  # based on attributes of the request, the resource, or both. To learn which
37
37
  # resources support conditions in their IAM policies, see the
38
- # [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
38
+ # [IAM
39
+ # documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
39
40
  #
40
41
  # **JSON example:**
41
42
  #
@@ -58,7 +59,8 @@ module Google
58
59
  # "condition": {
59
60
  # "title": "expirable access",
60
61
  # "description": "Does not grant access after Sep 2020",
61
- # "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')",
62
+ # "expression": "request.time <
63
+ # timestamp('2020-10-01T00:00:00.000Z')",
62
64
  # }
63
65
  # }
64
66
  # ],
@@ -112,7 +114,8 @@ module Google
112
114
  # specify any valid version or leave the field unset.
113
115
  #
114
116
  # To learn which resources support conditions in their IAM policies, see the
115
- # [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
117
+ # [IAM
118
+ # documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
116
119
  # @!attribute [rw] bindings
117
120
  # @return [::Array<::Google::Iam::V1::Binding>]
118
121
  # Associates a list of `members`, or principals, with a `role`. Optionally,
@@ -305,7 +308,8 @@ module Google
305
308
  # @return [::Array<::String>]
306
309
  # Specifies the identities that do not cause logging for this type of
307
310
  # permission.
308
- # Follows the same format of {::Google::Iam::V1::Binding#members Binding.members}.
311
+ # Follows the same format of
312
+ # {::Google::Iam::V1::Binding#members Binding.members}.
309
313
  class AuditLogConfig
310
314
  include ::Google::Protobuf::MessageExts
311
315
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-security_center-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.0
4
+ version: 0.28.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-08 00:00:00.000000000 Z
11
+ date: 2023-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -199,11 +199,14 @@ files:
199
199
  - lib/google/cloud/securitycenter/v1/access_pb.rb
200
200
  - lib/google/cloud/securitycenter/v1/asset_pb.rb
201
201
  - lib/google/cloud/securitycenter/v1/bigquery_export_pb.rb
202
+ - lib/google/cloud/securitycenter/v1/cloud_dlp_data_profile_pb.rb
203
+ - lib/google/cloud/securitycenter/v1/cloud_dlp_inspection_pb.rb
202
204
  - lib/google/cloud/securitycenter/v1/compliance_pb.rb
203
205
  - lib/google/cloud/securitycenter/v1/connection_pb.rb
204
206
  - lib/google/cloud/securitycenter/v1/contact_details_pb.rb
205
207
  - lib/google/cloud/securitycenter/v1/container_pb.rb
206
208
  - lib/google/cloud/securitycenter/v1/database_pb.rb
209
+ - lib/google/cloud/securitycenter/v1/effective_security_health_analytics_custom_module_pb.rb
207
210
  - lib/google/cloud/securitycenter/v1/exfiltration_pb.rb
208
211
  - lib/google/cloud/securitycenter/v1/external_system_pb.rb
209
212
  - lib/google/cloud/securitycenter/v1/file_pb.rb
@@ -222,6 +225,8 @@ files:
222
225
  - lib/google/cloud/securitycenter/v1/process_pb.rb
223
226
  - lib/google/cloud/securitycenter/v1/resource_pb.rb
224
227
  - lib/google/cloud/securitycenter/v1/run_asset_discovery_response_pb.rb
228
+ - lib/google/cloud/securitycenter/v1/security_health_analytics_custom_config_pb.rb
229
+ - lib/google/cloud/securitycenter/v1/security_health_analytics_custom_module_pb.rb
225
230
  - lib/google/cloud/securitycenter/v1/security_marks_pb.rb
226
231
  - lib/google/cloud/securitycenter/v1/securitycenter_service_pb.rb
227
232
  - lib/google/cloud/securitycenter/v1/securitycenter_service_services_pb.rb
@@ -235,11 +240,14 @@ files:
235
240
  - proto_docs/google/cloud/securitycenter/v1/access.rb
236
241
  - proto_docs/google/cloud/securitycenter/v1/asset.rb
237
242
  - proto_docs/google/cloud/securitycenter/v1/bigquery_export.rb
243
+ - proto_docs/google/cloud/securitycenter/v1/cloud_dlp_data_profile.rb
244
+ - proto_docs/google/cloud/securitycenter/v1/cloud_dlp_inspection.rb
238
245
  - proto_docs/google/cloud/securitycenter/v1/compliance.rb
239
246
  - proto_docs/google/cloud/securitycenter/v1/connection.rb
240
247
  - proto_docs/google/cloud/securitycenter/v1/contact_details.rb
241
248
  - proto_docs/google/cloud/securitycenter/v1/container.rb
242
249
  - proto_docs/google/cloud/securitycenter/v1/database.rb
250
+ - proto_docs/google/cloud/securitycenter/v1/effective_security_health_analytics_custom_module.rb
243
251
  - proto_docs/google/cloud/securitycenter/v1/exfiltration.rb
244
252
  - proto_docs/google/cloud/securitycenter/v1/external_system.rb
245
253
  - proto_docs/google/cloud/securitycenter/v1/file.rb
@@ -258,6 +266,8 @@ files:
258
266
  - proto_docs/google/cloud/securitycenter/v1/process.rb
259
267
  - proto_docs/google/cloud/securitycenter/v1/resource.rb
260
268
  - proto_docs/google/cloud/securitycenter/v1/run_asset_discovery_response.rb
269
+ - proto_docs/google/cloud/securitycenter/v1/security_health_analytics_custom_config.rb
270
+ - proto_docs/google/cloud/securitycenter/v1/security_health_analytics_custom_module.rb
261
271
  - proto_docs/google/cloud/securitycenter/v1/security_marks.rb
262
272
  - proto_docs/google/cloud/securitycenter/v1/securitycenter_service.rb
263
273
  - proto_docs/google/cloud/securitycenter/v1/source.rb