google-apis-containeranalysis_v1 0.77.0 → 0.79.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: 8f52f392473fc8ce67a4f216e55e56ff08795a11becd548e68e1e0d79d67b46d
4
- data.tar.gz: 4a9fb5cfdce12a2ebbdd651ed176078d3ada7f949f1f15a4af636f4517883a99
3
+ metadata.gz: ef88ab084e448f8abc457717ddf21d8902cc15329c75654d7d0cef00d7ec5052
4
+ data.tar.gz: c301e116ac6c9e4942f76f93b5df394c929e2848244d388c7003e428d6e06ab3
5
5
  SHA512:
6
- metadata.gz: b4eac443cab7ac09168621ffd60c5ef74a8f6b52d84a46a3a9bc392906ccb318d45f539b8d54ac981c30fab268913299c253cf2aee274129e7ef338f95c322f8
7
- data.tar.gz: d4cc115d62629bcddc92592a57f9501af6a823ef865515fb9b7acf0fccc3b55cf976747e66501c89c514c3fc0f65b50a99dd6b5a5d25caac4182e8399a06326c
6
+ metadata.gz: ef833b149b5fd511d8e4cf77b4788ae3fed4eb34820067f8af720165ed480aef3f14cbfda9a4e7c9e94320179163dd0d6474ae8bf4a6a6ffc37a45dd2ea671f2
7
+ data.tar.gz: 679ee59940581d521588da5f85e40b09f6778cecffcc4fa8e0c28af324b7497b3fe9523ef72d4febf5eebd6d1ba3cd3c5ede327556394ca1f0d0ef09ab8221f4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-containeranalysis_v1
2
2
 
3
+ ### v0.79.0 (2026-08-16)
4
+
5
+ * Regenerated from discovery document revision 20260805
6
+
7
+ ### v0.78.0 (2026-07-05)
8
+
9
+ * Regenerated from discovery document revision 20260619
10
+
3
11
  ### v0.77.0 (2026-06-21)
4
12
 
5
13
  * Regenerated from discovery document revision 20260610
@@ -44,11 +44,16 @@ module Google
44
44
  # @return [Array<Google::Apis::ContaineranalysisV1::Finding>]
45
45
  attr_accessor :findings
46
46
 
47
- # Maximum severity found among findings.
47
+ # Maximum severity found among findings. Per scanner verdict details.
48
48
  # Corresponds to the JSON property `maxSeverity`
49
49
  # @return [String]
50
50
  attr_accessor :max_severity
51
51
 
52
+ # Per scanner verdict.
53
+ # Corresponds to the JSON property `perScannerVerdict`
54
+ # @return [Google::Apis::ContaineranalysisV1::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
@@ -1015,6 +1021,11 @@ module Google
1015
1021
  # @return [String]
1016
1022
  attr_accessor :confidentiality_impact
1017
1023
 
1024
+ # Exploit Maturity (E). Defined in CVSS v4.
1025
+ # Corresponds to the JSON property `exploitMaturity`
1026
+ # @return [String]
1027
+ attr_accessor :exploit_maturity
1028
+
1018
1029
  #
1019
1030
  # Corresponds to the JSON property `exploitabilityScore`
1020
1031
  # @return [Float]
@@ -1088,6 +1099,7 @@ module Google
1088
1099
  @availability_impact = args[:availability_impact] if args.key?(:availability_impact)
1089
1100
  @base_score = args[:base_score] if args.key?(:base_score)
1090
1101
  @confidentiality_impact = args[:confidentiality_impact] if args.key?(:confidentiality_impact)
1102
+ @exploit_maturity = args[:exploit_maturity] if args.key?(:exploit_maturity)
1091
1103
  @exploitability_score = args[:exploitability_score] if args.key?(:exploitability_score)
1092
1104
  @impact_score = args[:impact_score] if args.key?(:impact_score)
1093
1105
  @integrity_impact = args[:integrity_impact] if args.key?(:integrity_impact)
