google-apis-securitycenter_v1 0.93.0 → 0.95.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: 29ea2a9f8707a8898a121a01151cb2ea2408d06304d00976618dc78f930177e7
4
- data.tar.gz: '08e5dd663d09776416e1d447e8f176bd861f0d131f390379701118e64fd6ab60'
3
+ metadata.gz: e34a6386ddd9bb16b19aa79205b96bad28bf389f9712902af36e3f88d8b89fa6
4
+ data.tar.gz: 55d91f65b4b0cba18c0c12a9d4f27b4ac91c28cf3119a71a46dd867014d64136
5
5
  SHA512:
6
- metadata.gz: cb52a3de3b14652290ab3916ca78fb4cb8edda5d03470fef9e815c0e7eaf471a0a91b63e037fae28fce09159b930afba1178609c14fa734054c76f63cc75c0c8
7
- data.tar.gz: fc91f57189426e9af5970584073f39abd2eebff90e4e4e4241a5e2823ec09d3eef796b558dd3476882c3676a92380b8cb4423e7aba03c40762ad498bbcf54c0e
6
+ metadata.gz: efa991cc32c846318f453eb13bac349aaca1a7729a4ca3324a394e5dc4caf683096a38f42814c39d3051150c0417bbca8df8574e9ed5d0bb4808cdc237bb8423
7
+ data.tar.gz: 2b84b8e95e58f55617fddba8a7e6cab3314e2517c37950d5a8f22b67c1e862ab362a0730092ea333a7f34f91fe463cc5e46ebf9c31762e884f4abd85764d0557
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-securitycenter_v1
2
2
 
3
+ ### v0.95.0 (2025-03-16)
4
+
5
+ * Regenerated from discovery document revision 20250308
6
+
7
+ ### v0.94.0 (2025-03-09)
8
+
9
+ * Regenerated from discovery document revision 20250228
10
+
3
11
  ### v0.93.0 (2025-02-26)
4
12
 
5
13
  * Regenerated from discovery document revision 20250218
@@ -1861,6 +1861,33 @@ module Google
1861
1861
  end
1862
1862
  end
1863
1863
 
1864
+ # CWE stands for Common Weakness Enumeration. Information about this weakness,
1865
+ # as described by [CWE](https://cwe.mitre.org/).
1866
+ class Cwe
1867
+ include Google::Apis::Core::Hashable
1868
+
1869
+ # The CWE identifier, e.g. CWE-94
1870
+ # Corresponds to the JSON property `id`
1871
+ # @return [String]
1872
+ attr_accessor :id
1873
+
1874
+ # Any reference to the details on the CWE, for example, https://cwe.mitre.org/
1875
+ # data/definitions/94.html
1876
+ # Corresponds to the JSON property `references`
1877
+ # @return [Array<Google::Apis::SecuritycenterV1::Reference>]
1878
+ attr_accessor :references
1879
+
1880
+ def initialize(**args)
1881
+ update!(**args)
1882
+ end
1883
+
1884
+ # Update properties of this object
1885
+ def update!(**args)
1886
+ @id = args[:id] if args.key?(:id)
1887
+ @references = args[:references] if args.key?(:references)
1888
+ end
1889
+ end
1890
+
1864
1891
  # Details about a data access attempt made by a principal not authorized under
1865
1892
  # applicable data security policy.
1866
1893
  class DataAccessEvent
@@ -1978,8 +2005,8 @@ module Google
1978
2005
 
1979
2006
  # Maximum duration of retention allowed from the DRD control. This comes from
1980
2007
  # the DRD control where users set a max TTL for their data. For example, suppose
1981
- # that a user set the max TTL for a Cloud Storage bucket to 90 days. However, an
1982
- # object in that bucket is 100 days old. In this case, a
2008
+ # that a user sets the max TTL for a Cloud Storage bucket to 90 days. However,
2009
+ # an object in that bucket is 100 days old. In this case, a
1983
2010
  # DataRetentionDeletionEvent will be generated for that Cloud Storage bucket,
1984
2011
  # and the max_retention_allowed is 90 days.
1985
2012
  # Corresponds to the JSON property `maxRetentionAllowed`
@@ -2111,7 +2138,7 @@ module Google
2111
2138
  include Google::Apis::Core::Hashable
