google-apis-containeranalysis_v1alpha1 0.85.0 → 0.87.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: 88b5736932e994b9b5e0cd3ac6f2b44593257c2dce00eead9c34accefe7f47d7
|
|
4
|
+
data.tar.gz: a74d3de7d122ae9449c181923a681fa42dd6ff82adb884cb8349f9cf967e091f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 415ae236a05f5aad0cd78c85b31efd3f5bb56d80e5360170a5f115961a1c05058228f0b6400c5faccb6940542dfbf4ec89b784ff2473a8a405100c19a56047df
|
|
7
|
+
data.tar.gz: 49609ab03795c9f6c235b3edeb271422f748214d28ce1f4783a050cbcd3de031163060067d5d45478c2112705619295dd4100379d6b92956b6804bde09a2899f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1alpha1
|
|
2
2
|
|
|
3
|
+
### v0.87.0 (2026-07-05)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260619
|
|
6
|
+
|
|
7
|
+
### v0.86.0 (2026-06-21)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260610
|
|
10
|
+
|
|
3
11
|
### v0.85.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
|
+
# Optional. 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)
|
|
@@ -4584,6 +4590,11 @@ module Google
|
|
|
4584
4590
|
# @return [String]
|
|
4585
4591
|
attr_accessor :category
|
|
4586
4592
|
|
|
4593
|
+
# Optional. Description of the finding category.
|
|
4594
|
+
# Corresponds to the JSON property `details`
|
|
4595
|
+
# @return [String]
|
|
4596
|
+
attr_accessor :details
|
|
4597
|
+
|
|
4587
4598
|
# Location details with file path and line number.
|
|
4588
4599
|
# Corresponds to the JSON property `location`
|
|
4589
4600
|
# @return [Google::Apis::ContaineranalysisV1alpha1::FindingLocation]
|
|
@@ -4607,6 +4618,7 @@ module Google
|
|
|
4607
4618
|
# Update properties of this object
|
|
4608
4619
|
def update!(**args)
|
|
4609
4620
|
@category = args[:category] if args.key?(:category)
|
|
4621
|
+
@details = args[:details] if args.key?(:details)
|
|
4610
4622
|
@location = args[:location] if args.key?(:location)
|
|
4611
4623
|
@scanner = args[:scanner] if args.key?(:scanner)
|
|
4612
4624
|
@severity = args[:severity] if args.key?(:severity)
|
|
@@ -8557,6 +8569,17 @@ module Google
|
|
|
8557
8569
|
# @return [Google::Apis::ContaineranalysisV1alpha1::Cvss]
|
|
8558
8570
|
attr_accessor :cvss_v3
|
|
8559
8571
|
|
|
8572
|
+
# Common Vulnerability Scoring System. This message is compatible with CVSS v2
|
|
8573
|
+
# and v3. For CVSS v2 details, see https://www.first.org/cvss/v2/guide CVSS v2
|
|
8574
|
+
# calculator: https://nvd.nist.gov/vuln-metrics/cvss/v2-calculator For CVSS v3
|
|
8575
|
+
# details, see https://www.first.org/cvss/specification-document CVSS v3
|
|
8576
|
+
# calculator: https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator For CVSS v4
|
|
8577
|
+
# details, see https://www.first.org/cvss/v4.0/user-guide CVSS v4 calculator:
|
|
8578
|
+
# https://nvd.nist.gov/vuln-metrics/cvss/v4-calculator
|
|
8579
|
+
# Corresponds to the JSON property `cvssV4`
|
|
8580
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::Cvss]
|
|
8581
|
+
attr_accessor :cvss_v4
|
|
8582
|
+
|
|
8560
8583
|
# Output only. CVSS version used to populate cvss_score and severity.
|
|
8561
8584
|
# Corresponds to the JSON property `cvssVersion`
|
|
8562
8585
|
# @return [String]
|
|
@@ -8619,6 +8642,7 @@ module Google
|
|
|
8619
8642
|
@cvss_score = args[:cvss_score] if args.key?(:cvss_score)
|
|
8620
8643
|
@cvss_v2 = args[:cvss_v2] if args.key?(:cvss_v2)
|
|
8621
8644
|
@cvss_v3 = args[:cvss_v3] if args.key?(:cvss_v3)
|
|
8645
|
+
@cvss_v4 = args[:cvss_v4] if args.key?(:cvss_v4)
|
|
8622
8646
|
@cvss_version = args[:cvss_version] if args.key?(:cvss_version)
|
|
8623
8647
|
@effective_severity = args[:effective_severity] if args.key?(:effective_severity)
|
|
8624
8648
|
@extra_details = args[:extra_details] if args.key?(:extra_details)
|
|
@@ -8697,6 +8721,17 @@ module Google
|
|
|
8697
8721
|
# @return [Google::Apis::ContaineranalysisV1alpha1::Cvss]
|
|
8698
8722
|
attr_accessor :cvss_v2
|
|
8699
8723
|
|
|
8724
|
+
# Common Vulnerability Scoring System. This message is compatible with CVSS v2
|
|
8725
|
+
# and v3. For CVSS v2 details, see https://www.first.org/cvss/v2/guide CVSS v2
|
|
8726
|
+
# calculator: https://nvd.nist.gov/vuln-metrics/cvss/v2-calculator For CVSS v3
|
|
8727
|
+
# details, see https://www.first.org/cvss/specification-document CVSS v3
|
|
8728
|
+
# calculator: https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator For CVSS v4
|
|
8729
|
+
# details, see https://www.first.org/cvss/v4.0/user-guide CVSS v4 calculator:
|
|
8730
|
+
# https://nvd.nist.gov/vuln-metrics/cvss/v4-calculator
|
|
8731
|
+
# Corresponds to the JSON property `cvssV4`
|
|
8732
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::Cvss]
|
|
8733
|
+
attr_accessor :cvss_v4
|
|
8734
|
+
|
|
8700
8735
|
# CVSS version used to populate cvss_score and severity.
|
|
8701
8736
|
# Corresponds to the JSON property `cvssVersion`
|
|
8702
8737
|
# @return [String]
|
|
@@ -8729,6 +8764,7 @@ module Google
|
|
|
8729
8764
|
@advisory_publish_time = args[:advisory_publish_time] if args.key?(:advisory_publish_time)
|
|
8730
8765
|
@cvss_score = args[:cvss_score] if args.key?(:cvss_score)
|
|
8731
8766
|
@cvss_v2 = args[:cvss_v2] if args.key?(:cvss_v2)
|
|
8767
|
+
@cvss_v4 = args[:cvss_v4] if args.key?(:cvss_v4)
|
|
8732
8768
|
@cvss_version = args[:cvss_version] if args.key?(:cvss_version)
|
|
8733
8769
|
@cwe = args[:cwe] if args.key?(:cwe)
|
|
8734
8770
|
@details = args[:details] if args.key?(:details)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ContaineranalysisV1alpha1
|
|
18
18
|
# Version of the google-apis-containeranalysis_v1alpha1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.87.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 = "
|
|
25
|
+
REVISION = "20260619"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1455,6 +1455,7 @@ module Google
|
|
|
1455
1455
|
property :availability_impact, as: 'availabilityImpact'
|
|
1456
1456
|
property :base_score, as: 'baseScore'
|
|
1457
1457
|
property :confidentiality_impact, as: 'confidentialityImpact'
|
|
1458
|
+
property :exploit_maturity, as: 'exploitMaturity'
|
|
1458
1459
|
property :exploitability_score, as: 'exploitabilityScore'
|
|
1459
1460
|
property :impact_score, as: 'impactScore'
|
|
1460
1461
|
property :integrity_impact, as: 'integrityImpact'
|
|
@@ -2381,6 +2382,7 @@ module Google
|
|
|
2381
2382
|
# @private
|
|
2382
2383
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2383
2384
|
property :category, as: 'category'
|
|
2385
|
+
property :details, as: 'details'
|
|
2384
2386
|
property :location, as: 'location', class: Google::Apis::ContaineranalysisV1alpha1::FindingLocation, decorator: Google::Apis::ContaineranalysisV1alpha1::FindingLocation::Representation
|
|
2385
2387
|
|
|
2386
2388
|
property :scanner, as: 'scanner'
|
|
@@ -3465,6 +3467,8 @@ module Google
|
|
|
3465
3467
|
|
|
3466
3468
|
property :cvss_v3, as: 'cvssV3', class: Google::Apis::ContaineranalysisV1alpha1::Cvss, decorator: Google::Apis::ContaineranalysisV1alpha1::Cvss::Representation
|
|
3467
3469
|
|
|
3470
|
+
property :cvss_v4, as: 'cvssV4', class: Google::Apis::ContaineranalysisV1alpha1::Cvss, decorator: Google::Apis::ContaineranalysisV1alpha1::Cvss::Representation
|
|
3471
|
+
|
|
3468
3472
|
property :cvss_version, as: 'cvssVersion'
|
|
3469
3473
|
property :effective_severity, as: 'effectiveSeverity'
|
|
3470
3474
|
property :extra_details, as: 'extraDetails'
|
|
@@ -3498,6 +3502,8 @@ module Google
|
|
|
3498
3502
|
property :cvss_score, as: 'cvssScore'
|
|
3499
3503
|
property :cvss_v2, as: 'cvssV2', class: Google::Apis::ContaineranalysisV1alpha1::Cvss, decorator: Google::Apis::ContaineranalysisV1alpha1::Cvss::Representation
|
|
3500
3504
|
|
|
3505
|
+
property :cvss_v4, as: 'cvssV4', class: Google::Apis::ContaineranalysisV1alpha1::Cvss, decorator: Google::Apis::ContaineranalysisV1alpha1::Cvss::Representation
|
|
3506
|
+
|
|
3501
3507
|
property :cvss_version, as: 'cvssVersion'
|
|
3502
3508
|
collection :cwe, as: 'cwe'
|
|
3503
3509
|
collection :details, as: 'details', class: Google::Apis::ContaineranalysisV1alpha1::Detail, decorator: Google::Apis::ContaineranalysisV1alpha1::Detail::Representation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-containeranalysis_v1alpha1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.87.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_v1alpha1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.87.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1alpha1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|