google-apis-containeranalysis_v1 0.78.0 → 0.80.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: 912d30a184f6bf0714dc02537376865daaa0f616a85c6167ebd1ea5762bbfead
|
|
4
|
+
data.tar.gz: 369e4c1b4660aaf778e1fbea6c0d561d058c9e04a2849ef672b71c83f2707ff4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 72c2bf47de7a0b9147f511da858b06aad4a2d25d717fbdcf6892293bd91597a97f2748f3f903c0cc5ccb2dfbc8e84714437161fc84c8bb147a1543e38d7f449b
|
|
7
|
+
data.tar.gz: edd4d0e11d8bfe63c040d0b4c49221867299144c62ff883f9e99bdfa33db3142223e483a06ad274769b6076f7a2dc59b544bea24dcb53b0335cd8fdc7261f6dd
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1
|
|
2
2
|
|
|
3
|
+
### v0.80.0 (2026-08-23)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260812
|
|
6
|
+
|
|
7
|
+
### v0.79.0 (2026-08-16)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260805
|
|
10
|
+
|
|
3
11
|
### v0.78.0 (2026-07-05)
|
|
4
12
|
|
|
5
13
|
* 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
|
|
@@ -2763,6 +2769,14 @@ module Google
|
|
|
2763
2769
|
# @return [String]
|
|
2764
2770
|
attr_accessor :dest_path
|
|
2765
2771
|
|
|
2772
|
+
# Optional. True if remote tags should be fetched too (default false). Note:
|
|
2773
|
+
# when depth is 1 (default), git fetch only retrieves tags pointing to commits
|
|
2774
|
+
# within the shallow boundary. Set depth to -1 to fetch all historical tags.
|
|
2775
|
+
# Corresponds to the JSON property `fetchTags`
|
|
2776
|
+
# @return [Boolean]
|
|
2777
|
+
attr_accessor :fetch_tags
|
|
2778
|
+
alias_method :fetch_tags?, :fetch_tags
|
|
2779
|
+
|
|
2766
2780
|
# Optional. True if submodules should be fetched too (default false).
|
|
2767
2781
|
# Corresponds to the JSON property `recurseSubmodules`
|
|
2768
2782
|
# @return [Boolean]
|
|
@@ -2787,6 +2801,7 @@ module Google
|
|
|
2787
2801
|
def update!(**args)
|
|
2788
2802
|
@depth = args[:depth] if args.key?(:depth)
|
|
2789
2803
|
@dest_path = args[:dest_path] if args.key?(:dest_path)
|
|
2804
|
+
@fetch_tags = args[:fetch_tags] if args.key?(:fetch_tags)
|
|
2790
2805
|
@recurse_submodules = args[:recurse_submodules] if args.key?(:recurse_submodules)
|
|
2791
2806
|
@repository = args[:repository] if args.key?(:repository)
|
|
2792
2807
|
@revision = args[:revision] if args.key?(:revision)
|
|
@@ -5492,6 +5507,81 @@ module Google
|
|
|
5492
5507
|
end
|
|
5493
5508
|
end
|
|
5494
5509
|
|
|
5510
|
+
# Result of Malicious Content LLM scan.
|
|
5511
|
+
class MaliciousContentLlmResult
|
|
5512
|
+
include Google::Apis::Core::Hashable
|
|
5513
|
+
|
|
5514
|
+
# Tracks max severity found.
|
|
5515
|
+
# Corresponds to the JSON property `maxSeverity`
|
|
5516
|
+
# @return [String]
|
|
5517
|
+
attr_accessor :max_severity
|
|
5518
|
+
|
|
5519
|
+
# Status of the scan.
|
|
5520
|
+
# Corresponds to the JSON property `scanStatus`
|
|
5521
|
+
# @return [String]
|
|
5522
|
+
attr_accessor :scan_status
|
|
5523
|
+
|
|
5524
|
+
def initialize(**args)
|
|
5525
|
+
update!(**args)
|
|
5526
|
+
end
|
|
5527
|
+
|
|
5528
|
+
# Update properties of this object
|
|
5529
|
+
def update!(**args)
|
|
5530
|
+
@max_severity = args[:max_severity] if args.key?(:max_severity)
|
|
5531
|
+
@scan_status = args[:scan_status] if args.key?(:scan_status)
|
|
5532
|
+
end
|
|
5533
|
+
end
|
|
5534
|
+
|
|
5535
|
+
# Result of Malicious Content Static scan.
|
|
5536
|
+
class MaliciousContentStaticResult
|
|
5537
|
+
include Google::Apis::Core::Hashable
|
|
5538
|
+
|
|
5539
|
+
# Tracks max severity found.
|
|
5540
|
+
# Corresponds to the JSON property `maxSeverity`
|
|
5541
|
+
# @return [String]
|
|
5542
|
+
attr_accessor :max_severity
|
|
5543
|
+
|
|
5544
|
+
# Status of the scan.
|
|
5545
|
+
# Corresponds to the JSON property `scanStatus`
|
|
5546
|
+
# @return [String]
|
|
5547
|
+
attr_accessor :scan_status
|
|
5548
|
+
|
|
5549
|
+
def initialize(**args)
|
|
5550
|
+
update!(**args)
|
|
5551
|
+
end
|
|
5552
|
+
|
|
5553
|
+
# Update properties of this object
|
|
5554
|
+
def update!(**args)
|
|
5555
|
+
@max_severity = args[:max_severity] if args.key?(:max_severity)
|
|
5556
|
+
@scan_status = args[:scan_status] if args.key?(:scan_status)
|
|
5557
|
+
end
|
|
5558
|
+
end
|
|
5559
|
+
|
|
5560
|
+
# Result of Malware scan.
|
|
5561
|
+
class MalwareScanResult
|
|
5562
|
+
include Google::Apis::Core::Hashable
|
|
5563
|
+
|
|
5564
|
+
# Status of the scan.
|
|
5565
|
+
# Corresponds to the JSON property `scanStatus`
|
|
5566
|
+
# @return [String]
|
|
5567
|
+
attr_accessor :scan_status
|
|
5568
|
+
|
|
5569
|
+
# Verdict of the scan.
|
|
5570
|
+
# Corresponds to the JSON property `verdict`
|
|
5571
|
+
# @return [String]
|
|
5572
|
+
attr_accessor :verdict
|
|
5573
|
+
|
|
5574
|
+
def initialize(**args)
|
|
5575
|
+
update!(**args)
|
|
5576
|
+
end
|
|
5577
|
+
|
|
5578
|
+
# Update properties of this object
|
|
5579
|
+
def update!(**args)
|
|
5580
|
+
@scan_status = args[:scan_status] if args.key?(:scan_status)
|
|
5581
|
+
@verdict = args[:verdict] if args.key?(:verdict)
|
|
5582
|
+
end
|
|
5583
|
+
end
|
|
5584
|
+
|
|
5495
5585
|
#
|
|
5496
5586
|
class Material
|
|
5497
5587
|
include Google::Apis::Core::Hashable
|
|
@@ -6161,6 +6251,43 @@ module Google
|
|
|
6161
6251
|
end
|
|
6162
6252
|
end
|
|
6163
6253
|
|
|
6254
|
+
#
|
|
6255
|
+
class PerScannerVerdict
|
|
6256
|
+
include Google::Apis::Core::Hashable
|
|
6257
|
+
|
|
6258
|
+
# Result of Malicious Content LLM scan.
|
|
6259
|
+
# Corresponds to the JSON property `maliciousContentLlmResult`
|
|
6260
|
+
# @return [Google::Apis::ContaineranalysisV1::MaliciousContentLlmResult]
|
|
6261
|
+
attr_accessor :malicious_content_llm_result
|
|
6262
|
+
|
|
6263
|
+
# Result of Malicious Content Static scan.
|
|
6264
|
+
# Corresponds to the JSON property `maliciousContentStaticResult`
|
|
6265
|
+
# @return [Google::Apis::ContaineranalysisV1::MaliciousContentStaticResult]
|
|
6266
|
+
attr_accessor :malicious_content_static_result
|
|
6267
|
+
|
|
6268
|
+
# Result of Malware scan.
|
|
6269
|
+
# Corresponds to the JSON property `malwareScan`
|
|
6270
|
+
# @return [Google::Apis::ContaineranalysisV1::MalwareScanResult]
|
|
6271
|
+
attr_accessor :malware_scan
|
|
6272
|
+
|
|
6273
|
+
# Result of Workspace Policy scan.
|
|
6274
|
+
# Corresponds to the JSON property `workspacePolicy`
|
|
6275
|
+
# @return [Google::Apis::ContaineranalysisV1::WorkspacePolicyResult]
|
|
6276
|
+
attr_accessor :workspace_policy
|
|
6277
|
+
|
|
6278
|
+
def initialize(**args)
|
|
6279
|
+
update!(**args)
|
|
6280
|
+
end
|
|
6281
|
+
|
|
6282
|
+
# Update properties of this object
|
|
6283
|
+
def update!(**args)
|
|
6284
|
+
@malicious_content_llm_result = args[:malicious_content_llm_result] if args.key?(:malicious_content_llm_result)
|
|
6285
|
+
@malicious_content_static_result = args[:malicious_content_static_result] if args.key?(:malicious_content_static_result)
|
|
6286
|
+
@malware_scan = args[:malware_scan] if args.key?(:malware_scan)
|
|
6287
|
+
@workspace_policy = args[:workspace_policy] if args.key?(:workspace_policy)
|
|
6288
|
+
end
|
|
6289
|
+
end
|
|
6290
|
+
|
|
6164
6291
|
# An Identity and Access Management (IAM) policy, which specifies access
|
|
6165
6292
|
# controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
|
|
6166
6293
|
# A `binding` binds one or more `members`, or principals, to a single `role`.
|
|
@@ -8206,6 +8333,31 @@ module Google
|
|
|
8206
8333
|
@title = args[:title] if args.key?(:title)
|
|
8207
8334
|
end
|
|
8208
8335
|
end
|
|
8336
|
+
|
|
8337
|
+
# Result of Workspace Policy scan.
|
|
8338
|
+
class WorkspacePolicyResult
|
|
8339
|
+
include Google::Apis::Core::Hashable
|
|
8340
|
+
|
|
8341
|
+
# Status of the scan.
|
|
8342
|
+
# Corresponds to the JSON property `scanStatus`
|
|
8343
|
+
# @return [String]
|
|
8344
|
+
attr_accessor :scan_status
|
|
8345
|
+
|
|
8346
|
+
# Verdict of the scan.
|
|
8347
|
+
# Corresponds to the JSON property `verdict`
|
|
8348
|
+
# @return [String]
|
|
8349
|
+
attr_accessor :verdict
|
|
8350
|
+
|
|
8351
|
+
def initialize(**args)
|
|
8352
|
+
update!(**args)
|
|
8353
|
+
end
|
|
8354
|
+
|
|
8355
|
+
# Update properties of this object
|
|
8356
|
+
def update!(**args)
|
|
8357
|
+
@scan_status = args[:scan_status] if args.key?(:scan_status)
|
|
8358
|
+
@verdict = args[:verdict] if args.key?(:verdict)
|
|
8359
|
+
end
|
|
8360
|
+
end
|
|
8209
8361
|
end
|
|
8210
8362
|
end
|
|
8211
8363
|
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.
|
|
19
|
+
GEM_VERSION = "0.80.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 = "20260812"
|
|
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
|
|
@@ -1841,6 +1873,7 @@ module Google
|
|
|
1841
1873
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1842
1874
|
property :depth, :numeric_string => true, as: 'depth'
|
|
1843
1875
|
property :dest_path, as: 'destPath'
|
|
1876
|
+
property :fetch_tags, as: 'fetchTags'
|
|
1844
1877
|
property :recurse_submodules, as: 'recurseSubmodules'
|
|
1845
1878
|
property :repository, as: 'repository', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository::Representation
|
|
1846
1879
|
|
|
@@ -2633,6 +2666,30 @@ module Google
|
|
|
2633
2666
|
end
|
|
2634
2667
|
end
|
|
2635
2668
|
|
|
2669
|
+
class MaliciousContentLlmResult
|
|
2670
|
+
# @private
|
|
2671
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2672
|
+
property :max_severity, as: 'maxSeverity'
|
|
2673
|
+
property :scan_status, as: 'scanStatus'
|
|
2674
|
+
end
|
|
2675
|
+
end
|
|
2676
|
+
|
|
2677
|
+
class MaliciousContentStaticResult
|
|
2678
|
+
# @private
|
|
2679
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2680
|
+
property :max_severity, as: 'maxSeverity'
|
|
2681
|
+
property :scan_status, as: 'scanStatus'
|
|
2682
|
+
end
|
|
2683
|
+
end
|
|
2684
|
+
|
|
2685
|
+
class MalwareScanResult
|
|
2686
|
+
# @private
|
|
2687
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2688
|
+
property :scan_status, as: 'scanStatus'
|
|
2689
|
+
property :verdict, as: 'verdict'
|
|
2690
|
+
end
|
|
2691
|
+
end
|
|
2692
|
+
|
|
2636
2693
|
class Material
|
|
2637
2694
|
# @private
|
|
2638
2695
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2804,6 +2861,20 @@ module Google
|
|
|
2804
2861
|
end
|
|
2805
2862
|
end
|
|
2806
2863
|
|
|
2864
|
+
class PerScannerVerdict
|
|
2865
|
+
# @private
|
|
2866
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2867
|
+
property :malicious_content_llm_result, as: 'maliciousContentLlmResult', class: Google::Apis::ContaineranalysisV1::MaliciousContentLlmResult, decorator: Google::Apis::ContaineranalysisV1::MaliciousContentLlmResult::Representation
|
|
2868
|
+
|
|
2869
|
+
property :malicious_content_static_result, as: 'maliciousContentStaticResult', class: Google::Apis::ContaineranalysisV1::MaliciousContentStaticResult, decorator: Google::Apis::ContaineranalysisV1::MaliciousContentStaticResult::Representation
|
|
2870
|
+
|
|
2871
|
+
property :malware_scan, as: 'malwareScan', class: Google::Apis::ContaineranalysisV1::MalwareScanResult, decorator: Google::Apis::ContaineranalysisV1::MalwareScanResult::Representation
|
|
2872
|
+
|
|
2873
|
+
property :workspace_policy, as: 'workspacePolicy', class: Google::Apis::ContaineranalysisV1::WorkspacePolicyResult, decorator: Google::Apis::ContaineranalysisV1::WorkspacePolicyResult::Representation
|
|
2874
|
+
|
|
2875
|
+
end
|
|
2876
|
+
end
|
|
2877
|
+
|
|
2807
2878
|
class Policy
|
|
2808
2879
|
# @private
|
|
2809
2880
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3348,6 +3419,14 @@ module Google
|
|
|
3348
3419
|
property :title, as: 'title'
|
|
3349
3420
|
end
|
|
3350
3421
|
end
|
|
3422
|
+
|
|
3423
|
+
class WorkspacePolicyResult
|
|
3424
|
+
# @private
|
|
3425
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3426
|
+
property :scan_status, as: 'scanStatus'
|
|
3427
|
+
property :verdict, as: 'verdict'
|
|
3428
|
+
end
|
|
3429
|
+
end
|
|
3351
3430
|
end
|
|
3352
3431
|
end
|
|
3353
3432
|
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.
|
|
4
|
+
version: 0.80.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.80.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:
|