2112
2139
 
2113
2140
  # The name of the disk, for example, "https://www.googleapis.com/compute/v1/
2114
- # projects/project-id/zones/zone-id/disks/disk-id".
2141
+ # projects/`project-id`/zones/`zone-id`/disks/`disk-id`".
2115
2142
  # Corresponds to the JSON property `name`
2116
2143
  # @return [String]
2117
2144
  attr_accessor :name
@@ -5675,6 +5702,33 @@ module Google
5675
5702
  end
5676
5703
  end
5677
5704
 
5705
+ # CWE stands for Common Weakness Enumeration. Information about this weakness,
5706
+ # as described by [CWE](https://cwe.mitre.org/).
5707
+ class GoogleCloudSecuritycenterV2Cwe
5708
+ include Google::Apis::Core::Hashable
5709
+
5710
+ # The CWE identifier, e.g. CWE-94
5711
+ # Corresponds to the JSON property `id`
5712
+ # @return [String]
5713
+ attr_accessor :id
5714
+
5715
+ # Any reference to the details on the CWE, for example, https://cwe.mitre.org/
5716
+ # data/definitions/94.html
5717
+ # Corresponds to the JSON property `references`
5718
+ # @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Reference>]
5719
+ attr_accessor :references
5720
+
5721
+ def initialize(**args)
5722
+ update!(**args)
5723
+ end
5724
+
5725
+ # Update properties of this object
5726
+ def update!(**args)
5727
+ @id = args[:id] if args.key?(:id)
5728
+ @references = args[:references] if args.key?(:references)
5729
+ end
5730
+ end
5731
+
5678
5732
  # Details about a data access attempt made by a principal not authorized under
5679
5733
  # applicable data security policy.
5680
5734
  class GoogleCloudSecuritycenterV2DataAccessEvent
@@ -5792,8 +5846,8 @@ module Google
5792
5846
 
5793
5847
  # Maximum duration of retention allowed from the DRD control. This comes from
5794
5848
  # the DRD control where users set a max TTL for their data. For example, suppose
5795
- # that a user set the max TTL for a Cloud Storage bucket to 90 days. However, an
5796
- # object in that bucket is 100 days old. In this case, a
5849
+ # that a user sets the max TTL for a Cloud Storage bucket to 90 days. However,
5850
+ # an object in that bucket is 100 days old. In this case, a
5797
5851
  # DataRetentionDeletionEvent will be generated for that Cloud Storage bucket,
5798
5852
  # and the max_retention_allowed is 90 days.
5799
5853
  # Corresponds to the JSON property `maxRetentionAllowed`
@@ -5925,7 +5979,7 @@ module Google
5925
5979
  include Google::Apis::Core::Hashable
5926
5980
 
5927
5981
  # The name of the disk, for example, "https://www.googleapis.com/compute/v1/
5928
- # projects/project-id/zones/zone-id/disks/disk-id".
5982
+ # projects/`project-id`/zones/`zone-id`/disks/`disk-id`".
5929
5983
  # Corresponds to the JSON property `name`
5930
5984
  # @return [String]
5931
5985
  attr_accessor :name
@@ -9012,6 +9066,12 @@ module Google
9012
9066
  # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Cve]
9013
9067
  attr_accessor :cve
9014
9068
 
9069
+ # Represents one or more Common Weakness Enumeration (CWE) information on this
9070
+ # vulnerability.
9071
+ # Corresponds to the JSON property `cwes`
9072
+ # @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Cwe>]
9073
+ attr_accessor :cwes
9074
+
9015
9075
  # Package is a generic definition of a package.
9016
9076
  # Corresponds to the JSON property `fixedPackage`
9017
9077
  # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Package]
@@ -9022,6 +9082,19 @@ module Google
9022
9082
  # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Package]
9023
9083
  attr_accessor :offending_package
9024
9084
 
9085
+ # Provider provided risk_score based on multiple factors. The higher the risk
9086
+ # score, the more risky the vulnerability is.
9087
+ # Corresponds to the JSON property `providerRiskScore`
9088
+ # @return [Fixnum]
9089
+ attr_accessor :provider_risk_score
9090
+
9091
+ # Represents whether the vulnerability is reachable (detected via static
9092
+ # analysis)
9093
+ # Corresponds to the JSON property `reachable`
9094
+ # @return [Boolean]
9095
+ attr_accessor :reachable
9096
+ alias_method :reachable?, :reachable
9097
+
9025
9098
  # SecurityBulletin are notifications of vulnerabilities of Google products.
