google-apis-securitycenter_v1beta1 0.84.0 → 0.86.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: 6e0a77ff47d58634a344a4d5899edb53ceac68cfcbdc81c145b536f060e22fc6
|
4
|
+
data.tar.gz: a624db05cbcdc755e1b01ebee362a580f81e1c710eb0bc2ead8243deaaf7f004
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b19ba3ff872a0b32402181ea3f08a1bc67b121a619f5ee199912faa061c7fcc0678fea864e4c09308ffb15c9f10e7591e260fdcee0f6dbc4d507c5a2d7717828
|
7
|
+
data.tar.gz: f0e3e4ffa9902eb878510a891f7aca5837c38e3eab37d327eefd95e5d721c7ae84aab63d2bde1d6080be56ee1335981352ef4f2b86d53265d25a76bb382de8e4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta1
|
2
2
|
|
3
|
+
### v0.86.0 (2025-03-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250315
|
6
|
+
|
7
|
+
### v0.85.0 (2025-03-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250308
|
10
|
+
|
3
11
|
### v0.84.0 (2025-03-09)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250228
|
@@ -989,6 +989,30 @@ module Google
|
|
989
989
|
end
|
990
990
|
end
|
991
991
|
|
992
|
+
# Contains details about a chokepoint, which is a resource or resource group
|
993
|
+
# where high-risk attack paths converge, based on [attack path simulations] (
|
994
|
+
# https://cloud.google.com/security-command-center/docs/attack-exposure-learn#
|
995
|
+
# attack_path_simulations).
|
996
|
+
class Chokepoint
|
997
|
+
include Google::Apis::Core::Hashable
|
998
|
+
|
999
|
+
# List of resource names of findings associated with this chokepoint. For
|
1000
|
+
# example, organizations/123/sources/456/findings/789. This list will have at
|
1001
|
+
# most 100 findings.
|
1002
|
+
# Corresponds to the JSON property `relatedFindings`
|
1003
|
+
# @return [Array<String>]
|
1004
|
+
attr_accessor :related_findings
|
1005
|
+
|
1006
|
+
def initialize(**args)
|
1007
|
+
update!(**args)
|
1008
|
+
end
|
1009
|
+
|
1010
|
+
# Update properties of this object
|
1011
|
+
def update!(**args)
|
1012
|
+
@related_findings = args[:related_findings] if args.key?(:related_findings)
|
1013
|
+
end
|
1014
|
+
end
|
1015
|
+
|
992
1016
|
# Fields related to Google Cloud Armor findings.
|
993
1017
|
class CloudArmor
|
994
1018
|
include Google::Apis::Core::Hashable
|
@@ -1531,6 +1555,33 @@ module Google
|
|
1531
1555
|
end
|
1532
1556
|
end
|
1533
1557
|
|
1558
|
+
# CWE stands for Common Weakness Enumeration. Information about this weakness,
|
1559
|
+
# as described by [CWE](https://cwe.mitre.org/).
|
1560
|
+
class Cwe
|
1561
|
+
include Google::Apis::Core::Hashable
|
1562
|
+
|
1563
|
+
# The CWE identifier, e.g. CWE-94
|
1564
|
+
# Corresponds to the JSON property `id`
|
1565
|
+
# @return [String]
|
1566
|
+
attr_accessor :id
|
1567
|
+
|
1568
|
+
# Any reference to the details on the CWE, for example, https://cwe.mitre.org/
|
1569
|
+
# data/definitions/94.html
|
1570
|
+
# Corresponds to the JSON property `references`
|
1571
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::Reference>]
|
1572
|
+
attr_accessor :references
|
1573
|
+
|
1574
|
+
def initialize(**args)
|
1575
|
+
update!(**args)
|
1576
|
+
end
|
1577
|
+
|
1578
|
+
# Update properties of this object
|
1579
|
+
def update!(**args)
|
1580
|
+
@id = args[:id] if args.key?(:id)
|
1581
|
+
@references = args[:references] if args.key?(:references)
|
1582
|
+
end
|
1583
|
+
end
|
1584
|
+
|
1534
1585
|
# Details about a data access attempt made by a principal not authorized under
|
1535
1586
|
# applicable data security policy.
|
1536
1587
|
class DataAccessEvent
|
@@ -2114,6 +2165,14 @@ module Google
|
|
2114
2165
|
# @return [String]
|
2115
2166
|
attr_accessor :category
|
2116
2167
|
|
2168
|
+
# Contains details about a chokepoint, which is a resource or resource group
|
2169
|
+
# where high-risk attack paths converge, based on [attack path simulations] (
|
2170
|
+
# https://cloud.google.com/security-command-center/docs/attack-exposure-learn#
|
2171
|
+
# attack_path_simulations).
|
2172
|
+
# Corresponds to the JSON property `chokepoint`
|
2173
|
+
# @return [Google::Apis::SecuritycenterV1beta1::Chokepoint]
|
2174
|
+
attr_accessor :chokepoint
|
2175
|
+
|
2117
2176
|
# Fields related to Google Cloud Armor findings.
|
2118
2177
|
# Corresponds to the JSON property `cloudArmor`
|
2119
2178
|
# @return [Google::Apis::SecuritycenterV1beta1::CloudArmor]
|
@@ -2447,6 +2506,7 @@ module Google
|
|
2447
2506
|
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
2448
2507
|
@canonical_name = args[:canonical_name] if args.key?(:canonical_name)
|
2449
2508
|
@category = args[:category] if args.key?(:category)
|
2509
|
+
@chokepoint = args[:chokepoint] if args.key?(:chokepoint)
|
2450
2510
|
@cloud_armor = args[:cloud_armor] if args.key?(:cloud_armor)
|
2451
2511
|
@cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
|
2452
2512
|
@cloud_dlp_inspection = args[:cloud_dlp_inspection] if args.key?(:cloud_dlp_inspection)
|
@@ -4844,6 +4904,30 @@ module Google
|
|
4844
4904
|
end
|
4845
4905
|
end
|
4846
4906
|
|
4907
|
+
# Contains details about a chokepoint, which is a resource or resource group
|
4908
|
+
# where high-risk attack paths converge, based on [attack path simulations] (
|
4909
|
+
# https://cloud.google.com/security-command-center/docs/attack-exposure-learn#
|
4910
|
+
# attack_path_simulations).
|
4911
|
+
class GoogleCloudSecuritycenterV2Chokepoint
|
4912
|
+
include Google::Apis::Core::Hashable
|
4913
|
+
|
4914
|
+
# List of resource names of findings associated with this chokepoint. For
|
4915
|
+
# example, organizations/123/sources/456/findings/789. This list will have at
|
4916
|
+
# most 100 findings.
|
4917
|
+
# Corresponds to the JSON property `relatedFindings`
|
4918
|
+
# @return [Array<String>]
|
4919
|
+
attr_accessor :related_findings
|
4920
|
+
|
4921
|
+
def initialize(**args)
|
4922
|
+
update!(**args)
|
4923
|
+
end
|
4924
|
+
|
4925
|
+
# Update properties of this object
|
4926
|
+
def update!(**args)
|
4927
|
+
@related_findings = args[:related_findings] if args.key?(:related_findings)
|
4928
|
+
end
|
4929
|
+
end
|
4930
|
+
|
4847
4931
|
# Fields related to Google Cloud Armor findings.
|
4848
4932
|
class GoogleCloudSecuritycenterV2CloudArmor
|
4849
4933
|
include Google::Apis::Core::Hashable
|
@@ -5325,6 +5409,33 @@ module Google
|
|
5325
5409
|
end
|
5326
5410
|
end
|
5327
5411
|
|
5412
|
+
# CWE stands for Common Weakness Enumeration. Information about this weakness,
|
5413
|
+
# as described by [CWE](https://cwe.mitre.org/).
|
5414
|
+
class GoogleCloudSecuritycenterV2Cwe
|
5415
|
+
include Google::Apis::Core::Hashable
|
5416
|
+
|
5417
|
+
# The CWE identifier, e.g. CWE-94
|
5418
|
+
# Corresponds to the JSON property `id`
|
5419
|
+
# @return [String]
|
5420
|
+
attr_accessor :id
|
5421
|
+
|
5422
|
+
# Any reference to the details on the CWE, for example, https://cwe.mitre.org/
|
5423
|
+
# data/definitions/94.html
|
5424
|
+
# Corresponds to the JSON property `references`
|
5425
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Reference>]
|
5426
|
+
attr_accessor :references
|
5427
|
+
|
5428
|
+
def initialize(**args)
|
5429
|
+
update!(**args)
|
5430
|
+
end
|
5431
|
+
|
5432
|
+
# Update properties of this object
|
5433
|
+
def update!(**args)
|
5434
|
+
@id = args[:id] if args.key?(:id)
|
5435
|
+
@references = args[:references] if args.key?(:references)
|
5436
|
+
end
|
5437
|
+
end
|
5438
|
+
|
5328
5439
|
# Details about a data access attempt made by a principal not authorized under
|
5329
5440
|
# applicable data security policy.
|
5330
5441
|
class GoogleCloudSecuritycenterV2DataAccessEvent
|
@@ -5931,6 +6042,14 @@ module Google
|
|
5931
6042
|
# @return [String]
|
5932
6043
|
attr_accessor :category
|
5933
6044
|
|
6045
|
+
# Contains details about a chokepoint, which is a resource or resource group
|
6046
|
+
# where high-risk attack paths converge, based on [attack path simulations] (
|
6047
|
+
# https://cloud.google.com/security-command-center/docs/attack-exposure-learn#
|
6048
|
+
# attack_path_simulations).
|
6049
|
+
# Corresponds to the JSON property `chokepoint`
|
6050
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Chokepoint]
|
6051
|
+
attr_accessor :chokepoint
|
6052
|
+
|
5934
6053
|
# Fields related to Google Cloud Armor findings.
|
5935
6054
|
# Corresponds to the JSON property `cloudArmor`
|
5936
6055
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudArmor]
|
@@ -6274,6 +6393,7 @@ module Google
|
|
6274
6393
|
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
6275
6394
|
@canonical_name = args[:canonical_name] if args.key?(:canonical_name)
|
6276
6395
|
@category = args[:category] if args.key?(:category)
|
6396
|
+
@chokepoint = args[:chokepoint] if args.key?(:chokepoint)
|
6277
6397
|
@cloud_armor = args[:cloud_armor] if args.key?(:cloud_armor)
|
6278
6398
|
@cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
|
6279
6399
|
@cloud_dlp_inspection = args[:cloud_dlp_inspection] if args.key?(:cloud_dlp_inspection)
|
@@ -8662,6 +8782,12 @@ module Google
|
|
8662
8782
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Cve]
|
8663
8783
|
attr_accessor :cve
|
8664
8784
|
|
8785
|
+
# Represents one or more Common Weakness Enumeration (CWE) information on this
|
8786
|
+
# vulnerability.
|
8787
|
+
# Corresponds to the JSON property `cwes`
|
8788
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Cwe>]
|
8789
|
+
attr_accessor :cwes
|
8790
|
+
|
8665
8791
|
# Package is a generic definition of a package.
|
8666
8792
|
# Corresponds to the JSON property `fixedPackage`
|
8667
8793
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Package]
|
@@ -8672,6 +8798,19 @@ module Google
|
|
8672
8798
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Package]
|
8673
8799
|
attr_accessor :offending_package
|
8674
8800
|
|
8801
|
+
# Provider provided risk_score based on multiple factors. The higher the risk
|
8802
|
+
# score, the more risky the vulnerability is.
|
8803
|
+
# Corresponds to the JSON property `providerRiskScore`
|
8804
|
+
# @return [Fixnum]
|
8805
|
+
attr_accessor :provider_risk_score
|
8806
|
+
|
8807
|
+
# Represents whether the vulnerability is reachable (detected via static
|
8808
|
+
# analysis)
|
8809
|
+
# Corresponds to the JSON property `reachable`
|
8810
|
+
# @return [Boolean]
|
8811
|
+
attr_accessor :reachable
|
8812
|
+
alias_method :reachable?, :reachable
|
8813
|
+
|
8675
8814
|
# SecurityBulletin are notifications of vulnerabilities of Google products.
|
8676
8815
|
# Corresponds to the JSON property `securityBulletin`
|
8677
8816
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SecurityBulletin]
|
@@ -8684,8 +8823,11 @@ module Google
|
|
8684
8823
|
# Update properties of this object
|
8685
8824
|
def update!(**args)
|
8686
8825
|
@cve = args[:cve] if args.key?(:cve)
|
8826
|
+
@cwes = args[:cwes] if args.key?(:cwes)
|
8687
8827
|
@fixed_package = args[:fixed_package] if args.key?(:fixed_package)
|
8688
8828
|
@offending_package = args[:offending_package] if args.key?(:offending_package)
|
8829
|
+
@provider_risk_score = args[:provider_risk_score] if args.key?(:provider_risk_score)
|
8830
|
+
@reachable = args[:reachable] if args.key?(:reachable)
|
8689
8831
|
@security_bulletin = args[:security_bulletin] if args.key?(:security_bulletin)
|
8690
8832
|
end
|
8691
8833
|
end
|
@@ -11031,6 +11173,12 @@ module Google
|
|
11031
11173
|
# @return [Google::Apis::SecuritycenterV1beta1::Cve]
|
11032
11174
|
attr_accessor :cve
|
11033
11175
|
|
11176
|
+
# Represents one or more Common Weakness Enumeration (CWE) information on this
|
11177
|
+
# vulnerability.
|
11178
|
+
# Corresponds to the JSON property `cwes`
|
11179
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::Cwe>]
|
11180
|
+
attr_accessor :cwes
|
11181
|
+
|
11034
11182
|
# Package is a generic definition of a package.
|
11035
11183
|
# Corresponds to the JSON property `fixedPackage`
|
11036
11184
|
# @return [Google::Apis::SecuritycenterV1beta1::Package]
|
@@ -11041,6 +11189,19 @@ module Google
|
|
11041
11189
|
# @return [Google::Apis::SecuritycenterV1beta1::Package]
|
11042
11190
|
attr_accessor :offending_package
|
11043
11191
|
|
11192
|
+
# Provider provided risk_score based on multiple factors. The higher the risk
|
11193
|
+
# score, the more risky the vulnerability is.
|
11194
|
+
# Corresponds to the JSON property `providerRiskScore`
|
11195
|
+
# @return [Fixnum]
|
11196
|
+
attr_accessor :provider_risk_score
|
11197
|
+
|
11198
|
+
# Represents whether the vulnerability is reachable (detected via static
|
11199
|
+
# analysis)
|
11200
|
+
# Corresponds to the JSON property `reachable`
|
11201
|
+
# @return [Boolean]
|
11202
|
+
attr_accessor :reachable
|
11203
|
+
alias_method :reachable?, :reachable
|
11204
|
+
|
11044
11205
|
# SecurityBulletin are notifications of vulnerabilities of Google products.
|
11045
11206
|
# Corresponds to the JSON property `securityBulletin`
|
11046
11207
|
# @return [Google::Apis::SecuritycenterV1beta1::SecurityBulletin]
|
@@ -11053,8 +11214,11 @@ module Google
|
|
11053
11214
|
# Update properties of this object
|
11054
11215
|
def update!(**args)
|
11055
11216
|
@cve = args[:cve] if args.key?(:cve)
|
11217
|
+
@cwes = args[:cwes] if args.key?(:cwes)
|
11056
11218
|
@fixed_package = args[:fixed_package] if args.key?(:fixed_package)
|
11057
11219
|
@offending_package = args[:offending_package] if args.key?(:offending_package)
|
11220
|
+
@provider_risk_score = args[:provider_risk_score] if args.key?(:provider_risk_score)
|
11221
|
+
@reachable = args[:reachable] if args.key?(:reachable)
|
11058
11222
|
@security_bulletin = args[:security_bulletin] if args.key?(:security_bulletin)
|
11059
11223
|
end
|
11060
11224
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SecuritycenterV1beta1
|
18
18
|
# Version of the google-apis-securitycenter_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.86.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
|
@@ -160,6 +160,12 @@ module Google
|
|
160
160
|
include Google::Apis::Core::JsonObjectSupport
|
161
161
|
end
|
162
162
|
|
163
|
+
class Chokepoint
|
164
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
|
+
|
166
|
+
include Google::Apis::Core::JsonObjectSupport
|
167
|
+
end
|
168
|
+
|
163
169
|
class CloudArmor
|
164
170
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
171
|
|
@@ -232,6 +238,12 @@ module Google
|
|
232
238
|
include Google::Apis::Core::JsonObjectSupport
|
233
239
|
end
|
234
240
|
|
241
|
+
class Cwe
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
+
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
245
|
+
end
|
246
|
+
|
235
247
|
class DataAccessEvent
|
236
248
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
249
|
|
@@ -628,6 +640,12 @@ module Google
|
|
628
640
|
include Google::Apis::Core::JsonObjectSupport
|
629
641
|
end
|
630
642
|
|
643
|
+
class GoogleCloudSecuritycenterV2Chokepoint
|
644
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
645
|
+
|
646
|
+
include Google::Apis::Core::JsonObjectSupport
|
647
|
+
end
|
648
|
+
|
631
649
|
class GoogleCloudSecuritycenterV2CloudArmor
|
632
650
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
633
651
|
|
@@ -694,6 +712,12 @@ module Google
|
|
694
712
|
include Google::Apis::Core::JsonObjectSupport
|
695
713
|
end
|
696
714
|
|
715
|
+
class GoogleCloudSecuritycenterV2Cwe
|
716
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
717
|
+
|
718
|
+
include Google::Apis::Core::JsonObjectSupport
|
719
|
+
end
|
720
|
+
|
697
721
|
class GoogleCloudSecuritycenterV2DataAccessEvent
|
698
722
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
699
723
|
|
@@ -1789,6 +1813,13 @@ module Google
|
|
1789
1813
|
end
|
1790
1814
|
end
|
1791
1815
|
|
1816
|
+
class Chokepoint
|
1817
|
+
# @private
|
1818
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1819
|
+
collection :related_findings, as: 'relatedFindings'
|
1820
|
+
end
|
1821
|
+
end
|
1822
|
+
|
1792
1823
|
class CloudArmor
|
1793
1824
|
# @private
|
1794
1825
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1927,6 +1958,15 @@ module Google
|
|
1927
1958
|
end
|
1928
1959
|
end
|
1929
1960
|
|
1961
|
+
class Cwe
|
1962
|
+
# @private
|
1963
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1964
|
+
property :id, as: 'id'
|
1965
|
+
collection :references, as: 'references', class: Google::Apis::SecuritycenterV1beta1::Reference, decorator: Google::Apis::SecuritycenterV1beta1::Reference::Representation
|
1966
|
+
|
1967
|
+
end
|
1968
|
+
end
|
1969
|
+
|
1930
1970
|
class DataAccessEvent
|
1931
1971
|
# @private
|
1932
1972
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2079,6 +2119,8 @@ module Google
|
|
2079
2119
|
|
2080
2120
|
property :canonical_name, as: 'canonicalName'
|
2081
2121
|
property :category, as: 'category'
|
2122
|
+
property :chokepoint, as: 'chokepoint', class: Google::Apis::SecuritycenterV1beta1::Chokepoint, decorator: Google::Apis::SecuritycenterV1beta1::Chokepoint::Representation
|
2123
|
+
|
2082
2124
|
property :cloud_armor, as: 'cloudArmor', class: Google::Apis::SecuritycenterV1beta1::CloudArmor, decorator: Google::Apis::SecuritycenterV1beta1::CloudArmor::Representation
|
2083
2125
|
|
2084
2126
|
property :cloud_dlp_data_profile, as: 'cloudDlpDataProfile', class: Google::Apis::SecuritycenterV1beta1::CloudDlpDataProfile, decorator: Google::Apis::SecuritycenterV1beta1::CloudDlpDataProfile::Representation
|
@@ -2721,6 +2763,13 @@ module Google
|
|
2721
2763
|
end
|
2722
2764
|
end
|
2723
2765
|
|
2766
|
+
class GoogleCloudSecuritycenterV2Chokepoint
|
2767
|
+
# @private
|
2768
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2769
|
+
collection :related_findings, as: 'relatedFindings'
|
2770
|
+
end
|
2771
|
+
end
|
2772
|
+
|
2724
2773
|
class GoogleCloudSecuritycenterV2CloudArmor
|
2725
2774
|
# @private
|
2726
2775
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2845,6 +2894,15 @@ module Google
|
|
2845
2894
|
end
|
2846
2895
|
end
|
2847
2896
|
|
2897
|
+
class GoogleCloudSecuritycenterV2Cwe
|
2898
|
+
# @private
|
2899
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2900
|
+
property :id, as: 'id'
|
2901
|
+
collection :references, as: 'references', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Reference, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Reference::Representation
|
2902
|
+
|
2903
|
+
end
|
2904
|
+
end
|
2905
|
+
|
2848
2906
|
class GoogleCloudSecuritycenterV2DataAccessEvent
|
2849
2907
|
# @private
|
2850
2908
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2999,6 +3057,8 @@ module Google
|
|
2999
3057
|
|
3000
3058
|
property :canonical_name, as: 'canonicalName'
|
3001
3059
|
property :category, as: 'category'
|
3060
|
+
property :chokepoint, as: 'chokepoint', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Chokepoint, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Chokepoint::Representation
|
3061
|
+
|
3002
3062
|
property :cloud_armor, as: 'cloudArmor', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudArmor, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudArmor::Representation
|
3003
3063
|
|
3004
3064
|
property :cloud_dlp_data_profile, as: 'cloudDlpDataProfile', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudDlpDataProfile, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudDlpDataProfile::Representation
|
@@ -3733,10 +3793,14 @@ module Google
|
|
3733
3793
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3734
3794
|
property :cve, as: 'cve', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Cve, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Cve::Representation
|
3735
3795
|
|
3796
|
+
collection :cwes, as: 'cwes', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Cwe, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Cwe::Representation
|
3797
|
+
|
3736
3798
|
property :fixed_package, as: 'fixedPackage', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Package, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Package::Representation
|
3737
3799
|
|
3738
3800
|
property :offending_package, as: 'offendingPackage', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Package, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Package::Representation
|
3739
3801
|
|
3802
|
+
property :provider_risk_score, :numeric_string => true, as: 'providerRiskScore'
|
3803
|
+
property :reachable, as: 'reachable'
|
3740
3804
|
property :security_bulletin, as: 'securityBulletin', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SecurityBulletin, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SecurityBulletin::Representation
|
3741
3805
|
|
3742
3806
|
end
|
@@ -4356,10 +4420,14 @@ module Google
|
|
4356
4420
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4357
4421
|
property :cve, as: 'cve', class: Google::Apis::SecuritycenterV1beta1::Cve, decorator: Google::Apis::SecuritycenterV1beta1::Cve::Representation
|
4358
4422
|
|
4423
|
+
collection :cwes, as: 'cwes', class: Google::Apis::SecuritycenterV1beta1::Cwe, decorator: Google::Apis::SecuritycenterV1beta1::Cwe::Representation
|
4424
|
+
|
4359
4425
|
property :fixed_package, as: 'fixedPackage', class: Google::Apis::SecuritycenterV1beta1::Package, decorator: Google::Apis::SecuritycenterV1beta1::Package::Representation
|
4360
4426
|
|
4361
4427
|
property :offending_package, as: 'offendingPackage', class: Google::Apis::SecuritycenterV1beta1::Package, decorator: Google::Apis::SecuritycenterV1beta1::Package::Representation
|
4362
4428
|
|
4429
|
+
property :provider_risk_score, :numeric_string => true, as: 'providerRiskScore'
|
4430
|
+
property :reachable, as: 'reachable'
|
4363
4431
|
property :security_bulletin, as: 'securityBulletin', class: Google::Apis::SecuritycenterV1beta1::SecurityBulletin, decorator: Google::Apis::SecuritycenterV1beta1::SecurityBulletin::Representation
|
4364
4432
|
|
4365
4433
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-securitycenter_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.86.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_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.86.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|