google-apis-containeranalysis_v1alpha1 0.87.0 → 0.88.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: 780ac6597c83c71058fbdd0700b384f3f4420fb5f77dae9733562b83047d59c2
|
|
4
|
+
data.tar.gz: 80a7b7e76cc93b422bcb6cb3d57f1dc0acd4067a1f63b9900572c6b715362793
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 326663ff736edb424d6056a8493d82085235a0aef1a4b07fda4214fd081a7bd7aefd382dcae92783746e481f2e57cbc2d491e49a8922f8c6d1b22bbb6f18008f
|
|
7
|
+
data.tar.gz: cf0fc8c466af2e50add22e5a8682ac958f23012fd2ae90499c160bd1f5b1ac6120c44fb16c71f1818504b5ab4bba14072041403f9056abae5cb060630692f70b
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
@@ -5697,6 +5703,81 @@ module Google
|
|
|
5697
5703
|
end
|
|
5698
5704
|
end
|
|
5699
5705
|
|
|
5706
|
+
# Result of Malicious Content LLM scan.
|
|
5707
|
+
class MaliciousContentLlmResult
|
|
5708
|
+
include Google::Apis::Core::Hashable
|
|
5709
|
+
|
|
5710
|
+
# Optional. Tracks max severity found.
|
|
5711
|
+
# Corresponds to the JSON property `maxSeverity`
|
|
5712
|
+
# @return [String]
|
|
5713
|
+
attr_accessor :max_severity
|
|
5714
|
+
|
|
5715
|
+
# Output only. State of the scan.
|
|
5716
|
+
# Corresponds to the JSON property `scanState`
|
|
5717
|
+
# @return [String]
|
|
5718
|
+
attr_accessor :scan_state
|
|
5719
|
+
|
|
5720
|
+
def initialize(**args)
|
|
5721
|
+
update!(**args)
|
|
5722
|
+
end
|
|
5723
|
+
|
|
5724
|
+
# Update properties of this object
|
|
5725
|
+
def update!(**args)
|
|
5726
|
+
@max_severity = args[:max_severity] if args.key?(:max_severity)
|
|
5727
|
+
@scan_state = args[:scan_state] if args.key?(:scan_state)
|
|
5728
|
+
end
|
|
5729
|
+
end
|
|
5730
|
+
|
|
5731
|
+
# Result of Malicious Content Static scan.
|
|
5732
|
+
class MaliciousContentStaticResult
|
|
5733
|
+
include Google::Apis::Core::Hashable
|
|
5734
|
+
|
|
5735
|
+
# Optional. Tracks max severity found.
|
|
5736
|
+
# Corresponds to the JSON property `maxSeverity`
|
|
5737
|
+
# @return [String]
|
|
5738
|
+
attr_accessor :max_severity
|
|
5739
|
+
|
|
5740
|
+
# Output only. State of the scan.
|
|
5741
|
+
# Corresponds to the JSON property `scanState`
|
|
5742
|
+
# @return [String]
|
|
5743
|
+
attr_accessor :scan_state
|
|
5744
|
+
|
|
5745
|
+
def initialize(**args)
|
|
5746
|
+
update!(**args)
|
|
5747
|
+
end
|
|
5748
|
+
|
|
5749
|
+
# Update properties of this object
|
|
5750
|
+
def update!(**args)
|
|
5751
|
+
@max_severity = args[:max_severity] if args.key?(:max_severity)
|
|
5752
|
+
@scan_state = args[:scan_state] if args.key?(:scan_state)
|
|
5753
|
+
end
|
|
5754
|
+
end
|
|
5755
|
+
|
|
5756
|
+
# Result of Malware scan.
|
|
5757
|
+
class MalwareScanResult
|
|
5758
|
+
include Google::Apis::Core::Hashable
|
|
5759
|
+
|
|
5760
|
+
# Output only. State of the scan.
|
|
5761
|
+
# Corresponds to the JSON property `scanState`
|
|
5762
|
+
# @return [String]
|
|
5763
|
+
attr_accessor :scan_state
|
|
5764
|
+
|
|
5765
|
+
# Optional. Verdict of the scan.
|
|
5766
|
+
# Corresponds to the JSON property `verdict`
|
|
5767
|
+
# @return [String]
|
|
5768
|
+
attr_accessor :verdict
|
|
5769
|
+
|
|
5770
|
+
def initialize(**args)
|
|
5771
|
+
update!(**args)
|
|
5772
|
+
end
|
|
5773
|
+
|
|
5774
|
+
# Update properties of this object
|
|
5775
|
+
def update!(**args)
|
|
5776
|
+
@scan_state = args[:scan_state] if args.key?(:scan_state)
|
|
5777
|
+
@verdict = args[:verdict] if args.key?(:verdict)
|
|
5778
|
+
end
|
|
5779
|
+
end
|
|
5780
|
+
|
|
5700
5781
|
# Material is a material used in the generation of the provenance
|
|
5701
5782
|
class Material
|
|
5702
5783
|
include Google::Apis::Core::Hashable
|
|
@@ -6605,6 +6686,43 @@ module Google
|
|
|
6605
6686
|
end
|
|
6606
6687
|
end
|
|
6607
6688
|
|
|
6689
|
+
# Per scanner verdict details.
|
|
6690
|
+
class PerScannerVerdict
|
|
6691
|
+
include Google::Apis::Core::Hashable
|
|
6692
|
+
|
|
6693
|
+
# Result of Malicious Content LLM scan.
|
|
6694
|
+
# Corresponds to the JSON property `maliciousContentLlmResult`
|
|
6695
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::MaliciousContentLlmResult]
|
|
6696
|
+
attr_accessor :malicious_content_llm_result
|
|
6697
|
+
|
|
6698
|
+
# Result of Malicious Content Static scan.
|
|
6699
|
+
# Corresponds to the JSON property `maliciousContentStaticResult`
|
|
6700
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::MaliciousContentStaticResult]
|
|
6701
|
+
attr_accessor :malicious_content_static_result
|
|
6702
|
+
|
|
6703
|
+
# Result of Malware scan.
|
|
6704
|
+
# Corresponds to the JSON property `malwareScan`
|
|
6705
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::MalwareScanResult]
|
|
6706
|
+
attr_accessor :malware_scan
|
|
6707
|
+
|
|
6708
|
+
# Result of Workspace Policy scan.
|
|
6709
|
+
# Corresponds to the JSON property `workspacePolicy`
|
|
6710
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::WorkspacePolicyResult]
|
|
6711
|
+
attr_accessor :workspace_policy
|
|
6712
|
+
|
|
6713
|
+
def initialize(**args)
|
|
6714
|
+
update!(**args)
|
|
6715
|
+
end
|
|
6716
|
+
|
|
6717
|
+
# Update properties of this object
|
|
6718
|
+
def update!(**args)
|
|
6719
|
+
@malicious_content_llm_result = args[:malicious_content_llm_result] if args.key?(:malicious_content_llm_result)
|
|
6720
|
+
@malicious_content_static_result = args[:malicious_content_static_result] if args.key?(:malicious_content_static_result)
|
|
6721
|
+
@malware_scan = args[:malware_scan] if args.key?(:malware_scan)
|
|
6722
|
+
@workspace_policy = args[:workspace_policy] if args.key?(:workspace_policy)
|
|
6723
|
+
end
|
|
6724
|
+
end
|
|
6725
|
+
|
|
6608
6726
|
# An attestation wrapper with a PGP-compatible signature. This message only
|
|
6609
6727
|
# supports `ATTACHED` signatures, where the payload that is signed is included
|
|
6610
6728
|
# alongside the signature itself in the same file.
|
|
@@ -8771,6 +8889,31 @@ module Google
|
|
|
8771
8889
|
@severity = args[:severity] if args.key?(:severity)
|
|
8772
8890
|
end
|
|
8773
8891
|
end
|
|
8892
|
+
|
|
8893
|
+
# Result of Workspace Policy scan.
|
|
8894
|
+
class WorkspacePolicyResult
|
|
8895
|
+
include Google::Apis::Core::Hashable
|
|
8896
|
+
|
|
8897
|
+
# Output only. State of the scan.
|
|
8898
|
+
# Corresponds to the JSON property `scanState`
|
|
8899
|
+
# @return [String]
|
|
8900
|
+
attr_accessor :scan_state
|
|
8901
|
+
|
|
8902
|
+
# Optional. Verdict of the scan.
|
|
8903
|
+
# Corresponds to the JSON property `verdict`
|
|
8904
|
+
# @return [String]
|
|
8905
|
+
attr_accessor :verdict
|
|
8906
|
+
|
|
8907
|
+
def initialize(**args)
|
|
8908
|
+
update!(**args)
|
|
8909
|
+
end
|
|
8910
|
+
|
|
8911
|
+
# Update properties of this object
|
|
8912
|
+
def update!(**args)
|
|
8913
|
+
@scan_state = args[:scan_state] if args.key?(:scan_state)
|
|
8914
|
+
@verdict = args[:verdict] if args.key?(:verdict)
|
|
8915
|
+
end
|
|
8916
|
+
end
|
|
8774
8917
|
end
|
|
8775
8918
|
end
|
|
8776
8919
|
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.88.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 = "20260805"
|
|
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
|
|
@@ -2716,6 +2748,30 @@ module Google
|
|
|
2716
2748
|
end
|
|
2717
2749
|
end
|
|
2718
2750
|
|
|
2751
|
+
class MaliciousContentLlmResult
|
|
2752
|
+
# @private
|
|
2753
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2754
|
+
property :max_severity, as: 'maxSeverity'
|
|
2755
|
+
property :scan_state, as: 'scanState'
|
|
2756
|
+
end
|
|
2757
|
+
end
|
|
2758
|
+
|
|
2759
|
+
class MaliciousContentStaticResult
|
|
2760
|
+
# @private
|
|
2761
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2762
|
+
property :max_severity, as: 'maxSeverity'
|
|
2763
|
+
property :scan_state, as: 'scanState'
|
|
2764
|
+
end
|
|
2765
|
+
end
|
|
2766
|
+
|
|
2767
|
+
class MalwareScanResult
|
|
2768
|
+
# @private
|
|
2769
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2770
|
+
property :scan_state, as: 'scanState'
|
|
2771
|
+
property :verdict, as: 'verdict'
|
|
2772
|
+
end
|
|
2773
|
+
end
|
|
2774
|
+
|
|
2719
2775
|
class Material
|
|
2720
2776
|
# @private
|
|
2721
2777
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2935,6 +2991,20 @@ module Google
|
|
|
2935
2991
|
end
|
|
2936
2992
|
end
|
|
2937
2993
|
|
|
2994
|
+
class PerScannerVerdict
|
|
2995
|
+
# @private
|
|
2996
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2997
|
+
property :malicious_content_llm_result, as: 'maliciousContentLlmResult', class: Google::Apis::ContaineranalysisV1alpha1::MaliciousContentLlmResult, decorator: Google::Apis::ContaineranalysisV1alpha1::MaliciousContentLlmResult::Representation
|
|
2998
|
+
|
|
2999
|
+
property :malicious_content_static_result, as: 'maliciousContentStaticResult', class: Google::Apis::ContaineranalysisV1alpha1::MaliciousContentStaticResult, decorator: Google::Apis::ContaineranalysisV1alpha1::MaliciousContentStaticResult::Representation
|
|
3000
|
+
|
|
3001
|
+
property :malware_scan, as: 'malwareScan', class: Google::Apis::ContaineranalysisV1alpha1::MalwareScanResult, decorator: Google::Apis::ContaineranalysisV1alpha1::MalwareScanResult::Representation
|
|
3002
|
+
|
|
3003
|
+
property :workspace_policy, as: 'workspacePolicy', class: Google::Apis::ContaineranalysisV1alpha1::WorkspacePolicyResult, decorator: Google::Apis::ContaineranalysisV1alpha1::WorkspacePolicyResult::Representation
|
|
3004
|
+
|
|
3005
|
+
end
|
|
3006
|
+
end
|
|
3007
|
+
|
|
2938
3008
|
class PgpSignedAttestation
|
|
2939
3009
|
# @private
|
|
2940
3010
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3511,6 +3581,14 @@ module Google
|
|
|
3511
3581
|
property :severity, as: 'severity'
|
|
3512
3582
|
end
|
|
3513
3583
|
end
|
|
3584
|
+
|
|
3585
|
+
class WorkspacePolicyResult
|
|
3586
|
+
# @private
|
|
3587
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3588
|
+
property :scan_state, as: 'scanState'
|
|
3589
|
+
property :verdict, as: 'verdict'
|
|
3590
|
+
end
|
|
3591
|
+
end
|
|
3514
3592
|
end
|
|
3515
3593
|
end
|
|
3516
3594
|
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.88.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.88.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:
|