9026
9099
  # Corresponds to the JSON property `securityBulletin`
9027
9100
  # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SecurityBulletin]
@@ -9034,8 +9107,11 @@ module Google
9034
9107
  # Update properties of this object
9035
9108
  def update!(**args)
9036
9109
  @cve = args[:cve] if args.key?(:cve)
9110
+ @cwes = args[:cwes] if args.key?(:cwes)
9037
9111
  @fixed_package = args[:fixed_package] if args.key?(:fixed_package)
9038
9112
  @offending_package = args[:offending_package] if args.key?(:offending_package)
9113
+ @provider_risk_score = args[:provider_risk_score] if args.key?(:provider_risk_score)
9114
+ @reachable = args[:reachable] if args.key?(:reachable)
9039
9115
  @security_bulletin = args[:security_bulletin] if args.key?(:security_bulletin)
9040
9116
  end
9041
9117
  end
@@ -12466,6 +12542,12 @@ module Google
12466
12542
  # @return [Google::Apis::SecuritycenterV1::Cve]
12467
12543
  attr_accessor :cve
12468
12544
 
12545
+ # Represents one or more Common Weakness Enumeration (CWE) information on this
12546
+ # vulnerability.
12547
+ # Corresponds to the JSON property `cwes`
12548
+ # @return [Array<Google::Apis::SecuritycenterV1::Cwe>]
12549
+ attr_accessor :cwes
12550
+
12469
12551
  # Package is a generic definition of a package.
12470
12552
  # Corresponds to the JSON property `fixedPackage`
12471
12553
  # @return [Google::Apis::SecuritycenterV1::Package]
@@ -12476,6 +12558,19 @@ module Google
12476
12558
  # @return [Google::Apis::SecuritycenterV1::Package]
12477
12559
  attr_accessor :offending_package
12478
12560
 
12561
+ # Provider provided risk_score based on multiple factors. The higher the risk
12562
+ # score, the more risky the vulnerability is.
12563
+ # Corresponds to the JSON property `providerRiskScore`
12564
+ # @return [Fixnum]
12565
+ attr_accessor :provider_risk_score
12566
+
12567
+ # Represents whether the vulnerability is reachable (detected via static
12568
+ # analysis)
12569
+ # Corresponds to the JSON property `reachable`
12570
+ # @return [Boolean]
12571
+ attr_accessor :reachable
12572
+ alias_method :reachable?, :reachable
12573
+
12479
12574
  # SecurityBulletin are notifications of vulnerabilities of Google products.
12480
12575
  # Corresponds to the JSON property `securityBulletin`
12481
12576
  # @return [Google::Apis::SecuritycenterV1::SecurityBulletin]
@@ -12488,8 +12583,11 @@ module Google
12488
12583
  # Update properties of this object
12489
12584
  def update!(**args)
12490
12585
  @cve = args[:cve] if args.key?(:cve)
12586
+ @cwes = args[:cwes] if args.key?(:cwes)
12491
12587
  @fixed_package = args[:fixed_package] if args.key?(:fixed_package)
12492
12588
  @offending_package = args[:offending_package] if args.key?(:offending_package)
12589
+ @provider_risk_score = args[:provider_risk_score] if args.key?(:provider_risk_score)
12590
+ @reachable = args[:reachable] if args.key?(:reachable)
12493
12591
  @security_bulletin = args[:security_bulletin] if args.key?(:security_bulletin)
12494
12592
  end
12495
12593
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SecuritycenterV1
18
18
  # Version of the google-apis-securitycenter_v1 gem
19
- GEM_VERSION = "0.93.0"
19
+ GEM_VERSION = "0.95.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 = "20250218"
25
+ REVISION = "20250308"
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 Cwe
290
+ class Representation < Google::Apis::Core::JsonRepresentation; end
291
+
292
+ include Google::Apis::Core::JsonObjectSupport
293
+ end
294
+
289
295
  class DataAccessEvent
