google-apis-containeranalysis_v1alpha1 0.87.0 → 0.89.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: 3ca7c1e34881f8caee85afcec1f13a5f85264b1da71c734fc8572da3828f4507
|
|
4
|
+
data.tar.gz: 85286a28a334671167d6a1835115c86f8a43ba2bfa5f0c99872ea41e3194bebb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d6a3c65d910af69cdcdb3bc7b02c33030aadb3b9a5e37631dd0425419125fec3357ec8853ce08e83d3702259f71a65607018897d2dcd07d8872480b2b3f1c4b
|
|
7
|
+
data.tar.gz: 978306d65792bd1b5eea6d6889e81514fc7cb2d8b7963796b6a2d7c9dc5c3da1e356305486c1b7bb763ee1414d08d00f6d66dd522a94e8e032a02a438d31ca05
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1alpha1
|
|
2
2
|
|
|
3
|
+
### v0.89.0 (2026-08-23)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260812
|
|
6
|
+
|
|
7
|
+
### v0.88.0 (2026-08-16)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260805
|
|
10
|
+
|
|
3
11
|
### v0.87.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::ContaineranalysisV1alpha1::PerScannerVerdict]
|
|
55
|
+
attr_accessor :per_scanner_verdict
|
|
56
|
+
|
|
52
57
|
# Optional. 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
|
|
@@ -2616,6 +2622,14 @@ module Google
|
|
|
2616
2622
|
# @return [String]
|
|
2617
2623
|
attr_accessor :dest_path
|
|
2618
2624
|
|
|
2625
|
+
# Optional. True if remote tags should be fetched too (default false). Note:
|
|
2626
|
+
# when depth is 1 (default), git fetch only retrieves tags pointing to commits
|
|
2627
|
+
# within the shallow boundary. Set depth to -1 to fetch all historical tags.
|
|
2628
|
+
# Corresponds to the JSON property `fetchTags`
|
|
2629
|
+
# @return [Boolean]
|
|
2630
|
+
attr_accessor :fetch_tags
|
|
2631
|
+
alias_method :fetch_tags?, :fetch_tags
|
|
2632
|
+
|
|
2619
2633
|
# Optional. True if submodules should be fetched too (default false).
|
|
2620
2634
|
# Corresponds to the JSON property `recurseSubmodules`
|
|
2621
2635
|
# @return [Boolean]
|
|
@@ -2640,6 +2654,7 @@ module Google
|
|
|
2640
2654
|
def update!(**args)
|
|
2641
2655
|
@depth = args[:depth] if args.key?(:depth)
|
|
2642
2656
|
@dest_path = args[:dest_path] if args.key?(:dest_path)
|
|
2657
|
+
@fetch_tags = args[:fetch_tags] if args.key?(:fetch_tags)
|
|
2643
2658
|
@recurse_submodules = args[:recurse_submodules] if args.key?(:recurse_submodules)
|
|
2644
2659
|
@repository = args[:repository] if args.key?(:repository)
|
|
2645
2660
|
@revision = args[:revision] if args.key?(:revision)
|
|
@@ -5697,6 +5712,81 @@ module Google
|
|
|
5697
5712
|
end
|
|
5698
5713
|
end
|
|
5699
5714
|
|
|
5715
|
+
# Result of Malicious Content LLM scan.
|
|
5716
|
+
class MaliciousContentLlmResult
|
|
5717
|
+
include Google::Apis::Core::Hashable
|
|
5718
|
+
|
|
5719
|
+
# Optional. Tracks max severity found.
|
|
5720
|
+
# Corresponds to the JSON property `maxSeverity`
|
|
5721
|
+
# @return [String]
|
|
5722
|
+
attr_accessor :max_severity
|
|
5723
|
+
|
|
5724
|
+
# Output only. State of the scan.
|
|
5725
|
+
# Corresponds to the JSON property `scanState`
|
|
5726
|
+
# @return [String]
|
|
5727
|
+
attr_accessor :scan_state
|
|
5728
|
+
|
|
5729
|
+
def initialize(**args)
|
|
5730
|
+
update!(**args)
|
|
5731
|
+
end
|
|
5732
|
+
|
|
5733
|
+
# Update properties of this object
|
|
5734
|
+
def update!(**args)
|
|
5735
|
+
@max_severity = args[:max_severity] if args.key?(:max_severity)
|
|
5736
|
+
@scan_state = args[:scan_state] if args.key?(:scan_state)
|
|
5737
|
+
end
|
|
5738
|
+
end
|
|
5739
|
+
|
|
5740
|
+
# Result of Malicious Content Static scan.
|
|
5741
|
+
class MaliciousContentStaticResult
|
|
5742
|
+
include Google::Apis::Core::Hashable
|
|
5743
|
+
|
|
5744
|
+
# Optional. Tracks max severity found.
|
|
5745
|
+
# Corresponds to the JSON property `maxSeverity`
|
|
5746
|
+
# @return [String]
|
|
5747
|
+
attr_accessor :max_severity
|
|
5748
|
+
|
|
5749
|
+
# Output only. State of the scan.
|
|
5750
|
+
# Corresponds to the JSON property `scanState`
|
|
5751
|
+
# @return [String]
|
|
5752
|
+
attr_accessor :scan_state
|
|
5753
|
+
|
|
5754
|
+
def initialize(**args)
|
|
5755
|
+
update!(**args)
|
|
5756
|
+
end
|
|
5757
|
+
|
|
5758
|
+
# Update properties of this object
|
|
5759
|
+
def update!(**args)
|
|
5760
|
+
@max_severity = args[:max_severity] if args.key?(:max_severity)
|
|
5761
|
+
@scan_state = args[:scan_state] if args.key?(:scan_state)
|
|
5762
|
+
end
|
|
5763
|
+
end
|
|
5764
|
+
|
|
5765
|
+
# Result of Malware scan.
|
|
5766
|
+
class MalwareScanResult
|
|
5767
|
+
include Google::Apis::Core::Hashable
|
|
5768
|
+
|
|
5769
|
+
# Output only. State of the scan.
|
|
5770
|
+
# Corresponds to the JSON property `scanState`
|
|
5771
|
+
# @return [String]
|
|
5772
|
+
attr_accessor :scan_state
|
|
5773
|
+
|
|
5774
|
+
# Optional. Verdict of the scan.
|
|
5775
|
+
# Corresponds to the JSON property `verdict`
|
|
5776
|
+
# @return [String]
|
|
5777
|
+
attr_accessor :verdict
|
|
5778
|
+
|
|
5779
|
+
def initialize(**args)
|
|
5780
|
+
update!(**args)
|
|
5781
|
+
end
|
|
5782
|
+
|
|
5783
|
+
# Update properties of this object
|
|
5784
|
+
def update!(**args)
|
|
5785
|
+
@scan_state = args[:scan_state] if args.key?(:scan_state)
|
|
5786
|
+
@verdict = args[:verdict] if args.key?(:verdict)
|
|
5787
|
+
end
|
|
5788
|
+
end
|
|
5789
|
+
|
|
5700
5790
|
# Material is a material used in the generation of the provenance
|
|
5701
5791
|
class Material
|
|
5702
5792
|
include Google::Apis::Core::Hashable
|
|
@@ -6605,6 +6695,43 @@ module Google
|
|
|
6605
6695
|
end
|
|
6606
6696
|
end
|
|
6607
6697
|
|
|
6698
|
+
# Per scanner verdict details.
|
|
6699
|
+
class PerScannerVerdict
|
|
6700
|
+
include Google::Apis::Core::Hashable
|
|
6701
|
+
|
|
6702
|
+
# Result of Malicious Content LLM scan.
|
|
6703
|
+
# Corresponds to the JSON property `maliciousContentLlmResult`
|
|
6704
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::MaliciousContentLlmResult]
|
|
6705
|
+
attr_accessor :malicious_content_llm_result
|
|
6706
|
+
|
|
6707
|
+
# Result of Malicious Content Static scan.
|
|
6708
|
+
# Corresponds to the JSON property `maliciousContentStaticResult`
|
|
6709
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::MaliciousContentStaticResult]
|
|
6710
|
+
attr_accessor :malicious_content_static_result
|
|
6711
|
+
|
|
6712
|
+
# Result of Malware scan.
|
|
6713
|
+
# Corresponds to the JSON property `malwareScan`
|
|
6714
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::MalwareScanResult]
|
|
6715
|
+
attr_accessor :malware_scan
|
|
6716
|
+
|
|
6717
|
+
# Result of Workspace Policy scan.
|
|
6718
|
+
# Corresponds to the JSON property `workspacePolicy`
|
|
6719
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::WorkspacePolicyResult]
|
|
6720
|
+
attr_accessor :workspace_policy
|
|
6721
|
+
|
|
6722
|
+
def initialize(**args)
|
|
6723
|
+
update!(**args)
|
|
6724
|
+
end
|
|
6725
|
+
|
|
6726
|
+
# Update properties of this object
|
|
6727
|
+
def update!(**args)
|
|
6728
|
+
@malicious_content_llm_result = args[:malicious_content_llm_result] if args.key?(:malicious_content_llm_result)
|
|
6729
|
+
@malicious_content_static_result = args[:malicious_content_static_result] if args.key?(:malicious_content_static_result)
|
|
6730
|
+
@malware_scan = args[:malware_scan] if args.key?(:malware_scan)
|
|
6731
|
+
@workspace_policy = args[:workspace_policy] if args.key?(:workspace_policy)
|
|
6732
|
+
end
|
|
6733
|
+
end
|
|
6734
|
+
|
|
6608
6735
|
# An attestation wrapper with a PGP-compatible signature. This message only
|
|
6609
6736
|
# supports `ATTACHED` signatures, where the payload that is signed is included
|
|
6610
6737
|
# alongside the signature itself in the same file.
|
|
@@ -8771,6 +8898,31 @@ module Google
|
|
|
8771
8898
|
@severity = args[:severity] if args.key?(:severity)
|
|
8772
8899
|
end
|
|
8773
8900
|
end
|
|
8901
|
+
|
|
8902
|
+
# Result of Workspace Policy scan.
|
|
8903
|
+
class WorkspacePolicyResult
|
|
8904
|
+
include Google::Apis::Core::Hashable
|
|
8905
|
+
|
|
8906
|
+
# Output only. State of the scan.
|
|
8907
|
+
# Corresponds to the JSON property `scanState`
|
|
8908
|
+
# @return [String]
|
|
8909
|
+
attr_accessor :scan_state
|
|
8910
|
+
|
|
8911
|
+
# Optional. Verdict of the scan.
|
|
8912
|
+
# Corresponds to the JSON property `verdict`
|
|
8913
|
+
# @return [String]
|
|
8914
|
+
attr_accessor :verdict
|
|
8915
|
+
|
|
8916
|
+
def initialize(**args)
|
|
8917
|
+
update!(**args)
|
|
8918
|
+
end
|
|
8919
|
+
|
|
8920
|
+
# Update properties of this object
|
|
8921
|
+
def update!(**args)
|
|
8922
|
+
@scan_state = args[:scan_state] if args.key?(:scan_state)
|
|
8923
|
+
@verdict = args[:verdict] if args.key?(:verdict)
|
|
8924
|
+
end
|
|
8925
|
+
end
|
|
8774
8926
|
end
|
|
8775
8927
|
end
|
|
8776
8928
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ContaineranalysisV1alpha1
|
|
18
18
|
# Version of the google-apis-containeranalysis_v1alpha1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.89.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
|
|
@@ -832,6 +832,24 @@ module Google
|
|
|
832
832
|
include Google::Apis::Core::JsonObjectSupport
|
|
833
833
|
end
|
|
834
834
|
|
|
835
|
+
class MaliciousContentLlmResult
|
|
836
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
837
|
+
|
|
838
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
839
|
+
end
|
|
840
|
+
|
|
841
|
+
class MaliciousContentStaticResult
|
|
842
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
843
|
+
|
|
844
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
845
|
+
end
|
|
846
|
+
|
|
847
|
+
class MalwareScanResult
|
|
848
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
849
|
+
|
|
850
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
851
|
+
end
|
|
852
|
+
|
|
835
853
|
class Material
|
|
836
854
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
837
855
|
|
|
@@ -892,6 +910,12 @@ module Google
|
|
|
892
910
|
include Google::Apis::Core::JsonObjectSupport
|
|
893
911
|
end
|
|
894
912
|
|
|
913
|
+
class PerScannerVerdict
|
|
914
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
915
|
+
|
|
916
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
917
|
+
end
|
|
918
|
+
|
|
895
919
|
class PgpSignedAttestation
|
|
896
920
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
897
921
|
|
|
@@ -1222,6 +1246,12 @@ module Google
|
|
|
1222
1246
|
include Google::Apis::Core::JsonObjectSupport
|
|
1223
1247
|
end
|
|
1224
1248
|
|
|
1249
|
+
class WorkspacePolicyResult
|
|
1250
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1251
|
+
|
|
1252
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1253
|
+
end
|
|
1254
|
+
|
|
1225
1255
|
class AiSkillAnalysisNote
|
|
1226
1256
|
# @private
|
|
1227
1257
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1234,6 +1264,8 @@ module Google
|
|
|
1234
1264
|
collection :findings, as: 'findings', class: Google::Apis::ContaineranalysisV1alpha1::Finding, decorator: Google::Apis::ContaineranalysisV1alpha1::Finding::Representation
|
|
1235
1265
|
|
|
1236
1266
|
property :max_severity, as: 'maxSeverity'
|
|
1267
|
+
property :per_scanner_verdict, as: 'perScannerVerdict', class: Google::Apis::ContaineranalysisV1alpha1::PerScannerVerdict, decorator: Google::Apis::ContaineranalysisV1alpha1::PerScannerVerdict::Representation
|
|
1268
|
+
|
|
1237
1269
|
property :skill_name, as: 'skillName'
|
|
1238
1270
|
end
|
|
1239
1271
|
end
|
|
@@ -1833,6 +1865,7 @@ module Google
|
|
|
1833
1865
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1834
1866
|
property :depth, :numeric_string => true, as: 'depth'
|
|
1835
1867
|
property :dest_path, as: 'destPath'
|
|
1868
|
+
property :fetch_tags, as: 'fetchTags'
|
|
1836
1869
|
property :recurse_submodules, as: 'recurseSubmodules'
|
|
1837
1870
|
property :repository, as: 'repository', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository::Representation
|
|
1838
1871
|
|
|
@@ -2716,6 +2749,30 @@ module Google
|
|
|
2716
2749
|
end
|
|
2717
2750
|
end
|
|
2718
2751
|
|
|
2752
|
+
class MaliciousContentLlmResult
|
|
2753
|
+
# @private
|
|
2754
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2755
|
+
property :max_severity, as: 'maxSeverity'
|
|
2756
|
+
property :scan_state, as: 'scanState'
|
|
2757
|
+
end
|
|
2758
|
+
end
|
|
2759
|
+
|
|
2760
|
+
class MaliciousContentStaticResult
|
|
2761
|
+
# @private
|
|
2762
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2763
|
+
property :max_severity, as: 'maxSeverity'
|
|
2764
|
+
property :scan_state, as: 'scanState'
|
|
2765
|
+
end
|
|
2766
|
+
end
|
|
2767
|
+
|
|
2768
|
+
class MalwareScanResult
|
|
2769
|
+
# @private
|
|
2770
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2771
|
+
property :scan_state, as: 'scanState'
|
|
2772
|
+
property :verdict, as: 'verdict'
|
|
2773
|
+
end
|
|
2774
|
+
end
|
|
2775
|
+
|
|
2719
2776
|
class Material
|
|
2720
2777
|
# @private
|
|
2721
2778
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2935,6 +2992,20 @@ module Google
|
|
|
2935
2992
|
end
|
|
2936
2993
|
end
|
|
2937
2994
|
|
|
2995
|
+
class PerScannerVerdict
|
|
2996
|
+
# @private
|
|
2997
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2998
|
+
property :malicious_content_llm_result, as: 'maliciousContentLlmResult', class: Google::Apis::ContaineranalysisV1alpha1::MaliciousContentLlmResult, decorator: Google::Apis::ContaineranalysisV1alpha1::MaliciousContentLlmResult::Representation
|
|
2999
|
+
|
|
3000
|
+
property :malicious_content_static_result, as: 'maliciousContentStaticResult', class: Google::Apis::ContaineranalysisV1alpha1::MaliciousContentStaticResult, decorator: Google::Apis::ContaineranalysisV1alpha1::MaliciousContentStaticResult::Representation
|
|
3001
|
+
|
|
3002
|
+
property :malware_scan, as: 'malwareScan', class: Google::Apis::ContaineranalysisV1alpha1::MalwareScanResult, decorator: Google::Apis::ContaineranalysisV1alpha1::MalwareScanResult::Representation
|
|
3003
|
+
|
|
3004
|
+
property :workspace_policy, as: 'workspacePolicy', class: Google::Apis::ContaineranalysisV1alpha1::WorkspacePolicyResult, decorator: Google::Apis::ContaineranalysisV1alpha1::WorkspacePolicyResult::Representation
|
|
3005
|
+
|
|
3006
|
+
end
|
|
3007
|
+
end
|
|
3008
|
+
|
|
2938
3009
|
class PgpSignedAttestation
|
|
2939
3010
|
# @private
|
|
2940
3011
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3511,6 +3582,14 @@ module Google
|
|
|
3511
3582
|
property :severity, as: 'severity'
|
|
3512
3583
|
end
|
|
3513
3584
|
end
|
|
3585
|
+
|
|
3586
|
+
class WorkspacePolicyResult
|
|
3587
|
+
# @private
|
|
3588
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3589
|
+
property :scan_state, as: 'scanState'
|
|
3590
|
+
property :verdict, as: 'verdict'
|
|
3591
|
+
end
|
|
3592
|
+
end
|
|
3514
3593
|
end
|
|
3515
3594
|
end
|
|
3516
3595
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-containeranalysis_v1alpha1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.89.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_v1alpha1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.89.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1alpha1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|