@@ -5486,6 +5498,81 @@ module Google
5486
5498
  end
5487
5499
  end
5488
5500
 
5501
+ # Result of Malicious Content LLM scan.
5502
+ class MaliciousContentLlmResult
5503
+ include Google::Apis::Core::Hashable
5504
+
5505
+ # Tracks max severity found.
5506
+ # Corresponds to the JSON property `maxSeverity`
5507
+ # @return [String]
5508
+ attr_accessor :max_severity
5509
+
5510
+ # Status of the scan.
5511
+ # Corresponds to the JSON property `scanStatus`
5512
+ # @return [String]
5513
+ attr_accessor :scan_status
5514
+
5515
+ def initialize(**args)
5516
+ update!(**args)
5517
+ end
5518
+
5519
+ # Update properties of this object
5520
+ def update!(**args)
5521
+ @max_severity = args[:max_severity] if args.key?(:max_severity)
5522
+ @scan_status = args[:scan_status] if args.key?(:scan_status)
5523
+ end
5524
+ end
5525
+
5526
+ # Result of Malicious Content Static scan.
5527
+ class MaliciousContentStaticResult
5528
+ include Google::Apis::Core::Hashable
5529
+
5530
+ # Tracks max severity found.
5531
+ # Corresponds to the JSON property `maxSeverity`
5532
+ # @return [String]
5533
+ attr_accessor :max_severity
5534
+
5535
+ # Status of the scan.
5536
+ # Corresponds to the JSON property `scanStatus`
5537
+ # @return [String]
5538
+ attr_accessor :scan_status
5539
+
5540
+ def initialize(**args)
5541
+ update!(**args)
5542
+ end
5543
+
5544
+ # Update properties of this object
5545
+ def update!(**args)
5546
+ @max_severity = args[:max_severity] if args.key?(:max_severity)
5547
+ @scan_status = args[:scan_status] if args.key?(:scan_status)
5548
+ end
5549
+ end
5550
+
5551
+ # Result of Malware scan.
5552
+ class MalwareScanResult
5553
+ include Google::Apis::Core::Hashable
5554
+
5555
+ # Status of the scan.
5556
+ # Corresponds to the JSON property `scanStatus`
5557
+ # @return [String]
5558
+ attr_accessor :scan_status
5559
+
5560
+ # Verdict of the scan.
5561
+ # Corresponds to the JSON property `verdict`
5562
+ # @return [String]
5563
+ attr_accessor :verdict
5564
+
5565
+ def initialize(**args)
5566
+ update!(**args)
5567
+ end
5568
+
5569
+ # Update properties of this object
5570
+ def update!(**args)
5571
+ @scan_status = args[:scan_status] if args.key?(:scan_status)
5572
+ @verdict = args[:verdict] if args.key?(:verdict)
5573
+ end
5574
+ end
5575
+
5489
5576
  #
5490
5577
  class Material
5491
5578
  include Google::Apis::Core::Hashable
@@ -6155,6 +6242,43 @@ module Google
6155
6242
  end
6156
6243
  end
6157
6244
 