290
296
  class Representation < Google::Apis::Core::JsonRepresentation; end
291
297
 
@@ -748,6 +754,12 @@ module Google
748
754
  include Google::Apis::Core::JsonObjectSupport
749
755
  end
750
756
 
757
+ class GoogleCloudSecuritycenterV2Cwe
758
+ class Representation < Google::Apis::Core::JsonRepresentation; end
759
+
760
+ include Google::Apis::Core::JsonObjectSupport
761
+ end
762
+
751
763
  class GoogleCloudSecuritycenterV2DataAccessEvent
752
764
  class Representation < Google::Apis::Core::JsonRepresentation; end
753
765
 
@@ -2251,6 +2263,15 @@ module Google
2251
2263
  end
2252
2264
  end
2253
2265
 
2266
+ class Cwe
2267
+ # @private
2268
+ class Representation < Google::Apis::Core::JsonRepresentation
2269
+ property :id, as: 'id'
2270
+ collection :references, as: 'references', class: Google::Apis::SecuritycenterV1::Reference, decorator: Google::Apis::SecuritycenterV1::Reference::Representation
2271
+
2272
+ end
2273
+ end
2274
+
2254
2275
  class DataAccessEvent
2255
2276
  # @private
2256
2277
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3173,6 +3194,15 @@ module Google
3173
3194
  end
3174
3195
  end
3175
3196
 
3197
+ class GoogleCloudSecuritycenterV2Cwe
3198
+ # @private
3199
+ class Representation < Google::Apis::Core::JsonRepresentation
3200
+ property :id, as: 'id'
3201
+ collection :references, as: 'references', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Reference, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Reference::Representation
3202
+
3203
+ end
3204
+ end
3205
+
3176
3206
  class GoogleCloudSecuritycenterV2DataAccessEvent
3177
3207
  # @private
3178
3208
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4061,10 +4091,14 @@ module Google
4061
4091
  class Representation < Google::Apis::Core::JsonRepresentation
4062
4092
  property :cve, as: 'cve', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Cve, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Cve::Representation
4063
4093
 
4094
+ collection :cwes, as: 'cwes', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Cwe, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Cwe::Representation
4095
+
4064
4096
  property :fixed_package, as: 'fixedPackage', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Package, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Package::Representation
4065
4097
 
4066
4098
  property :offending_package, as: 'offendingPackage', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Package, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Package::Representation
4067
4099
 
4100
+ property :provider_risk_score, :numeric_string => true, as: 'providerRiskScore'
4101
+ property :reachable, as: 'reachable'
4068
4102
  property :security_bulletin, as: 'securityBulletin', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SecurityBulletin, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SecurityBulletin::Representation
4069
4103
 
4070
4104
  end
@@ -4977,10 +5011,14 @@ module Google
4977
5011
  class Representation < Google::Apis::Core::JsonRepresentation
4978
5012
  property :cve, as: 'cve', class: Google::Apis::SecuritycenterV1::Cve, decorator: Google::Apis::SecuritycenterV1::Cve::Representation
4979
5013
 
5014
+ collection :cwes, as: 'cwes', class: Google::Apis::SecuritycenterV1::Cwe, decorator: Google::Apis::SecuritycenterV1::Cwe::Representation
5015
+
4980
5016
  property :fixed_package, as: 'fixedPackage', class: Google::Apis::SecuritycenterV1::Package, decorator: Google::Apis::SecuritycenterV1::Package::Representation
4981
5017
 
4982
5018
  property :offending_package, as: 'offendingPackage', class: Google::Apis::SecuritycenterV1::Package, decorator: Google::Apis::SecuritycenterV1::Package::Representation
4983
5019
 
5020
+ property :provider_risk_score, :numeric_string => true, as: 'providerRiskScore'
5021
+ property :reachable, as: 'reachable'
4984
5022
  property :security_bulletin, as: 'securityBulletin', class: Google::Apis::SecuritycenterV1::SecurityBulletin, decorator: Google::Apis::SecuritycenterV1::SecurityBulletin::Representation
4985
5023
 
4986
5024
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.93.0
4
+ version: 0.95.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-02 00:00:00.000000000 Z
10
+ date: 2025-03-16 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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.93.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.95.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1
62
62
  rdoc_options: []
63
63
  require_paths: