google-apis-containeranalysis_v1beta1 0.72.0 → 0.73.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: 75e4835fd1700eed96d6b6d9acb5423a8dfba7aebfe8e973356ec91db8c4a6ed
|
|
4
|
+
data.tar.gz: 0fdd00b8e3e00b23742a3149e5c00fccc9b610a76673ba74513bc93640595920
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bdac3c78da1b807cebfc65431f26c13d693183409b022917fd29bb471fa3f943485642c6d3807bac55a2cfd1241b5d2caf4ada11714fe4f81a19b56f52d7f4d2
|
|
7
|
+
data.tar.gz: 72f408b47d217a7085ba3b46b4f381242a8f338589cf4195a3a18f5b774a7601c91978a9e4df2fa349021108234b77a47869910df3c0f9661d827e124985e282
|
data/CHANGELOG.md
CHANGED
|
@@ -5179,11 +5179,6 @@ module Google
|
|
|
5179
5179
|
class Note
|
|
5180
5180
|
include Google::Apis::Core::Hashable
|
|
5181
5181
|
|
|
5182
|
-
# The timestamp when the advisory was first published by the source.
|
|
5183
|
-
# Corresponds to the JSON property `advisoryPublishTime`
|
|
5184
|
-
# @return [String]
|
|
5185
|
-
attr_accessor :advisory_publish_time
|
|
5186
|
-
|
|
5187
5182
|
# Note kind that represents a logical attestation "role" or "authority". For
|
|
5188
5183
|
# example, an organization might have one `Authority` for "QA" and one for "
|
|
5189
5184
|
# build". This note is intended to act strictly as a grouping mechanism for the
|
|
@@ -5332,7 +5327,6 @@ module Google
|
|
|
5332
5327
|
|
|
5333
5328
|
# Update properties of this object
|
|
5334
5329
|
def update!(**args)
|
|
5335
|
-
@advisory_publish_time = args[:advisory_publish_time] if args.key?(:advisory_publish_time)
|
|
5336
5330
|
@attestation_authority = args[:attestation_authority] if args.key?(:attestation_authority)
|
|
5337
5331
|
@base_image = args[:base_image] if args.key?(:base_image)
|
|
5338
5332
|
@build = args[:build] if args.key?(:build)
|
|
@@ -7251,6 +7245,11 @@ module Google
|
|
|
7251
7245
|
class Vulnerability
|
|
7252
7246
|
include Google::Apis::Core::Hashable
|
|
7253
7247
|
|
|
7248
|
+
# The time this advisory was published by the source.
|
|
7249
|
+
# Corresponds to the JSON property `advisoryPublishTime`
|
|
7250
|
+
# @return [String]
|
|
7251
|
+
attr_accessor :advisory_publish_time
|
|
7252
|
+
|
|
7254
7253
|
# The CVSS score for this vulnerability.
|
|
7255
7254
|
# Corresponds to the JSON property `cvssScore`
|
|
7256
7255
|
# @return [Float]
|
|
@@ -7315,6 +7314,7 @@ module Google
|
|
|
7315
7314
|
|
|
7316
7315
|
# Update properties of this object
|
|
7317
7316
|
def update!(**args)
|
|
7317
|
+
@advisory_publish_time = args[:advisory_publish_time] if args.key?(:advisory_publish_time)
|
|
7318
7318
|
@cvss_score = args[:cvss_score] if args.key?(:cvss_score)
|
|
7319
7319
|
@cvss_v2 = args[:cvss_v2] if args.key?(:cvss_v2)
|
|
7320
7320
|
@cvss_v3 = args[:cvss_v3] if args.key?(:cvss_v3)
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.73.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260220"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2427,7 +2427,6 @@ module Google
|
|
|
2427
2427
|
class Note
|
|
2428
2428
|
# @private
|
|
2429
2429
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2430
|
-
property :advisory_publish_time, as: 'advisoryPublishTime'
|
|
2431
2430
|
property :attestation_authority, as: 'attestationAuthority', class: Google::Apis::ContaineranalysisV1beta1::Authority, decorator: Google::Apis::ContaineranalysisV1beta1::Authority::Representation
|
|
2432
2431
|
|
|
2433
2432
|
property :base_image, as: 'baseImage', class: Google::Apis::ContaineranalysisV1beta1::Basis, decorator: Google::Apis::ContaineranalysisV1beta1::Basis::Representation
|
|
@@ -2966,6 +2965,7 @@ module Google
|
|
|
2966
2965
|
class Vulnerability
|
|
2967
2966
|
# @private
|
|
2968
2967
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2968
|
+
property :advisory_publish_time, as: 'advisoryPublishTime'
|
|
2969
2969
|
property :cvss_score, as: 'cvssScore'
|
|
2970
2970
|
property :cvss_v2, as: 'cvssV2', class: Google::Apis::ContaineranalysisV1beta1::Cvss, decorator: Google::Apis::ContaineranalysisV1beta1::Cvss::Representation
|
|
2971
2971
|
|
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.
|
|
4
|
+
version: 0.73.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.73.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:
|