google-apis-securitycenter_v1beta2 0.44.0 → 0.46.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f26c81e486fad0335fb2b21bfa62e61ff343e9c6d40984b96169a7cbf4aba69
|
4
|
+
data.tar.gz: cee1497221b3361959d56611779f9a0d7d656264a8e20d8d6dbf7371a4851b83
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3ff87cdddd5fa0ad6f5e23aa4d138ab2c4bc9b4f6925e1f4135beba78a7f6699cdadf847de0f97e8e5aee7f907f229f8bc06460fdfaa065a82a6a0157d0e44b
|
7
|
+
data.tar.gz: 4126401030ecb678a44632080aa37431f707d5dd21261df4c56770273a5b52ec92d72052524ace460c2eca1ddbc07b0e8153cdc9c9c1f25beb9ec81e840af2a3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta2
|
2
2
|
|
3
|
+
### v0.46.0 (2023-04-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230329
|
6
|
+
|
7
|
+
### v0.45.0 (2023-03-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230321
|
10
|
+
|
3
11
|
### v0.44.0 (2023-02-15)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.12.0
|
@@ -178,25 +178,55 @@ module Google
|
|
178
178
|
end
|
179
179
|
end
|
180
180
|
|
181
|
-
#
|
182
|
-
|
181
|
+
# The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated
|
182
|
+
# with the finding.
|
183
|
+
class CloudDlpDataProfile
|
183
184
|
include Google::Apis::Core::Hashable
|
184
185
|
|
185
|
-
#
|
186
|
-
#
|
187
|
-
# Corresponds to the JSON property `
|
186
|
+
# Name of the data profile, for example, `projects/123/locations/europe/
|
187
|
+
# tableProfiles/8383929`.
|
188
|
+
# Corresponds to the JSON property `dataProfile`
|
188
189
|
# @return [String]
|
189
|
-
attr_accessor :
|
190
|
+
attr_accessor :data_profile
|
190
191
|
|
191
|
-
|
192
|
-
|
192
|
+
def initialize(**args)
|
193
|
+
update!(**args)
|
194
|
+
end
|
195
|
+
|
196
|
+
# Update properties of this object
|
197
|
+
def update!(**args)
|
198
|
+
@data_profile = args[:data_profile] if args.key?(:data_profile)
|
199
|
+
end
|
200
|
+
end
|
201
|
+
|
202
|
+
# Details about the Cloud Data Loss Prevention (Cloud DLP) [inspection job](
|
203
|
+
# https://cloud.google.com/dlp/docs/concepts-job-triggers) that produced the
|
204
|
+
# finding.
|
205
|
+
class CloudDlpInspection
|
206
|
+
include Google::Apis::Core::Hashable
|
207
|
+
|
208
|
+
# Whether Cloud DLP scanned the complete resource or a sampled subset.
|
209
|
+
# Corresponds to the JSON property `fullScan`
|
210
|
+
# @return [Boolean]
|
211
|
+
attr_accessor :full_scan
|
212
|
+
alias_method :full_scan?, :full_scan
|
213
|
+
|
214
|
+
# The [type of information](https://cloud.google.com/dlp/docs/infotypes-
|
215
|
+
# reference) found, for example, `EMAIL_ADDRESS` or `STREET_ADDRESS`.
|
216
|
+
# Corresponds to the JSON property `infoType`
|
193
217
|
# @return [String]
|
194
|
-
attr_accessor :
|
218
|
+
attr_accessor :info_type
|
195
219
|
|
196
|
-
#
|
197
|
-
# Corresponds to the JSON property `
|
220
|
+
# The number of times Cloud DLP found this infoType within this job and resource.
|
221
|
+
# Corresponds to the JSON property `infoTypeCount`
|
222
|
+
# @return [Fixnum]
|
223
|
+
attr_accessor :info_type_count
|
224
|
+
|
225
|
+
# Name of the inspection job, for example, `projects/123/locations/europe/
|
226
|
+
# dlpJobs/i-8383929`.
|
227
|
+
# Corresponds to the JSON property `inspectJob`
|
198
228
|
# @return [String]
|
199
|
-
attr_accessor :
|
229
|
+
attr_accessor :inspect_job
|
200
230
|
|
201
231
|
def initialize(**args)
|
202
232
|
update!(**args)
|
@@ -204,9 +234,10 @@ module Google
|
|
204
234
|
|
205
235
|
# Update properties of this object
|
206
236
|
def update!(**args)
|
207
|
-
@
|
208
|
-
@
|
209
|
-
@
|
237
|
+
@full_scan = args[:full_scan] if args.key?(:full_scan)
|
238
|
+
@info_type = args[:info_type] if args.key?(:info_type)
|
239
|
+
@info_type_count = args[:info_type_count] if args.key?(:info_type_count)
|
240
|
+
@inspect_job = args[:inspect_job] if args.key?(:inspect_job)
|
210
241
|
end
|
211
242
|
end
|
212
243
|
|
@@ -666,32 +697,6 @@ module Google
|
|
666
697
|
end
|
667
698
|
end
|
668
699
|
|
669
|
-
# Represents a connection between a source node and a destination node in this
|
670
|
-
# exposure path.
|
671
|
-
class Edge
|
672
|
-
include Google::Apis::Core::Hashable
|
673
|
-
|
674
|
-
# This is the resource name of the destination node.
|
675
|
-
# Corresponds to the JSON property `destination`
|
676
|
-
# @return [String]
|
677
|
-
attr_accessor :destination
|
678
|
-
|
679
|
-
# This is the resource name of the source node.
|
680
|
-
# Corresponds to the JSON property `source`
|
681
|
-
# @return [String]
|
682
|
-
attr_accessor :source
|
683
|
-
|
684
|
-
def initialize(**args)
|
685
|
-
update!(**args)
|
686
|
-
end
|
687
|
-
|
688
|
-
# Update properties of this object
|
689
|
-
def update!(**args)
|
690
|
-
@destination = args[:destination] if args.key?(:destination)
|
691
|
-
@source = args[:source] if args.key?(:source)
|
692
|
-
end
|
693
|
-
end
|
694
|
-
|
695
700
|
# EnvironmentVariable is a name-value pair to store environment variables for
|
696
701
|
# Process.
|
697
702
|
class EnvironmentVariable
|
@@ -900,6 +905,19 @@ module Google
|
|
900
905
|
# @return [String]
|
901
906
|
attr_accessor :category
|
902
907
|
|
908
|
+
# The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated
|
909
|
+
# with the finding.
|
910
|
+
# Corresponds to the JSON property `cloudDlpDataProfile`
|
911
|
+
# @return [Google::Apis::SecuritycenterV1beta2::CloudDlpDataProfile]
|
912
|
+
attr_accessor :cloud_dlp_data_profile
|
913
|
+
|
914
|
+
# Details about the Cloud Data Loss Prevention (Cloud DLP) [inspection job](
|
915
|
+
# https://cloud.google.com/dlp/docs/concepts-job-triggers) that produced the
|
916
|
+
# finding.
|
917
|
+
# Corresponds to the JSON property `cloudDlpInspection`
|
918
|
+
# @return [Google::Apis::SecuritycenterV1beta2::CloudDlpInspection]
|
919
|
+
attr_accessor :cloud_dlp_inspection
|
920
|
+
|
903
921
|
# Contains compliance information for security standards associated to the
|
904
922
|
# finding.
|
905
923
|
# Corresponds to the JSON property `compliances`
|
@@ -1017,6 +1035,12 @@ module Google
|
|
1017
1035
|
# @return [Google::Apis::SecuritycenterV1beta2::MitreAttack]
|
1018
1036
|
attr_accessor :mitre_attack
|
1019
1037
|
|
1038
|
+
# Unique identifier of the module which generated the finding. Example: folders/
|
1039
|
+
# 598186756061/securityHealthAnalyticsSettings/customModules/56799441161885
|
1040
|
+
# Corresponds to the JSON property `moduleName`
|
1041
|
+
# @return [String]
|
1042
|
+
attr_accessor :module_name
|
1043
|
+
|
1020
1044
|
# Indicates the mute state of a finding (either muted, unmuted or undefined).
|
1021
1045
|
# Unlike other attributes of a finding, a finding provider shouldn't set the
|
1022
1046
|
# value of mute.
|
@@ -1118,6 +1142,8 @@ module Google
|
|
1118
1142
|
@access = args[:access] if args.key?(:access)
|
1119
1143
|
@canonical_name = args[:canonical_name] if args.key?(:canonical_name)
|
1120
1144
|
@category = args[:category] if args.key?(:category)
|
1145
|
+
@cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
|
1146
|
+
@cloud_dlp_inspection = args[:cloud_dlp_inspection] if args.key?(:cloud_dlp_inspection)
|
1121
1147
|
@compliances = args[:compliances] if args.key?(:compliances)
|
1122
1148
|
@connections = args[:connections] if args.key?(:connections)
|
1123
1149
|
@contacts = args[:contacts] if args.key?(:contacts)
|
@@ -1136,6 +1162,7 @@ module Google
|
|
1136
1162
|
@kernel_rootkit = args[:kernel_rootkit] if args.key?(:kernel_rootkit)
|
1137
1163
|
@kubernetes = args[:kubernetes] if args.key?(:kubernetes)
|
1138
1164
|
@mitre_attack = args[:mitre_attack] if args.key?(:mitre_attack)
|
1165
|
+
@module_name = args[:module_name] if args.key?(:module_name)
|
1139
1166
|
@mute = args[:mute] if args.key?(:mute)
|
1140
1167
|
@mute_initiator = args[:mute_initiator] if args.key?(:mute_initiator)
|
1141
1168
|
@mute_update_time = args[:mute_update_time] if args.key?(:mute_update_time)
|
@@ -1332,96 +1359,6 @@ module Google
|
|
1332
1359
|
end
|
1333
1360
|
end
|
1334
1361
|
|
1335
|
-
# A resource that is exposed as a result of a finding.
|
1336
|
-
class GoogleCloudSecuritycenterV1ExposedResource
|
1337
|
-
include Google::Apis::Core::Hashable
|
1338
|
-
|
1339
|
-
# Human readable name of the resource that is exposed.
|
1340
|
-
# Corresponds to the JSON property `displayName`
|
1341
|
-
# @return [String]
|
1342
|
-
attr_accessor :display_name
|
1343
|
-
|
1344
|
-
# The ways in which this resource is exposed. Examples: Read, Write
|
1345
|
-
# Corresponds to the JSON property `methods`
|
1346
|
-
# @return [Array<String>]
|
1347
|
-
attr_accessor :methods_prop
|
1348
|
-
|
1349
|
-
# Exposed Resource Name e.g.: `organizations/123/attackExposureResults/456/
|
1350
|
-
# exposedResources/789`
|
1351
|
-
# Corresponds to the JSON property `name`
|
1352
|
-
# @return [String]
|
1353
|
-
attr_accessor :name
|
1354
|
-
|
1355
|
-
# The name of the resource that is exposed. See: https://cloud.google.com/apis/
|
1356
|
-
# design/resource_names#full_resource_name
|
1357
|
-
# Corresponds to the JSON property `resource`
|
1358
|
-
# @return [String]
|
1359
|
-
attr_accessor :resource
|
1360
|
-
|
1361
|
-
# The resource type of the exposed resource. See: https://cloud.google.com/asset-
|
1362
|
-
# inventory/docs/supported-asset-types
|
1363
|
-
# Corresponds to the JSON property `resourceType`
|
1364
|
-
# @return [String]
|
1365
|
-
attr_accessor :resource_type
|
1366
|
-
|
1367
|
-
# How valuable this resource is.
|
1368
|
-
# Corresponds to the JSON property `resourceValue`
|
1369
|
-
# @return [String]
|
1370
|
-
attr_accessor :resource_value
|
1371
|
-
|
1372
|
-
def initialize(**args)
|
1373
|
-
update!(**args)
|
1374
|
-
end
|
1375
|
-
|
1376
|
-
# Update properties of this object
|
1377
|
-
def update!(**args)
|
1378
|
-
@display_name = args[:display_name] if args.key?(:display_name)
|
1379
|
-
@methods_prop = args[:methods_prop] if args.key?(:methods_prop)
|
1380
|
-
@name = args[:name] if args.key?(:name)
|
1381
|
-
@resource = args[:resource] if args.key?(:resource)
|
1382
|
-
@resource_type = args[:resource_type] if args.key?(:resource_type)
|
1383
|
-
@resource_value = args[:resource_value] if args.key?(:resource_value)
|
1384
|
-
end
|
1385
|
-
end
|
1386
|
-
|
1387
|
-
# A path that an attacker could take to reach an exposed resource.
|
1388
|
-
class GoogleCloudSecuritycenterV1ExposurePath
|
1389
|
-
include Google::Apis::Core::Hashable
|
1390
|
-
|
1391
|
-
# A list of the edges between nodes in this exposure path.
|
1392
|
-
# Corresponds to the JSON property `edges`
|
1393
|
-
# @return [Array<Google::Apis::SecuritycenterV1beta2::Edge>]
|
1394
|
-
attr_accessor :edges
|
1395
|
-
|
1396
|
-
# A resource that is exposed as a result of a finding.
|
1397
|
-
# Corresponds to the JSON property `exposedResource`
|
1398
|
-
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ExposedResource]
|
1399
|
-
attr_accessor :exposed_resource
|
1400
|
-
|
1401
|
-
# Exposure Path Name e.g.: `organizations/123/attackExposureResults/456/
|
1402
|
-
# exposurePaths/789`
|
1403
|
-
# Corresponds to the JSON property `name`
|
1404
|
-
# @return [String]
|
1405
|
-
attr_accessor :name
|
1406
|
-
|
1407
|
-
# A list of nodes that exist in this exposure path.
|
1408
|
-
# Corresponds to the JSON property `pathNodes`
|
1409
|
-
# @return [Array<Google::Apis::SecuritycenterV1beta2::PathNode>]
|
1410
|
-
attr_accessor :path_nodes
|
1411
|
-
|
1412
|
-
def initialize(**args)
|
1413
|
-
update!(**args)
|
1414
|
-
end
|
1415
|
-
|
1416
|
-
# Update properties of this object
|
1417
|
-
def update!(**args)
|
1418
|
-
@edges = args[:edges] if args.key?(:edges)
|
1419
|
-
@exposed_resource = args[:exposed_resource] if args.key?(:exposed_resource)
|
1420
|
-
@name = args[:name] if args.key?(:name)
|
1421
|
-
@path_nodes = args[:path_nodes] if args.key?(:path_nodes)
|
1422
|
-
end
|
1423
|
-
end
|
1424
|
-
|
1425
1362
|
# Representation of third party SIEM/SOAR fields within SCC.
|
1426
1363
|
class GoogleCloudSecuritycenterV1ExternalSystem
|
1427
1364
|
include Google::Apis::Core::Hashable
|
@@ -1641,57 +1578,6 @@ module Google
|
|
1641
1578
|
end
|
1642
1579
|
end
|
1643
1580
|
|
1644
|
-
# A resource value config is a mapping configuration of user's tag values to
|
1645
|
-
# resource values. Used by the attack path simulation.
|
1646
|
-
class GoogleCloudSecuritycenterV1ResourceValueConfig
|
1647
|
-
include Google::Apis::Core::Hashable
|
1648
|
-
|
1649
|
-
# Name for the resource value config
|
1650
|
-
# Corresponds to the JSON property `name`
|
1651
|
-
# @return [String]
|
1652
|
-
attr_accessor :name
|
1653
|
-
|
1654
|
-
# Apply resource_value only to resources that match resource_type. resource_type
|
1655
|
-
# will be checked with "AND" of other resources. E.g. "storage.googleapis.com/
|
1656
|
-
# Bucket" with resource_value "HIGH" will apply "HIGH" value only to "storage.
|
1657
|
-
# googleapis.com/Bucket" resources.
|
1658
|
-
# Corresponds to the JSON property `resourceType`
|
1659
|
-
# @return [String]
|
1660
|
-
attr_accessor :resource_type
|
1661
|
-
|
1662
|
-
# Required. Resource value level this expression represents
|
1663
|
-
# Corresponds to the JSON property `resourceValue`
|
1664
|
-
# @return [String]
|
1665
|
-
attr_accessor :resource_value
|
1666
|
-
|
1667
|
-
# Project or folder to scope this config to. For example, "project/456" would
|
1668
|
-
# apply this config only to resources in "project/456" scope will be checked
|
1669
|
-
# with "AND" of other resources.
|
1670
|
-
# Corresponds to the JSON property `scope`
|
1671
|
-
# @return [String]
|
1672
|
-
attr_accessor :scope
|
1673
|
-
|
1674
|
-
# Required. Tag values combined with AND to check against. Values in the form "
|
1675
|
-
# tagValues/123" E.g. [ "tagValues/123", "tagValues/456", "tagValues/789" ]
|
1676
|
-
# https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing
|
1677
|
-
# Corresponds to the JSON property `tagValues`
|
1678
|
-
# @return [Array<String>]
|
1679
|
-
attr_accessor :tag_values
|
1680
|
-
|
1681
|
-
def initialize(**args)
|
1682
|
-
update!(**args)
|
1683
|
-
end
|
1684
|
-
|
1685
|
-
# Update properties of this object
|
1686
|
-
def update!(**args)
|
1687
|
-
@name = args[:name] if args.key?(:name)
|
1688
|
-
@resource_type = args[:resource_type] if args.key?(:resource_type)
|
1689
|
-
@resource_value = args[:resource_value] if args.key?(:resource_value)
|
1690
|
-
@scope = args[:scope] if args.key?(:scope)
|
1691
|
-
@tag_values = args[:tag_values] if args.key?(:tag_values)
|
1692
|
-
end
|
1693
|
-
end
|
1694
|
-
|
1695
1581
|
# Response of asset discovery run
|
1696
1582
|
class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
|
1697
1583
|
include Google::Apis::Core::Hashable
|
@@ -2426,46 +2312,6 @@ module Google
|
|
2426
2312
|
end
|
2427
2313
|
end
|
2428
2314
|
|
2429
|
-
# Represents one point that an attacker passes through in this exposure path.
|
2430
|
-
class PathNode
|
2431
|
-
include Google::Apis::Core::Hashable
|
2432
|
-
|
2433
|
-
# The findings associated with this node in the exposure path.
|
2434
|
-
# Corresponds to the JSON property `associatedFindings`
|
2435
|
-
# @return [Array<Google::Apis::SecuritycenterV1beta2::AssociatedFinding>]
|
2436
|
-
attr_accessor :associated_findings
|
2437
|
-
|
2438
|
-
# Human readable name of this resource.
|
2439
|
-
# Corresponds to the JSON property `displayName`
|
2440
|
-
# @return [String]
|
2441
|
-
attr_accessor :display_name
|
2442
|
-
|
2443
|
-
# The name of the resource at this point in the exposure path. The format of the
|
2444
|
-
# name is: https://cloud.google.com/apis/design/resource_names#
|
2445
|
-
# full_resource_name
|
2446
|
-
# Corresponds to the JSON property `resource`
|
2447
|
-
# @return [String]
|
2448
|
-
attr_accessor :resource
|
2449
|
-
|
2450
|
-
# The resource type of this resource. See: https://cloud.google.com/asset-
|
2451
|
-
# inventory/docs/supported-asset-types
|
2452
|
-
# Corresponds to the JSON property `resourceType`
|
2453
|
-
# @return [String]
|
2454
|
-
attr_accessor :resource_type
|
2455
|
-
|
2456
|
-
def initialize(**args)
|
2457
|
-
update!(**args)
|
2458
|
-
end
|
2459
|
-
|
2460
|
-
# Update properties of this object
|
2461
|
-
def update!(**args)
|
2462
|
-
@associated_findings = args[:associated_findings] if args.key?(:associated_findings)
|
2463
|
-
@display_name = args[:display_name] if args.key?(:display_name)
|
2464
|
-
@resource = args[:resource] if args.key?(:resource)
|
2465
|
-
@resource_type = args[:resource_type] if args.key?(:resource_type)
|
2466
|
-
end
|
2467
|
-
end
|
2468
|
-
|
2469
2315
|
# Kubernetes Pod.
|
2470
2316
|
class Pod
|
2471
2317
|
include Google::Apis::Core::Hashable
|
@@ -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.46.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230329"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -34,7 +34,13 @@ module Google
|
|
34
34
|
include Google::Apis::Core::JsonObjectSupport
|
35
35
|
end
|
36
36
|
|
37
|
-
class
|
37
|
+
class CloudDlpDataProfile
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
+
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
41
|
+
end
|
42
|
+
|
43
|
+
class CloudDlpInspection
|
38
44
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
45
|
|
40
46
|
include Google::Apis::Core::JsonObjectSupport
|
@@ -112,12 +118,6 @@ module Google
|
|
112
118
|
include Google::Apis::Core::JsonObjectSupport
|
113
119
|
end
|
114
120
|
|
115
|
-
class Edge
|
116
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
|
-
|
118
|
-
include Google::Apis::Core::JsonObjectSupport
|
119
|
-
end
|
120
|
-
|
121
121
|
class EnvironmentVariable
|
122
122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
123
|
|
@@ -184,18 +184,6 @@ module Google
|
|
184
184
|
include Google::Apis::Core::JsonObjectSupport
|
185
185
|
end
|
186
186
|
|
187
|
-
class GoogleCloudSecuritycenterV1ExposedResource
|
188
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
-
|
190
|
-
include Google::Apis::Core::JsonObjectSupport
|
191
|
-
end
|
192
|
-
|
193
|
-
class GoogleCloudSecuritycenterV1ExposurePath
|
194
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
-
|
196
|
-
include Google::Apis::Core::JsonObjectSupport
|
197
|
-
end
|
198
|
-
|
199
187
|
class GoogleCloudSecuritycenterV1ExternalSystem
|
200
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
189
|
|
@@ -220,12 +208,6 @@ module Google
|
|
220
208
|
include Google::Apis::Core::JsonObjectSupport
|
221
209
|
end
|
222
210
|
|
223
|
-
class GoogleCloudSecuritycenterV1ResourceValueConfig
|
224
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
225
|
-
|
226
|
-
include Google::Apis::Core::JsonObjectSupport
|
227
|
-
end
|
228
|
-
|
229
211
|
class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
|
230
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
213
|
|
@@ -334,12 +316,6 @@ module Google
|
|
334
316
|
include Google::Apis::Core::JsonObjectSupport
|
335
317
|
end
|
336
318
|
|
337
|
-
class PathNode
|
338
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
|
-
|
340
|
-
include Google::Apis::Core::JsonObjectSupport
|
341
|
-
end
|
342
|
-
|
343
319
|
class Pod
|
344
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
321
|
|
@@ -467,12 +443,20 @@ module Google
|
|
467
443
|
end
|
468
444
|
end
|
469
445
|
|
470
|
-
class
|
446
|
+
class CloudDlpDataProfile
|
471
447
|
# @private
|
472
448
|
class Representation < Google::Apis::Core::JsonRepresentation
|
473
|
-
property :
|
474
|
-
|
475
|
-
|
449
|
+
property :data_profile, as: 'dataProfile'
|
450
|
+
end
|
451
|
+
end
|
452
|
+
|
453
|
+
class CloudDlpInspection
|
454
|
+
# @private
|
455
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
456
|
+
property :full_scan, as: 'fullScan'
|
457
|
+
property :info_type, as: 'infoType'
|
458
|
+
property :info_type_count, :numeric_string => true, as: 'infoTypeCount'
|
459
|
+
property :inspect_job, as: 'inspectJob'
|
476
460
|
end
|
477
461
|
end
|
478
462
|
|
@@ -597,14 +581,6 @@ module Google
|
|
597
581
|
end
|
598
582
|
end
|
599
583
|
|
600
|
-
class Edge
|
601
|
-
# @private
|
602
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
603
|
-
property :destination, as: 'destination'
|
604
|
-
property :source, as: 'source'
|
605
|
-
end
|
606
|
-
end
|
607
|
-
|
608
584
|
class EnvironmentVariable
|
609
585
|
# @private
|
610
586
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -661,6 +637,10 @@ module Google
|
|
661
637
|
|
662
638
|
property :canonical_name, as: 'canonicalName'
|
663
639
|
property :category, as: 'category'
|
640
|
+
property :cloud_dlp_data_profile, as: 'cloudDlpDataProfile', class: Google::Apis::SecuritycenterV1beta2::CloudDlpDataProfile, decorator: Google::Apis::SecuritycenterV1beta2::CloudDlpDataProfile::Representation
|
641
|
+
|
642
|
+
property :cloud_dlp_inspection, as: 'cloudDlpInspection', class: Google::Apis::SecuritycenterV1beta2::CloudDlpInspection, decorator: Google::Apis::SecuritycenterV1beta2::CloudDlpInspection::Representation
|
643
|
+
|
664
644
|
collection :compliances, as: 'compliances', class: Google::Apis::SecuritycenterV1beta2::Compliance, decorator: Google::Apis::SecuritycenterV1beta2::Compliance::Representation
|
665
645
|
|
666
646
|
collection :connections, as: 'connections', class: Google::Apis::SecuritycenterV1beta2::Connection, decorator: Google::Apis::SecuritycenterV1beta2::Connection::Representation
|
@@ -692,6 +672,7 @@ module Google
|
|
692
672
|
|
693
673
|
property :mitre_attack, as: 'mitreAttack', class: Google::Apis::SecuritycenterV1beta2::MitreAttack, decorator: Google::Apis::SecuritycenterV1beta2::MitreAttack::Representation
|
694
674
|
|
675
|
+
property :module_name, as: 'moduleName'
|
695
676
|
property :mute, as: 'mute'
|
696
677
|
property :mute_initiator, as: 'muteInitiator'
|
697
678
|
property :mute_update_time, as: 'muteUpdateTime'
|
@@ -759,31 +740,6 @@ module Google
|
|
759
740
|
end
|
760
741
|
end
|
761
742
|
|
762
|
-
class GoogleCloudSecuritycenterV1ExposedResource
|
763
|
-
# @private
|
764
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
765
|
-
property :display_name, as: 'displayName'
|
766
|
-
collection :methods_prop, as: 'methods'
|
767
|
-
property :name, as: 'name'
|
768
|
-
property :resource, as: 'resource'
|
769
|
-
property :resource_type, as: 'resourceType'
|
770
|
-
property :resource_value, as: 'resourceValue'
|
771
|
-
end
|
772
|
-
end
|
773
|
-
|
774
|
-
class GoogleCloudSecuritycenterV1ExposurePath
|
775
|
-
# @private
|
776
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
777
|
-
collection :edges, as: 'edges', class: Google::Apis::SecuritycenterV1beta2::Edge, decorator: Google::Apis::SecuritycenterV1beta2::Edge::Representation
|
778
|
-
|
779
|
-
property :exposed_resource, as: 'exposedResource', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ExposedResource, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ExposedResource::Representation
|
780
|
-
|
781
|
-
property :name, as: 'name'
|
782
|
-
collection :path_nodes, as: 'pathNodes', class: Google::Apis::SecuritycenterV1beta2::PathNode, decorator: Google::Apis::SecuritycenterV1beta2::PathNode::Representation
|
783
|
-
|
784
|
-
end
|
785
|
-
end
|
786
|
-
|
787
743
|
class GoogleCloudSecuritycenterV1ExternalSystem
|
788
744
|
# @private
|
789
745
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -834,17 +790,6 @@ module Google
|
|
834
790
|
end
|
835
791
|
end
|
836
792
|
|
837
|
-
class GoogleCloudSecuritycenterV1ResourceValueConfig
|
838
|
-
# @private
|
839
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
840
|
-
property :name, as: 'name'
|
841
|
-
property :resource_type, as: 'resourceType'
|
842
|
-
property :resource_value, as: 'resourceValue'
|
843
|
-
property :scope, as: 'scope'
|
844
|
-
collection :tag_values, as: 'tagValues'
|
845
|
-
end
|
846
|
-
end
|
847
|
-
|
848
793
|
class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
|
849
794
|
# @private
|
850
795
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1034,17 +979,6 @@ module Google
|
|
1034
979
|
end
|
1035
980
|
end
|
1036
981
|
|
1037
|
-
class PathNode
|
1038
|
-
# @private
|
1039
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1040
|
-
collection :associated_findings, as: 'associatedFindings', class: Google::Apis::SecuritycenterV1beta2::AssociatedFinding, decorator: Google::Apis::SecuritycenterV1beta2::AssociatedFinding::Representation
|
1041
|
-
|
1042
|
-
property :display_name, as: 'displayName'
|
1043
|
-
property :resource, as: 'resource'
|
1044
|
-
property :resource_type, as: 'resourceType'
|
1045
|
-
end
|
1046
|
-
end
|
1047
|
-
|
1048
982
|
class Pod
|
1049
983
|
# @private
|
1050
984
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.46.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-02
|
11
|
+
date: 2023-04-02 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.46.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: []
|