google-apis-containeranalysis_v1beta1 0.80.0 → 0.82.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: c3e740042a1364839dfbc408d54ae96514fbd691d355c05d69b819c3e4587711
|
|
4
|
+
data.tar.gz: af2e5dae1d7800180d3413974d3bdc000fa45c1b58c142779f3ea41b95146fa5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c70b201afa64646545c37f193ac82c3ff74d85ee07e4f540d231798fee7928d5996efc9734db2975fa5e76c21fc14da86c20c6cbc4288684c620c9549e373390
|
|
7
|
+
data.tar.gz: 660f0872b0b582be5d30ab9ff5a05ac75445c2d4f452e122c2a0665917accc3d18d0810bdf82c058961d2f55784fa3493f71b11bcfa4c052ac907e96ef26f396
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.82.0 (2026-08-23)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260812
|
|
6
|
+
|
|
7
|
+
### v0.81.0 (2026-08-16)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260805
|
|
10
|
+
|
|
3
11
|
### v0.80.0 (2026-07-05)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260619
|
|
@@ -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
|
|
@@ -2537,6 +2543,14 @@ module Google
|
|
|
2537
2543
|
# @return [String]
|
|
2538
2544
|
attr_accessor :dest_path
|
|
2539
2545
|
|
|
2546
|
+
# Optional. True if remote tags should be fetched too (default false). Note:
|
|
2547
|
+
# when depth is 1 (default), git fetch only retrieves tags pointing to commits
|
|
2548
|
+
# within the shallow boundary. Set depth to -1 to fetch all historical tags.
|
|
2549
|
+
# Corresponds to the JSON property `fetchTags`
|
|
2550
|
+
# @return [Boolean]
|
|
2551
|
+
attr_accessor :fetch_tags
|
|
2552
|
+
alias_method :fetch_tags?, :fetch_tags
|
|
2553
|
+
|
|
2540
2554
|
# Optional. True if submodules should be fetched too (default false).
|
|
2541
2555
|
# Corresponds to the JSON property `recurseSubmodules`
|
|
2542
2556
|
# @return [Boolean]
|
|
@@ -2561,6 +2575,7 @@ module Google
|
|
|
2561
2575
|
def update!(**args)
|
|
2562
2576
|
@depth = args[:depth] if args.key?(:depth)
|
|
2563
2577
|
@dest_path = args[:dest_path] if args.key?(:dest_path)
|
|
2578
|
+
@fetch_tags = args[:fetch_tags] if args.key?(:fetch_tags)
|
|
2564
2579
|
@recurse_submodules = args[:recurse_submodules] if args.key?(:recurse_submodules)
|
|
2565
2580
|
@repository = args[:repository] if args.key?(:repository)
|
|
2566
2581
|
@revision = args[:revision] if args.key?(:revision)
|
|
@@ -5587,6 +5602,81 @@ module Google
|
|
|
5587
5602
|
end
|
|
5588
5603
|
end
|
|
5589
5604
|
|
|
5605
|
+
# Result of Malicious Content LLM scan.
|
|
5606
|
+
class MaliciousContentLlmResult
|
|
5607
|
+
include Google::Apis::Core::Hashable
|
|
5608
|
+
|
|
5609
|
+
# Tracks max severity found.
|
|
5610
|
+
# Corresponds to the JSON property `maxSeverity`
|
|
5611
|
+
# @return [String]
|
|
5612
|
+
attr_accessor :max_severity
|
|
5613
|
+
|
|
5614
|
+
# Status of the scan.
|
|
5615
|
+
# Corresponds to the JSON property `scanStatus`
|
|
5616
|
+
# @return [String]
|
|
5617
|
+
attr_accessor :scan_status
|
|
5618
|
+
|
|
5619
|
+
def initialize(**args)
|
|
5620
|
+
update!(**args)
|
|
5621
|
+
end
|
|
5622
|
+
|
|
5623
|
+
# Update properties of this object
|
|
5624
|
+
def update!(**args)
|
|
5625
|
+
@max_severity = args[:max_severity] if args.key?(:max_severity)
|
|
5626
|
+
@scan_status = args[:scan_status] if args.key?(:scan_status)
|
|
5627
|
+
end
|
|
5628
|
+
end
|
|
5629
|
+
|
|
5630
|
+
# Result of Malicious Content Static scan.
|
|
5631
|
+
class MaliciousContentStaticResult
|
|
5632
|
+
include Google::Apis::Core::Hashable
|
|
5633
|
+
|
|
5634
|
+
# Tracks max severity found.
|
|
5635
|
+
# Corresponds to the JSON property `maxSeverity`
|
|
5636
|
+
# @return [String]
|
|
5637
|
+
attr_accessor :max_severity
|
|
5638
|
+
|
|
5639
|
+
# Status of the scan.
|
|
5640
|
+
# Corresponds to the JSON property `scanStatus`
|
|
5641
|
+
# @return [String]
|
|
5642
|
+
attr_accessor :scan_status
|
|
5643
|
+
|
|
5644
|
+
def initialize(**args)
|
|
5645
|
+
update!(**args)
|
|
5646
|
+
end
|
|
5647
|
+
|
|
5648
|
+
# Update properties of this object
|
|
5649
|
+
def update!(**args)
|
|
5650
|
+
@max_severity = args[:max_severity] if args.key?(:max_severity)
|
|
5651
|
+
@scan_status = args[:scan_status] if args.key?(:scan_status)
|
|
5652
|
+
end
|
|
5653
|
+
end
|
|
5654
|
+
|
|
5655
|
+
# Result of Malware scan.
|
|
5656
|
+
class MalwareScanResult
|
|
5657
|
+
include Google::Apis::Core::Hashable
|
|
5658
|
+
|
|
5659
|
+
# Status of the scan.
|
|
5660
|
+
# Corresponds to the JSON property `scanStatus`
|
|
5661
|
+
# @return [String]
|
|
5662
|
+
attr_accessor :scan_status
|
|
5663
|
+
|
|
5664
|
+
# Verdict of the scan.
|
|
5665
|
+
# Corresponds to the JSON property `verdict`
|
|
5666
|
+
# @return [String]
|
|
5667
|
+
attr_accessor :verdict
|
|
5668
|
+
|
|
5669
|
+
def initialize(**args)
|
|
5670
|
+
update!(**args)
|
|
5671
|
+
end
|
|
5672
|
+
|
|
5673
|
+
# Update properties of this object
|
|
5674
|
+
def update!(**args)
|
|
5675
|
+
@scan_status = args[:scan_status] if args.key?(:scan_status)
|
|
5676
|
+
@verdict = args[:verdict] if args.key?(:verdict)
|
|
5677
|
+
end
|
|
5678
|
+
end
|
|
5679
|
+
|
|
5590
5680
|
# A type of analysis that can be done for a resource.
|
|
5591
5681
|
class Note
|
|
5592
5682
|
include Google::Apis::Core::Hashable
|
|
@@ -6305,6 +6395,43 @@ module Google
|
|
|
6305
6395
|
end
|
|
6306
6396
|
end
|
|
6307
6397
|
|
|
6398
|
+
# Per scanner verdict details.
|
|
6399
|
+
class PerScannerVerdict
|
|
6400
|
+
include Google::Apis::Core::Hashable
|
|
6401
|
+
|
|
6402
|
+
# Result of Malicious Content LLM scan.
|
|
6403
|
+
# Corresponds to the JSON property `maliciousContentLlmResult`
|
|
6404
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::MaliciousContentLlmResult]
|
|
6405
|
+
attr_accessor :malicious_content_llm_result
|
|
6406
|
+
|
|
6407
|
+
# Result of Malicious Content Static scan.
|
|
6408
|
+
# Corresponds to the JSON property `maliciousContentStaticResult`
|
|
6409
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::MaliciousContentStaticResult]
|
|
6410
|
+
attr_accessor :malicious_content_static_result
|
|
6411
|
+
|
|
6412
|
+
# Result of Malware scan.
|
|
6413
|
+
# Corresponds to the JSON property `malwareScan`
|
|
6414
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::MalwareScanResult]
|
|
6415
|
+
attr_accessor :malware_scan
|
|
6416
|
+
|
|
6417
|
+
# Result of Workspace Policy scan.
|
|
6418
|
+
# Corresponds to the JSON property `workspacePolicy`
|
|
6419
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::WorkspacePolicyResult]
|
|
6420
|
+
attr_accessor :workspace_policy
|
|
6421
|
+
|
|
6422
|
+
def initialize(**args)
|
|
6423
|
+
update!(**args)
|
|
6424
|
+
end
|
|
6425
|
+
|
|
6426
|
+
# Update properties of this object
|
|
6427
|
+
def update!(**args)
|
|
6428
|
+
@malicious_content_llm_result = args[:malicious_content_llm_result] if args.key?(:malicious_content_llm_result)
|
|
6429
|
+
@malicious_content_static_result = args[:malicious_content_static_result] if args.key?(:malicious_content_static_result)
|
|
6430
|
+
@malware_scan = args[:malware_scan] if args.key?(:malware_scan)
|
|
6431
|
+
@workspace_policy = args[:workspace_policy] if args.key?(:workspace_policy)
|
|
6432
|
+
end
|
|
6433
|
+
end
|
|
6434
|
+
|
|
6308
6435
|
# An attestation wrapper with a PGP-compatible signature. This message only
|
|
6309
6436
|
# supports `ATTACHED` signatures, where the payload that is signed is included
|
|
6310
6437
|
# alongside the signature itself in the same file.
|
|
@@ -7924,6 +8051,31 @@ module Google
|
|
|
7924
8051
|
@name = args[:name] if args.key?(:name)
|
|
7925
8052
|
end
|
|
7926
8053
|
end
|
|
8054
|
+
|
|
8055
|
+
# Result of Workspace Policy scan.
|
|
8056
|
+
class WorkspacePolicyResult
|
|
8057
|
+
include Google::Apis::Core::Hashable
|
|
8058
|
+
|
|
8059
|
+
# Status of the scan.
|
|
8060
|
+
# Corresponds to the JSON property `scanStatus`
|
|
8061
|
+
# @return [String]
|
|
8062
|
+
attr_accessor :scan_status
|
|
8063
|
+
|
|
8064
|
+
# Verdict of the scan.
|
|
8065
|
+
# Corresponds to the JSON property `verdict`
|
|
8066
|
+
# @return [String]
|
|
8067
|
+
attr_accessor :verdict
|
|
8068
|
+
|
|
8069
|
+
def initialize(**args)
|
|
8070
|
+
update!(**args)
|
|
8071
|
+
end
|
|
8072
|
+
|
|
8073
|
+
# Update properties of this object
|
|
8074
|
+
def update!(**args)
|
|
8075
|
+
@scan_status = args[:scan_status] if args.key?(:scan_status)
|
|
8076
|
+
@verdict = args[:verdict] if args.key?(:verdict)
|
|
8077
|
+
end
|
|
8078
|
+
end
|
|
7927
8079
|
end
|
|
7928
8080
|
end
|
|
7929
8081
|
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.82.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 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
|
|
@@ -1728,6 +1760,7 @@ module Google
|
|
|
1728
1760
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1729
1761
|
property :depth, :numeric_string => true, as: 'depth'
|
|
1730
1762
|
property :dest_path, as: 'destPath'
|
|
1763
|
+
property :fetch_tags, as: 'fetchTags'
|
|
1731
1764
|
property :recurse_submodules, as: 'recurseSubmodules'
|
|
1732
1765
|
property :repository, as: 'repository', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository::Representation
|
|
1733
1766
|
|
|
@@ -2598,6 +2631,30 @@ module Google
|
|
|
2598
2631
|
end
|
|
2599
2632
|
end
|
|
2600
2633
|
|
|
2634
|
+
class MaliciousContentLlmResult
|
|
2635
|
+
# @private
|
|
2636
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2637
|
+
property :max_severity, as: 'maxSeverity'
|
|
2638
|
+
property :scan_status, as: 'scanStatus'
|
|
2639
|
+
end
|
|
2640
|
+
end
|
|
2641
|
+
|
|
2642
|
+
class MaliciousContentStaticResult
|
|
2643
|
+
# @private
|
|
2644
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2645
|
+
property :max_severity, as: 'maxSeverity'
|
|
2646
|
+
property :scan_status, as: 'scanStatus'
|
|
2647
|
+
end
|
|
2648
|
+
end
|
|
2649
|
+
|
|
2650
|
+
class MalwareScanResult
|
|
2651
|
+
# @private
|
|
2652
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2653
|
+
property :scan_status, as: 'scanStatus'
|
|
2654
|
+
property :verdict, as: 'verdict'
|
|
2655
|
+
end
|
|
2656
|
+
end
|
|
2657
|
+
|
|
2601
2658
|
class Note
|
|
2602
2659
|
# @private
|
|
2603
2660
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2777,6 +2834,20 @@ module Google
|
|
|
2777
2834
|
end
|
|
2778
2835
|
end
|
|
2779
2836
|
|
|
2837
|
+
class PerScannerVerdict
|
|
2838
|
+
# @private
|
|
2839
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2840
|
+
property :malicious_content_llm_result, as: 'maliciousContentLlmResult', class: Google::Apis::ContaineranalysisV1beta1::MaliciousContentLlmResult, decorator: Google::Apis::ContaineranalysisV1beta1::MaliciousContentLlmResult::Representation
|
|
2841
|
+
|
|
2842
|
+
property :malicious_content_static_result, as: 'maliciousContentStaticResult', class: Google::Apis::ContaineranalysisV1beta1::MaliciousContentStaticResult, decorator: Google::Apis::ContaineranalysisV1beta1::MaliciousContentStaticResult::Representation
|
|
2843
|
+
|
|
2844
|
+
property :malware_scan, as: 'malwareScan', class: Google::Apis::ContaineranalysisV1beta1::MalwareScanResult, decorator: Google::Apis::ContaineranalysisV1beta1::MalwareScanResult::Representation
|
|
2845
|
+
|
|
2846
|
+
property :workspace_policy, as: 'workspacePolicy', class: Google::Apis::ContaineranalysisV1beta1::WorkspacePolicyResult, decorator: Google::Apis::ContaineranalysisV1beta1::WorkspacePolicyResult::Representation
|
|
2847
|
+
|
|
2848
|
+
end
|
|
2849
|
+
end
|
|
2850
|
+
|
|
2780
2851
|
class PgpSignedAttestation
|
|
2781
2852
|
# @private
|
|
2782
2853
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3207,6 +3278,14 @@ module Google
|
|
|
3207
3278
|
property :name, as: 'name'
|
|
3208
3279
|
end
|
|
3209
3280
|
end
|
|
3281
|
+
|
|
3282
|
+
class WorkspacePolicyResult
|
|
3283
|
+
# @private
|
|
3284
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3285
|
+
property :scan_status, as: 'scanStatus'
|
|
3286
|
+
property :verdict, as: 'verdict'
|
|
3287
|
+
end
|
|
3288
|
+
end
|
|
3210
3289
|
end
|
|
3211
3290
|
end
|
|
3212
3291
|
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.82.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.82.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:
|