google-apis-securitycenter_v1beta2 0.40.0 → 0.42.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/CHANGELOG.md +8 -0
- data/lib/google/apis/securitycenter_v1beta2/classes.rb +117 -22
- data/lib/google/apis/securitycenter_v1beta2/gem_version.rb +2 -2
- data/lib/google/apis/securitycenter_v1beta2/representations.rb +24 -0
- data/lib/google/apis/securitycenter_v1beta2/service.rb +234 -38
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f333790d9bd9c77be3658bc23d40277f36673b39a40f5ad88265cd2b68442600
|
4
|
+
data.tar.gz: cdc0eaab9d782e2f901dc0641eccd7a465b63d9ff0f91e78d35dd3cc06ee0da2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01a211f7e8e200154b54de90bc341b1d7acb27802c2a920aeca58f951001b7a42a61bf5b27628123c67976943745298d4af8ee03344d6e1f46bca1ce5de4e514
|
7
|
+
data.tar.gz: a9ff417825a9e5466f692cee649fe4b9e270cd4d8cb7089f67983b11443ffee5d8a2ed7fc6e87d904705b5d5c0453ed74d2daaa39dd013d2c9b24939bbaa76b4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta2
|
2
2
|
|
3
|
+
### v0.42.0 (2022-12-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221220
|
6
|
+
|
7
|
+
### v0.41.0 (2022-12-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20221121
|
10
|
+
|
3
11
|
### v0.40.0 (2022-11-08)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20221103
|
@@ -191,6 +191,11 @@ module Google
|
|
191
191
|
# @return [String]
|
192
192
|
attr_accessor :finding_category
|
193
193
|
|
194
|
+
# Full resource name of the finding.
|
195
|
+
# Corresponds to the JSON property `name`
|
196
|
+
# @return [String]
|
197
|
+
attr_accessor :name
|
198
|
+
|
194
199
|
def initialize(**args)
|
195
200
|
update!(**args)
|
196
201
|
end
|
@@ -199,6 +204,7 @@ module Google
|
|
199
204
|
def update!(**args)
|
200
205
|
@canonical_finding_name = args[:canonical_finding_name] if args.key?(:canonical_finding_name)
|
201
206
|
@finding_category = args[:finding_category] if args.key?(:finding_category)
|
207
|
+
@name = args[:name] if args.key?(:name)
|
202
208
|
end
|
203
209
|
end
|
204
210
|
|
@@ -305,11 +311,11 @@ module Google
|
|
305
311
|
end
|
306
312
|
end
|
307
313
|
|
308
|
-
#
|
314
|
+
# The email address of a contact.
|
309
315
|
class Contact
|
310
316
|
include Google::Apis::Core::Hashable
|
311
317
|
|
312
|
-
# An email address
|
318
|
+
# An email address. For example, "`person123@company.com`".
|
313
319
|
# Corresponds to the JSON property `email`
|
314
320
|
# @return [String]
|
315
321
|
attr_accessor :email
|
@@ -984,15 +990,21 @@ module Google
|
|
984
990
|
# @return [Array<Google::Apis::SecuritycenterV1beta2::IamBinding>]
|
985
991
|
attr_accessor :iam_bindings
|
986
992
|
|
987
|
-
# Represents what's commonly known as an
|
993
|
+
# Represents what's commonly known as an _indicator of compromise_ (IoC) in
|
988
994
|
# computer forensics. This is an artifact observed on a network or in an
|
989
995
|
# operating system that, with high confidence, indicates a computer intrusion.
|
990
|
-
#
|
996
|
+
# For more information, see [Indicator of compromise](https://en.wikipedia.org/
|
997
|
+
# wiki/Indicator_of_compromise).
|
991
998
|
# Corresponds to the JSON property `indicator`
|
992
999
|
# @return [Google::Apis::SecuritycenterV1beta2::Indicator]
|
993
1000
|
attr_accessor :indicator
|
994
1001
|
|
995
|
-
#
|
1002
|
+
# Kernel mode rootkit signatures.
|
1003
|
+
# Corresponds to the JSON property `kernelRootkit`
|
1004
|
+
# @return [Google::Apis::SecuritycenterV1beta2::KernelRootkit]
|
1005
|
+
attr_accessor :kernel_rootkit
|
1006
|
+
|
1007
|
+
# Kubernetes-related attributes.
|
996
1008
|
# Corresponds to the JSON property `kubernetes`
|
997
1009
|
# @return [Google::Apis::SecuritycenterV1beta2::Kubernetes]
|
998
1010
|
attr_accessor :kubernetes
|
@@ -1119,6 +1131,7 @@ module Google
|
|
1119
1131
|
@finding_class = args[:finding_class] if args.key?(:finding_class)
|
1120
1132
|
@iam_bindings = args[:iam_bindings] if args.key?(:iam_bindings)
|
1121
1133
|
@indicator = args[:indicator] if args.key?(:indicator)
|
1134
|
+
@kernel_rootkit = args[:kernel_rootkit] if args.key?(:kernel_rootkit)
|
1122
1135
|
@kubernetes = args[:kubernetes] if args.key?(:kubernetes)
|
1123
1136
|
@mitre_attack = args[:mitre_attack] if args.key?(:mitre_attack)
|
1124
1137
|
@mute = args[:mute] if args.key?(:mute)
|
@@ -1187,7 +1200,7 @@ module Google
|
|
1187
1200
|
class GoogleCloudSecuritycenterV1BigQueryExport
|
1188
1201
|
include Google::Apis::Core::Hashable
|
1189
1202
|
|
1190
|
-
# Output only. The time at which the
|
1203
|
+
# Output only. The time at which the BigQuery export was created. This field is
|
1191
1204
|
# set by the server and will be ignored if provided on export on creation.
|
1192
1205
|
# Corresponds to the JSON property `createTime`
|
1193
1206
|
# @return [String]
|
@@ -1219,7 +1232,7 @@ module Google
|
|
1219
1232
|
# @return [String]
|
1220
1233
|
attr_accessor :filter
|
1221
1234
|
|
1222
|
-
# Output only. Email address of the user who last edited the
|
1235
|
+
# Output only. Email address of the user who last edited the BigQuery export.
|
1223
1236
|
# This field is set by the server and will be ignored if provided on export
|
1224
1237
|
# creation or update.
|
1225
1238
|
# Corresponds to the JSON property `mostRecentEditor`
|
@@ -1236,15 +1249,15 @@ module Google
|
|
1236
1249
|
# @return [String]
|
1237
1250
|
attr_accessor :name
|
1238
1251
|
|
1239
|
-
# Output only. The service account that needs permission to create table
|
1240
|
-
# data to the
|
1252
|
+
# Output only. The service account that needs permission to create table and
|
1253
|
+
# upload data to the BigQuery dataset.
|
1241
1254
|
# Corresponds to the JSON property `principal`
|
1242
1255
|
# @return [String]
|
1243
1256
|
attr_accessor :principal
|
1244
1257
|
|
1245
|
-
# Output only. The most recent time at which the
|
1246
|
-
# field is set by the server and will be ignored if provided on export
|
1247
|
-
# or update.
|
1258
|
+
# Output only. The most recent time at which the BigQuery export was updated.
|
1259
|
+
# This field is set by the server and will be ignored if provided on export
|
1260
|
+
# creation or update.
|
1248
1261
|
# Corresponds to the JSON property `updateTime`
|
1249
1262
|
# @return [String]
|
1250
1263
|
attr_accessor :update_time
|
@@ -1285,8 +1298,8 @@ module Google
|
|
1285
1298
|
# @return [Google::Apis::SecuritycenterV1beta2::Role]
|
1286
1299
|
attr_accessor :role
|
1287
1300
|
|
1288
|
-
# Represents
|
1289
|
-
# requests.
|
1301
|
+
# Represents one or more subjects that are bound to the role. Not always
|
1302
|
+
# available for PATCH requests.
|
1290
1303
|
# Corresponds to the JSON property `subjects`
|
1291
1304
|
# @return [Array<Google::Apis::SecuritycenterV1beta2::Subject>]
|
1292
1305
|
attr_accessor :subjects
|
@@ -1427,10 +1440,10 @@ module Google
|
|
1427
1440
|
# @return [String]
|
1428
1441
|
attr_accessor :external_uid
|
1429
1442
|
|
1430
|
-
#
|
1431
|
-
# sources/5678/findings/123456/externalSystems/jira
|
1432
|
-
# findings/123456/externalSystems/jira
|
1433
|
-
# 123456/externalSystems/jira
|
1443
|
+
# Full resource name of the external system, for example: "organizations/1234/
|
1444
|
+
# sources/5678/findings/123456/externalSystems/jira", "folders/1234/sources/5678/
|
1445
|
+
# findings/123456/externalSystems/jira", "projects/1234/sources/5678/findings/
|
1446
|
+
# 123456/externalSystems/jira"
|
1434
1447
|
# Corresponds to the JSON property `name`
|
1435
1448
|
# @return [String]
|
1436
1449
|
attr_accessor :name
|
@@ -2061,10 +2074,11 @@ module Google
|
|
2061
2074
|
end
|
2062
2075
|
end
|
2063
2076
|
|
2064
|
-
# Represents what's commonly known as an
|
2077
|
+
# Represents what's commonly known as an _indicator of compromise_ (IoC) in
|
2065
2078
|
# computer forensics. This is an artifact observed on a network or in an
|
2066
2079
|
# operating system that, with high confidence, indicates a computer intrusion.
|
2067
|
-
#
|
2080
|
+
# For more information, see [Indicator of compromise](https://en.wikipedia.org/
|
2081
|
+
# wiki/Indicator_of_compromise).
|
2068
2082
|
class Indicator
|
2069
2083
|
include Google::Apis::Core::Hashable
|
2070
2084
|
|
@@ -2073,7 +2087,7 @@ module Google
|
|
2073
2087
|
# @return [Array<String>]
|
2074
2088
|
attr_accessor :domains
|
2075
2089
|
|
2076
|
-
#
|
2090
|
+
# The list of IP addresses that are associated with the finding.
|
2077
2091
|
# Corresponds to the JSON property `ipAddresses`
|
2078
2092
|
# @return [Array<String>]
|
2079
2093
|
attr_accessor :ip_addresses
|
@@ -2102,7 +2116,88 @@ module Google
|
|
2102
2116
|
end
|
2103
2117
|
end
|
2104
2118
|
|
2105
|
-
#
|
2119
|
+
# Kernel mode rootkit signatures.
|
2120
|
+
class KernelRootkit
|
2121
|
+
include Google::Apis::Core::Hashable
|
2122
|
+
|
2123
|
+
# Rootkit name when available.
|
2124
|
+
# Corresponds to the JSON property `name`
|
2125
|
+
# @return [String]
|
2126
|
+
attr_accessor :name
|
2127
|
+
|
2128
|
+
# True when unexpected modifications of kernel code memory are present.
|
2129
|
+
# Corresponds to the JSON property `unexpectedCodeModification`
|
2130
|
+
# @return [Boolean]
|
2131
|
+
attr_accessor :unexpected_code_modification
|
2132
|
+
alias_method :unexpected_code_modification?, :unexpected_code_modification
|
2133
|
+
|
2134
|
+
# True when `ftrace` points are present with callbacks pointing to regions that
|
2135
|
+
# are not in the expected kernel or module code range.
|
2136
|
+
# Corresponds to the JSON property `unexpectedFtraceHandler`
|
2137
|
+
# @return [Boolean]
|
2138
|
+
attr_accessor :unexpected_ftrace_handler
|
2139
|
+
alias_method :unexpected_ftrace_handler?, :unexpected_ftrace_handler
|
2140
|
+
|
2141
|
+
# True when interrupt handlers that are are not in the expected kernel or module
|
2142
|
+
# code regions are present.
|
2143
|
+
# Corresponds to the JSON property `unexpectedInterruptHandler`
|
2144
|
+
# @return [Boolean]
|
2145
|
+
attr_accessor :unexpected_interrupt_handler
|
2146
|
+
alias_method :unexpected_interrupt_handler?, :unexpected_interrupt_handler
|
2147
|
+
|
2148
|
+
# True when kernel code pages that are not in the expected kernel or module code
|
2149
|
+
# regions are present.
|
2150
|
+
# Corresponds to the JSON property `unexpectedKernelCodePages`
|
2151
|
+
# @return [Boolean]
|
2152
|
+
attr_accessor :unexpected_kernel_code_pages
|
2153
|
+
alias_method :unexpected_kernel_code_pages?, :unexpected_kernel_code_pages
|
2154
|
+
|
2155
|
+
# True when `kprobe` points are present with callbacks pointing to regions that
|
2156
|
+
# are not in the expected kernel or module code range.
|
2157
|
+
# Corresponds to the JSON property `unexpectedKprobeHandler`
|
2158
|
+
# @return [Boolean]
|
2159
|
+
attr_accessor :unexpected_kprobe_handler
|
2160
|
+
alias_method :unexpected_kprobe_handler?, :unexpected_kprobe_handler
|
2161
|
+
|
2162
|
+
# True when unexpected processes in the scheduler run queue are present. Such
|
2163
|
+
# processes are in the run queue, but not in the process task list.
|
2164
|
+
# Corresponds to the JSON property `unexpectedProcessesInRunqueue`
|
2165
|
+
# @return [Boolean]
|
2166
|
+
attr_accessor :unexpected_processes_in_runqueue
|
2167
|
+
alias_method :unexpected_processes_in_runqueue?, :unexpected_processes_in_runqueue
|
2168
|
+
|
2169
|
+
# True when unexpected modifications of kernel read-only data memory are present.
|
2170
|
+
# Corresponds to the JSON property `unexpectedReadOnlyDataModification`
|
2171
|
+
# @return [Boolean]
|
2172
|
+
attr_accessor :unexpected_read_only_data_modification
|
2173
|
+
alias_method :unexpected_read_only_data_modification?, :unexpected_read_only_data_modification
|
2174
|
+
|
2175
|
+
# True when system call handlers that are are not in the expected kernel or
|
2176
|
+
# module code regions are present.
|
2177
|
+
# Corresponds to the JSON property `unexpectedSystemCallHandler`
|
2178
|
+
# @return [Boolean]
|
2179
|
+
attr_accessor :unexpected_system_call_handler
|
2180
|
+
alias_method :unexpected_system_call_handler?, :unexpected_system_call_handler
|
2181
|
+
|
2182
|
+
def initialize(**args)
|
2183
|
+
update!(**args)
|
2184
|
+
end
|
2185
|
+
|
2186
|
+
# Update properties of this object
|
2187
|
+
def update!(**args)
|
2188
|
+
@name = args[:name] if args.key?(:name)
|
2189
|
+
@unexpected_code_modification = args[:unexpected_code_modification] if args.key?(:unexpected_code_modification)
|
2190
|
+
@unexpected_ftrace_handler = args[:unexpected_ftrace_handler] if args.key?(:unexpected_ftrace_handler)
|
2191
|
+
@unexpected_interrupt_handler = args[:unexpected_interrupt_handler] if args.key?(:unexpected_interrupt_handler)
|
2192
|
+
@unexpected_kernel_code_pages = args[:unexpected_kernel_code_pages] if args.key?(:unexpected_kernel_code_pages)
|
2193
|
+
@unexpected_kprobe_handler = args[:unexpected_kprobe_handler] if args.key?(:unexpected_kprobe_handler)
|
2194
|
+
@unexpected_processes_in_runqueue = args[:unexpected_processes_in_runqueue] if args.key?(:unexpected_processes_in_runqueue)
|
2195
|
+
@unexpected_read_only_data_modification = args[:unexpected_read_only_data_modification] if args.key?(:unexpected_read_only_data_modification)
|
2196
|
+
@unexpected_system_call_handler = args[:unexpected_system_call_handler] if args.key?(:unexpected_system_call_handler)
|
2197
|
+
end
|
2198
|
+
end
|
2199
|
+
|
2200
|
+
# Kubernetes-related attributes.
|
2106
2201
|
class Kubernetes
|
2107
2202
|
include Google::Apis::Core::Hashable
|
2108
2203
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SecuritycenterV1beta2
|
18
18
|
# Version of the google-apis-securitycenter_v1beta2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.42.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221220"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -286,6 +286,12 @@ module Google
|
|
286
286
|
include Google::Apis::Core::JsonObjectSupport
|
287
287
|
end
|
288
288
|
|
289
|
+
class KernelRootkit
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
289
295
|
class Kubernetes
|
290
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
297
|
|
@@ -466,6 +472,7 @@ module Google
|
|
466
472
|
class Representation < Google::Apis::Core::JsonRepresentation
|
467
473
|
property :canonical_finding_name, as: 'canonicalFindingName'
|
468
474
|
property :finding_category, as: 'findingCategory'
|
475
|
+
property :name, as: 'name'
|
469
476
|
end
|
470
477
|
end
|
471
478
|
|
@@ -679,6 +686,8 @@ module Google
|
|
679
686
|
|
680
687
|
property :indicator, as: 'indicator', class: Google::Apis::SecuritycenterV1beta2::Indicator, decorator: Google::Apis::SecuritycenterV1beta2::Indicator::Representation
|
681
688
|
|
689
|
+
property :kernel_rootkit, as: 'kernelRootkit', class: Google::Apis::SecuritycenterV1beta2::KernelRootkit, decorator: Google::Apis::SecuritycenterV1beta2::KernelRootkit::Representation
|
690
|
+
|
682
691
|
property :kubernetes, as: 'kubernetes', class: Google::Apis::SecuritycenterV1beta2::Kubernetes, decorator: Google::Apis::SecuritycenterV1beta2::Kubernetes::Representation
|
683
692
|
|
684
693
|
property :mitre_attack, as: 'mitreAttack', class: Google::Apis::SecuritycenterV1beta2::MitreAttack, decorator: Google::Apis::SecuritycenterV1beta2::MitreAttack::Representation
|
@@ -940,6 +949,21 @@ module Google
|
|
940
949
|
end
|
941
950
|
end
|
942
951
|
|
952
|
+
class KernelRootkit
|
953
|
+
# @private
|
954
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
955
|
+
property :name, as: 'name'
|
956
|
+
property :unexpected_code_modification, as: 'unexpectedCodeModification'
|
957
|
+
property :unexpected_ftrace_handler, as: 'unexpectedFtraceHandler'
|
958
|
+
property :unexpected_interrupt_handler, as: 'unexpectedInterruptHandler'
|
959
|
+
property :unexpected_kernel_code_pages, as: 'unexpectedKernelCodePages'
|
960
|
+
property :unexpected_kprobe_handler, as: 'unexpectedKprobeHandler'
|
961
|
+
property :unexpected_processes_in_runqueue, as: 'unexpectedProcessesInRunqueue'
|
962
|
+
property :unexpected_read_only_data_modification, as: 'unexpectedReadOnlyDataModification'
|
963
|
+
property :unexpected_system_call_handler, as: 'unexpectedSystemCallHandler'
|
964
|
+
end
|
965
|
+
end
|
966
|
+
|
943
967
|
class Kubernetes
|
944
968
|
# @private
|
945
969
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -50,7 +50,12 @@ module Google
|
|
50
50
|
@batch_path = 'batch'
|
51
51
|
end
|
52
52
|
|
53
|
-
# Get the ContainerThreatDetectionSettings resource.
|
53
|
+
# Get the ContainerThreatDetectionSettings resource. In the returned settings
|
54
|
+
# response, a missing field only indicates that it was not explicitly set, so no
|
55
|
+
# assumption should be made about these fields. In other words,
|
56
|
+
# GetContainerThreatDetectionSettings does not calculate the effective service
|
57
|
+
# settings for the resource, which accounts for inherited settings and defaults.
|
58
|
+
# Instead, use CalculateContainerThreatDetectionSettings for this purpose.
|
54
59
|
# @param [String] name
|
55
60
|
# Required. The name of the ContainerThreatDetectionSettings to retrieve.
|
56
61
|
# Formats: * organizations/`organization`/containerThreatDetectionSettings *
|
@@ -84,7 +89,12 @@ module Google
|
|
84
89
|
execute_or_queue_command(command, &block)
|
85
90
|
end
|
86
91
|
|
87
|
-
# Get the EventThreatDetectionSettings resource.
|
92
|
+
# Get the EventThreatDetectionSettings resource. In the returned settings
|
93
|
+
# response, a missing field only indicates that it was not explicitly set, so no
|
94
|
+
# assumption should be made about these fields. In other words,
|
95
|
+
# GetEventThreatDetectionSettings does not calculate the effective service
|
96
|
+
# settings for the resource, which accounts for inherited settings and defaults.
|
97
|
+
# Instead, use CalculateEventThreatDetectionSettings for this purpose.
|
88
98
|
# @param [String] name
|
89
99
|
# Required. The name of the EventThreatDetectionSettings to retrieve. Formats: *
|
90
100
|
# organizations/`organization`/eventThreatDetectionSettings * folders/`folder`/
|
@@ -148,7 +158,13 @@ module Google
|
|
148
158
|
execute_or_queue_command(command, &block)
|
149
159
|
end
|
150
160
|
|
151
|
-
# Get the RapidVulnerabilityDetectionSettings resource.
|
161
|
+
# Get the RapidVulnerabilityDetectionSettings resource. In the returned settings
|
162
|
+
# response, a missing field only indicates that it was not explicitly set, so no
|
163
|
+
# assumption should be made about these fields. In other words,
|
164
|
+
# GetRapidVulnerabilityDetectionSettings does not calculate the effective
|
165
|
+
# service settings for the resource, which accounts for inherited settings and
|
166
|
+
# defaults. Instead, use CalculateRapidVulnerabilityDetectionSettings for this
|
167
|
+
# purpose.
|
152
168
|
# @param [String] name
|
153
169
|
# Required. The name of the RapidVulnerabilityDetectionSettings to retrieve.
|
154
170
|
# Formats: * organizations/`organization`/rapidVulnerabilityDetectionSettings *
|
@@ -213,7 +229,12 @@ module Google
|
|
213
229
|
execute_or_queue_command(command, &block)
|
214
230
|
end
|
215
231
|
|
216
|
-
# Get the SecurityHealthAnalyticsSettings resource.
|
232
|
+
# Get the SecurityHealthAnalyticsSettings resource. In the returned settings
|
233
|
+
# response, a missing field only indicates that it was not explicitly set, so no
|
234
|
+
# assumption should be made about these fields. In other words,
|
235
|
+
# GetSecurityHealthAnalyticsSettings does not calculate the effective service
|
236
|
+
# settings for the resource, which accounts for inherited settings and defaults.
|
237
|
+
# Instead, use CalculateSecurityHealthAnalyticsSettings for this purpose.
|
217
238
|
# @param [String] name
|
218
239
|
# Required. The name of the SecurityHealthAnalyticsSettings to retrieve. Formats:
|
219
240
|
# * organizations/`organization`/securityHealthAnalyticsSettings * folders/`
|
@@ -246,7 +267,13 @@ module Google
|
|
246
267
|
execute_or_queue_command(command, &block)
|
247
268
|
end
|
248
269
|
|
249
|
-
# Get the VirtualMachineThreatDetectionSettings resource.
|
270
|
+
# Get the VirtualMachineThreatDetectionSettings resource. In the returned
|
271
|
+
# settings response, a missing field only indicates that it was not explicitly
|
272
|
+
# set, so no assumption should be made about these fields. In other words,
|
273
|
+
# GetVirtualMachineThreatDetectionSettings does not calculate the effective
|
274
|
+
# service settings for the resource, which accounts for inherited settings and
|
275
|
+
# defaults. Instead, use CalculateVirtualMachineThreatDetectionSettings for this
|
276
|
+
# purpose.
|
250
277
|
# @param [String] name
|
251
278
|
# Required. The name of the VirtualMachineThreatDetectionSettings to retrieve.
|
252
279
|
# Formats: * organizations/`organization`/virtualMachineThreatDetectionSettings *
|
@@ -279,7 +306,12 @@ module Google
|
|
279
306
|
execute_or_queue_command(command, &block)
|
280
307
|
end
|
281
308
|
|
282
|
-
# Get the WebSecurityScannerSettings resource.
|
309
|
+
# Get the WebSecurityScannerSettings resource. In the returned settings response,
|
310
|
+
# a missing field only indicates that it was not explicitly set, so no
|
311
|
+
# assumption should be made about these fields. In other words,
|
312
|
+
# GetWebSecurityScannerSettings does not calculate the effective service
|
313
|
+
# settings for the resource, which accounts for inherited settings and defaults.
|
314
|
+
# Instead, use CalculateWebSecurityScannerSettings for this purpose.
|
283
315
|
# @param [String] name
|
284
316
|
# Required. The name of the WebSecurityScannerSettings to retrieve. Formats: *
|
285
317
|
# organizations/`organization`/webSecurityScannerSettings * folders/`folder`/
|
@@ -545,7 +577,12 @@ module Google
|
|
545
577
|
end
|
546
578
|
|
547
579
|
# Calculates the effective ContainerThreatDetectionSettings based on its level
|
548
|
-
# in the resource hierarchy and its settings.
|
580
|
+
# in the resource hierarchy and its settings. Settings provided closer to the
|
581
|
+
# target resource take precedence over those further away (e.g. folder will
|
582
|
+
# override organization level settings). The default SCC setting for the
|
583
|
+
# detector service defaults can be overridden at organization, folder and
|
584
|
+
# project levels. No assumptions should be made about the SCC defaults as it is
|
585
|
+
# considered an internal implementation detail.
|
549
586
|
# @param [String] name
|
550
587
|
# Required. The name of the ContainerThreatDetectionSettings to calculate.
|
551
588
|
# Formats: * organizations/`organization`/containerThreatDetectionSettings *
|
@@ -580,7 +617,12 @@ module Google
|
|
580
617
|
end
|
581
618
|
|
582
619
|
# Calculates the effective EventThreatDetectionSettings based on its level in
|
583
|
-
# the resource hierarchy and its settings.
|
620
|
+
# the resource hierarchy and its settings. Settings provided closer to the
|
621
|
+
# target resource take precedence over those further away (e.g. folder will
|
622
|
+
# override organization level settings). The default SCC setting for the
|
623
|
+
# detector service defaults can be overridden at organization, folder and
|
624
|
+
# project levels. No assumptions should be made about the SCC defaults as it is
|
625
|
+
# considered an internal implementation detail.
|
584
626
|
# @param [String] name
|
585
627
|
# Required. The name of the EventThreatDetectionSettings to calculate. Formats: *
|
586
628
|
# organizations/`organization`/eventThreatDetectionSettings * folders/`folder`/
|
@@ -613,7 +655,12 @@ module Google
|
|
613
655
|
end
|
614
656
|
|
615
657
|
# Calculates the effective RapidVulnerabilityDetectionSettings based on its
|
616
|
-
# level in the resource hierarchy and its settings.
|
658
|
+
# level in the resource hierarchy and its settings. Settings provided closer to
|
659
|
+
# the target resource take precedence over those further away (e.g. folder will
|
660
|
+
# override organization level settings). The default SCC setting for the
|
661
|
+
# detector service defaults can be overridden at organization, folder and
|
662
|
+
# project levels. No assumptions should be made about the SCC defaults as it is
|
663
|
+
# considered an internal implementation detail.
|
617
664
|
# @param [String] name
|
618
665
|
# Required. The name of the RapidVulnerabilityDetectionSettings to calculate.
|
619
666
|
# Formats: * organizations/`organization`/rapidVulnerabilityDetectionSettings *
|
@@ -647,7 +694,12 @@ module Google
|
|
647
694
|
end
|
648
695
|
|
649
696
|
# Calculates the effective SecurityHealthAnalyticsSettings based on its level in
|
650
|
-
# the resource hierarchy and its settings.
|
697
|
+
# the resource hierarchy and its settings. Settings provided closer to the
|
698
|
+
# target resource take precedence over those further away (e.g. folder will
|
699
|
+
# override organization level settings). The default SCC setting for the
|
700
|
+
# detector service defaults can be overridden at organization, folder and
|
701
|
+
# project levels. No assumptions should be made about the SCC defaults as it is
|
702
|
+
# considered an internal implementation detail.
|
651
703
|
# @param [String] name
|
652
704
|
# Required. The name of the SecurityHealthAnalyticsSettings to calculate.
|
653
705
|
# Formats: * organizations/`organization`/securityHealthAnalyticsSettings *
|
@@ -681,7 +733,12 @@ module Google
|
|
681
733
|
end
|
682
734
|
|
683
735
|
# Calculates the effective VirtualMachineThreatDetectionSettings based on its
|
684
|
-
# level in the resource hierarchy and its settings.
|
736
|
+
# level in the resource hierarchy and its settings. Settings provided closer to
|
737
|
+
# the target resource take precedence over those further away (e.g. folder will
|
738
|
+
# override organization level settings). The default SCC setting for the
|
739
|
+
# detector service defaults can be overridden at organization, folder and
|
740
|
+
# project levels. No assumptions should be made about the SCC defaults as it is
|
741
|
+
# considered an internal implementation detail.
|
685
742
|
# @param [String] name
|
686
743
|
# Required. The name of the VirtualMachineThreatDetectionSettings to calculate.
|
687
744
|
# Formats: * organizations/`organization`/virtualMachineThreatDetectionSettings *
|
@@ -715,7 +772,12 @@ module Google
|
|
715
772
|
end
|
716
773
|
|
717
774
|
# Calculates the effective WebSecurityScannerSettings based on its level in the
|
718
|
-
# resource hierarchy and its settings.
|
775
|
+
# resource hierarchy and its settings. Settings provided closer to the target
|
776
|
+
# resource take precedence over those further away (e.g. folder will override
|
777
|
+
# organization level settings). The default SCC setting for the detector service
|
778
|
+
# defaults can be overridden at organization, folder and project levels. No
|
779
|
+
# assumptions should be made about the SCC defaults as it is considered an
|
780
|
+
# internal implementation detail.
|
719
781
|
# @param [String] name
|
720
782
|
# Required. The name of the WebSecurityScannerSettings to calculate. Formats: *
|
721
783
|
# organizations/`organization`/webSecurityScannerSettings * folders/`folder`/
|
@@ -747,7 +809,12 @@ module Google
|
|
747
809
|
execute_or_queue_command(command, &block)
|
748
810
|
end
|
749
811
|
|
750
|
-
# Get the ContainerThreatDetectionSettings resource.
|
812
|
+
# Get the ContainerThreatDetectionSettings resource. In the returned settings
|
813
|
+
# response, a missing field only indicates that it was not explicitly set, so no
|
814
|
+
# assumption should be made about these fields. In other words,
|
815
|
+
# GetContainerThreatDetectionSettings does not calculate the effective service
|
816
|
+
# settings for the resource, which accounts for inherited settings and defaults.
|
817
|
+
# Instead, use CalculateContainerThreatDetectionSettings for this purpose.
|
751
818
|
# @param [String] name
|
752
819
|
# Required. The name of the ContainerThreatDetectionSettings to retrieve.
|
753
820
|
# Formats: * organizations/`organization`/containerThreatDetectionSettings *
|
@@ -781,7 +848,12 @@ module Google
|
|
781
848
|
execute_or_queue_command(command, &block)
|
782
849
|
end
|
783
850
|
|
784
|
-
# Get the EventThreatDetectionSettings resource.
|
851
|
+
# Get the EventThreatDetectionSettings resource. In the returned settings
|
852
|
+
# response, a missing field only indicates that it was not explicitly set, so no
|
853
|
+
# assumption should be made about these fields. In other words,
|
854
|
+
# GetEventThreatDetectionSettings does not calculate the effective service
|
855
|
+
# settings for the resource, which accounts for inherited settings and defaults.
|
856
|
+
# Instead, use CalculateEventThreatDetectionSettings for this purpose.
|
785
857
|
# @param [String] name
|
786
858
|
# Required. The name of the EventThreatDetectionSettings to retrieve. Formats: *
|
787
859
|
# organizations/`organization`/eventThreatDetectionSettings * folders/`folder`/
|
@@ -845,7 +917,13 @@ module Google
|
|
845
917
|
execute_or_queue_command(command, &block)
|
846
918
|
end
|
847
919
|
|
848
|
-
# Get the RapidVulnerabilityDetectionSettings resource.
|
920
|
+
# Get the RapidVulnerabilityDetectionSettings resource. In the returned settings
|
921
|
+
# response, a missing field only indicates that it was not explicitly set, so no
|
922
|
+
# assumption should be made about these fields. In other words,
|
923
|
+
# GetRapidVulnerabilityDetectionSettings does not calculate the effective
|
924
|
+
# service settings for the resource, which accounts for inherited settings and
|
925
|
+
# defaults. Instead, use CalculateRapidVulnerabilityDetectionSettings for this
|
926
|
+
# purpose.
|
849
927
|
# @param [String] name
|
850
928
|
# Required. The name of the RapidVulnerabilityDetectionSettings to retrieve.
|
851
929
|
# Formats: * organizations/`organization`/rapidVulnerabilityDetectionSettings *
|
@@ -910,7 +988,12 @@ module Google
|
|
910
988
|
execute_or_queue_command(command, &block)
|
911
989
|
end
|
912
990
|
|
913
|
-
# Get the SecurityHealthAnalyticsSettings resource.
|
991
|
+
# Get the SecurityHealthAnalyticsSettings resource. In the returned settings
|
992
|
+
# response, a missing field only indicates that it was not explicitly set, so no
|
993
|
+
# assumption should be made about these fields. In other words,
|
994
|
+
# GetSecurityHealthAnalyticsSettings does not calculate the effective service
|
995
|
+
# settings for the resource, which accounts for inherited settings and defaults.
|
996
|
+
# Instead, use CalculateSecurityHealthAnalyticsSettings for this purpose.
|
914
997
|
# @param [String] name
|
915
998
|
# Required. The name of the SecurityHealthAnalyticsSettings to retrieve. Formats:
|
916
999
|
# * organizations/`organization`/securityHealthAnalyticsSettings * folders/`
|
@@ -974,7 +1057,13 @@ module Google
|
|
974
1057
|
execute_or_queue_command(command, &block)
|
975
1058
|
end
|
976
1059
|
|
977
|
-
# Get the VirtualMachineThreatDetectionSettings resource.
|
1060
|
+
# Get the VirtualMachineThreatDetectionSettings resource. In the returned
|
1061
|
+
# settings response, a missing field only indicates that it was not explicitly
|
1062
|
+
# set, so no assumption should be made about these fields. In other words,
|
1063
|
+
# GetVirtualMachineThreatDetectionSettings does not calculate the effective
|
1064
|
+
# service settings for the resource, which accounts for inherited settings and
|
1065
|
+
# defaults. Instead, use CalculateVirtualMachineThreatDetectionSettings for this
|
1066
|
+
# purpose.
|
978
1067
|
# @param [String] name
|
979
1068
|
# Required. The name of the VirtualMachineThreatDetectionSettings to retrieve.
|
980
1069
|
# Formats: * organizations/`organization`/virtualMachineThreatDetectionSettings *
|
@@ -1007,7 +1096,12 @@ module Google
|
|
1007
1096
|
execute_or_queue_command(command, &block)
|
1008
1097
|
end
|
1009
1098
|
|
1010
|
-
# Get the WebSecurityScannerSettings resource.
|
1099
|
+
# Get the WebSecurityScannerSettings resource. In the returned settings response,
|
1100
|
+
# a missing field only indicates that it was not explicitly set, so no
|
1101
|
+
# assumption should be made about these fields. In other words,
|
1102
|
+
# GetWebSecurityScannerSettings does not calculate the effective service
|
1103
|
+
# settings for the resource, which accounts for inherited settings and defaults.
|
1104
|
+
# Instead, use CalculateWebSecurityScannerSettings for this purpose.
|
1011
1105
|
# @param [String] name
|
1012
1106
|
# Required. The name of the WebSecurityScannerSettings to retrieve. Formats: *
|
1013
1107
|
# organizations/`organization`/webSecurityScannerSettings * folders/`folder`/
|
@@ -1273,7 +1367,12 @@ module Google
|
|
1273
1367
|
end
|
1274
1368
|
|
1275
1369
|
# Calculates the effective ContainerThreatDetectionSettings based on its level
|
1276
|
-
# in the resource hierarchy and its settings.
|
1370
|
+
# in the resource hierarchy and its settings. Settings provided closer to the
|
1371
|
+
# target resource take precedence over those further away (e.g. folder will
|
1372
|
+
# override organization level settings). The default SCC setting for the
|
1373
|
+
# detector service defaults can be overridden at organization, folder and
|
1374
|
+
# project levels. No assumptions should be made about the SCC defaults as it is
|
1375
|
+
# considered an internal implementation detail.
|
1277
1376
|
# @param [String] name
|
1278
1377
|
# Required. The name of the ContainerThreatDetectionSettings to calculate.
|
1279
1378
|
# Formats: * organizations/`organization`/containerThreatDetectionSettings *
|
@@ -1308,7 +1407,12 @@ module Google
|
|
1308
1407
|
end
|
1309
1408
|
|
1310
1409
|
# Calculates the effective EventThreatDetectionSettings based on its level in
|
1311
|
-
# the resource hierarchy and its settings.
|
1410
|
+
# the resource hierarchy and its settings. Settings provided closer to the
|
1411
|
+
# target resource take precedence over those further away (e.g. folder will
|
1412
|
+
# override organization level settings). The default SCC setting for the
|
1413
|
+
# detector service defaults can be overridden at organization, folder and
|
1414
|
+
# project levels. No assumptions should be made about the SCC defaults as it is
|
1415
|
+
# considered an internal implementation detail.
|
1312
1416
|
# @param [String] name
|
1313
1417
|
# Required. The name of the EventThreatDetectionSettings to calculate. Formats: *
|
1314
1418
|
# organizations/`organization`/eventThreatDetectionSettings * folders/`folder`/
|
@@ -1341,7 +1445,12 @@ module Google
|
|
1341
1445
|
end
|
1342
1446
|
|
1343
1447
|
# Calculates the effective RapidVulnerabilityDetectionSettings based on its
|
1344
|
-
# level in the resource hierarchy and its settings.
|
1448
|
+
# level in the resource hierarchy and its settings. Settings provided closer to
|
1449
|
+
# the target resource take precedence over those further away (e.g. folder will
|
1450
|
+
# override organization level settings). The default SCC setting for the
|
1451
|
+
# detector service defaults can be overridden at organization, folder and
|
1452
|
+
# project levels. No assumptions should be made about the SCC defaults as it is
|
1453
|
+
# considered an internal implementation detail.
|
1345
1454
|
# @param [String] name
|
1346
1455
|
# Required. The name of the RapidVulnerabilityDetectionSettings to calculate.
|
1347
1456
|
# Formats: * organizations/`organization`/rapidVulnerabilityDetectionSettings *
|
@@ -1375,7 +1484,12 @@ module Google
|
|
1375
1484
|
end
|
1376
1485
|
|
1377
1486
|
# Calculates the effective SecurityHealthAnalyticsSettings based on its level in
|
1378
|
-
# the resource hierarchy and its settings.
|
1487
|
+
# the resource hierarchy and its settings. Settings provided closer to the
|
1488
|
+
# target resource take precedence over those further away (e.g. folder will
|
1489
|
+
# override organization level settings). The default SCC setting for the
|
1490
|
+
# detector service defaults can be overridden at organization, folder and
|
1491
|
+
# project levels. No assumptions should be made about the SCC defaults as it is
|
1492
|
+
# considered an internal implementation detail.
|
1379
1493
|
# @param [String] name
|
1380
1494
|
# Required. The name of the SecurityHealthAnalyticsSettings to calculate.
|
1381
1495
|
# Formats: * organizations/`organization`/securityHealthAnalyticsSettings *
|
@@ -1409,7 +1523,12 @@ module Google
|
|
1409
1523
|
end
|
1410
1524
|
|
1411
1525
|
# Calculates the effective VirtualMachineThreatDetectionSettings based on its
|
1412
|
-
# level in the resource hierarchy and its settings.
|
1526
|
+
# level in the resource hierarchy and its settings. Settings provided closer to
|
1527
|
+
# the target resource take precedence over those further away (e.g. folder will
|
1528
|
+
# override organization level settings). The default SCC setting for the
|
1529
|
+
# detector service defaults can be overridden at organization, folder and
|
1530
|
+
# project levels. No assumptions should be made about the SCC defaults as it is
|
1531
|
+
# considered an internal implementation detail.
|
1413
1532
|
# @param [String] name
|
1414
1533
|
# Required. The name of the VirtualMachineThreatDetectionSettings to calculate.
|
1415
1534
|
# Formats: * organizations/`organization`/virtualMachineThreatDetectionSettings *
|
@@ -1443,7 +1562,12 @@ module Google
|
|
1443
1562
|
end
|
1444
1563
|
|
1445
1564
|
# Calculates the effective WebSecurityScannerSettings based on its level in the
|
1446
|
-
# resource hierarchy and its settings.
|
1565
|
+
# resource hierarchy and its settings. Settings provided closer to the target
|
1566
|
+
# resource take precedence over those further away (e.g. folder will override
|
1567
|
+
# organization level settings). The default SCC setting for the detector service
|
1568
|
+
# defaults can be overridden at organization, folder and project levels. No
|
1569
|
+
# assumptions should be made about the SCC defaults as it is considered an
|
1570
|
+
# internal implementation detail.
|
1447
1571
|
# @param [String] name
|
1448
1572
|
# Required. The name of the WebSecurityScannerSettings to calculate. Formats: *
|
1449
1573
|
# organizations/`organization`/webSecurityScannerSettings * folders/`folder`/
|
@@ -1475,7 +1599,12 @@ module Google
|
|
1475
1599
|
execute_or_queue_command(command, &block)
|
1476
1600
|
end
|
1477
1601
|
|
1478
|
-
# Get the ContainerThreatDetectionSettings resource.
|
1602
|
+
# Get the ContainerThreatDetectionSettings resource. In the returned settings
|
1603
|
+
# response, a missing field only indicates that it was not explicitly set, so no
|
1604
|
+
# assumption should be made about these fields. In other words,
|
1605
|
+
# GetContainerThreatDetectionSettings does not calculate the effective service
|
1606
|
+
# settings for the resource, which accounts for inherited settings and defaults.
|
1607
|
+
# Instead, use CalculateContainerThreatDetectionSettings for this purpose.
|
1479
1608
|
# @param [String] name
|
1480
1609
|
# Required. The name of the ContainerThreatDetectionSettings to retrieve.
|
1481
1610
|
# Formats: * organizations/`organization`/containerThreatDetectionSettings *
|
@@ -1509,7 +1638,12 @@ module Google
|
|
1509
1638
|
execute_or_queue_command(command, &block)
|
1510
1639
|
end
|
1511
1640
|
|
1512
|
-
# Get the EventThreatDetectionSettings resource.
|
1641
|
+
# Get the EventThreatDetectionSettings resource. In the returned settings
|
1642
|
+
# response, a missing field only indicates that it was not explicitly set, so no
|
1643
|
+
# assumption should be made about these fields. In other words,
|
1644
|
+
# GetEventThreatDetectionSettings does not calculate the effective service
|
1645
|
+
# settings for the resource, which accounts for inherited settings and defaults.
|
1646
|
+
# Instead, use CalculateEventThreatDetectionSettings for this purpose.
|
1513
1647
|
# @param [String] name
|
1514
1648
|
# Required. The name of the EventThreatDetectionSettings to retrieve. Formats: *
|
1515
1649
|
# organizations/`organization`/eventThreatDetectionSettings * folders/`folder`/
|
@@ -1573,7 +1707,13 @@ module Google
|
|
1573
1707
|
execute_or_queue_command(command, &block)
|
1574
1708
|
end
|
1575
1709
|
|
1576
|
-
# Get the RapidVulnerabilityDetectionSettings resource.
|
1710
|
+
# Get the RapidVulnerabilityDetectionSettings resource. In the returned settings
|
1711
|
+
# response, a missing field only indicates that it was not explicitly set, so no
|
1712
|
+
# assumption should be made about these fields. In other words,
|
1713
|
+
# GetRapidVulnerabilityDetectionSettings does not calculate the effective
|
1714
|
+
# service settings for the resource, which accounts for inherited settings and
|
1715
|
+
# defaults. Instead, use CalculateRapidVulnerabilityDetectionSettings for this
|
1716
|
+
# purpose.
|
1577
1717
|
# @param [String] name
|
1578
1718
|
# Required. The name of the RapidVulnerabilityDetectionSettings to retrieve.
|
1579
1719
|
# Formats: * organizations/`organization`/rapidVulnerabilityDetectionSettings *
|
@@ -1638,7 +1778,12 @@ module Google
|
|
1638
1778
|
execute_or_queue_command(command, &block)
|
1639
1779
|
end
|
1640
1780
|
|
1641
|
-
# Get the SecurityHealthAnalyticsSettings resource.
|
1781
|
+
# Get the SecurityHealthAnalyticsSettings resource. In the returned settings
|
1782
|
+
# response, a missing field only indicates that it was not explicitly set, so no
|
1783
|
+
# assumption should be made about these fields. In other words,
|
1784
|
+
# GetSecurityHealthAnalyticsSettings does not calculate the effective service
|
1785
|
+
# settings for the resource, which accounts for inherited settings and defaults.
|
1786
|
+
# Instead, use CalculateSecurityHealthAnalyticsSettings for this purpose.
|
1642
1787
|
# @param [String] name
|
1643
1788
|
# Required. The name of the SecurityHealthAnalyticsSettings to retrieve. Formats:
|
1644
1789
|
# * organizations/`organization`/securityHealthAnalyticsSettings * folders/`
|
@@ -1671,7 +1816,13 @@ module Google
|
|
1671
1816
|
execute_or_queue_command(command, &block)
|
1672
1817
|
end
|
1673
1818
|
|
1674
|
-
# Get the VirtualMachineThreatDetectionSettings resource.
|
1819
|
+
# Get the VirtualMachineThreatDetectionSettings resource. In the returned
|
1820
|
+
# settings response, a missing field only indicates that it was not explicitly
|
1821
|
+
# set, so no assumption should be made about these fields. In other words,
|
1822
|
+
# GetVirtualMachineThreatDetectionSettings does not calculate the effective
|
1823
|
+
# service settings for the resource, which accounts for inherited settings and
|
1824
|
+
# defaults. Instead, use CalculateVirtualMachineThreatDetectionSettings for this
|
1825
|
+
# purpose.
|
1675
1826
|
# @param [String] name
|
1676
1827
|
# Required. The name of the VirtualMachineThreatDetectionSettings to retrieve.
|
1677
1828
|
# Formats: * organizations/`organization`/virtualMachineThreatDetectionSettings *
|
@@ -1704,7 +1855,12 @@ module Google
|
|
1704
1855
|
execute_or_queue_command(command, &block)
|
1705
1856
|
end
|
1706
1857
|
|
1707
|
-
# Get the WebSecurityScannerSettings resource.
|
1858
|
+
# Get the WebSecurityScannerSettings resource. In the returned settings response,
|
1859
|
+
# a missing field only indicates that it was not explicitly set, so no
|
1860
|
+
# assumption should be made about these fields. In other words,
|
1861
|
+
# GetWebSecurityScannerSettings does not calculate the effective service
|
1862
|
+
# settings for the resource, which accounts for inherited settings and defaults.
|
1863
|
+
# Instead, use CalculateWebSecurityScannerSettings for this purpose.
|
1708
1864
|
# @param [String] name
|
1709
1865
|
# Required. The name of the WebSecurityScannerSettings to retrieve. Formats: *
|
1710
1866
|
# organizations/`organization`/webSecurityScannerSettings * folders/`folder`/
|
@@ -1970,7 +2126,12 @@ module Google
|
|
1970
2126
|
end
|
1971
2127
|
|
1972
2128
|
# Calculates the effective ContainerThreatDetectionSettings based on its level
|
1973
|
-
# in the resource hierarchy and its settings.
|
2129
|
+
# in the resource hierarchy and its settings. Settings provided closer to the
|
2130
|
+
# target resource take precedence over those further away (e.g. folder will
|
2131
|
+
# override organization level settings). The default SCC setting for the
|
2132
|
+
# detector service defaults can be overridden at organization, folder and
|
2133
|
+
# project levels. No assumptions should be made about the SCC defaults as it is
|
2134
|
+
# considered an internal implementation detail.
|
1974
2135
|
# @param [String] name
|
1975
2136
|
# Required. The name of the ContainerThreatDetectionSettings to calculate.
|
1976
2137
|
# Formats: * organizations/`organization`/containerThreatDetectionSettings *
|
@@ -2005,7 +2166,12 @@ module Google
|
|
2005
2166
|
end
|
2006
2167
|
|
2007
2168
|
# Calculates the effective EventThreatDetectionSettings based on its level in
|
2008
|
-
# the resource hierarchy and its settings.
|
2169
|
+
# the resource hierarchy and its settings. Settings provided closer to the
|
2170
|
+
# target resource take precedence over those further away (e.g. folder will
|
2171
|
+
# override organization level settings). The default SCC setting for the
|
2172
|
+
# detector service defaults can be overridden at organization, folder and
|
2173
|
+
# project levels. No assumptions should be made about the SCC defaults as it is
|
2174
|
+
# considered an internal implementation detail.
|
2009
2175
|
# @param [String] name
|
2010
2176
|
# Required. The name of the EventThreatDetectionSettings to calculate. Formats: *
|
2011
2177
|
# organizations/`organization`/eventThreatDetectionSettings * folders/`folder`/
|
@@ -2037,7 +2203,12 @@ module Google
|
|
2037
2203
|
execute_or_queue_command(command, &block)
|
2038
2204
|
end
|
2039
2205
|
|
2040
|
-
# Get the ContainerThreatDetectionSettings resource.
|
2206
|
+
# Get the ContainerThreatDetectionSettings resource. In the returned settings
|
2207
|
+
# response, a missing field only indicates that it was not explicitly set, so no
|
2208
|
+
# assumption should be made about these fields. In other words,
|
2209
|
+
# GetContainerThreatDetectionSettings does not calculate the effective service
|
2210
|
+
# settings for the resource, which accounts for inherited settings and defaults.
|
2211
|
+
# Instead, use CalculateContainerThreatDetectionSettings for this purpose.
|
2041
2212
|
# @param [String] name
|
2042
2213
|
# Required. The name of the ContainerThreatDetectionSettings to retrieve.
|
2043
2214
|
# Formats: * organizations/`organization`/containerThreatDetectionSettings *
|
@@ -2112,7 +2283,12 @@ module Google
|
|
2112
2283
|
end
|
2113
2284
|
|
2114
2285
|
# Calculates the effective ContainerThreatDetectionSettings based on its level
|
2115
|
-
# in the resource hierarchy and its settings.
|
2286
|
+
# in the resource hierarchy and its settings. Settings provided closer to the
|
2287
|
+
# target resource take precedence over those further away (e.g. folder will
|
2288
|
+
# override organization level settings). The default SCC setting for the
|
2289
|
+
# detector service defaults can be overridden at organization, folder and
|
2290
|
+
# project levels. No assumptions should be made about the SCC defaults as it is
|
2291
|
+
# considered an internal implementation detail.
|
2116
2292
|
# @param [String] name
|
2117
2293
|
# Required. The name of the ContainerThreatDetectionSettings to calculate.
|
2118
2294
|
# Formats: * organizations/`organization`/containerThreatDetectionSettings *
|
@@ -2147,7 +2323,12 @@ module Google
|
|
2147
2323
|
end
|
2148
2324
|
|
2149
2325
|
# Calculates the effective RapidVulnerabilityDetectionSettings based on its
|
2150
|
-
# level in the resource hierarchy and its settings.
|
2326
|
+
# level in the resource hierarchy and its settings. Settings provided closer to
|
2327
|
+
# the target resource take precedence over those further away (e.g. folder will
|
2328
|
+
# override organization level settings). The default SCC setting for the
|
2329
|
+
# detector service defaults can be overridden at organization, folder and
|
2330
|
+
# project levels. No assumptions should be made about the SCC defaults as it is
|
2331
|
+
# considered an internal implementation detail.
|
2151
2332
|
# @param [String] name
|
2152
2333
|
# Required. The name of the RapidVulnerabilityDetectionSettings to calculate.
|
2153
2334
|
# Formats: * organizations/`organization`/rapidVulnerabilityDetectionSettings *
|
@@ -2181,7 +2362,12 @@ module Google
|
|
2181
2362
|
end
|
2182
2363
|
|
2183
2364
|
# Calculates the effective SecurityHealthAnalyticsSettings based on its level in
|
2184
|
-
# the resource hierarchy and its settings.
|
2365
|
+
# the resource hierarchy and its settings. Settings provided closer to the
|
2366
|
+
# target resource take precedence over those further away (e.g. folder will
|
2367
|
+
# override organization level settings). The default SCC setting for the
|
2368
|
+
# detector service defaults can be overridden at organization, folder and
|
2369
|
+
# project levels. No assumptions should be made about the SCC defaults as it is
|
2370
|
+
# considered an internal implementation detail.
|
2185
2371
|
# @param [String] name
|
2186
2372
|
# Required. The name of the SecurityHealthAnalyticsSettings to calculate.
|
2187
2373
|
# Formats: * organizations/`organization`/securityHealthAnalyticsSettings *
|
@@ -2215,7 +2401,12 @@ module Google
|
|
2215
2401
|
end
|
2216
2402
|
|
2217
2403
|
# Calculates the effective VirtualMachineThreatDetectionSettings based on its
|
2218
|
-
# level in the resource hierarchy and its settings.
|
2404
|
+
# level in the resource hierarchy and its settings. Settings provided closer to
|
2405
|
+
# the target resource take precedence over those further away (e.g. folder will
|
2406
|
+
# override organization level settings). The default SCC setting for the
|
2407
|
+
# detector service defaults can be overridden at organization, folder and
|
2408
|
+
# project levels. No assumptions should be made about the SCC defaults as it is
|
2409
|
+
# considered an internal implementation detail.
|
2219
2410
|
# @param [String] name
|
2220
2411
|
# Required. The name of the VirtualMachineThreatDetectionSettings to calculate.
|
2221
2412
|
# Formats: * organizations/`organization`/virtualMachineThreatDetectionSettings *
|
@@ -2249,7 +2440,12 @@ module Google
|
|
2249
2440
|
end
|
2250
2441
|
|
2251
2442
|
# Calculates the effective WebSecurityScannerSettings based on its level in the
|
2252
|
-
# resource hierarchy and its settings.
|
2443
|
+
# resource hierarchy and its settings. Settings provided closer to the target
|
2444
|
+
# resource take precedence over those further away (e.g. folder will override
|
2445
|
+
# organization level settings). The default SCC setting for the detector service
|
2446
|
+
# defaults can be overridden at organization, folder and project levels. No
|
2447
|
+
# assumptions should be made about the SCC defaults as it is considered an
|
2448
|
+
# internal implementation detail.
|
2253
2449
|
# @param [String] name
|
2254
2450
|
# Required. The name of the WebSecurityScannerSettings to calculate. Formats: *
|
2255
2451
|
# organizations/`organization`/webSecurityScannerSettings * folders/`folder`/
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-securitycenter_v1beta2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.42.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:
|
11
|
+
date: 2023-01-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.42.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|