google-apis-containeranalysis_v1alpha1 0.72.0 → 0.74.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/containeranalysis_v1alpha1/classes.rb +89 -1
- data/lib/google/apis/containeranalysis_v1alpha1/gem_version.rb +2 -2
- data/lib/google/apis/containeranalysis_v1alpha1/representations.rb +46 -0
- data/lib/google/apis/containeranalysis_v1alpha1/service.rb +1 -2
- data/lib/google/apis/containeranalysis_v1alpha1.rb +1 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 12871f30482fd27bcadb657038a610007d7303b6684b8ea5ccf5ce61c0922634
|
4
|
+
data.tar.gz: 335132873849abe62df6d33b40aeb848dcf86aab8a8897fc53e15065d7356617
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2691973356aedec80649203507eddb1ddc4fe8d2f53387af4abb331aaa6da3e5a2cb57b245b4a9e9a75be53b0b830b7a8b2bac5a28a63dda89447204a7efa32b
|
7
|
+
data.tar.gz: 63fd784e3a02431983b6a4035b5ddca1834e4f14047a8978fb7da3a3177951652a8451f04667d7090a61e2276f124db3c7d6eb6a4b414bafca785be4b9e11cf7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1alpha1
|
2
2
|
|
3
|
+
### v0.74.0 (2025-08-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250813
|
6
|
+
|
7
|
+
### v0.73.0 (2025-07-13)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250704
|
10
|
+
|
3
11
|
### v0.72.0 (2025-06-08)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250528
|
@@ -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
|
@@ -3871,6 +3898,34 @@ module Google
|
|
3871
3898
|
end
|
3872
3899
|
end
|
3873
3900
|
|
3901
|
+
# ExploitPredictionScoringSystem provides information about the Exploit
|
3902
|
+
# Prediction Scoring System (EPSS) score and percentile.
|
3903
|
+
class ExploitPredictionScoringSystem
|
3904
|
+
include Google::Apis::Core::Hashable
|
3905
|
+
|
3906
|
+
# Optional. The percentile of the current score, the proportion of all scored
|
3907
|
+
# vulnerabilities with the same or a lower EPSS score
|
3908
|
+
# Corresponds to the JSON property `percentile`
|
3909
|
+
# @return [Float]
|
3910
|
+
attr_accessor :percentile
|
3911
|
+
|
3912
|
+
# Optional. The EPSS score representing the probability [0-1] of exploitation in
|
3913
|
+
# the wild in the next 30 days
|
3914
|
+
# Corresponds to the JSON property `score`
|
3915
|
+
# @return [Float]
|
3916
|
+
attr_accessor :score
|
3917
|
+
|
3918
|
+
def initialize(**args)
|
3919
|
+
update!(**args)
|
3920
|
+
end
|
3921
|
+
|
3922
|
+
# Update properties of this object
|
3923
|
+
def update!(**args)
|
3924
|
+
@percentile = args[:percentile] if args.key?(:percentile)
|
3925
|
+
@score = args[:score] if args.key?(:score)
|
3926
|
+
end
|
3927
|
+
end
|
3928
|
+
|
3874
3929
|
# Represents a textual expression in the Common Expression Language (CEL) syntax.
|
3875
3930
|
# CEL is a C-like expression language. The syntax and semantics of CEL are
|
3876
3931
|
# documented at https://github.com/google/cel-spec. Example (Comparison): title:
|
@@ -6630,6 +6685,33 @@ module Google
|
|
6630
6685
|
end
|
6631
6686
|
end
|
6632
6687
|
|
6688
|
+
# The Risk message provides information about the risk of a vulnerability.
|
6689
|
+
class Risk
|
6690
|
+
include Google::Apis::Core::Hashable
|
6691
|
+
|
6692
|
+
# CISAKnownExploitedVulnerabilities provides information about whether the
|
6693
|
+
# vulnerability is known to have been leveraged as part of a ransomware campaign.
|
6694
|
+
# Corresponds to the JSON property `cisaKev`
|
6695
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::CisaKnownExploitedVulnerabilities]
|
6696
|
+
attr_accessor :cisa_kev
|
6697
|
+
|
6698
|
+
# ExploitPredictionScoringSystem provides information about the Exploit
|
6699
|
+
# Prediction Scoring System (EPSS) score and percentile.
|
6700
|
+
# Corresponds to the JSON property `epss`
|
6701
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::ExploitPredictionScoringSystem]
|
6702
|
+
attr_accessor :epss
|
6703
|
+
|
6704
|
+
def initialize(**args)
|
6705
|
+
update!(**args)
|
6706
|
+
end
|
6707
|
+
|
6708
|
+
# Update properties of this object
|
6709
|
+
def update!(**args)
|
6710
|
+
@cisa_kev = args[:cisa_kev] if args.key?(:cisa_kev)
|
6711
|
+
@epss = args[:epss] if args.key?(:epss)
|
6712
|
+
end
|
6713
|
+
end
|
6714
|
+
|
6633
6715
|
#
|
6634
6716
|
class RunDetails
|
6635
6717
|
include Google::Apis::Core::Hashable
|
@@ -8039,6 +8121,11 @@ module Google
|
|
8039
8121
|
# @return [Array<Google::Apis::ContaineranalysisV1alpha1::PackageIssue>]
|
8040
8122
|
attr_accessor :package_issue
|
8041
8123
|
|
8124
|
+
# The Risk message provides information about the risk of a vulnerability.
|
8125
|
+
# Corresponds to the JSON property `risk`
|
8126
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::Risk]
|
8127
|
+
attr_accessor :risk
|
8128
|
+
|
8042
8129
|
# Output only. The note provider assigned Severity of the vulnerability.
|
8043
8130
|
# Corresponds to the JSON property `severity`
|
8044
8131
|
# @return [String]
|
@@ -8070,6 +8157,7 @@ module Google
|
|
8070
8157
|
@effective_severity = args[:effective_severity] if args.key?(:effective_severity)
|
8071
8158
|
@extra_details = args[:extra_details] if args.key?(:extra_details)
|
8072
8159
|
@package_issue = args[:package_issue] if args.key?(:package_issue)
|
8160
|
+
@risk = args[:risk] if args.key?(:risk)
|
8073
8161
|
@severity = args[:severity] if args.key?(:severity)
|
8074
8162
|
@type = args[:type] if args.key?(:type)
|
8075
8163
|
@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.74.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
|
@@ -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
|
@@ -23,8 +23,7 @@ module Google
|
|
23
23
|
# Container Analysis API
|
24
24
|
#
|
25
25
|
# This API is a prerequisite for leveraging Artifact Analysis scanning
|
26
|
-
# capabilities in
|
27
|
-
# Insights (runtime scanning) in GKE. In addition, the Container Analysis API is
|
26
|
+
# capabilities in Artifact Registry. In addition, the Container Analysis API is
|
28
27
|
# an implementation of the Grafeas API, which enables storing, querying, and
|
29
28
|
# retrieval of critical metadata about all of your software artifacts.
|
30
29
|
#
|
@@ -22,8 +22,7 @@ module Google
|
|
22
22
|
# Container Analysis API
|
23
23
|
#
|
24
24
|
# This API is a prerequisite for leveraging Artifact Analysis scanning
|
25
|
-
# capabilities in
|
26
|
-
# Insights (runtime scanning) in GKE. In addition, the Container Analysis API is
|
25
|
+
# capabilities in Artifact Registry. In addition, the Container Analysis API is
|
27
26
|
# an implementation of the Grafeas API, which enables storing, querying, and
|
28
27
|
# retrieval of critical metadata about all of your software artifacts.
|
29
28
|
#
|
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.74.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.74.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:
|