google-apis-containeranalysis_v1 0.78.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: c556943022258b0b783f6adf495a6e6feef29a843487eb3d02cf4f3a20b403c5
4
- data.tar.gz: 25b5c81d7d4c62eae49a1e32e4a06e7f666758d9358e8600455500d5e39b09b3
3
+ metadata.gz: ef88ab084e448f8abc457717ddf21d8902cc15329c75654d7d0cef00d7ec5052
4
+ data.tar.gz: c301e116ac6c9e4942f76f93b5df394c929e2848244d388c7003e428d6e06ab3
5
5
  SHA512:
6
- metadata.gz: f8327df324e36cb1624bd55de363fadd9dbfa44c6fabdd09dc81a4706e3c858230660c5ed566d4c4a048d6b0153b2b5f44bf25138a6fa11886e227f89a379fb3
7
- data.tar.gz: d66f788ae42477400f0b391d3b600178be54af0d810575ebd1fad2028065cc8c6b5ade46b2fcd2611984e3c65a4e86dff38df50988d849fb4fb6e70a26155c30
6
+ metadata.gz: ef833b149b5fd511d8e4cf77b4788ae3fed4eb34820067f8af720165ed480aef3f14cbfda9a4e7c9e94320179163dd0d6474ae8bf4a6a6ffc37a45dd2ea671f2
7
+ data.tar.gz: 679ee59940581d521588da5f85e40b09f6778cecffcc4fa8e0c28af324b7497b3fe9523ef72d4febf5eebd6d1ba3cd3c5ede327556394ca1f0d0ef09ab8221f4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.78.0 (2026-07-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20260619
@@ -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
@@ -5492,6 +5498,81 @@ module Google
5492
5498
  end
5493
5499
  end
5494
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
+
5495
5576
  #
5496
5577
  class Material
5497
5578
  include Google::Apis::Core::Hashable
@@ -6161,6 +6242,43 @@ module Google
6161
6242
  end
6162
6243
  end
6163
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
+
6164
6282
  # An Identity and Access Management (IAM) policy, which specifies access
6165
6283
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
6166
6284
  # A `binding` binds one or more `members`, or principals, to a single `role`.
@@ -8206,6 +8324,31 @@ module Google
8206
8324
  @title = args[:title] if args.key?(:title)
8207
8325
  end
8208
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
8209
8352
  end
8210
8353
  end
8211
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.78.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 = "20260619"
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
@@ -2633,6 +2665,30 @@ module Google
2633
2665
  end
2634
2666
  end
2635
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
+
2636
2692
  class Material
2637
2693
  # @private
2638
2694
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2804,6 +2860,20 @@ module Google
2804
2860
  end
2805
2861
  end
2806
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
+
2807
2877
  class Policy
2808
2878
  # @private
2809
2879
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3348,6 +3418,14 @@ module Google
3348
3418
  property :title, as: 'title'
3349
3419
  end
3350
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
3351
3429
  end
3352
3430
  end
3353
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.78.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.78.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: