google-apis-containeranalysis_v1alpha1 0.64.0 → 0.65.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: b74fe1f1008502dbbdaa0a22ae6bc53a4344516aa1cce56831c0bb35fc29d192
|
|
4
|
+
data.tar.gz: ff057034a3dba0731c6948c7f5d4a07f9eb952fc880a34b774b395373f3056f8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ddb2ae3fc6da23e5c6670c896740cbecd1a9c75b8c89155d72dcf88435afb60b4180f8151b65cbcc4c84c0f82c36d23be19dda9d84e0223d6b218938ebbf45cb
|
|
7
|
+
data.tar.gz: a5a6978e335e03305f0c6c73f46d17202d7938891b7f1ecec8e4166bb3a3a9da4f1fdbcb7a9e9ccf36443f1577456bb16c941cbf8c7df317cc7211d996d49a86
|
data/CHANGELOG.md
CHANGED
|
@@ -3356,6 +3356,11 @@ module Google
|
|
|
3356
3356
|
# @return [Google::Apis::ContaineranalysisV1alpha1::SbomStatus]
|
|
3357
3357
|
attr_accessor :sbom_status
|
|
3358
3358
|
|
|
3359
|
+
# The status of a vulnerability attestation generation.
|
|
3360
|
+
# Corresponds to the JSON property `vulnerabilityAttestation`
|
|
3361
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::VulnerabilityAttestation]
|
|
3362
|
+
attr_accessor :vulnerability_attestation
|
|
3363
|
+
|
|
3359
3364
|
def initialize(**args)
|
|
3360
3365
|
update!(**args)
|
|
3361
3366
|
end
|
|
@@ -3372,6 +3377,7 @@ module Google
|
|
|
3372
3377
|
@last_scan_time = args[:last_scan_time] if args.key?(:last_scan_time)
|
|
3373
3378
|
@operation = args[:operation] if args.key?(:operation)
|
|
3374
3379
|
@sbom_status = args[:sbom_status] if args.key?(:sbom_status)
|
|
3380
|
+
@vulnerability_attestation = args[:vulnerability_attestation] if args.key?(:vulnerability_attestation)
|
|
3375
3381
|
end
|
|
3376
3382
|
end
|
|
3377
3383
|
|
|
@@ -7505,6 +7511,38 @@ module Google
|
|
|
7505
7511
|
end
|
|
7506
7512
|
end
|
|
7507
7513
|
|
|
7514
|
+
# The status of a vulnerability attestation generation.
|
|
7515
|
+
class VulnerabilityAttestation
|
|
7516
|
+
include Google::Apis::Core::Hashable
|
|
7517
|
+
|
|
7518
|
+
# Output only. If failure, the error reason for why the attestation generation
|
|
7519
|
+
# failed.
|
|
7520
|
+
# Corresponds to the JSON property `error`
|
|
7521
|
+
# @return [String]
|
|
7522
|
+
attr_accessor :error
|
|
7523
|
+
|
|
7524
|
+
# Output only. The last time we attempted to generate an attestation.
|
|
7525
|
+
# Corresponds to the JSON property `lastAttemptTime`
|
|
7526
|
+
# @return [String]
|
|
7527
|
+
attr_accessor :last_attempt_time
|
|
7528
|
+
|
|
7529
|
+
# Output only. The success/failure state of the latest attestation attempt.
|
|
7530
|
+
# Corresponds to the JSON property `state`
|
|
7531
|
+
# @return [String]
|
|
7532
|
+
attr_accessor :state
|
|
7533
|
+
|
|
7534
|
+
def initialize(**args)
|
|
7535
|
+
update!(**args)
|
|
7536
|
+
end
|
|
7537
|
+
|
|
7538
|
+
# Update properties of this object
|
|
7539
|
+
def update!(**args)
|
|
7540
|
+
@error = args[:error] if args.key?(:error)
|
|
7541
|
+
@last_attempt_time = args[:last_attempt_time] if args.key?(:last_attempt_time)
|
|
7542
|
+
@state = args[:state] if args.key?(:state)
|
|
7543
|
+
end
|
|
7544
|
+
end
|
|
7545
|
+
|
|
7508
7546
|
# Used by Occurrence to point to where the vulnerability exists and how to fix
|
|
7509
7547
|
# it.
|
|
7510
7548
|
class VulnerabilityDetails
|
|
@@ -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.65.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240625"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1048,6 +1048,12 @@ module Google
|
|
|
1048
1048
|
include Google::Apis::Core::JsonObjectSupport
|
|
1049
1049
|
end
|
|
1050
1050
|
|
|
1051
|
+
class VulnerabilityAttestation
|
|
1052
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1053
|
+
|
|
1054
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1055
|
+
end
|
|
1056
|
+
|
|
1051
1057
|
class VulnerabilityDetails
|
|
1052
1058
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1053
1059
|
|
|
@@ -1902,6 +1908,8 @@ module Google
|
|
|
1902
1908
|
|
|
1903
1909
|
property :sbom_status, as: 'sbomStatus', class: Google::Apis::ContaineranalysisV1alpha1::SbomStatus, decorator: Google::Apis::ContaineranalysisV1alpha1::SbomStatus::Representation
|
|
1904
1910
|
|
|
1911
|
+
property :vulnerability_attestation, as: 'vulnerabilityAttestation', class: Google::Apis::ContaineranalysisV1alpha1::VulnerabilityAttestation, decorator: Google::Apis::ContaineranalysisV1alpha1::VulnerabilityAttestation::Representation
|
|
1912
|
+
|
|
1905
1913
|
end
|
|
1906
1914
|
end
|
|
1907
1915
|
|
|
@@ -3010,6 +3018,15 @@ module Google
|
|
|
3010
3018
|
end
|
|
3011
3019
|
end
|
|
3012
3020
|
|
|
3021
|
+
class VulnerabilityAttestation
|
|
3022
|
+
# @private
|
|
3023
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3024
|
+
property :error, as: 'error'
|
|
3025
|
+
property :last_attempt_time, as: 'lastAttemptTime'
|
|
3026
|
+
property :state, as: 'state'
|
|
3027
|
+
end
|
|
3028
|
+
end
|
|
3029
|
+
|
|
3013
3030
|
class VulnerabilityDetails
|
|
3014
3031
|
# @private
|
|
3015
3032
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.65.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-06-
|
|
11
|
+
date: 2024-06-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1alpha1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.65.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1alpha1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|