google-apis-containeranalysis_v1beta1 0.79.0 → 0.81.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: 77e497d427f105ed3a254aadb81253958c64e93bb114c9d943483e2bfbc84483
|
|
4
|
+
data.tar.gz: 73d2136fc598ed96721f13f697731b6dcbbef9dfa967fd33e092cf790883ec71
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 866010c3b03ced4ae4cd0b093a514cfd34ad5abbbf48c259c2eeb13b1badd632184cfbadec55914ec859730fcd7a2a8b13b6b37c833906927770e5430d73276d
|
|
7
|
+
data.tar.gz: 6704ece5a713290a8f0264a0ea7e3bfadeed83aa442d8997ed439675cb49c041d04a6854254829974e2d62367ceb98c590c9b1d4a03be094a6c762ec7514200b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.81.0 (2026-08-16)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260805
|
|
6
|
+
|
|
7
|
+
### v0.80.0 (2026-07-05)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260619
|
|
10
|
+
|
|
3
11
|
### v0.79.0 (2026-06-21)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260610
|
|
@@ -49,6 +49,11 @@ module Google
|
|
|
49
49
|
# @return [String]
|
|
50
50
|
attr_accessor :max_severity
|
|
51
51
|
|
|
52
|
+
# Per scanner verdict details.
|
|
53
|
+
# Corresponds to the JSON property `perScannerVerdict`
|
|
54
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::PerScannerVerdict]
|
|
55
|
+
attr_accessor :per_scanner_verdict
|
|
56
|
+
|
|
52
57
|
# Name of the skill that produced this analysis.
|
|
53
58
|
# Corresponds to the JSON property `skillName`
|
|
54
59
|
# @return [String]
|
|
@@ -62,6 +67,7 @@ module Google
|
|
|
62
67
|
def update!(**args)
|
|
63
68
|
@findings = args[:findings] if args.key?(:findings)
|
|
64
69
|
@max_severity = args[:max_severity] if args.key?(:max_severity)
|
|
70
|
+
@per_scanner_verdict = args[:per_scanner_verdict] if args.key?(:per_scanner_verdict)
|
|
65
71
|
@skill_name = args[:skill_name] if args.key?(:skill_name)
|
|
66
72
|
end
|
|
67
73
|
end
|
|
@@ -1019,6 +1025,11 @@ module Google
|
|
|
1019
1025
|
# @return [String]
|
|
1020
1026
|
attr_accessor :confidentiality_impact
|
|
1021
1027
|
|
|
1028
|
+
# Exploit Maturity (E). Defined in CVSS v4.
|
|
1029
|
+
# Corresponds to the JSON property `exploitMaturity`
|
|
1030
|
+
# @return [String]
|
|
1031
|
+
attr_accessor :exploit_maturity
|
|
1032
|
+
|
|
1022
1033
|
#
|
|
1023
1034
|
# Corresponds to the JSON property `exploitabilityScore`
|
|
1024
1035
|
# @return [Float]
|
|
@@ -1092,6 +1103,7 @@ module Google
|
|
|
1092
1103
|
@availability_impact = args[:availability_impact] if args.key?(:availability_impact)
|
|
1093
1104
|
@base_score = args[:base_score] if args.key?(:base_score)
|
|
1094
1105
|
@confidentiality_impact = args[:confidentiality_impact] if args.key?(:confidentiality_impact)
|
|
1106
|
+
@exploit_maturity = args[:exploit_maturity] if args.key?(:exploit_maturity)
|
|
1095
1107
|
@exploitability_score = args[:exploitability_score] if args.key?(:exploitability_score)
|
|
1096
1108
|
@impact_score = args[:impact_score] if args.key?(:impact_score)
|
|
1097
1109
|
@integrity_impact = args[:integrity_impact] if args.key?(:integrity_impact)
|
|
@@ -5581,6 +5593,81 @@ module Google
|
|
|
5581
5593
|
end
|
|
5582
5594
|
end
|
|
5583
5595
|
|
|
5596
|
+
# Result of Malicious Content LLM scan.
|
|
5597
|
+
class MaliciousContentLlmResult
|
|
5598
|
+
include Google::Apis::Core::Hashable
|
|
5599
|
+
|
|
5600
|
+
# Tracks max severity found.
|
|
5601
|
+
# Corresponds to the JSON property `maxSeverity`
|
|
5602
|
+
# @return [String]
|
|
5603
|
+
attr_accessor :max_severity
|
|
5604
|
+
|
|
5605
|
+
# Status of the scan.
|
|
5606
|
+
# Corresponds to the JSON property `scanStatus`
|
|
5607
|
+
# @return [String]
|
|
5608
|
+
attr_accessor :scan_status
|
|
5609
|
+
|
|
5610
|
+
def initialize(**args)
|
|
5611
|
+
update!(**args)
|
|
5612
|
+
end
|
|
5613
|
+
|
|
5614
|
+
# Update properties of this object
|
|
5615
|
+
def update!(**args)
|
|
5616
|
+
@max_severity = args[:max_severity] if args.key?(:max_severity)
|
|
5617
|
+
@scan_status = args[:scan_status] if args.key?(:scan_status)
|
|
5618
|
+
end
|
|
5619
|
+
end
|
|
5620
|
+
|
|
5621
|
+
# Result of Malicious Content Static scan.
|
|
5622
|
+
class MaliciousContentStaticResult
|
|
5623
|
+
include Google::Apis::Core::Hashable
|
|
5624
|
+
|
|
5625
|
+
# Tracks max severity found.
|
|
5626
|
+
# Corresponds to the JSON property `maxSeverity`
|
|
5627
|
+
# @return [String]
|
|
5628
|
+
attr_accessor :max_severity
|
|
5629
|
+
|
|
5630
|
+
# Status of the scan.
|
|
5631
|
+
# Corresponds to the JSON property `scanStatus`
|
|
5632
|
+
# @return [String]
|
|
5633
|
+
attr_accessor :scan_status
|
|
5634
|
+
|
|
5635
|
+
def initialize(**args)
|
|
5636
|
+
update!(**args)
|
|
5637
|
+
end
|
|
5638
|
+
|
|
5639
|
+
# Update properties of this object
|
|
5640
|
+
def update!(**args)
|
|
5641
|
+
@max_severity = args[:max_severity] if args.key?(:max_severity)
|
|
5642
|
+
@scan_status = args[:scan_status] if args.key?(:scan_status)
|
|
5643
|
+
end
|
|
5644
|
+
end
|
|
5645
|
+
|
|
5646
|
+
# Result of Malware scan.
|
|
5647
|
+
class MalwareScanResult
|
|
5648
|
+
include Google::Apis::Core::Hashable
|
|
5649
|
+
|
|
5650
|
+
# Status of the scan.
|
|
5651
|
+
# Corresponds to the JSON property `scanStatus`
|
|
5652
|
+
# @return [String]
|
|
5653
|
+
attr_accessor :scan_status
|
|
5654
|
+
|
|
5655
|
+
# Verdict of the scan.
|
|
5656
|
+
# Corresponds to the JSON property `verdict`
|
|
5657
|
+
# @return [String]
|
|
5658
|
+
attr_accessor :verdict
|
|
5659
|
+
|
|
5660
|
+
def initialize(**args)
|
|
5661
|
+
update!(**args)
|
|
5662
|
+
end
|
|
5663
|
+
|
|
5664
|
+
# Update properties of this object
|
|
5665
|
+
def update!(**args)
|
|
5666
|
+
@scan_status = args[:scan_status] if args.key?(:scan_status)
|
|
5667
|
+
@verdict = args[:verdict] if args.key?(:verdict)
|
|
5668
|
+
end
|
|
5669
|
+
end
|
|
5670
|
+
|
|
5584
5671
|
# A type of analysis that can be done for a resource.
|
|
5585
5672
|
class Note
|
|
5586
5673
|
include Google::Apis::Core::Hashable
|
|
@@ -6299,6 +6386,43 @@ module Google
|
|
|
6299
6386
|
end
|
|
6300
6387
|
end
|
|
6301
6388
|
|
|
6389
|
+
# Per scanner verdict details.
|
|
6390
|
+
class PerScannerVerdict
|
|
6391
|
+
include Google::Apis::Core::Hashable
|
|
6392
|
+
|
|
6393
|
+
# Result of Malicious Content LLM scan.
|
|
6394
|
+
# Corresponds to the JSON property `maliciousContentLlmResult`
|
|
6395
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::MaliciousContentLlmResult]
|
|
6396
|
+
attr_accessor :malicious_content_llm_result
|
|
6397
|
+
|
|
6398
|
+
# Result of Malicious Content Static scan.
|
|
6399
|
+
# Corresponds to the JSON property `maliciousContentStaticResult`
|
|
6400
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::MaliciousContentStaticResult]
|
|
6401
|
+
attr_accessor :malicious_content_static_result
|
|
6402
|
+
|
|
6403
|
+
# Result of Malware scan.
|
|
6404
|
+
# Corresponds to the JSON property `malwareScan`
|
|
6405
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::MalwareScanResult]
|
|
6406
|
+
attr_accessor :malware_scan
|
|
6407
|
+
|
|
6408
|
+
# Result of Workspace Policy scan.
|
|
6409
|
+
# Corresponds to the JSON property `workspacePolicy`
|
|
6410
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::WorkspacePolicyResult]
|
|
6411
|
+
attr_accessor :workspace_policy
|
|
6412
|
+
|
|
6413
|
+
def initialize(**args)
|
|
6414
|
+
update!(**args)
|
|
6415
|
+
end
|
|
6416
|
+
|
|
6417
|
+
# Update properties of this object
|
|
6418
|
+
def update!(**args)
|
|
6419
|
+
@malicious_content_llm_result = args[:malicious_content_llm_result] if args.key?(:malicious_content_llm_result)
|
|
6420
|
+
@malicious_content_static_result = args[:malicious_content_static_result] if args.key?(:malicious_content_static_result)
|
|
6421
|
+
@malware_scan = args[:malware_scan] if args.key?(:malware_scan)
|
|
6422
|
+
@workspace_policy = args[:workspace_policy] if args.key?(:workspace_policy)
|
|
6423
|
+
end
|
|
6424
|
+
end
|
|
6425
|
+
|
|
6302
6426
|
# An attestation wrapper with a PGP-compatible signature. This message only
|
|
6303
6427
|
# supports `ATTACHED` signatures, where the payload that is signed is included
|
|
6304
6428
|
# alongside the signature itself in the same file.
|
|
@@ -7918,6 +8042,31 @@ module Google
|
|
|
7918
8042
|
@name = args[:name] if args.key?(:name)
|
|
7919
8043
|
end
|
|
7920
8044
|
end
|
|
8045
|
+
|
|
8046
|
+
# Result of Workspace Policy scan.
|
|
8047
|
+
class WorkspacePolicyResult
|
|
8048
|
+
include Google::Apis::Core::Hashable
|
|
8049
|
+
|
|
8050
|
+
# Status of the scan.
|
|
8051
|
+
# Corresponds to the JSON property `scanStatus`
|
|
8052
|
+
# @return [String]
|
|
8053
|
+
attr_accessor :scan_status
|
|
8054
|
+
|
|
8055
|
+
# Verdict of the scan.
|
|
8056
|
+
# Corresponds to the JSON property `verdict`
|
|
8057
|
+
# @return [String]
|
|
8058
|
+
attr_accessor :verdict
|
|
8059
|
+
|
|
8060
|
+
def initialize(**args)
|
|
8061
|
+
update!(**args)
|
|
8062
|
+
end
|
|
8063
|
+
|
|
8064
|
+
# Update properties of this object
|
|
8065
|
+
def update!(**args)
|
|
8066
|
+
@scan_status = args[:scan_status] if args.key?(:scan_status)
|
|
8067
|
+
@verdict = args[:verdict] if args.key?(:verdict)
|
|
8068
|
+
end
|
|
8069
|
+
end
|
|
7921
8070
|
end
|
|
7922
8071
|
end
|
|
7923
8072
|
end
|
|
@@ -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.81.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260805"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -826,6 +826,24 @@ module Google
|
|
|
826
826
|
include Google::Apis::Core::JsonObjectSupport
|
|
827
827
|
end
|
|
828
828
|
|
|
829
|
+
class MaliciousContentLlmResult
|
|
830
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
831
|
+
|
|
832
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
833
|
+
end
|
|
834
|
+
|
|
835
|
+
class MaliciousContentStaticResult
|
|
836
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
837
|
+
|
|
838
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
839
|
+
end
|
|
840
|
+
|
|
841
|
+
class MalwareScanResult
|
|
842
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
843
|
+
|
|
844
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
845
|
+
end
|
|
846
|
+
|
|
829
847
|
class Note
|
|
830
848
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
831
849
|
|
|
@@ -868,6 +886,12 @@ module Google
|
|
|
868
886
|
include Google::Apis::Core::JsonObjectSupport
|
|
869
887
|
end
|
|
870
888
|
|
|
889
|
+
class PerScannerVerdict
|
|
890
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
891
|
+
|
|
892
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
893
|
+
end
|
|
894
|
+
|
|
871
895
|
class PgpSignedAttestation
|
|
872
896
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
873
897
|
|
|
@@ -1126,6 +1150,12 @@ module Google
|
|
|
1126
1150
|
include Google::Apis::Core::JsonObjectSupport
|
|
1127
1151
|
end
|
|
1128
1152
|
|
|
1153
|
+
class WorkspacePolicyResult
|
|
1154
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1155
|
+
|
|
1156
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1157
|
+
end
|
|
1158
|
+
|
|
1129
1159
|
class AiSkillAnalysisNote
|
|
1130
1160
|
# @private
|
|
1131
1161
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1138,6 +1168,8 @@ module Google
|
|
|
1138
1168
|
collection :findings, as: 'findings', class: Google::Apis::ContaineranalysisV1beta1::Finding, decorator: Google::Apis::ContaineranalysisV1beta1::Finding::Representation
|
|
1139
1169
|
|
|
1140
1170
|
property :max_severity, as: 'maxSeverity'
|
|
1171
|
+
property :per_scanner_verdict, as: 'perScannerVerdict', class: Google::Apis::ContaineranalysisV1beta1::PerScannerVerdict, decorator: Google::Apis::ContaineranalysisV1beta1::PerScannerVerdict::Representation
|
|
1172
|
+
|
|
1141
1173
|
property :skill_name, as: 'skillName'
|
|
1142
1174
|
end
|
|
1143
1175
|
end
|
|
@@ -1375,6 +1407,7 @@ module Google
|
|
|
1375
1407
|
property :availability_impact, as: 'availabilityImpact'
|
|
1376
1408
|
property :base_score, as: 'baseScore'
|
|
1377
1409
|
property :confidentiality_impact, as: 'confidentialityImpact'
|
|
1410
|
+
property :exploit_maturity, as: 'exploitMaturity'
|
|
1378
1411
|
property :exploitability_score, as: 'exploitabilityScore'
|
|
1379
1412
|
property :impact_score, as: 'impactScore'
|
|
1380
1413
|
property :integrity_impact, as: 'integrityImpact'
|
|
@@ -2597,6 +2630,30 @@ module Google
|
|
|
2597
2630
|
end
|
|
2598
2631
|
end
|
|
2599
2632
|
|
|
2633
|
+
class MaliciousContentLlmResult
|
|
2634
|
+
# @private
|
|
2635
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2636
|
+
property :max_severity, as: 'maxSeverity'
|
|
2637
|
+
property :scan_status, as: 'scanStatus'
|
|
2638
|
+
end
|
|
2639
|
+
end
|
|
2640
|
+
|
|
2641
|
+
class MaliciousContentStaticResult
|
|
2642
|
+
# @private
|
|
2643
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2644
|
+
property :max_severity, as: 'maxSeverity'
|
|
2645
|
+
property :scan_status, as: 'scanStatus'
|
|
2646
|
+
end
|
|
2647
|
+
end
|
|
2648
|
+
|
|
2649
|
+
class MalwareScanResult
|
|
2650
|
+
# @private
|
|
2651
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2652
|
+
property :scan_status, as: 'scanStatus'
|
|
2653
|
+
property :verdict, as: 'verdict'
|
|
2654
|
+
end
|
|
2655
|
+
end
|
|
2656
|
+
|
|
2600
2657
|
class Note
|
|
2601
2658
|
# @private
|
|
2602
2659
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2776,6 +2833,20 @@ module Google
|
|
|
2776
2833
|
end
|
|
2777
2834
|
end
|
|
2778
2835
|
|
|
2836
|
+
class PerScannerVerdict
|
|
2837
|
+
# @private
|
|
2838
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2839
|
+
property :malicious_content_llm_result, as: 'maliciousContentLlmResult', class: Google::Apis::ContaineranalysisV1beta1::MaliciousContentLlmResult, decorator: Google::Apis::ContaineranalysisV1beta1::MaliciousContentLlmResult::Representation
|
|
2840
|
+
|
|
2841
|
+
property :malicious_content_static_result, as: 'maliciousContentStaticResult', class: Google::Apis::ContaineranalysisV1beta1::MaliciousContentStaticResult, decorator: Google::Apis::ContaineranalysisV1beta1::MaliciousContentStaticResult::Representation
|
|
2842
|
+
|
|
2843
|
+
property :malware_scan, as: 'malwareScan', class: Google::Apis::ContaineranalysisV1beta1::MalwareScanResult, decorator: Google::Apis::ContaineranalysisV1beta1::MalwareScanResult::Representation
|
|
2844
|
+
|
|
2845
|
+
property :workspace_policy, as: 'workspacePolicy', class: Google::Apis::ContaineranalysisV1beta1::WorkspacePolicyResult, decorator: Google::Apis::ContaineranalysisV1beta1::WorkspacePolicyResult::Representation
|
|
2846
|
+
|
|
2847
|
+
end
|
|
2848
|
+
end
|
|
2849
|
+
|
|
2779
2850
|
class PgpSignedAttestation
|
|
2780
2851
|
# @private
|
|
2781
2852
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3206,6 +3277,14 @@ module Google
|
|
|
3206
3277
|
property :name, as: 'name'
|
|
3207
3278
|
end
|
|
3208
3279
|
end
|
|
3280
|
+
|
|
3281
|
+
class WorkspacePolicyResult
|
|
3282
|
+
# @private
|
|
3283
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3284
|
+
property :scan_status, as: 'scanStatus'
|
|
3285
|
+
property :verdict, as: 'verdict'
|
|
3286
|
+
end
|
|
3287
|
+
end
|
|
3209
3288
|
end
|
|
3210
3289
|
end
|
|
3211
3290
|
end
|
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.81.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.81.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:
|