google-apis-containeranalysis_v1beta1 0.78.0 → 0.80.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: 5de42704a7c8033a640cdbd5f4c650aa8a038557e2946b7bdf111e4ea4339d14
4
- data.tar.gz: e9a6ce9325bea22a6d928b5fcf1fd6d539cf041ec47195371ae816d09b24bf2b
3
+ metadata.gz: dc47e9dab89e137b32d8714f6ad712d0366b5fe8e6a7a0076fdfac839dc6397e
4
+ data.tar.gz: 485f2b95015487081b43dce7c84f2202255ba2f9339152aea2830902e6e616c0
5
5
  SHA512:
6
- metadata.gz: 50d6f1968bf7a687546fcb5e5dc318e72d6ddea090e58ed314d082fe3a7b548bbc4e3e996690575a95f5b12540508c273736e83adfce2647bcd45059b04569d8
7
- data.tar.gz: cddaf1272b2e3e9e0a603195f4e239d70a952b4a9cc2eb8c09b3f0ce4dbdbda36973940a047a10145e3b9b77aa55c4db7a54da9a90e6cb70f0e9334f94fc1103
6
+ metadata.gz: 4edcd78aa23bc5246fb196696d98c6c09e876d9b2151286bdb0a7b106104ecc3a7823c42495901f88949047c3c10a51c1c67142f6c81a0cc5e245441f7d0fc1f
7
+ data.tar.gz: 6b504cd7be22efb06e23b0e7509e51e3ea7f13cec234465ffc2f3c55641ab08b713a205cabd6728cd0281e2487b7c82943da3826d01e94ec2862b0159a9b8584
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-containeranalysis_v1beta1
2
2
 
3
+ ### v0.80.0 (2026-07-05)
4
+
5
+ * Regenerated from discovery document revision 20260619
6
+
7
+ ### v0.79.0 (2026-06-21)
8
+
9
+ * Regenerated from discovery document revision 20260610
10
+
3
11
  ### v0.78.0 (2026-06-14)
4
12
 
5
13
  * Regenerated using generator version 0.19.0
@@ -1019,6 +1019,11 @@ module Google
1019
1019
  # @return [String]
1020
1020
  attr_accessor :confidentiality_impact
1021
1021
 
1022
+ # Exploit Maturity (E). Defined in CVSS v4.
1023
+ # Corresponds to the JSON property `exploitMaturity`
1024
+ # @return [String]
1025
+ attr_accessor :exploit_maturity
1026
+
1022
1027
  #
1023
1028
  # Corresponds to the JSON property `exploitabilityScore`
1024
1029
  # @return [Float]
@@ -1092,6 +1097,7 @@ module Google
1092
1097
  @availability_impact = args[:availability_impact] if args.key?(:availability_impact)
1093
1098
  @base_score = args[:base_score] if args.key?(:base_score)
1094
1099
  @confidentiality_impact = args[:confidentiality_impact] if args.key?(:confidentiality_impact)
1100
+ @exploit_maturity = args[:exploit_maturity] if args.key?(:exploit_maturity)
1095
1101
  @exploitability_score = args[:exploitability_score] if args.key?(:exploitability_score)
1096
1102
  @impact_score = args[:impact_score] if args.key?(:impact_score)
1097
1103
  @integrity_impact = args[:integrity_impact] if args.key?(:integrity_impact)
@@ -4418,6 +4424,11 @@ module Google
4418
4424
  # @return [String]
4419
4425
  attr_accessor :category
4420
4426
 
4427
+ # Description of the finding category.
4428
+ # Corresponds to the JSON property `details`
4429
+ # @return [String]
4430
+ attr_accessor :details
4431
+
4421
4432
  # Location details with file path and line number.
4422
4433
  # Corresponds to the JSON property `location`
4423
4434
  # @return [Google::Apis::ContaineranalysisV1beta1::FindingLocation]
@@ -4440,6 +4451,7 @@ module Google
4440
4451
  # Update properties of this object
4441
4452
  def update!(**args)
4442
4453
  @category = args[:category] if args.key?(:category)
4454
+ @details = args[:details] if args.key?(:details)
4443
4455
  @location = args[:location] if args.key?(:location)
4444
4456
  @scanner = args[:scanner] if args.key?(:scanner)
4445
4457
  @severity = args[:severity] if args.key?(:severity)
@@ -4963,6 +4975,17 @@ module Google
4963
4975
  # @return [Google::Apis::ContaineranalysisV1beta1::Cvss]
4964
4976
  attr_accessor :cvss_v3
4965
4977
 
4978
+ # Common Vulnerability Scoring System. This message is compatible with CVSS v2,
4979
+ # v3, and v4. For CVSS v2 details, see https://www.first.org/cvss/v2/guide CVSS
4980
+ # v2 calculator: https://nvd.nist.gov/vuln-metrics/cvss/v2-calculator For CVSS
4981
+ # v3 details, see https://www.first.org/cvss/specification-document CVSS v3
4982
+ # calculator: https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator For CVSS v4
4983
+ # details, see https://www.first.org/cvss/v4.0/user-guide CVSS v4 calculator:
4984
+ # https://nvd.nist.gov/vuln-metrics/cvss/v4-calculator
4985
+ # Corresponds to the JSON property `cvssV4`
4986
+ # @return [Google::Apis::ContaineranalysisV1beta1::Cvss]
4987
+ attr_accessor :cvss_v4
4988
+
4966
4989
  # Output only. CVSS version used to populate cvss_score and severity.
4967
4990
  # Corresponds to the JSON property `cvssVersion`
4968
4991
  # @return [String]
@@ -5033,6 +5056,7 @@ module Google
5033
5056
  @cvss_score = args[:cvss_score] if args.key?(:cvss_score)
