google-apis-containeranalysis_v1 0.62.0 → 0.63.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: 06cf78804a20562fdd144ac95b958f086aa5731772835146ce40319352a289a2
|
4
|
+
data.tar.gz: 1c7160c51f56efa6943e40f646ed28b71a093ad175cb281af5b6472b8b000785
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16d4a96177eab061eb8f758378ac15a7daa3aa18f31dee188e7065b807a94effb1fb5fac5912b98c4910b1e44d45ef024ac8ce0b438ed06232e496621daf734d
|
7
|
+
data.tar.gz: 1cac0466ada07a0fb6b5a3a5e3498a80261febeea58ec374af64506f8b7d4915e9706933941f924ba3142abb807183f674d6b16e70145b219805da828d00ec9c
|
data/CHANGELOG.md
CHANGED
@@ -705,7 +705,7 @@ module Google
|
|
705
705
|
end
|
706
706
|
end
|
707
707
|
|
708
|
-
# A step in the build pipeline. Next ID:
|
708
|
+
# A step in the build pipeline. Next ID: 23
|
709
709
|
class BuildStep
|
710
710
|
include Google::Apis::Core::Hashable
|
711
711
|
|
@@ -796,6 +796,11 @@ module Google
|
|
796
796
|
# @return [Google::Apis::ContaineranalysisV1::TimeSpan]
|
797
797
|
attr_accessor :pull_timing
|
798
798
|
|
799
|
+
# Remote configuration for the build step.
|
800
|
+
# Corresponds to the JSON property `remoteConfig`
|
801
|
+
# @return [String]
|
802
|
+
attr_accessor :remote_config
|
803
|
+
|
799
804
|
#
|
800
805
|
# Corresponds to the JSON property `results`
|
801
806
|
# @return [Array<Google::Apis::ContaineranalysisV1::StepResult>]
|
@@ -867,6 +872,7 @@ module Google
|
|
867
872
|
@id = args[:id] if args.key?(:id)
|
868
873
|
@name = args[:name] if args.key?(:name)
|
869
874
|
@pull_timing = args[:pull_timing] if args.key?(:pull_timing)
|
875
|
+
@remote_config = args[:remote_config] if args.key?(:remote_config)
|
870
876
|
@results = args[:results] if args.key?(:results)
|
871
877
|
@script = args[:script] if args.key?(:script)
|
872
878
|
@secret_env = args[:secret_env] if args.key?(:secret_env)
|
@@ -897,6 +903,26 @@ module Google
|
|
897
903
|
end
|
898
904
|
end
|
899
905
|
|
906
|
+
#
|
907
|
+
class CisaKnownExploitedVulnerabilities
|
908
|
+
include Google::Apis::Core::Hashable
|
909
|
+
|
910
|
+
# Whether the vulnerability is known to have been leveraged as part of a
|
911
|
+
# ransomware campaign.
|
912
|
+
# Corresponds to the JSON property `knownRansomwareCampaignUse`
|
913
|
+
# @return [String]
|
914
|
+
attr_accessor :known_ransomware_campaign_use
|
915
|
+
|
916
|
+
def initialize(**args)
|
917
|
+
update!(**args)
|
918
|
+
end
|
919
|
+
|
920
|
+
# Update properties of this object
|
921
|
+
def update!(**args)
|
922
|
+
@known_ransomware_campaign_use = args[:known_ransomware_campaign_use] if args.key?(:known_ransomware_campaign_use)
|
923
|
+
end
|
924
|
+
end
|
925
|
+
|
900
926
|
# Common Vulnerability Scoring System. For details, see https://www.first.org/
|
901
927
|
# cvss/specification-document This is a message we will try to use for storing
|
902
928
|
# various versions of CVSS rather than making a separate proto for storing a
|
@@ -3846,6 +3872,33 @@ module Google
|
|
3846
3872
|
end
|
3847
3873
|
end
|
3848
3874
|
|
3875
|
+
#
|
3876
|
+
class ExploitPredictionScoringSystem
|
3877
|
+
include Google::Apis::Core::Hashable
|
3878
|
+
|
3879
|
+
# The percentile of the current score, the proportion of all scored
|
3880
|
+
# vulnerabilities with the same or a lower EPSS score
|
3881
|
+
# Corresponds to the JSON property `percentile`
|
3882
|
+
# @return [Float]
|
3883
|
+
attr_accessor :percentile
|
3884
|
+
|
3885
|
+
# The EPSS score representing the probability [0-1] of exploitation in the wild
|
3886
|
+
# in the next 30 days
|
3887
|
+
# Corresponds to the JSON property `score`
|
3888
|
+
# @return [Float]
|
3889
|
+
attr_accessor :score
|
3890
|
+
|
3891
|
+
def initialize(**args)
|
3892
|
+
update!(**args)
|
3893
|
+
end
|
3894
|
+
|
3895
|
+
# Update properties of this object
|
3896
|
+
def update!(**args)
|
3897
|
+
@percentile = args[:percentile] if args.key?(:percentile)
|
3898
|
+
@score = args[:score] if args.key?(:score)
|
3899
|
+
end
|
3900
|
+
end
|
3901
|
+
|
3849
3902
|
# The request to generate and export SBOM. Target must be specified for the
|
3850
3903
|
# request.
|
3851
3904
|
class ExportSbomRequest
|
@@ -4901,7 +4954,8 @@ module Google
|
|
4901
4954
|
attr_accessor :notes
|
4902
4955
|
|
4903
4956
|
# Unordered list. Unreachable regions. Populated for requests from the global
|
4904
|
-
# region when `return_partial_success` is set. Format: projects
|
4957
|
+
# region when `return_partial_success` is set. Format: `projects/[PROJECT_ID]/
|
4958
|
+
# locations/[LOCATION]`
|
4905
4959
|
# Corresponds to the JSON property `unreachable`
|
4906
4960
|
# @return [Array<String>]
|
4907
4961
|
attr_accessor :unreachable
|
@@ -4934,7 +4988,8 @@ module Google
|
|
4934
4988
|
attr_accessor :occurrences
|
4935
4989
|
|
4936
4990
|
# Unordered list. Unreachable regions. Populated for requests from the global
|
4937
|
-
# region when `return_partial_success` is set. Format: projects
|
4991
|
+
# region when `return_partial_success` is set. Format: `projects/[PROJECT_ID]/
|
4992
|
+
# locations/[LOCATION]`
|
4938
4993
|
# Corresponds to the JSON property `unreachable`
|
4939
4994
|
# @return [Array<String>]
|
4940
4995
|
attr_accessor :unreachable
|
@@ -6048,6 +6103,33 @@ module Google
|
|
6048
6103
|
end
|
6049
6104
|
end
|
6050
6105
|
|
6106
|
+
#
|
6107
|
+
class Risk
|
6108
|
+
include Google::Apis::Core::Hashable
|
6109
|
+
|
6110
|
+
# CISA maintains the authoritative source of vulnerabilities that have been
|
6111
|
+
# exploited in the wild.
|
6112
|
+
# Corresponds to the JSON property `cisaKev`
|
6113
|
+
# @return [Google::Apis::ContaineranalysisV1::CisaKnownExploitedVulnerabilities]
|
6114
|
+
attr_accessor :cisa_kev
|
6115
|
+
|
6116
|
+
# The Exploit Prediction Scoring System (EPSS) estimates the likelihood (
|
6117
|
+
# probability) that a software vulnerability will be exploited in the wild.
|
6118
|
+
# Corresponds to the JSON property `epss`
|
6119
|
+
# @return [Google::Apis::ContaineranalysisV1::ExploitPredictionScoringSystem]
|
6120
|
+
attr_accessor :epss
|
6121
|
+
|
6122
|
+
def initialize(**args)
|
6123
|
+
update!(**args)
|
6124
|
+
end
|
6125
|
+
|
6126
|
+
# Update properties of this object
|
6127
|
+
def update!(**args)
|
6128
|
+
@cisa_kev = args[:cisa_kev] if args.key?(:cisa_kev)
|
6129
|
+
@epss = args[:epss] if args.key?(:epss)
|
6130
|
+
end
|
6131
|
+
end
|
6132
|
+
|
6051
6133
|
#
|
6052
6134
|
class RunDetails
|
6053
6135
|
include Google::Apis::Core::Hashable
|
@@ -7451,6 +7533,11 @@ module Google
|
|
7451
7533
|
# @return [Array<Google::Apis::ContaineranalysisV1::RelatedUrl>]
|
7452
7534
|
attr_accessor :related_urls
|
7453
7535
|
|
7536
|
+
# Risk information about the vulnerability, such as CISA, EPSS, etc.
|
7537
|
+
# Corresponds to the JSON property `risk`
|
7538
|
+
# @return [Google::Apis::ContaineranalysisV1::Risk]
|
7539
|
+
attr_accessor :risk
|
7540
|
+
|
7454
7541
|
# Output only. The note provider assigned severity of this vulnerability.
|
7455
7542
|
# Corresponds to the JSON property `severity`
|
7456
7543
|
# @return [String]
|
@@ -7489,6 +7576,7 @@ module Google
|
|
7489
7576
|
@long_description = args[:long_description] if args.key?(:long_description)
|
7490
7577
|
@package_issue = args[:package_issue] if args.key?(:package_issue)
|
7491
7578
|
@related_urls = args[:related_urls] if args.key?(:related_urls)
|
7579
|
+
@risk = args[:risk] if args.key?(:risk)
|
7492
7580
|
@severity = args[:severity] if args.key?(:severity)
|
7493
7581
|
@short_description = args[:short_description] if args.key?(:short_description)
|
7494
7582
|
@type = args[:type] if args.key?(:type)
|
@@ -7507,7 +7595,8 @@ module Google
|
|
7507
7595
|
attr_accessor :counts
|
7508
7596
|
|
7509
7597
|
# Unordered list. Unreachable regions. Populated for requests from the global
|
7510
|
-
# region when `return_partial_success` is set. Format: projects
|
7598
|
+
# region when `return_partial_success` is set. Format: `projects/[PROJECT_ID]/
|
7599
|
+
# locations/[LOCATION]`
|
7511
7600
|
# Corresponds to the JSON property `unreachable`
|
7512
7601
|
# @return [Array<String>]
|
7513
7602
|
attr_accessor :unreachable
|
@@ -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.63.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 = "20250813"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -136,6 +136,12 @@ module Google
|
|
136
136
|
include Google::Apis::Core::JsonObjectSupport
|
137
137
|
end
|
138
138
|
|
139
|
+
class CisaKnownExploitedVulnerabilities
|
140
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
|
+
|
142
|
+
include Google::Apis::Core::JsonObjectSupport
|
143
|
+
end
|
144
|
+
|
139
145
|
class Cvss
|
140
146
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
147
|
|
@@ -532,6 +538,12 @@ module Google
|
|
532
538
|
include Google::Apis::Core::JsonObjectSupport
|
533
539
|
end
|
534
540
|
|
541
|
+
class ExploitPredictionScoringSystem
|
542
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
543
|
+
|
544
|
+
include Google::Apis::Core::JsonObjectSupport
|
545
|
+
end
|
546
|
+
|
535
547
|
class ExportSbomRequest
|
536
548
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
537
549
|
|
@@ -862,6 +874,12 @@ module Google
|
|
862
874
|
include Google::Apis::Core::JsonObjectSupport
|
863
875
|
end
|
864
876
|
|
877
|
+
class Risk
|
878
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
879
|
+
|
880
|
+
include Google::Apis::Core::JsonObjectSupport
|
881
|
+
end
|
882
|
+
|
865
883
|
class RunDetails
|
866
884
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
867
885
|
|
@@ -1287,6 +1305,7 @@ module Google
|
|
1287
1305
|
property :name, as: 'name'
|
1288
1306
|
property :pull_timing, as: 'pullTiming', class: Google::Apis::ContaineranalysisV1::TimeSpan, decorator: Google::Apis::ContaineranalysisV1::TimeSpan::Representation
|
1289
1307
|
|
1308
|
+
property :remote_config, as: 'remoteConfig'
|
1290
1309
|
collection :results, as: 'results', class: Google::Apis::ContaineranalysisV1::StepResult, decorator: Google::Apis::ContaineranalysisV1::StepResult::Representation
|
1291
1310
|
|
1292
1311
|
property :script, as: 'script'
|
@@ -1308,6 +1327,13 @@ module Google
|
|
1308
1327
|
end
|
1309
1328
|
end
|
1310
1329
|
|
1330
|
+
class CisaKnownExploitedVulnerabilities
|
1331
|
+
# @private
|
1332
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1333
|
+
property :known_ransomware_campaign_use, as: 'knownRansomwareCampaignUse'
|
1334
|
+
end
|
1335
|
+
end
|
1336
|
+
|
1311
1337
|
class Cvss
|
1312
1338
|
# @private
|
1313
1339
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2077,6 +2103,14 @@ module Google
|
|
2077
2103
|
end
|
2078
2104
|
end
|
2079
2105
|
|
2106
|
+
class ExploitPredictionScoringSystem
|
2107
|
+
# @private
|
2108
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2109
|
+
property :percentile, as: 'percentile'
|
2110
|
+
property :score, as: 'score'
|
2111
|
+
end
|
2112
|
+
end
|
2113
|
+
|
2080
2114
|
class ExportSbomRequest
|
2081
2115
|
# @private
|
2082
2116
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2681,6 +2715,16 @@ module Google
|
|
2681
2715
|
end
|
2682
2716
|
end
|
2683
2717
|
|
2718
|
+
class Risk
|
2719
|
+
# @private
|
2720
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2721
|
+
property :cisa_kev, as: 'cisaKev', class: Google::Apis::ContaineranalysisV1::CisaKnownExploitedVulnerabilities, decorator: Google::Apis::ContaineranalysisV1::CisaKnownExploitedVulnerabilities::Representation
|
2722
|
+
|
2723
|
+
property :epss, as: 'epss', class: Google::Apis::ContaineranalysisV1::ExploitPredictionScoringSystem, decorator: Google::Apis::ContaineranalysisV1::ExploitPredictionScoringSystem::Representation
|
2724
|
+
|
2725
|
+
end
|
2726
|
+
end
|
2727
|
+
|
2684
2728
|
class RunDetails
|
2685
2729
|
# @private
|
2686
2730
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3069,6 +3113,8 @@ module Google
|
|
3069
3113
|
|
3070
3114
|
collection :related_urls, as: 'relatedUrls', class: Google::Apis::ContaineranalysisV1::RelatedUrl, decorator: Google::Apis::ContaineranalysisV1::RelatedUrl::Representation
|
3071
3115
|
|
3116
|
+
property :risk, as: 'risk', class: Google::Apis::ContaineranalysisV1::Risk, decorator: Google::Apis::ContaineranalysisV1::Risk::Representation
|
3117
|
+
|
3072
3118
|
property :severity, as: 'severity'
|
3073
3119
|
property :short_description, as: 'shortDescription'
|
3074
3120
|
property :type, as: 'type'
|
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.63.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.63.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:
|