google-apis-containeranalysis_v1 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: c556943022258b0b783f6adf495a6e6feef29a843487eb3d02cf4f3a20b403c5
|
|
4
|
+
data.tar.gz: 25b5c81d7d4c62eae49a1e32e4a06e7f666758d9358e8600455500d5e39b09b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f8327df324e36cb1624bd55de363fadd9dbfa44c6fabdd09dc81a4706e3c858230660c5ed566d4c4a048d6b0153b2b5f44bf25138a6fa11886e227f89a379fb3
|
|
7
|
+
data.tar.gz: d66f788ae42477400f0b391d3b600178be54af0d810575ebd1fad2028065cc8c6b5ade46b2fcd2611984e3c65a4e86dff38df50988d849fb4fb6e70a26155c30
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1
|
|
2
2
|
|
|
3
|
+
### v0.78.0 (2026-07-05)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260619
|
|
6
|
+
|
|
7
|
+
### v0.77.0 (2026-06-21)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260610
|
|
10
|
+
|
|
3
11
|
### v0.76.0 (2026-06-14)
|
|
4
12
|
|
|
5
13
|
* Regenerated using generator version 0.19.0
|
|
@@ -1015,6 +1015,11 @@ module Google
|
|
|
1015
1015
|
# @return [String]
|
|
1016
1016
|
attr_accessor :confidentiality_impact
|
|
1017
1017
|
|
|
1018
|
+
# Exploit Maturity (E). Defined in CVSS v4.
|
|
1019
|
+
# Corresponds to the JSON property `exploitMaturity`
|
|
1020
|
+
# @return [String]
|
|
1021
|
+
attr_accessor :exploit_maturity
|
|
1022
|
+
|
|
1018
1023
|
#
|
|
1019
1024
|
# Corresponds to the JSON property `exploitabilityScore`
|
|
1020
1025
|
# @return [Float]
|
|
@@ -1088,6 +1093,7 @@ module Google
|
|
|
1088
1093
|
@availability_impact = args[:availability_impact] if args.key?(:availability_impact)
|
|
1089
1094
|
@base_score = args[:base_score] if args.key?(:base_score)
|
|
1090
1095
|
@confidentiality_impact = args[:confidentiality_impact] if args.key?(:confidentiality_impact)
|
|
1096
|
+
@exploit_maturity = args[:exploit_maturity] if args.key?(:exploit_maturity)
|
|
1091
1097
|
@exploitability_score = args[:exploitability_score] if args.key?(:exploitability_score)
|
|
1092
1098
|
@impact_score = args[:impact_score] if args.key?(:impact_score)
|
|
1093
1099
|
@integrity_impact = args[:integrity_impact] if args.key?(:integrity_impact)
|
|
@@ -4421,6 +4427,11 @@ module Google
|
|
|
4421
4427
|
# @return [String]
|
|
4422
4428
|
attr_accessor :category
|
|
4423
4429
|
|
|
4430
|
+
# Description of the finding category.
|
|
4431
|
+
# Corresponds to the JSON property `details`
|
|
4432
|
+
# @return [String]
|
|
4433
|
+
attr_accessor :details
|
|
4434
|
+
|
|
4424
4435
|
# Location details with file path and line number.
|
|
4425
4436
|
# Corresponds to the JSON property `location`
|
|
4426
4437
|
# @return [Google::Apis::ContaineranalysisV1::FindingLocation]
|
|
@@ -4443,6 +4454,7 @@ module Google
|
|
|
4443
4454
|
# Update properties of this object
|
|
4444
4455
|
def update!(**args)
|
|
4445
4456
|
@category = args[:category] if args.key?(:category)
|
|
4457
|
+
@details = args[:details] if args.key?(:details)
|
|
4446
4458
|
@location = args[:location] if args.key?(:location)
|
|
4447
4459
|
@scanner = args[:scanner] if args.key?(:scanner)
|
|
4448
4460
|
@severity = args[:severity] if args.key?(:severity)
|
|
@@ -7881,6 +7893,14 @@ module Google
|
|
|
7881
7893
|
# @return [Google::Apis::ContaineranalysisV1::CvsSv3]
|
|
7882
7894
|
attr_accessor :cvss_v3
|
|
7883
7895
|
|
|
7896
|
+
# Common Vulnerability Scoring System. For details, see https://www.first.org/
|
|
7897
|
+
# cvss/specification-document This is a message we will try to use for storing
|
|
7898
|
+
# various versions of CVSS rather than making a separate proto for storing a
|
|
7899
|
+
# specific version.
|
|
7900
|
+
# Corresponds to the JSON property `cvssV4`
|
|
7901
|
+
# @return [Google::Apis::ContaineranalysisV1::Cvss]
|
|
7902
|
+
attr_accessor :cvss_v4
|
|
7903
|
+
|
|
7884
7904
|
# CVSS version used to populate cvss_score and severity.
|
|
7885
7905
|
# Corresponds to the JSON property `cvssVersion`
|
|
7886
7906
|
# @return [String]
|
|
@@ -7921,6 +7941,7 @@ module Google
|
|
|
7921
7941
|
@cvss_score = args[:cvss_score] if args.key?(:cvss_score)
|
|
7922
7942
|
@cvss_v2 = args[:cvss_v2] if args.key?(:cvss_v2)
|
|
7923
7943
|
@cvss_v3 = args[:cvss_v3] if args.key?(:cvss_v3)
|
|
7944
|
+
@cvss_v4 = args[:cvss_v4] if args.key?(:cvss_v4)
|
|
7924
7945
|
@cvss_version = args[:cvss_version] if args.key?(:cvss_version)
|
|
7925
7946
|
@details = args[:details] if args.key?(:details)
|
|
7926
7947
|
@severity = args[:severity] if args.key?(:severity)
|
|
@@ -7947,6 +7968,14 @@ module Google
|
|
|
7947
7968
|
# @return [Google::Apis::ContaineranalysisV1::Cvss]
|
|
7948
7969
|
attr_accessor :cvss_v2
|
|
7949
7970
|
|
|
7971
|
+
# Common Vulnerability Scoring System. For details, see https://www.first.org/
|
|
7972
|
+
# cvss/specification-document This is a message we will try to use for storing
|
|
7973
|
+
# various versions of CVSS rather than making a separate proto for storing a
|
|
7974
|
+
# specific version.
|
|
7975
|
+
# Corresponds to the JSON property `cvssV4`
|
|
7976
|
+
# @return [Google::Apis::ContaineranalysisV1::Cvss]
|
|
7977
|
+
attr_accessor :cvss_v4
|
|
7978
|
+
|
|
7950
7979
|
# Output only. CVSS version used to populate cvss_score and severity.
|
|
7951
7980
|
# Corresponds to the JSON property `cvssVersion`
|
|
7952
7981
|
# @return [String]
|
|
@@ -8034,6 +8063,7 @@ module Google
|
|
|
8034
8063
|
def update!(**args)
|
|
8035
8064
|
@cvss_score = args[:cvss_score] if args.key?(:cvss_score)
|
|
8036
8065
|
@cvss_v2 = args[:cvss_v2] if args.key?(:cvss_v2)
|
|
8066
|
+
@cvss_v4 = args[:cvss_v4] if args.key?(:cvss_v4)
|
|
8037
8067
|
@cvss_version = args[:cvss_version] if args.key?(:cvss_version)
|
|
8038
8068
|
@cvssv3 = args[:cvssv3] if args.key?(:cvssv3)
|
|
8039
8069
|
@effective_severity = args[:effective_severity] if args.key?(:effective_severity)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ContaineranalysisV1
|
|
18
18
|
# Version of the google-apis-containeranalysis_v1 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.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
|
|
@@ -1421,6 +1421,7 @@ module Google
|
|
|
1421
1421
|
property :availability_impact, as: 'availabilityImpact'
|
|
1422
1422
|
property :base_score, as: 'baseScore'
|
|
1423
1423
|
property :confidentiality_impact, as: 'confidentialityImpact'
|
|
1424
|
+
property :exploit_maturity, as: 'exploitMaturity'
|
|
1424
1425
|
property :exploitability_score, as: 'exploitabilityScore'
|
|
1425
1426
|
property :impact_score, as: 'impactScore'
|
|
1426
1427
|
property :integrity_impact, as: 'integrityImpact'
|
|
@@ -2315,6 +2316,7 @@ module Google
|
|
|
2315
2316
|
# @private
|
|
2316
2317
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2317
2318
|
property :category, as: 'category'
|
|
2319
|
+
property :details, as: 'details'
|
|
2318
2320
|
property :location, as: 'location', class: Google::Apis::ContaineranalysisV1::FindingLocation, decorator: Google::Apis::ContaineranalysisV1::FindingLocation::Representation
|
|
2319
2321
|
|
|
2320
2322
|
property :scanner, as: 'scanner'
|
|
@@ -3271,6 +3273,8 @@ module Google
|
|
|
3271
3273
|
|
|
3272
3274
|
property :cvss_v3, as: 'cvssV3', class: Google::Apis::ContaineranalysisV1::CvsSv3, decorator: Google::Apis::ContaineranalysisV1::CvsSv3::Representation
|
|
3273
3275
|
|
|
3276
|
+
property :cvss_v4, as: 'cvssV4', class: Google::Apis::ContaineranalysisV1::Cvss, decorator: Google::Apis::ContaineranalysisV1::Cvss::Representation
|
|
3277
|
+
|
|
3274
3278
|
property :cvss_version, as: 'cvssVersion'
|
|
3275
3279
|
collection :details, as: 'details', class: Google::Apis::ContaineranalysisV1::Detail, decorator: Google::Apis::ContaineranalysisV1::Detail::Representation
|
|
3276
3280
|
|
|
@@ -3287,6 +3291,8 @@ module Google
|
|
|
3287
3291
|
property :cvss_score, as: 'cvssScore'
|
|
3288
3292
|
property :cvss_v2, as: 'cvssV2', class: Google::Apis::ContaineranalysisV1::Cvss, decorator: Google::Apis::ContaineranalysisV1::Cvss::Representation
|
|
3289
3293
|
|
|
3294
|
+
property :cvss_v4, as: 'cvssV4', class: Google::Apis::ContaineranalysisV1::Cvss, decorator: Google::Apis::ContaineranalysisV1::Cvss::Representation
|
|
3295
|
+
|
|
3290
3296
|
property :cvss_version, as: 'cvssVersion'
|
|
3291
3297
|
property :cvssv3, as: 'cvssv3', class: Google::Apis::ContaineranalysisV1::Cvss, decorator: Google::Apis::ContaineranalysisV1::Cvss::Representation
|
|
3292
3298
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-containeranalysis_v1
|
|
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
|
|
@@ -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_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.78.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|