6245
+ #
6246
+ class PerScannerVerdict
6247
+ include Google::Apis::Core::Hashable
6248
+
6249
+ # Result of Malicious Content LLM scan.
6250
+ # Corresponds to the JSON property `maliciousContentLlmResult`
6251
+ # @return [Google::Apis::ContaineranalysisV1::MaliciousContentLlmResult]
6252
+ attr_accessor :malicious_content_llm_result
6253
+
6254
+ # Result of Malicious Content Static scan.
6255
+ # Corresponds to the JSON property `maliciousContentStaticResult`
6256
+ # @return [Google::Apis::ContaineranalysisV1::MaliciousContentStaticResult]
6257
+ attr_accessor :malicious_content_static_result
6258
+
6259
+ # Result of Malware scan.
6260
+ # Corresponds to the JSON property `malwareScan`
6261
+ # @return [Google::Apis::ContaineranalysisV1::MalwareScanResult]
6262
+ attr_accessor :malware_scan
6263
+
6264
+ # Result of Workspace Policy scan.
6265
+ # Corresponds to the JSON property `workspacePolicy`
6266
+ # @return [Google::Apis::ContaineranalysisV1::WorkspacePolicyResult]
6267
+ attr_accessor :workspace_policy
6268
+
6269
+ def initialize(**args)
6270
+ update!(**args)
6271
+ end
6272
+
6273
+ # Update properties of this object
6274
+ def update!(**args)
6275
+ @malicious_content_llm_result = args[:malicious_content_llm_result] if args.key?(:malicious_content_llm_result)
6276
+ @malicious_content_static_result = args[:malicious_content_static_result] if args.key?(:malicious_content_static_result)
6277
+ @malware_scan = args[:malware_scan] if args.key?(:malware_scan)
6278
+ @workspace_policy = args[:workspace_policy] if args.key?(:workspace_policy)
6279
+ end
6280
+ end
6281
+
6158
6282
  # An Identity and Access Management (IAM) policy, which specifies access
6159
6283
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
6160
6284
  # A `binding` binds one or more `members`, or principals, to a single `role`.
@@ -8200,6 +8324,31 @@ module Google
8200
8324
  @title = args[:title] if args.key?(:title)
8201
8325
  end
8202
8326
  end
8327
+
8328
+ # Result of Workspace Policy scan.
8329
+ class WorkspacePolicyResult
8330
+ include Google::Apis::Core::Hashable
8331
+
8332
+ # Status of the scan.
8333
+ # Corresponds to the JSON property `scanStatus`
8334
+ # @return [String]
8335
+ attr_accessor :scan_status
8336
+
8337
+ # Verdict of the scan.
8338
+ # Corresponds to the JSON property `verdict`
8339
+ # @return [String]
8340
+ attr_accessor :verdict
8341
+
8342
+ def initialize(**args)
8343
+ update!(**args)
8344
+ end
8345
+
8346
+ # Update properties of this object
8347
+ def update!(**args)
8348
+ @scan_status = args[:scan_status] if args.key?(:scan_status)
8349
+ @verdict = args[:verdict] if args.key?(:verdict)
8350
+ end
8351
+ end
8203
8352
  end
8204
8353
  end
8205
8354
  end
@@ -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.77.0"
19
+ GEM_VERSION = "0.79.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 = "20260610"
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 Material
830
848
  class Representation < Google::Apis::Core::JsonRepresentation; end
831
849
 
@@ -874,6 +892,12 @@ module Google
874
892
  include Google::Apis::Core::JsonObjectSupport
875
893
  end
876
894
 
895
+ class PerScannerVerdict
896
+ class Representation < Google::Apis::Core::JsonRepresentation; end
897
+
898
+ include Google::Apis::Core::JsonObjectSupport
899
+ end
900
+
877
901
  class Policy
878
902
  class Representation < Google::Apis::Core::JsonRepresentation; end
879
903
 
@@ -1174,6 +1198,12 @@ module Google
1174
1198
  include Google::Apis::Core::JsonObjectSupport
1175
1199
  end
1176
1200
 
1201
+ class WorkspacePolicyResult
1202
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1203
+
1204
+ include Google::Apis::Core::JsonObjectSupport
1205
+ end
1206
+
1177
1207
  class AiSkillAnalysisNote
1178
1208
  # @private
1179
1209
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1186,6 +1216,8 @@ module Google
1186
1216
  collection :findings, as: 'findings', class: Google::Apis::ContaineranalysisV1::Finding, decorator: Google::Apis::ContaineranalysisV1::Finding::Representation
1187
1217
 
1188
1218
  property :max_severity, as: 'maxSeverity'