5034
5057
  @cvss_v2 = args[:cvss_v2] if args.key?(:cvss_v2)
5035
5058
  @cvss_v3 = args[:cvss_v3] if args.key?(:cvss_v3)
5059
+ @cvss_v4 = args[:cvss_v4] if args.key?(:cvss_v4)
5036
5060
  @cvss_version = args[:cvss_version] if args.key?(:cvss_version)
5037
5061
  @effective_severity = args[:effective_severity] if args.key?(:effective_severity)
5038
5062
  @extra_details = args[:extra_details] if args.key?(:extra_details)
@@ -7672,6 +7696,17 @@ module Google
7672
7696
  # @return [Google::Apis::ContaineranalysisV1beta1::CvsSv3]
7673
7697
  attr_accessor :cvss_v3
7674
7698
 
7699
+ # Common Vulnerability Scoring System. This message is compatible with CVSS v2,
7700
+ # v3, and v4. For CVSS v2 details, see https://www.first.org/cvss/v2/guide CVSS
7701
+ # v2 calculator: https://nvd.nist.gov/vuln-metrics/cvss/v2-calculator For CVSS
7702
+ # v3 details, see https://www.first.org/cvss/specification-document CVSS v3
7703
+ # calculator: https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator For CVSS v4
7704
+ # details, see https://www.first.org/cvss/v4.0/user-guide CVSS v4 calculator:
7705
+ # https://nvd.nist.gov/vuln-metrics/cvss/v4-calculator
7706
+ # Corresponds to the JSON property `cvssV4`
7707
+ # @return [Google::Apis::ContaineranalysisV1beta1::Cvss]
7708
+ attr_accessor :cvss_v4
7709
+
7675
7710
  # CVSS version used to populate cvss_score and severity.
7676
7711
  # Corresponds to the JSON property `cvssVersion`
7677
7712
  # @return [String]
@@ -7720,6 +7755,7 @@ module Google
7720
7755
  @cvss_score = args[:cvss_score] if args.key?(:cvss_score)
7721
7756
  @cvss_v2 = args[:cvss_v2] if args.key?(:cvss_v2)
7722
7757
  @cvss_v3 = args[:cvss_v3] if args.key?(:cvss_v3)
7758
+ @cvss_v4 = args[:cvss_v4] if args.key?(:cvss_v4)
7723
7759
  @cvss_version = args[:cvss_version] if args.key?(:cvss_version)
7724
7760
  @cwe = args[:cwe] if args.key?(:cwe)
7725
7761
  @details = args[:details] if args.key?(:details)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContaineranalysisV1beta1
18
18
  # Version of the google-apis-containeranalysis_v1beta1 gem
19
- GEM_VERSION = "0.78.0"
19
+ GEM_VERSION = "0.80.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260521"
25
+ REVISION = "20260619"
26
26
  end
27
27
  end
28
28
  end
@@ -1375,6 +1375,7 @@ module Google
1375
1375
  property :availability_impact, as: 'availabilityImpact'
1376
1376
  property :base_score, as: 'baseScore'
1377
1377
  property :confidentiality_impact, as: 'confidentialityImpact'
1378
+ property :exploit_maturity, as: 'exploitMaturity'
1378
1379
  property :exploitability_score, as: 'exploitabilityScore'
1379
1380
  property :impact_score, as: 'impactScore'
1380
1381
  property :integrity_impact, as: 'integrityImpact'
@@ -2255,6 +2256,7 @@ module Google
2255
2256
  # @private
2256
2257
  class Representation < Google::Apis::Core::JsonRepresentation
2257
2258
  property :category, as: 'category'
2259
+ property :details, as: 'details'
2258
2260
  property :location, as: 'location', class: Google::Apis::ContaineranalysisV1beta1::FindingLocation, decorator: Google::Apis::ContaineranalysisV1beta1::FindingLocation::Representation
2259
2261
 
2260
2262
  property :scanner, as: 'scanner'
@@ -2426,6 +2428,8 @@ module Google
2426
2428
 
2427
2429
  property :cvss_v3, as: 'cvssV3', class: Google::Apis::ContaineranalysisV1beta1::Cvss, decorator: Google::Apis::ContaineranalysisV1beta1::Cvss::Representation
2428
2430
 
2431
+ property :cvss_v4, as: 'cvssV4', class: Google::Apis::ContaineranalysisV1beta1::Cvss, decorator: Google::Apis::ContaineranalysisV1beta1::Cvss::Representation
2432
+
2429
2433
  property :cvss_version, as: 'cvssVersion'
2430
2434
  property :effective_severity, as: 'effectiveSeverity'
2431
2435
  property :extra_details, as: 'extraDetails'
@@ -3145,6 +3149,8 @@ module Google
3145
3149
 
3146
3150
  property :cvss_v3, as: 'cvssV3', class: Google::Apis::ContaineranalysisV1beta1::CvsSv3, decorator: Google::Apis::ContaineranalysisV1beta1::CvsSv3::Representation
3147
3151
 
3152
+ property :cvss_v4, as: 'cvssV4', class: Google::Apis::ContaineranalysisV1beta1::Cvss, decorator: Google::Apis::ContaineranalysisV1beta1::Cvss::Representation
3153
+
3148
3154
  property :cvss_version, as: 'cvssVersion'
3149
3155
  collection :cwe, as: 'cwe'
3150
3156
  collection :details, as: 'details', class: Google::Apis::ContaineranalysisV1beta1::Detail, decorator: Google::Apis::ContaineranalysisV1beta1::Detail::Representation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.78.0
4
+ version: 0.80.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -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-containeranalysis_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.78.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.80.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: