google-apis-securitycenter_v1beta2 0.76.0 → 0.78.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: 96b64fd40acd8eadbeb4fdcb2055a13ae343612735e9e02ac27a07bb8d3c9c14
|
4
|
+
data.tar.gz: 5eb5d2004ad2df2c09ddc4f8bc7655c9ac3a4ba749ea397b2fa93d569d5bbeb1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ee41acc32e807472c9b105501a78b1384c99b288b46306b60f6d532316eba9072177553e5ec6090243db79bf3a57f91528d06c75a7bb96378ee6fedf30e68a3
|
7
|
+
data.tar.gz: 3c1908a78e9fcae1a04140b2d49c1cfe5290211b45075cc28805f70eb8e64b957fb50dbdd209f0218b9b0845b6f9c5af39dc86e4d907482343027a5fe71b6562
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta2
|
2
2
|
|
3
|
+
### v0.78.0 (2025-03-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250315
|
6
|
+
|
7
|
+
### v0.77.0 (2025-03-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250308
|
10
|
+
|
3
11
|
### v0.76.0 (2025-03-09)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250228
|
@@ -718,6 +718,30 @@ module Google
|
|
718
718
|
end
|
719
719
|
end
|
720
720
|
|
721
|
+
# Contains details about a chokepoint, which is a resource or resource group
|
722
|
+
# where high-risk attack paths converge, based on [attack path simulations] (
|
723
|
+
# https://cloud.google.com/security-command-center/docs/attack-exposure-learn#
|
724
|
+
# attack_path_simulations).
|
725
|
+
class Chokepoint
|
726
|
+
include Google::Apis::Core::Hashable
|
727
|
+
|
728
|
+
# List of resource names of findings associated with this chokepoint. For
|
729
|
+
# example, organizations/123/sources/456/findings/789. This list will have at
|
730
|
+
# most 100 findings.
|
731
|
+
# Corresponds to the JSON property `relatedFindings`
|
732
|
+
# @return [Array<String>]
|
733
|
+
attr_accessor :related_findings
|
734
|
+
|
735
|
+
def initialize(**args)
|
736
|
+
update!(**args)
|
737
|
+
end
|
738
|
+
|
739
|
+
# Update properties of this object
|
740
|
+
def update!(**args)
|
741
|
+
@related_findings = args[:related_findings] if args.key?(:related_findings)
|
742
|
+
end
|
743
|
+
end
|
744
|
+
|
721
745
|
# Fields related to Google Cloud Armor findings.
|
722
746
|
class CloudArmor
|
723
747
|
include Google::Apis::Core::Hashable
|
@@ -1338,6 +1362,33 @@ module Google
|
|
1338
1362
|
end
|
1339
1363
|
end
|
1340
1364
|
|
1365
|
+
# CWE stands for Common Weakness Enumeration. Information about this weakness,
|
1366
|
+
# as described by [CWE](https://cwe.mitre.org/).
|
1367
|
+
class Cwe
|
1368
|
+
include Google::Apis::Core::Hashable
|
1369
|
+
|
1370
|
+
# The CWE identifier, e.g. CWE-94
|
1371
|
+
# Corresponds to the JSON property `id`
|
1372
|
+
# @return [String]
|
1373
|
+
attr_accessor :id
|
1374
|
+
|
1375
|
+
# Any reference to the details on the CWE, for example, https://cwe.mitre.org/
|
1376
|
+
# data/definitions/94.html
|
1377
|
+
# Corresponds to the JSON property `references`
|
1378
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::Reference>]
|
1379
|
+
attr_accessor :references
|
1380
|
+
|
1381
|
+
def initialize(**args)
|
1382
|
+
update!(**args)
|
1383
|
+
end
|
1384
|
+
|
1385
|
+
# Update properties of this object
|
1386
|
+
def update!(**args)
|
1387
|
+
@id = args[:id] if args.key?(:id)
|
1388
|
+
@references = args[:references] if args.key?(:references)
|
1389
|
+
end
|
1390
|
+
end
|
1391
|
+
|
1341
1392
|
# Details about a data access attempt made by a principal not authorized under
|
1342
1393
|
# applicable data security policy.
|
1343
1394
|
class DataAccessEvent
|
@@ -1978,6 +2029,14 @@ module Google
|
|
1978
2029
|
# @return [String]
|
1979
2030
|
attr_accessor :category
|
1980
2031
|
|
2032
|
+
# Contains details about a chokepoint, which is a resource or resource group
|
2033
|
+
# where high-risk attack paths converge, based on [attack path simulations] (
|
2034
|
+
# https://cloud.google.com/security-command-center/docs/attack-exposure-learn#
|
2035
|
+
# attack_path_simulations).
|
2036
|
+
# Corresponds to the JSON property `chokepoint`
|
2037
|
+
# @return [Google::Apis::SecuritycenterV1beta2::Chokepoint]
|
2038
|
+
attr_accessor :chokepoint
|
2039
|
+
|
1981
2040
|
# Fields related to Google Cloud Armor findings.
|
1982
2041
|
# Corresponds to the JSON property `cloudArmor`
|
1983
2042
|
# @return [Google::Apis::SecuritycenterV1beta2::CloudArmor]
|
@@ -2311,6 +2370,7 @@ module Google
|
|
2311
2370
|
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
2312
2371
|
@canonical_name = args[:canonical_name] if args.key?(:canonical_name)
|
2313
2372
|
@category = args[:category] if args.key?(:category)
|
2373
|
+
@chokepoint = args[:chokepoint] if args.key?(:chokepoint)
|
2314
2374
|
@cloud_armor = args[:cloud_armor] if args.key?(:cloud_armor)
|
2315
2375
|
@cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
|
2316
2376
|
@cloud_dlp_inspection = args[:cloud_dlp_inspection] if args.key?(:cloud_dlp_inspection)
|
@@ -4528,6 +4588,30 @@ module Google
|
|
4528
4588
|
end
|
4529
4589
|
end
|
4530
4590
|
|
4591
|
+
# Contains details about a chokepoint, which is a resource or resource group
|
4592
|
+
# where high-risk attack paths converge, based on [attack path simulations] (
|
4593
|
+
# https://cloud.google.com/security-command-center/docs/attack-exposure-learn#
|
4594
|
+
# attack_path_simulations).
|
4595
|
+
class GoogleCloudSecuritycenterV2Chokepoint
|
4596
|
+
include Google::Apis::Core::Hashable
|
4597
|
+
|
4598
|
+
# List of resource names of findings associated with this chokepoint. For
|
4599
|
+
# example, organizations/123/sources/456/findings/789. This list will have at
|
4600
|
+
# most 100 findings.
|
4601
|
+
# Corresponds to the JSON property `relatedFindings`
|
4602
|
+
# @return [Array<String>]
|
4603
|
+
attr_accessor :related_findings
|
4604
|
+
|
4605
|
+
def initialize(**args)
|
4606
|
+
update!(**args)
|
4607
|
+
end
|
4608
|
+
|
4609
|
+
# Update properties of this object
|
4610
|
+
def update!(**args)
|
4611
|
+
@related_findings = args[:related_findings] if args.key?(:related_findings)
|
4612
|
+
end
|
4613
|
+
end
|
4614
|
+
|
4531
4615
|
# Fields related to Google Cloud Armor findings.
|
4532
4616
|
class GoogleCloudSecuritycenterV2CloudArmor
|
4533
4617
|
include Google::Apis::Core::Hashable
|
@@ -5009,6 +5093,33 @@ module Google
|
|
5009
5093
|
end
|
5010
5094
|
end
|
5011
5095
|
|
5096
|
+
# CWE stands for Common Weakness Enumeration. Information about this weakness,
|
5097
|
+
# as described by [CWE](https://cwe.mitre.org/).
|
5098
|
+
class GoogleCloudSecuritycenterV2Cwe
|
5099
|
+
include Google::Apis::Core::Hashable
|
5100
|
+
|
5101
|
+
# The CWE identifier, e.g. CWE-94
|
5102
|
+
# Corresponds to the JSON property `id`
|
5103
|
+
# @return [String]
|
5104
|
+
attr_accessor :id
|
5105
|
+
|
5106
|
+
# Any reference to the details on the CWE, for example, https://cwe.mitre.org/
|
5107
|
+
# data/definitions/94.html
|
5108
|
+
# Corresponds to the JSON property `references`
|
5109
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Reference>]
|
5110
|
+
attr_accessor :references
|
5111
|
+
|
5112
|
+
def initialize(**args)
|
5113
|
+
update!(**args)
|
5114
|
+
end
|
5115
|
+
|
5116
|
+
# Update properties of this object
|
5117
|
+
def update!(**args)
|
5118
|
+
@id = args[:id] if args.key?(:id)
|
5119
|
+
@references = args[:references] if args.key?(:references)
|
5120
|
+
end
|
5121
|
+
end
|
5122
|
+
|
5012
5123
|
# Details about a data access attempt made by a principal not authorized under
|
5013
5124
|
# applicable data security policy.
|
5014
5125
|
class GoogleCloudSecuritycenterV2DataAccessEvent
|
@@ -5615,6 +5726,14 @@ module Google
|
|
5615
5726
|
# @return [String]
|
5616
5727
|
attr_accessor :category
|
5617
5728
|
|
5729
|
+
# Contains details about a chokepoint, which is a resource or resource group
|
5730
|
+
# where high-risk attack paths converge, based on [attack path simulations] (
|
5731
|
+
# https://cloud.google.com/security-command-center/docs/attack-exposure-learn#
|
5732
|
+
# attack_path_simulations).
|
5733
|
+
# Corresponds to the JSON property `chokepoint`
|
5734
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Chokepoint]
|
5735
|
+
attr_accessor :chokepoint
|
5736
|
+
|
5618
5737
|
# Fields related to Google Cloud Armor findings.
|
5619
5738
|
# Corresponds to the JSON property `cloudArmor`
|
5620
5739
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2CloudArmor]
|
@@ -5958,6 +6077,7 @@ module Google
|
|
5958
6077
|
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
5959
6078
|
@canonical_name = args[:canonical_name] if args.key?(:canonical_name)
|
5960
6079
|
@category = args[:category] if args.key?(:category)
|
6080
|
+
@chokepoint = args[:chokepoint] if args.key?(:chokepoint)
|
5961
6081
|
@cloud_armor = args[:cloud_armor] if args.key?(:cloud_armor)
|
5962
6082
|
@cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
|
5963
6083
|
@cloud_dlp_inspection = args[:cloud_dlp_inspection] if args.key?(:cloud_dlp_inspection)
|
@@ -8346,6 +8466,12 @@ module Google
|
|
8346
8466
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Cve]
|
8347
8467
|
attr_accessor :cve
|
8348
8468
|
|
8469
|
+
# Represents one or more Common Weakness Enumeration (CWE) information on this
|
8470
|
+
# vulnerability.
|
8471
|
+
# Corresponds to the JSON property `cwes`
|
8472
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Cwe>]
|
8473
|
+
attr_accessor :cwes
|
8474
|
+
|
8349
8475
|
# Package is a generic definition of a package.
|
8350
8476
|
# Corresponds to the JSON property `fixedPackage`
|
8351
8477
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Package]
|
@@ -8356,6 +8482,19 @@ module Google
|
|
8356
8482
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Package]
|
8357
8483
|
attr_accessor :offending_package
|
8358
8484
|
|
8485
|
+
# Provider provided risk_score based on multiple factors. The higher the risk
|
8486
|
+
# score, the more risky the vulnerability is.
|
8487
|
+
# Corresponds to the JSON property `providerRiskScore`
|
8488
|
+
# @return [Fixnum]
|
8489
|
+
attr_accessor :provider_risk_score
|
8490
|
+
|
8491
|
+
# Represents whether the vulnerability is reachable (detected via static
|
8492
|
+
# analysis)
|
8493
|
+
# Corresponds to the JSON property `reachable`
|
8494
|
+
# @return [Boolean]
|
8495
|
+
attr_accessor :reachable
|
8496
|
+
alias_method :reachable?, :reachable
|
8497
|
+
|
8359
8498
|
# SecurityBulletin are notifications of vulnerabilities of Google products.
|
8360
8499
|
# Corresponds to the JSON property `securityBulletin`
|
8361
8500
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2SecurityBulletin]
|
@@ -8368,8 +8507,11 @@ module Google
|
|
8368
8507
|
# Update properties of this object
|
8369
8508
|
def update!(**args)
|
8370
8509
|
@cve = args[:cve] if args.key?(:cve)
|
8510
|
+
@cwes = args[:cwes] if args.key?(:cwes)
|
8371
8511
|
@fixed_package = args[:fixed_package] if args.key?(:fixed_package)
|
8372
8512
|
@offending_package = args[:offending_package] if args.key?(:offending_package)
|
8513
|
+
@provider_risk_score = args[:provider_risk_score] if args.key?(:provider_risk_score)
|
8514
|
+
@reachable = args[:reachable] if args.key?(:reachable)
|
8373
8515
|
@security_bulletin = args[:security_bulletin] if args.key?(:security_bulletin)
|
8374
8516
|
end
|
8375
8517
|
end
|
@@ -10083,6 +10225,12 @@ module Google
|
|
10083
10225
|
# @return [Google::Apis::SecuritycenterV1beta2::Cve]
|
10084
10226
|
attr_accessor :cve
|
10085
10227
|
|
10228
|
+
# Represents one or more Common Weakness Enumeration (CWE) information on this
|
10229
|
+
# vulnerability.
|
10230
|
+
# Corresponds to the JSON property `cwes`
|
10231
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::Cwe>]
|
10232
|
+
attr_accessor :cwes
|
10233
|
+
|
10086
10234
|
# Package is a generic definition of a package.
|
10087
10235
|
# Corresponds to the JSON property `fixedPackage`
|
10088
10236
|
# @return [Google::Apis::SecuritycenterV1beta2::Package]
|
@@ -10093,6 +10241,19 @@ module Google
|
|
10093
10241
|
# @return [Google::Apis::SecuritycenterV1beta2::Package]
|
10094
10242
|
attr_accessor :offending_package
|
10095
10243
|
|
10244
|
+
# Provider provided risk_score based on multiple factors. The higher the risk
|
10245
|
+
# score, the more risky the vulnerability is.
|
10246
|
+
# Corresponds to the JSON property `providerRiskScore`
|
10247
|
+
# @return [Fixnum]
|
10248
|
+
attr_accessor :provider_risk_score
|
10249
|
+
|
10250
|
+
# Represents whether the vulnerability is reachable (detected via static
|
10251
|
+
# analysis)
|
10252
|
+
# Corresponds to the JSON property `reachable`
|
10253
|
+
# @return [Boolean]
|
10254
|
+
attr_accessor :reachable
|
10255
|
+
alias_method :reachable?, :reachable
|
10256
|
+
|
10096
10257
|
# SecurityBulletin are notifications of vulnerabilities of Google products.
|
10097
10258
|
# Corresponds to the JSON property `securityBulletin`
|
10098
10259
|
# @return [Google::Apis::SecuritycenterV1beta2::SecurityBulletin]
|
@@ -10105,8 +10266,11 @@ module Google
|
|
10105
10266
|
# Update properties of this object
|
10106
10267
|
def update!(**args)
|
10107
10268
|
@cve = args[:cve] if args.key?(:cve)
|
10269
|
+
@cwes = args[:cwes] if args.key?(:cwes)
|
10108
10270
|
@fixed_package = args[:fixed_package] if args.key?(:fixed_package)
|
10109
10271
|
@offending_package = args[:offending_package] if args.key?(:offending_package)
|
10272
|
+
@provider_risk_score = args[:provider_risk_score] if args.key?(:provider_risk_score)
|
10273
|
+
@reachable = args[:reachable] if args.key?(:reachable)
|
10110
10274
|
@security_bulletin = args[:security_bulletin] if args.key?(:security_bulletin)
|
10111
10275
|
end
|
10112
10276
|
end
|
@@ -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.78.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250315"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -124,6 +124,12 @@ module Google
|
|
124
124
|
include Google::Apis::Core::JsonObjectSupport
|
125
125
|
end
|
126
126
|
|
127
|
+
class Chokepoint
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
|
+
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
131
|
+
end
|
132
|
+
|
127
133
|
class CloudArmor
|
128
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
135
|
|
@@ -208,6 +214,12 @@ module Google
|
|
208
214
|
include Google::Apis::Core::JsonObjectSupport
|
209
215
|
end
|
210
216
|
|
217
|
+
class Cwe
|
218
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
|
+
|
220
|
+
include Google::Apis::Core::JsonObjectSupport
|
221
|
+
end
|
222
|
+
|
211
223
|
class DataAccessEvent
|
212
224
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
213
225
|
|
@@ -586,6 +598,12 @@ module Google
|
|
586
598
|
include Google::Apis::Core::JsonObjectSupport
|
587
599
|
end
|
588
600
|
|
601
|
+
class GoogleCloudSecuritycenterV2Chokepoint
|
602
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
603
|
+
|
604
|
+
include Google::Apis::Core::JsonObjectSupport
|
605
|
+
end
|
606
|
+
|
589
607
|
class GoogleCloudSecuritycenterV2CloudArmor
|
590
608
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
591
609
|
|
@@ -652,6 +670,12 @@ module Google
|
|
652
670
|
include Google::Apis::Core::JsonObjectSupport
|
653
671
|
end
|
654
672
|
|
673
|
+
class GoogleCloudSecuritycenterV2Cwe
|
674
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
675
|
+
|
676
|
+
include Google::Apis::Core::JsonObjectSupport
|
677
|
+
end
|
678
|
+
|
655
679
|
class GoogleCloudSecuritycenterV2DataAccessEvent
|
656
680
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
657
681
|
|
@@ -1602,6 +1626,13 @@ module Google
|
|
1602
1626
|
end
|
1603
1627
|
end
|
1604
1628
|
|
1629
|
+
class Chokepoint
|
1630
|
+
# @private
|
1631
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1632
|
+
collection :related_findings, as: 'relatedFindings'
|
1633
|
+
end
|
1634
|
+
end
|
1635
|
+
|
1605
1636
|
class CloudArmor
|
1606
1637
|
# @private
|
1607
1638
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1760,6 +1791,15 @@ module Google
|
|
1760
1791
|
end
|
1761
1792
|
end
|
1762
1793
|
|
1794
|
+
class Cwe
|
1795
|
+
# @private
|
1796
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1797
|
+
property :id, as: 'id'
|
1798
|
+
collection :references, as: 'references', class: Google::Apis::SecuritycenterV1beta2::Reference, decorator: Google::Apis::SecuritycenterV1beta2::Reference::Representation
|
1799
|
+
|
1800
|
+
end
|
1801
|
+
end
|
1802
|
+
|
1763
1803
|
class DataAccessEvent
|
1764
1804
|
# @private
|
1765
1805
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1926,6 +1966,8 @@ module Google
|
|
1926
1966
|
|
1927
1967
|
property :canonical_name, as: 'canonicalName'
|
1928
1968
|
property :category, as: 'category'
|
1969
|
+
property :chokepoint, as: 'chokepoint', class: Google::Apis::SecuritycenterV1beta2::Chokepoint, decorator: Google::Apis::SecuritycenterV1beta2::Chokepoint::Representation
|
1970
|
+
|
1929
1971
|
property :cloud_armor, as: 'cloudArmor', class: Google::Apis::SecuritycenterV1beta2::CloudArmor, decorator: Google::Apis::SecuritycenterV1beta2::CloudArmor::Representation
|
1930
1972
|
|
1931
1973
|
property :cloud_dlp_data_profile, as: 'cloudDlpDataProfile', class: Google::Apis::SecuritycenterV1beta2::CloudDlpDataProfile, decorator: Google::Apis::SecuritycenterV1beta2::CloudDlpDataProfile::Representation
|
@@ -2528,6 +2570,13 @@ module Google
|
|
2528
2570
|
end
|
2529
2571
|
end
|
2530
2572
|
|
2573
|
+
class GoogleCloudSecuritycenterV2Chokepoint
|
2574
|
+
# @private
|
2575
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2576
|
+
collection :related_findings, as: 'relatedFindings'
|
2577
|
+
end
|
2578
|
+
end
|
2579
|
+
|
2531
2580
|
class GoogleCloudSecuritycenterV2CloudArmor
|
2532
2581
|
# @private
|
2533
2582
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2652,6 +2701,15 @@ module Google
|
|
2652
2701
|
end
|
2653
2702
|
end
|
2654
2703
|
|
2704
|
+
class GoogleCloudSecuritycenterV2Cwe
|
2705
|
+
# @private
|
2706
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2707
|
+
property :id, as: 'id'
|
2708
|
+
collection :references, as: 'references', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Reference, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Reference::Representation
|
2709
|
+
|
2710
|
+
end
|
2711
|
+
end
|
2712
|
+
|
2655
2713
|
class GoogleCloudSecuritycenterV2DataAccessEvent
|
2656
2714
|
# @private
|
2657
2715
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2806,6 +2864,8 @@ module Google
|
|
2806
2864
|
|
2807
2865
|
property :canonical_name, as: 'canonicalName'
|
2808
2866
|
property :category, as: 'category'
|
2867
|
+
property :chokepoint, as: 'chokepoint', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Chokepoint, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Chokepoint::Representation
|
2868
|
+
|
2809
2869
|
property :cloud_armor, as: 'cloudArmor', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2CloudArmor, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2CloudArmor::Representation
|
2810
2870
|
|
2811
2871
|
property :cloud_dlp_data_profile, as: 'cloudDlpDataProfile', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2CloudDlpDataProfile, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2CloudDlpDataProfile::Representation
|
@@ -3540,10 +3600,14 @@ module Google
|
|
3540
3600
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3541
3601
|
property :cve, as: 'cve', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Cve, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Cve::Representation
|
3542
3602
|
|
3603
|
+
collection :cwes, as: 'cwes', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Cwe, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Cwe::Representation
|
3604
|
+
|
3543
3605
|
property :fixed_package, as: 'fixedPackage', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Package, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Package::Representation
|
3544
3606
|
|
3545
3607
|
property :offending_package, as: 'offendingPackage', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Package, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Package::Representation
|
3546
3608
|
|
3609
|
+
property :provider_risk_score, :numeric_string => true, as: 'providerRiskScore'
|
3610
|
+
property :reachable, as: 'reachable'
|
3547
3611
|
property :security_bulletin, as: 'securityBulletin', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2SecurityBulletin, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2SecurityBulletin::Representation
|
3548
3612
|
|
3549
3613
|
end
|
@@ -4018,10 +4082,14 @@ module Google
|
|
4018
4082
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4019
4083
|
property :cve, as: 'cve', class: Google::Apis::SecuritycenterV1beta2::Cve, decorator: Google::Apis::SecuritycenterV1beta2::Cve::Representation
|
4020
4084
|
|
4085
|
+
collection :cwes, as: 'cwes', class: Google::Apis::SecuritycenterV1beta2::Cwe, decorator: Google::Apis::SecuritycenterV1beta2::Cwe::Representation
|
4086
|
+
|
4021
4087
|
property :fixed_package, as: 'fixedPackage', class: Google::Apis::SecuritycenterV1beta2::Package, decorator: Google::Apis::SecuritycenterV1beta2::Package::Representation
|
4022
4088
|
|
4023
4089
|
property :offending_package, as: 'offendingPackage', class: Google::Apis::SecuritycenterV1beta2::Package, decorator: Google::Apis::SecuritycenterV1beta2::Package::Representation
|
4024
4090
|
|
4091
|
+
property :provider_risk_score, :numeric_string => true, as: 'providerRiskScore'
|
4092
|
+
property :reachable, as: 'reachable'
|
4025
4093
|
property :security_bulletin, as: 'securityBulletin', class: Google::Apis::SecuritycenterV1beta2::SecurityBulletin, decorator: Google::Apis::SecuritycenterV1beta2::SecurityBulletin::Representation
|
4026
4094
|
|
4027
4095
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.78.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-23 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.78.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|