1219
+ property :per_scanner_verdict, as: 'perScannerVerdict', class: Google::Apis::ContaineranalysisV1::PerScannerVerdict, decorator: Google::Apis::ContaineranalysisV1::PerScannerVerdict::Representation
1220
+
1189
1221
  property :skill_name, as: 'skillName'
1190
1222
  end
1191
1223
  end
@@ -1421,6 +1453,7 @@ module Google
1421
1453
  property :availability_impact, as: 'availabilityImpact'
1422
1454
  property :base_score, as: 'baseScore'
1423
1455
  property :confidentiality_impact, as: 'confidentialityImpact'
1456
+ property :exploit_maturity, as: 'exploitMaturity'
1424
1457
  property :exploitability_score, as: 'exploitabilityScore'
1425
1458
  property :impact_score, as: 'impactScore'
1426
1459
  property :integrity_impact, as: 'integrityImpact'
@@ -2632,6 +2665,30 @@ module Google
2632
2665
  end
2633
2666
  end
2634
2667
 
2668
+ class MaliciousContentLlmResult
2669
+ # @private
2670
+ class Representation < Google::Apis::Core::JsonRepresentation
2671
+ property :max_severity, as: 'maxSeverity'
2672
+ property :scan_status, as: 'scanStatus'
2673
+ end
2674
+ end
2675
+
2676
+ class MaliciousContentStaticResult
2677
+ # @private
2678
+ class Representation < Google::Apis::Core::JsonRepresentation
2679
+ property :max_severity, as: 'maxSeverity'
2680
+ property :scan_status, as: 'scanStatus'
2681
+ end
2682
+ end
2683
+
2684
+ class MalwareScanResult
2685
+ # @private
2686
+ class Representation < Google::Apis::Core::JsonRepresentation
2687
+ property :scan_status, as: 'scanStatus'
2688
+ property :verdict, as: 'verdict'
2689
+ end
2690
+ end
2691
+
2635
2692
  class Material
2636
2693
  # @private
2637
2694
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2803,6 +2860,20 @@ module Google
2803
2860
  end
2804
2861
  end
2805
2862
 
2863
+ class PerScannerVerdict
2864
+ # @private
2865
+ class Representation < Google::Apis::Core::JsonRepresentation
2866
+ property :malicious_content_llm_result, as: 'maliciousContentLlmResult', class: Google::Apis::ContaineranalysisV1::MaliciousContentLlmResult, decorator: Google::Apis::ContaineranalysisV1::MaliciousContentLlmResult::Representation
2867
+
2868
+ property :malicious_content_static_result, as: 'maliciousContentStaticResult', class: Google::Apis::ContaineranalysisV1::MaliciousContentStaticResult, decorator: Google::Apis::ContaineranalysisV1::MaliciousContentStaticResult::Representation
2869
+
2870
+ property :malware_scan, as: 'malwareScan', class: Google::Apis::ContaineranalysisV1::MalwareScanResult, decorator: Google::Apis::ContaineranalysisV1::MalwareScanResult::Representation
2871
+
2872
+ property :workspace_policy, as: 'workspacePolicy', class: Google::Apis::ContaineranalysisV1::WorkspacePolicyResult, decorator: Google::Apis::ContaineranalysisV1::WorkspacePolicyResult::Representation
2873
+
2874
+ end
2875
+ end
2876
+
2806
2877
  class Policy
2807
2878
  # @private
2808
2879
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3347,6 +3418,14 @@ module Google
3347
3418
  property :title, as: 'title'
3348
3419
  end
3349
3420
  end
3421
+
3422
+ class WorkspacePolicyResult
3423
+ # @private
3424
+ class Representation < Google::Apis::Core::JsonRepresentation
3425
+ property :scan_status, as: 'scanStatus'
3426
+ property :verdict, as: 'verdict'
3427
+ end
3428
+ end
3350
3429
  end
3351
3430
  end
3352
3431
  end
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.77.0
4
+ version: 0.79.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.77.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.79.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: