google-apis-containeranalysis_v1alpha1 0.73.0 → 0.75.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: 342db9be5616dfafb4645e94ce16ab4e6eda6f1a9f22e41b61c314bccd03a81f
|
4
|
+
data.tar.gz: ab8a77e228f196fddb0992b0869e1fcfd5449157e419f9551d0b2a1513c943bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bfee7ca04eaff243f8020c30b4e398cede4ad41378e767f6086ae8f74311943c67fa1e754b00577dd5a80f4cad0743dabbfe62158825bcd6ab1dbb58b9395cd6
|
7
|
+
data.tar.gz: 7b277e867a14459b1b9f67eebf478a2ec3a9a7e9391b5ec48aa86897cccddd77a9852062b62860554eadc4bf08380839101758623514f73940d2b85332140fd3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1alpha1
|
2
2
|
|
3
|
+
### v0.75.0 (2025-09-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250829
|
6
|
+
|
7
|
+
### v0.74.0 (2025-08-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250813
|
10
|
+
|
3
11
|
### v0.73.0 (2025-07-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250704
|
@@ -679,7 +679,7 @@ module Google
|
|
679
679
|
end
|
680
680
|
end
|
681
681
|
|
682
|
-
# A step in the build pipeline. Next ID:
|
682
|
+
# A step in the build pipeline. Next ID: 23
|
683
683
|
class BuildStep
|
684
684
|
include Google::Apis::Core::Hashable
|
685
685
|
|
@@ -770,6 +770,11 @@ module Google
|
|
770
770
|
# @return [Google::Apis::ContaineranalysisV1alpha1::TimeSpan]
|
771
771
|
attr_accessor :pull_timing
|
772
772
|
|
773
|
+
# Remote configuration for the build step.
|
774
|
+
# Corresponds to the JSON property `remoteConfig`
|
775
|
+
# @return [String]
|
776
|
+
attr_accessor :remote_config
|
777
|
+
|
773
778
|
#
|
774
779
|
# Corresponds to the JSON property `results`
|
775
780
|
# @return [Array<Google::Apis::ContaineranalysisV1alpha1::StepResult>]
|
@@ -841,6 +846,7 @@ module Google
|
|
841
846
|
@id = args[:id] if args.key?(:id)
|
842
847
|
@name = args[:name] if args.key?(:name)
|
843
848
|
@pull_timing = args[:pull_timing] if args.key?(:pull_timing)
|
849
|
+
@remote_config = args[:remote_config] if args.key?(:remote_config)
|
844
850
|
@results = args[:results] if args.key?(:results)
|
845
851
|
@script = args[:script] if args.key?(:script)
|
846
852
|
@secret_env = args[:secret_env] if args.key?(:secret_env)
|
@@ -897,6 +903,27 @@ module Google
|
|
897
903
|
end
|
898
904
|
end
|
899
905
|
|
906
|
+
# CISAKnownExploitedVulnerabilities provides information about whether the
|
907
|
+
# vulnerability is known to have been leveraged as part of a ransomware campaign.
|
908
|
+
class CisaKnownExploitedVulnerabilities
|
909
|
+
include Google::Apis::Core::Hashable
|
910
|
+
|
911
|
+
# Optional. Whether the vulnerability is known to have been leveraged as part of
|
912
|
+
# a ransomware campaign.
|
913
|
+
# Corresponds to the JSON property `knownRansomwareCampaignUse`
|
914
|
+
# @return [String]
|
915
|
+
attr_accessor :known_ransomware_campaign_use
|
916
|
+
|
917
|
+
def initialize(**args)
|
918
|
+
update!(**args)
|
919
|
+
end
|
920
|
+
|
921
|
+
# Update properties of this object
|
922
|
+
def update!(**args)
|
923
|
+
@known_ransomware_campaign_use = args[:known_ransomware_campaign_use] if args.key?(:known_ransomware_campaign_use)
|
924
|
+
end
|
925
|
+
end
|
926
|
+
|
900
927
|
# Common Vulnerability Scoring System. This message is compatible with CVSS v2
|
901
928
|
# and v3. For CVSS v2 details, see https://www.first.org/cvss/v2/guide CVSS v2
|
902
929
|
# calculator: https://nvd.nist.gov/vuln-metrics/cvss/v2-calculator For CVSS v3
|
@@ -1516,7 +1543,8 @@ module Google
|
|
1516
1543
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsNpmPackage
|
1517
1544
|
include Google::Apis::Core::Hashable
|
1518
1545
|
|
1519
|
-
# Path to the package.json. e.g. workspace/path/to/package
|
1546
|
+
# Optional. Path to the package.json. e.g. workspace/path/to/package Only one of
|
1547
|
+
# `archive` or `package_path` can be specified.
|
1520
1548
|
# Corresponds to the JSON property `packagePath`
|
1521
1549
|
# @return [String]
|
1522
1550
|
attr_accessor :package_path
|
@@ -3871,6 +3899,34 @@ module Google
|
|
3871
3899
|
end
|
3872
3900
|
end
|
3873
3901
|
|
3902
|
+
# ExploitPredictionScoringSystem provides information about the Exploit
|
3903
|
+
# Prediction Scoring System (EPSS) score and percentile.
|
3904
|
+
class ExploitPredictionScoringSystem
|
3905
|
+
include Google::Apis::Core::Hashable
|
3906
|
+
|
3907
|
+
# Optional. The percentile of the current score, the proportion of all scored
|
3908
|
+
# vulnerabilities with the same or a lower EPSS score
|
3909
|
+
# Corresponds to the JSON property `percentile`
|
3910
|
+
# @return [Float]
|
3911
|
+
attr_accessor :percentile
|
3912
|
+
|
3913
|
+
# Optional. The EPSS score representing the probability [0-1] of exploitation in
|
3914
|
+
# the wild in the next 30 days
|
3915
|
+
# Corresponds to the JSON property `score`
|
3916
|
+
# @return [Float]
|
3917
|
+
attr_accessor :score
|
3918
|
+
|
3919
|
+
def initialize(**args)
|
3920
|
+
update!(**args)
|
3921
|
+
end
|
3922
|
+
|
3923
|
+
# Update properties of this object
|
3924
|
+
def update!(**args)
|
3925
|
+
@percentile = args[:percentile] if args.key?(:percentile)
|
3926
|
+
@score = args[:score] if args.key?(:score)
|
3927
|
+
end
|
3928
|
+
end
|
3929
|
+
|
3874
3930
|
# Represents a textual expression in the Common Expression Language (CEL) syntax.
|
3875
3931
|
# CEL is a C-like expression language. The syntax and semantics of CEL are
|
3876
3932
|
# documented at https://github.com/google/cel-spec. Example (Comparison): title:
|
@@ -6630,6 +6686,33 @@ module Google
|
|
6630
6686
|
end
|
6631
6687
|
end
|
6632
6688
|
|
6689
|
+
# The Risk message provides information about the risk of a vulnerability.
|
6690
|
+
class Risk
|
6691
|
+
include Google::Apis::Core::Hashable
|
6692
|
+
|
6693
|
+
# CISAKnownExploitedVulnerabilities provides information about whether the
|
6694
|
+
# vulnerability is known to have been leveraged as part of a ransomware campaign.
|
6695
|
+
# Corresponds to the JSON property `cisaKev`
|
6696
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::CisaKnownExploitedVulnerabilities]
|
6697
|
+
attr_accessor :cisa_kev
|
6698
|
+
|
6699
|
+
# ExploitPredictionScoringSystem provides information about the Exploit
|
6700
|
+
# Prediction Scoring System (EPSS) score and percentile.
|
6701
|
+
# Corresponds to the JSON property `epss`
|
6702
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::ExploitPredictionScoringSystem]
|
6703
|
+
attr_accessor :epss
|
6704
|
+
|
6705
|
+
def initialize(**args)
|
6706
|
+
update!(**args)
|
6707
|
+
end
|
6708
|
+
|
6709
|
+
# Update properties of this object
|
6710
|
+
def update!(**args)
|
6711
|
+
@cisa_kev = args[:cisa_kev] if args.key?(:cisa_kev)
|
6712
|
+
@epss = args[:epss] if args.key?(:epss)
|
6713
|
+
end
|
6714
|
+
end
|
6715
|
+
|
6633
6716
|
#
|
6634
6717
|
class RunDetails
|
6635
6718
|
include Google::Apis::Core::Hashable
|
@@ -8039,6 +8122,11 @@ module Google
|
|
8039
8122
|
# @return [Array<Google::Apis::ContaineranalysisV1alpha1::PackageIssue>]
|
8040
8123
|
attr_accessor :package_issue
|
8041
8124
|
|
8125
|
+
# The Risk message provides information about the risk of a vulnerability.
|
8126
|
+
# Corresponds to the JSON property `risk`
|
8127
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::Risk]
|
8128
|
+
attr_accessor :risk
|
8129
|
+
|
8042
8130
|
# Output only. The note provider assigned Severity of the vulnerability.
|
8043
8131
|
# Corresponds to the JSON property `severity`
|
8044
8132
|
# @return [String]
|
@@ -8070,6 +8158,7 @@ module Google
|
|
8070
8158
|
@effective_severity = args[:effective_severity] if args.key?(:effective_severity)
|
8071
8159
|
@extra_details = args[:extra_details] if args.key?(:extra_details)
|
8072
8160
|
@package_issue = args[:package_issue] if args.key?(:package_issue)
|
8161
|
+
@risk = args[:risk] if args.key?(:risk)
|
8073
8162
|
@severity = args[:severity] if args.key?(:severity)
|
8074
8163
|
@type = args[:type] if args.key?(:type)
|
8075
8164
|
@vex_assessment = args[:vex_assessment] if args.key?(:vex_assessment)
|
@@ -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.75.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 = "20250829"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -124,6 +124,12 @@ module Google
|
|
124
124
|
include Google::Apis::Core::JsonObjectSupport
|
125
125
|
end
|
126
126
|
|
127
|
+
class CisaKnownExploitedVulnerabilities
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
|
+
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
131
|
+
end
|
132
|
+
|
127
133
|
class Cvss
|
128
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
135
|
|
@@ -520,6 +526,12 @@ module Google
|
|
520
526
|
include Google::Apis::Core::JsonObjectSupport
|
521
527
|
end
|
522
528
|
|
529
|
+
class ExploitPredictionScoringSystem
|
530
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
531
|
+
|
532
|
+
include Google::Apis::Core::JsonObjectSupport
|
533
|
+
end
|
534
|
+
|
523
535
|
class Expr
|
524
536
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
525
537
|
|
@@ -898,6 +910,12 @@ module Google
|
|
898
910
|
include Google::Apis::Core::JsonObjectSupport
|
899
911
|
end
|
900
912
|
|
913
|
+
class Risk
|
914
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
915
|
+
|
916
|
+
include Google::Apis::Core::JsonObjectSupport
|
917
|
+
end
|
918
|
+
|
901
919
|
class RunDetails
|
902
920
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
903
921
|
|
@@ -1312,6 +1330,7 @@ module Google
|
|
1312
1330
|
property :name, as: 'name'
|
1313
1331
|
property :pull_timing, as: 'pullTiming', class: Google::Apis::ContaineranalysisV1alpha1::TimeSpan, decorator: Google::Apis::ContaineranalysisV1alpha1::TimeSpan::Representation
|
1314
1332
|
|
1333
|
+
property :remote_config, as: 'remoteConfig'
|
1315
1334
|
collection :results, as: 'results', class: Google::Apis::ContaineranalysisV1alpha1::StepResult, decorator: Google::Apis::ContaineranalysisV1alpha1::StepResult::Representation
|
1316
1335
|
|
1317
1336
|
property :script, as: 'script'
|
@@ -1342,6 +1361,13 @@ module Google
|
|
1342
1361
|
end
|
1343
1362
|
end
|
1344
1363
|
|
1364
|
+
class CisaKnownExploitedVulnerabilities
|
1365
|
+
# @private
|
1366
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1367
|
+
property :known_ransomware_campaign_use, as: 'knownRansomwareCampaignUse'
|
1368
|
+
end
|
1369
|
+
end
|
1370
|
+
|
1345
1371
|
class Cvss
|
1346
1372
|
# @private
|
1347
1373
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2114,6 +2140,14 @@ module Google
|
|
2114
2140
|
end
|
2115
2141
|
end
|
2116
2142
|
|
2143
|
+
class ExploitPredictionScoringSystem
|
2144
|
+
# @private
|
2145
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2146
|
+
property :percentile, as: 'percentile'
|
2147
|
+
property :score, as: 'score'
|
2148
|
+
end
|
2149
|
+
end
|
2150
|
+
|
2117
2151
|
class Expr
|
2118
2152
|
# @private
|
2119
2153
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2843,6 +2877,16 @@ module Google
|
|
2843
2877
|
end
|
2844
2878
|
end
|
2845
2879
|
|
2880
|
+
class Risk
|
2881
|
+
# @private
|
2882
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2883
|
+
property :cisa_kev, as: 'cisaKev', class: Google::Apis::ContaineranalysisV1alpha1::CisaKnownExploitedVulnerabilities, decorator: Google::Apis::ContaineranalysisV1alpha1::CisaKnownExploitedVulnerabilities::Representation
|
2884
|
+
|
2885
|
+
property :epss, as: 'epss', class: Google::Apis::ContaineranalysisV1alpha1::ExploitPredictionScoringSystem, decorator: Google::Apis::ContaineranalysisV1alpha1::ExploitPredictionScoringSystem::Representation
|
2886
|
+
|
2887
|
+
end
|
2888
|
+
end
|
2889
|
+
|
2846
2890
|
class RunDetails
|
2847
2891
|
# @private
|
2848
2892
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3242,6 +3286,8 @@ module Google
|
|
3242
3286
|
property :extra_details, as: 'extraDetails'
|
3243
3287
|
collection :package_issue, as: 'packageIssue', class: Google::Apis::ContaineranalysisV1alpha1::PackageIssue, decorator: Google::Apis::ContaineranalysisV1alpha1::PackageIssue::Representation
|
3244
3288
|
|
3289
|
+
property :risk, as: 'risk', class: Google::Apis::ContaineranalysisV1alpha1::Risk, decorator: Google::Apis::ContaineranalysisV1alpha1::Risk::Representation
|
3290
|
+
|
3245
3291
|
property :severity, as: 'severity'
|
3246
3292
|
property :type, as: 'type'
|
3247
3293
|
property :vex_assessment, as: 'vexAssessment', class: Google::Apis::ContaineranalysisV1alpha1::VexAssessment, decorator: Google::Apis::ContaineranalysisV1alpha1::VexAssessment::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.75.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.75.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:
|