google-apis-containeranalysis_v1alpha1 0.82.0 → 0.84.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: e5e521e1c3525591bfaf69b09eec732ed3a37f967e365a92d3133e6a20a11d28
|
|
4
|
+
data.tar.gz: 15447c56dcedc10500e65f316dbcba32003057e9fde07a9d92091173f1026308
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9679dc91813780a0886ca7f44464655e3ea3514e51aa8de71eec360a0a29a606ab5b157c3254857d7b94df2812e5c9ad0730e57fe3929cae96ed44a8e97dcead
|
|
7
|
+
data.tar.gz: b3739775ce7718985bfa1b77b78091af53ab97f90bc1d998f67d8a137c3adee2c2945800d08c799dda9f535eaba7cb7d9da7940d6c3183710fee565d2d649a25
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1alpha1
|
|
2
2
|
|
|
3
|
+
### v0.84.0 (2026-05-17)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260505
|
|
6
|
+
|
|
7
|
+
### v0.83.0 (2026-05-03)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260423
|
|
10
|
+
|
|
3
11
|
### v0.82.0 (2026-03-22)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260313
|
|
@@ -22,6 +22,50 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module ContaineranalysisV1alpha1
|
|
24
24
|
|
|
25
|
+
# AISkillAnalysisNote provides the metadata of an AI-based skill analysis.
|
|
26
|
+
class AiSkillAnalysisNote
|
|
27
|
+
include Google::Apis::Core::Hashable
|
|
28
|
+
|
|
29
|
+
def initialize(**args)
|
|
30
|
+
update!(**args)
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
# Update properties of this object
|
|
34
|
+
def update!(**args)
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
# AISkillAnalysisOccurrence provides the results of an AI-based skill analysis.
|
|
39
|
+
class AiSkillAnalysisOccurrence
|
|
40
|
+
include Google::Apis::Core::Hashable
|
|
41
|
+
|
|
42
|
+
# Optional. Findings produced by the analysis.
|
|
43
|
+
# Corresponds to the JSON property `findings`
|
|
44
|
+
# @return [Array<Google::Apis::ContaineranalysisV1alpha1::Finding>]
|
|
45
|
+
attr_accessor :findings
|
|
46
|
+
|
|
47
|
+
# Optional. Maximum severity found among findings.
|
|
48
|
+
# Corresponds to the JSON property `maxSeverity`
|
|
49
|
+
# @return [String]
|
|
50
|
+
attr_accessor :max_severity
|
|
51
|
+
|
|
52
|
+
# Optional. Name of the skill that produced this analysis.
|
|
53
|
+
# Corresponds to the JSON property `skillName`
|
|
54
|
+
# @return [String]
|
|
55
|
+
attr_accessor :skill_name
|
|
56
|
+
|
|
57
|
+
def initialize(**args)
|
|
58
|
+
update!(**args)
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
# Update properties of this object
|
|
62
|
+
def update!(**args)
|
|
63
|
+
@findings = args[:findings] if args.key?(:findings)
|
|
64
|
+
@max_severity = args[:max_severity] if args.key?(:max_severity)
|
|
65
|
+
@skill_name = args[:skill_name] if args.key?(:skill_name)
|
|
66
|
+
end
|
|
67
|
+
end
|
|
68
|
+
|
|
25
69
|
# Indicates which analysis completed successfully. Multiple types of analysis
|
|
26
70
|
# can be performed on a single resource.
|
|
27
71
|
class AnalysisCompleted
|
|
@@ -934,38 +978,43 @@ module Google
|
|
|
934
978
|
# and v3. For CVSS v2 details, see https://www.first.org/cvss/v2/guide CVSS v2
|
|
935
979
|
# calculator: https://nvd.nist.gov/vuln-metrics/cvss/v2-calculator For CVSS v3
|
|
936
980
|
# details, see https://www.first.org/cvss/specification-document CVSS v3
|
|
937
|
-
# calculator: https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator
|
|
981
|
+
# calculator: https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator For CVSS v4
|
|
982
|
+
# details, see https://www.first.org/cvss/v4.0/user-guide CVSS v4 calculator:
|
|
983
|
+
# https://nvd.nist.gov/vuln-metrics/cvss/v4-calculator
|
|
938
984
|
class Cvss
|
|
939
985
|
include Google::Apis::Core::Hashable
|
|
940
986
|
|
|
941
|
-
# Defined in CVSS v3,
|
|
987
|
+
# Optional. Attack Complexity (AC). Defined in CVSS v2, v3, v4.
|
|
942
988
|
# Corresponds to the JSON property `attackComplexity`
|
|
943
989
|
# @return [String]
|
|
944
990
|
attr_accessor :attack_complexity
|
|
945
991
|
|
|
946
|
-
#
|
|
947
|
-
#
|
|
948
|
-
#
|
|
992
|
+
# Optional. Attack Requirements (AT). Defined in CVSS v4.
|
|
993
|
+
# Corresponds to the JSON property `attackRequirements`
|
|
994
|
+
# @return [String]
|
|
995
|
+
attr_accessor :attack_requirements
|
|
996
|
+
|
|
997
|
+
# Optional. Attack Vector (AV). Defined in CVSS v2, v3, v4.
|
|
949
998
|
# Corresponds to the JSON property `attackVector`
|
|
950
999
|
# @return [String]
|
|
951
1000
|
attr_accessor :attack_vector
|
|
952
1001
|
|
|
953
|
-
# Defined in CVSS v2
|
|
1002
|
+
# Optional. Authentication (Au). Defined in CVSS v2.
|
|
954
1003
|
# Corresponds to the JSON property `authentication`
|
|
955
1004
|
# @return [String]
|
|
956
1005
|
attr_accessor :authentication
|
|
957
1006
|
|
|
958
|
-
# Defined in CVSS
|
|
1007
|
+
# Optional. Availability Impact (A). Defined in CVSS v2, v3.
|
|
959
1008
|
# Corresponds to the JSON property `availabilityImpact`
|
|
960
1009
|
# @return [String]
|
|
961
1010
|
attr_accessor :availability_impact
|
|
962
1011
|
|
|
963
|
-
# The base score is a function of the base metric scores.
|
|
1012
|
+
# Optional. The base score is a function of the base metric scores.
|
|
964
1013
|
# Corresponds to the JSON property `baseScore`
|
|
965
1014
|
# @return [Float]
|
|
966
1015
|
attr_accessor :base_score
|
|
967
1016
|
|
|
968
|
-
# Defined in CVSS
|
|
1017
|
+
# Optional. Confidentiality Impact (C). Defined in CVSS v2, v3.
|
|
969
1018
|
# Corresponds to the JSON property `confidentialityImpact`
|
|
970
1019
|
# @return [String]
|
|
971
1020
|
attr_accessor :confidentiality_impact
|
|
@@ -980,26 +1029,56 @@ module Google
|
|
|
980
1029
|
# @return [Float]
|
|
981
1030
|
attr_accessor :impact_score
|
|
982
1031
|
|
|
983
|
-
# Defined in CVSS
|
|
1032
|
+
# Optional. Integrity Impact (I). Defined in CVSS v2, v3.
|
|
984
1033
|
# Corresponds to the JSON property `integrityImpact`
|
|
985
1034
|
# @return [String]
|
|
986
1035
|
attr_accessor :integrity_impact
|
|
987
1036
|
|
|
988
|
-
# Defined in CVSS v3
|
|
1037
|
+
# Optional. Privileges Required (PR). Defined in CVSS v3, v4.
|
|
989
1038
|
# Corresponds to the JSON property `privilegesRequired`
|
|
990
1039
|
# @return [String]
|
|
991
1040
|
attr_accessor :privileges_required
|
|
992
1041
|
|
|
993
|
-
# Defined in CVSS v3
|
|
1042
|
+
# Optional. Scope (S). Defined in CVSS v3.
|
|
994
1043
|
# Corresponds to the JSON property `scope`
|
|
995
1044
|
# @return [String]
|
|
996
1045
|
attr_accessor :scope
|
|
997
1046
|
|
|
998
|
-
# Defined in CVSS
|
|
1047
|
+
# Optional. Subsequent System Availability Impact (SA). Defined in CVSS v4.
|
|
1048
|
+
# Corresponds to the JSON property `subsequentSystemAvailabilityImpact`
|
|
1049
|
+
# @return [String]
|
|
1050
|
+
attr_accessor :subsequent_system_availability_impact
|
|
1051
|
+
|
|
1052
|
+
# Optional. Subsequent System Confidentiality Impact (SC). Defined in CVSS v4.
|
|
1053
|
+
# Corresponds to the JSON property `subsequentSystemConfidentialityImpact`
|
|
1054
|
+
# @return [String]
|
|
1055
|
+
attr_accessor :subsequent_system_confidentiality_impact
|
|
1056
|
+
|
|
1057
|
+
# Optional. Subsequent System Integrity Impact (SI). Defined in CVSS v4.
|
|
1058
|
+
# Corresponds to the JSON property `subsequentSystemIntegrityImpact`
|
|
1059
|
+
# @return [String]
|
|
1060
|
+
attr_accessor :subsequent_system_integrity_impact
|
|
1061
|
+
|
|
1062
|
+
# Optional. User Interaction (UI). Defined in CVSS v3, v4.
|
|
999
1063
|
# Corresponds to the JSON property `userInteraction`
|
|
1000
1064
|
# @return [String]
|
|
1001
1065
|
attr_accessor :user_interaction
|
|
1002
1066
|
|
|
1067
|
+
# Optional. Vulnerable System Availability Impact (VA). Defined in CVSS v4.
|
|
1068
|
+
# Corresponds to the JSON property `vulnerableSystemAvailabilityImpact`
|
|
1069
|
+
# @return [String]
|
|
1070
|
+
attr_accessor :vulnerable_system_availability_impact
|
|
1071
|
+
|
|
1072
|
+
# Optional. Vulnerable System Confidentiality Impact (VC). Defined in CVSS v4.
|
|
1073
|
+
# Corresponds to the JSON property `vulnerableSystemConfidentialityImpact`
|
|
1074
|
+
# @return [String]
|
|
1075
|
+
attr_accessor :vulnerable_system_confidentiality_impact
|
|
1076
|
+
|
|
1077
|
+
# Optional. Vulnerable System Integrity Impact (VI). Defined in CVSS v4.
|
|
1078
|
+
# Corresponds to the JSON property `vulnerableSystemIntegrityImpact`
|
|
1079
|
+
# @return [String]
|
|
1080
|
+
attr_accessor :vulnerable_system_integrity_impact
|
|
1081
|
+
|
|
1003
1082
|
def initialize(**args)
|
|
1004
1083
|
update!(**args)
|
|
1005
1084
|
end
|
|
@@ -1007,6 +1086,7 @@ module Google
|
|
|
1007
1086
|
# Update properties of this object
|
|
1008
1087
|
def update!(**args)
|
|
1009
1088
|
@attack_complexity = args[:attack_complexity] if args.key?(:attack_complexity)
|
|
1089
|
+
@attack_requirements = args[:attack_requirements] if args.key?(:attack_requirements)
|
|
1010
1090
|
@attack_vector = args[:attack_vector] if args.key?(:attack_vector)
|
|
1011
1091
|
@authentication = args[:authentication] if args.key?(:authentication)
|
|
1012
1092
|
@availability_impact = args[:availability_impact] if args.key?(:availability_impact)
|
|
@@ -1017,7 +1097,13 @@ module Google
|
|
|
1017
1097
|
@integrity_impact = args[:integrity_impact] if args.key?(:integrity_impact)
|
|
1018
1098
|
@privileges_required = args[:privileges_required] if args.key?(:privileges_required)
|
|
1019
1099
|
@scope = args[:scope] if args.key?(:scope)
|
|
1100
|
+
@subsequent_system_availability_impact = args[:subsequent_system_availability_impact] if args.key?(:subsequent_system_availability_impact)
|
|
1101
|
+
@subsequent_system_confidentiality_impact = args[:subsequent_system_confidentiality_impact] if args.key?(:subsequent_system_confidentiality_impact)
|
|
1102
|
+
@subsequent_system_integrity_impact = args[:subsequent_system_integrity_impact] if args.key?(:subsequent_system_integrity_impact)
|
|
1020
1103
|
@user_interaction = args[:user_interaction] if args.key?(:user_interaction)
|
|
1104
|
+
@vulnerable_system_availability_impact = args[:vulnerable_system_availability_impact] if args.key?(:vulnerable_system_availability_impact)
|
|
1105
|
+
@vulnerable_system_confidentiality_impact = args[:vulnerable_system_confidentiality_impact] if args.key?(:vulnerable_system_confidentiality_impact)
|
|
1106
|
+
@vulnerable_system_integrity_impact = args[:vulnerable_system_integrity_impact] if args.key?(:vulnerable_system_integrity_impact)
|
|
1021
1107
|
end
|
|
1022
1108
|
end
|
|
1023
1109
|
|
|
@@ -1339,6 +1425,13 @@ module Google
|
|
|
1339
1425
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts
|
|
1340
1426
|
include Google::Apis::Core::Hashable
|
|
1341
1427
|
|
|
1428
|
+
# Optional. A list of generic artifacts to be uploaded to Artifact Registry upon
|
|
1429
|
+
# successful completion of all build steps. If any artifacts fail to be pushed,
|
|
1430
|
+
# the build is marked FAILURE.
|
|
1431
|
+
# Corresponds to the JSON property `genericArtifacts`
|
|
1432
|
+
# @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact>]
|
|
1433
|
+
attr_accessor :generic_artifacts
|
|
1434
|
+
|
|
1342
1435
|
# Optional. A list of Go modules to be uploaded to Artifact Registry upon
|
|
1343
1436
|
# successful completion of all build steps. If any objects fail to be pushed,
|
|
1344
1437
|
# the build is marked FAILURE.
|
|
@@ -1402,6 +1495,7 @@ module Google
|
|
|
1402
1495
|
|
|
1403
1496
|
# Update properties of this object
|
|
1404
1497
|
def update!(**args)
|
|
1498
|
+
@generic_artifacts = args[:generic_artifacts] if args.key?(:generic_artifacts)
|
|
1405
1499
|
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
|
1406
1500
|
@images = args[:images] if args.key?(:images)
|
|
1407
1501
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
|
@@ -1447,6 +1541,35 @@ module Google
|
|
|
1447
1541
|
end
|
|
1448
1542
|
end
|
|
1449
1543
|
|
|
1544
|
+
# Generic artifact to upload to Artifact Registry upon successful completion of
|
|
1545
|
+
# all build steps.
|
|
1546
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact
|
|
1547
|
+
include Google::Apis::Core::Hashable
|
|
1548
|
+
|
|
1549
|
+
# Required. Path to the generic artifact in the build's workspace to be uploaded
|
|
1550
|
+
# to Artifact Registry.
|
|
1551
|
+
# Corresponds to the JSON property `folder`
|
|
1552
|
+
# @return [String]
|
|
1553
|
+
attr_accessor :folder
|
|
1554
|
+
|
|
1555
|
+
# Required. Registry path to upload the generic artifact to, in the form
|
|
1556
|
+
# projects/$PROJECT/locations/$LOCATION/repositories/$REPO/packages/$PACKAGE/
|
|
1557
|
+
# versions/$VERSION
|
|
1558
|
+
# Corresponds to the JSON property `registryPath`
|
|
1559
|
+
# @return [String]
|
|
1560
|
+
attr_accessor :registry_path
|
|
1561
|
+
|
|
1562
|
+
def initialize(**args)
|
|
1563
|
+
update!(**args)
|
|
1564
|
+
end
|
|
1565
|
+
|
|
1566
|
+
# Update properties of this object
|
|
1567
|
+
def update!(**args)
|
|
1568
|
+
@folder = args[:folder] if args.key?(:folder)
|
|
1569
|
+
@registry_path = args[:registry_path] if args.key?(:registry_path)
|
|
1570
|
+
end
|
|
1571
|
+
end
|
|
1572
|
+
|
|
1450
1573
|
# Go module to upload to Artifact Registry upon successful completion of all
|
|
1451
1574
|
# build steps. A module refers to all dependencies in a go.mod file.
|
|
1452
1575
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
|
|
@@ -2208,6 +2331,11 @@ module Google
|
|
|
2208
2331
|
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
|
|
2209
2332
|
attr_accessor :pull_timing
|
|
2210
2333
|
|
|
2334
|
+
# Declaration of results for this build step.
|
|
2335
|
+
# Corresponds to the JSON property `results`
|
|
2336
|
+
# @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult>]
|
|
2337
|
+
attr_accessor :results
|
|
2338
|
+
|
|
2211
2339
|
# A shell script to be executed in the step. When script is provided, the user
|
|
2212
2340
|
# cannot specify the entrypoint or args.
|
|
2213
2341
|
# Corresponds to the JSON property `script`
|
|
@@ -2274,6 +2402,7 @@ module Google
|
|
|
2274
2402
|
@id = args[:id] if args.key?(:id)
|
|
2275
2403
|
@name = args[:name] if args.key?(:name)
|
|
2276
2404
|
@pull_timing = args[:pull_timing] if args.key?(:pull_timing)
|
|
2405
|
+
@results = args[:results] if args.key?(:results)
|
|
2277
2406
|
@script = args[:script] if args.key?(:script)
|
|
2278
2407
|
@secret_env = args[:secret_env] if args.key?(:secret_env)
|
|
2279
2408
|
@status = args[:status] if args.key?(:status)
|
|
@@ -2284,6 +2413,25 @@ module Google
|
|
|
2284
2413
|
end
|
|
2285
2414
|
end
|
|
2286
2415
|
|
|
2416
|
+
# Results for a build step.
|
|
2417
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults
|
|
2418
|
+
include Google::Apis::Core::Hashable
|
|
2419
|
+
|
|
2420
|
+
# Results for a build step.
|
|
2421
|
+
# Corresponds to the JSON property `results`
|
|
2422
|
+
# @return [Hash<String,String>]
|
|
2423
|
+
attr_accessor :results
|
|
2424
|
+
|
|
2425
|
+
def initialize(**args)
|
|
2426
|
+
update!(**args)
|
|
2427
|
+
end
|
|
2428
|
+
|
|
2429
|
+
# Update properties of this object
|
|
2430
|
+
def update!(**args)
|
|
2431
|
+
@results = args[:results] if args.key?(:results)
|
|
2432
|
+
end
|
|
2433
|
+
end
|
|
2434
|
+
|
|
2287
2435
|
# A non-fatal problem encountered during the execution of the build.
|
|
2288
2436
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildWarning
|
|
2289
2437
|
include Google::Apis::Core::Hashable
|
|
@@ -2399,6 +2547,11 @@ module Google
|
|
|
2399
2547
|
attr_accessor :empty
|
|
2400
2548
|
alias_method :empty?, :empty
|
|
2401
2549
|
|
|
2550
|
+
# Represents a generic artifact as a build dependency.
|
|
2551
|
+
# Corresponds to the JSON property `genericArtifact`
|
|
2552
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency]
|
|
2553
|
+
attr_accessor :generic_artifact
|
|
2554
|
+
|
|
2402
2555
|
# Represents a git repository as a build dependency.
|
|
2403
2556
|
# Corresponds to the JSON property `gitSource`
|
|
2404
2557
|
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency]
|
|
@@ -2411,10 +2564,37 @@ module Google
|
|
|
2411
2564
|
# Update properties of this object
|
|
2412
2565
|
def update!(**args)
|
|
2413
2566
|
@empty = args[:empty] if args.key?(:empty)
|
|
2567
|
+
@generic_artifact = args[:generic_artifact] if args.key?(:generic_artifact)
|
|
2414
2568
|
@git_source = args[:git_source] if args.key?(:git_source)
|
|
2415
2569
|
end
|
|
2416
2570
|
end
|
|
2417
2571
|
|
|
2572
|
+
# Represents a generic artifact as a build dependency.
|
|
2573
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency
|
|
2574
|
+
include Google::Apis::Core::Hashable
|
|
2575
|
+
|
|
2576
|
+
# Required. Where the artifact files should be placed on the worker.
|
|
2577
|
+
# Corresponds to the JSON property `destPath`
|
|
2578
|
+
# @return [String]
|
|
2579
|
+
attr_accessor :dest_path
|
|
2580
|
+
|
|
2581
|
+
# Required. The location to download the artifact files from. Ex: projects/p1/
|
|
2582
|
+
# locations/us/repositories/r1/packages/p1/versions/v1
|
|
2583
|
+
# Corresponds to the JSON property `resource`
|
|
2584
|
+
# @return [String]
|
|
2585
|
+
attr_accessor :resource
|
|
2586
|
+
|
|
2587
|
+
def initialize(**args)
|
|
2588
|
+
update!(**args)
|
|
2589
|
+
end
|
|
2590
|
+
|
|
2591
|
+
# Update properties of this object
|
|
2592
|
+
def update!(**args)
|
|
2593
|
+
@dest_path = args[:dest_path] if args.key?(:dest_path)
|
|
2594
|
+
@resource = args[:resource] if args.key?(:resource)
|
|
2595
|
+
end
|
|
2596
|
+
end
|
|
2597
|
+
|
|
2418
2598
|
# Represents a git repository as a build dependency.
|
|
2419
2599
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
|
|
2420
2600
|
include Google::Apis::Core::Hashable
|
|
@@ -2776,6 +2956,17 @@ module Google
|
|
|
2776
2956
|
# @return [Array<String>]
|
|
2777
2957
|
attr_accessor :build_step_outputs
|
|
2778
2958
|
|
|
2959
|
+
# Results for build steps. step_id ->
|
|
2960
|
+
# Corresponds to the JSON property `buildStepResults`
|
|
2961
|
+
# @return [Hash<String,Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults>]
|
|
2962
|
+
attr_accessor :build_step_results
|
|
2963
|
+
|
|
2964
|
+
# Output only. Generic artifacts uploaded to Artifact Registry at the end of the
|
|
2965
|
+
# build.
|
|
2966
|
+
# Corresponds to the JSON property `genericArtifacts`
|
|
2967
|
+
# @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact>]
|
|
2968
|
+
attr_accessor :generic_artifacts
|
|
2969
|
+
|
|
2779
2970
|
# Optional. Go module artifacts uploaded to Artifact Registry at the end of the
|
|
2780
2971
|
# build.
|
|
2781
2972
|
# Corresponds to the JSON property `goModules`
|
|
@@ -2818,6 +3009,8 @@ module Google
|
|
|
2818
3009
|
@artifact_timing = args[:artifact_timing] if args.key?(:artifact_timing)
|
|
2819
3010
|
@build_step_images = args[:build_step_images] if args.key?(:build_step_images)
|
|
2820
3011
|
@build_step_outputs = args[:build_step_outputs] if args.key?(:build_step_outputs)
|
|
3012
|
+
@build_step_results = args[:build_step_results] if args.key?(:build_step_results)
|
|
3013
|
+
@generic_artifacts = args[:generic_artifacts] if args.key?(:generic_artifacts)
|
|
2821
3014
|
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
|
2822
3015
|
@images = args[:images] if args.key?(:images)
|
|
2823
3016
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
|
@@ -3020,6 +3213,37 @@ module Google
|
|
|
3020
3213
|
end
|
|
3021
3214
|
end
|
|
3022
3215
|
|
|
3216
|
+
# StepResult is the declaration of a result for a build step.
|
|
3217
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult
|
|
3218
|
+
include Google::Apis::Core::Hashable
|
|
3219
|
+
|
|
3220
|
+
# Optional. The content of the attestation to be generated.
|
|
3221
|
+
# Corresponds to the JSON property `attestationContent`
|
|
3222
|
+
# @return [String]
|
|
3223
|
+
attr_accessor :attestation_content
|
|
3224
|
+
|
|
3225
|
+
# Optional. The type of attestation to be generated.
|
|
3226
|
+
# Corresponds to the JSON property `attestationType`
|
|
3227
|
+
# @return [String]
|
|
3228
|
+
attr_accessor :attestation_type
|
|
3229
|
+
|
|
3230
|
+
# Required. The name of the result.
|
|
3231
|
+
# Corresponds to the JSON property `name`
|
|
3232
|
+
# @return [String]
|
|
3233
|
+
attr_accessor :name
|
|
3234
|
+
|
|
3235
|
+
def initialize(**args)
|
|
3236
|
+
update!(**args)
|
|
3237
|
+
end
|
|
3238
|
+
|
|
3239
|
+
# Update properties of this object
|
|
3240
|
+
def update!(**args)
|
|
3241
|
+
@attestation_content = args[:attestation_content] if args.key?(:attestation_content)
|
|
3242
|
+
@attestation_type = args[:attestation_type] if args.key?(:attestation_type)
|
|
3243
|
+
@name = args[:name] if args.key?(:name)
|
|
3244
|
+
end
|
|
3245
|
+
end
|
|
3246
|
+
|
|
3023
3247
|
# Location of the source in an archive file in Cloud Storage.
|
|
3024
3248
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
|
|
3025
3249
|
include Google::Apis::Core::Hashable
|
|
@@ -3122,6 +3346,52 @@ module Google
|
|
|
3122
3346
|
end
|
|
3123
3347
|
end
|
|
3124
3348
|
|
|
3349
|
+
# A generic artifact uploaded to Artifact Registry using the GenericArtifact
|
|
3350
|
+
# directive.
|
|
3351
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact
|
|
3352
|
+
include Google::Apis::Core::Hashable
|
|
3353
|
+
|
|
3354
|
+
# Container message for hashes of byte content of files, used in
|
|
3355
|
+
# SourceProvenance messages to verify integrity of source input to the build.
|
|
3356
|
+
# Corresponds to the JSON property `artifactFingerprint`
|
|
3357
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes]
|
|
3358
|
+
attr_accessor :artifact_fingerprint
|
|
3359
|
+
|
|
3360
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
3361
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
3362
|
+
# @return [String]
|
|
3363
|
+
attr_accessor :artifact_registry_package
|
|
3364
|
+
|
|
3365
|
+
# Output only. The file hashes that make up the generic artifact.
|
|
3366
|
+
# Corresponds to the JSON property `fileHashes`
|
|
3367
|
+
# @return [Hash<String,Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes>]
|
|
3368
|
+
attr_accessor :file_hashes
|
|
3369
|
+
|
|
3370
|
+
# Start and end times for a build execution phase.
|
|
3371
|
+
# Corresponds to the JSON property `pushTiming`
|
|
3372
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
|
|
3373
|
+
attr_accessor :push_timing
|
|
3374
|
+
|
|
3375
|
+
# Output only. URI of the uploaded artifact. Ex: projects/p1/locations/us/
|
|
3376
|
+
# repositories/r1/packages/p1/versions/v1
|
|
3377
|
+
# Corresponds to the JSON property `uri`
|
|
3378
|
+
# @return [String]
|
|
3379
|
+
attr_accessor :uri
|
|
3380
|
+
|
|
3381
|
+
def initialize(**args)
|
|
3382
|
+
update!(**args)
|
|
3383
|
+
end
|
|
3384
|
+
|
|
3385
|
+
# Update properties of this object
|
|
3386
|
+
def update!(**args)
|
|
3387
|
+
@artifact_fingerprint = args[:artifact_fingerprint] if args.key?(:artifact_fingerprint)
|
|
3388
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
3389
|
+
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
3390
|
+
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
3391
|
+
@uri = args[:uri] if args.key?(:uri)
|
|
3392
|
+
end
|
|
3393
|
+
end
|
|
3394
|
+
|
|
3125
3395
|
# A Go module artifact uploaded to Artifact Registry using the GoModule
|
|
3126
3396
|
# directive.
|
|
3127
3397
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
|
|
@@ -4304,6 +4574,70 @@ module Google
|
|
|
4304
4574
|
end
|
|
4305
4575
|
end
|
|
4306
4576
|
|
|
4577
|
+
# Finding provides details for a single finding within an
|
|
4578
|
+
# AISkillAnalysisOccurrence.
|
|
4579
|
+
class Finding
|
|
4580
|
+
include Google::Apis::Core::Hashable
|
|
4581
|
+
|
|
4582
|
+
# Optional. Category of the finding.
|
|
4583
|
+
# Corresponds to the JSON property `category`
|
|
4584
|
+
# @return [String]
|
|
4585
|
+
attr_accessor :category
|
|
4586
|
+
|
|
4587
|
+
# Location details with file path and line number.
|
|
4588
|
+
# Corresponds to the JSON property `location`
|
|
4589
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::FindingLocation]
|
|
4590
|
+
attr_accessor :location
|
|
4591
|
+
|
|
4592
|
+
# Optional. Scanner determines which engine (e.g. static, llm) emitted the
|
|
4593
|
+
# finding.
|
|
4594
|
+
# Corresponds to the JSON property `scanner`
|
|
4595
|
+
# @return [String]
|
|
4596
|
+
attr_accessor :scanner
|
|
4597
|
+
|
|
4598
|
+
# Optional. Severity of the finding.
|
|
4599
|
+
# Corresponds to the JSON property `severity`
|
|
4600
|
+
# @return [String]
|
|
4601
|
+
attr_accessor :severity
|
|
4602
|
+
|
|
4603
|
+
def initialize(**args)
|
|
4604
|
+
update!(**args)
|
|
4605
|
+
end
|
|
4606
|
+
|
|
4607
|
+
# Update properties of this object
|
|
4608
|
+
def update!(**args)
|
|
4609
|
+
@category = args[:category] if args.key?(:category)
|
|
4610
|
+
@location = args[:location] if args.key?(:location)
|
|
4611
|
+
@scanner = args[:scanner] if args.key?(:scanner)
|
|
4612
|
+
@severity = args[:severity] if args.key?(:severity)
|
|
4613
|
+
end
|
|
4614
|
+
end
|
|
4615
|
+
|
|
4616
|
+
# Location details with file path and line number.
|
|
4617
|
+
class FindingLocation
|
|
4618
|
+
include Google::Apis::Core::Hashable
|
|
4619
|
+
|
|
4620
|
+
# Optional. Relative path of the file containing the finding.
|
|
4621
|
+
# Corresponds to the JSON property `filePath`
|
|
4622
|
+
# @return [String]
|
|
4623
|
+
attr_accessor :file_path
|
|
4624
|
+
|
|
4625
|
+
# Optional. Line number (1-based), or 0 if whole File / unknown.
|
|
4626
|
+
# Corresponds to the JSON property `lineNumber`
|
|
4627
|
+
# @return [Fixnum]
|
|
4628
|
+
attr_accessor :line_number
|
|
4629
|
+
|
|
4630
|
+
def initialize(**args)
|
|
4631
|
+
update!(**args)
|
|
4632
|
+
end
|
|
4633
|
+
|
|
4634
|
+
# Update properties of this object
|
|
4635
|
+
def update!(**args)
|
|
4636
|
+
@file_path = args[:file_path] if args.key?(:file_path)
|
|
4637
|
+
@line_number = args[:line_number] if args.key?(:line_number)
|
|
4638
|
+
end
|
|
4639
|
+
end
|
|
4640
|
+
|
|
4307
4641
|
# A set of properties that uniquely identify a given Docker image.
|
|
4308
4642
|
class Fingerprint
|
|
4309
4643
|
include Google::Apis::Core::Hashable
|
|
@@ -5462,6 +5796,11 @@ module Google
|
|
|
5462
5796
|
class Note
|
|
5463
5797
|
include Google::Apis::Core::Hashable
|
|
5464
5798
|
|
|
5799
|
+
# AISkillAnalysisNote provides the metadata of an AI-based skill analysis.
|
|
5800
|
+
# Corresponds to the JSON property `aiSkillAnalysis`
|
|
5801
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::AiSkillAnalysisNote]
|
|
5802
|
+
attr_accessor :ai_skill_analysis
|
|
5803
|
+
|
|
5465
5804
|
# Note kind that represents a logical attestation "role" or "authority". For
|
|
5466
5805
|
# example, an organization might have one `AttestationAuthority` for "QA" and
|
|
5467
5806
|
# one for "build". This Note is intended to act strictly as a grouping mechanism
|
|
@@ -5621,6 +5960,7 @@ module Google
|
|
|
5621
5960
|
|
|
5622
5961
|
# Update properties of this object
|
|
5623
5962
|
def update!(**args)
|
|
5963
|
+
@ai_skill_analysis = args[:ai_skill_analysis] if args.key?(:ai_skill_analysis)
|
|
5624
5964
|
@attestation_authority = args[:attestation_authority] if args.key?(:attestation_authority)
|
|
5625
5965
|
@base_image = args[:base_image] if args.key?(:base_image)
|
|
5626
5966
|
@build_type = args[:build_type] if args.key?(:build_type)
|
|
@@ -5653,6 +5993,11 @@ module Google
|
|
|
5653
5993
|
class Occurrence
|
|
5654
5994
|
include Google::Apis::Core::Hashable
|
|
5655
5995
|
|
|
5996
|
+
# AISkillAnalysisOccurrence provides the results of an AI-based skill analysis.
|
|
5997
|
+
# Corresponds to the JSON property `aiSkillAnalysis`
|
|
5998
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::AiSkillAnalysisOccurrence]
|
|
5999
|
+
attr_accessor :ai_skill_analysis
|
|
6000
|
+
|
|
5656
6001
|
# Occurrence that represents a single "attestation". The authenticity of an
|
|
5657
6002
|
# Attestation can be verified using the attached signature. If the verifier
|
|
5658
6003
|
# trusts the public key of the signer, then verifying the signature is
|
|
@@ -5809,6 +6154,7 @@ module Google
|
|
|
5809
6154
|
|
|
5810
6155
|
# Update properties of this object
|
|
5811
6156
|
def update!(**args)
|
|
6157
|
+
@ai_skill_analysis = args[:ai_skill_analysis] if args.key?(:ai_skill_analysis)
|
|
5812
6158
|
@attestation = args[:attestation] if args.key?(:attestation)
|
|
5813
6159
|
@build_details = args[:build_details] if args.key?(:build_details)
|
|
5814
6160
|
@compliance = args[:compliance] if args.key?(:compliance)
|
|
@@ -8193,7 +8539,9 @@ module Google
|
|
|
8193
8539
|
# and v3. For CVSS v2 details, see https://www.first.org/cvss/v2/guide CVSS v2
|
|
8194
8540
|
# calculator: https://nvd.nist.gov/vuln-metrics/cvss/v2-calculator For CVSS v3
|
|
8195
8541
|
# details, see https://www.first.org/cvss/specification-document CVSS v3
|
|
8196
|
-
# calculator: https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator
|
|
8542
|
+
# calculator: https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator For CVSS v4
|
|
8543
|
+
# details, see https://www.first.org/cvss/v4.0/user-guide CVSS v4 calculator:
|
|
8544
|
+
# https://nvd.nist.gov/vuln-metrics/cvss/v4-calculator
|
|
8197
8545
|
# Corresponds to the JSON property `cvssV2`
|
|
8198
8546
|
# @return [Google::Apis::ContaineranalysisV1alpha1::Cvss]
|
|
8199
8547
|
attr_accessor :cvss_v2
|
|
@@ -8202,7 +8550,9 @@ module Google
|
|
|
8202
8550
|
# and v3. For CVSS v2 details, see https://www.first.org/cvss/v2/guide CVSS v2
|
|
8203
8551
|
# calculator: https://nvd.nist.gov/vuln-metrics/cvss/v2-calculator For CVSS v3
|
|
8204
8552
|
# details, see https://www.first.org/cvss/specification-document CVSS v3
|
|
8205
|
-
# calculator: https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator
|
|
8553
|
+
# calculator: https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator For CVSS v4
|
|
8554
|
+
# details, see https://www.first.org/cvss/v4.0/user-guide CVSS v4 calculator:
|
|
8555
|
+
# https://nvd.nist.gov/vuln-metrics/cvss/v4-calculator
|
|
8206
8556
|
# Corresponds to the JSON property `cvssV3`
|
|
8207
8557
|
# @return [Google::Apis::ContaineranalysisV1alpha1::Cvss]
|
|
8208
8558
|
attr_accessor :cvss_v3
|
|
@@ -8340,7 +8690,9 @@ module Google
|
|
|
8340
8690
|
# and v3. For CVSS v2 details, see https://www.first.org/cvss/v2/guide CVSS v2
|
|
8341
8691
|
# calculator: https://nvd.nist.gov/vuln-metrics/cvss/v2-calculator For CVSS v3
|
|
8342
8692
|
# details, see https://www.first.org/cvss/specification-document CVSS v3
|
|
8343
|
-
# calculator: https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator
|
|
8693
|
+
# calculator: https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator For CVSS v4
|
|
8694
|
+
# details, see https://www.first.org/cvss/v4.0/user-guide CVSS v4 calculator:
|
|
8695
|
+
# https://nvd.nist.gov/vuln-metrics/cvss/v4-calculator
|
|
8344
8696
|
# Corresponds to the JSON property `cvssV2`
|
|
8345
8697
|
# @return [Google::Apis::ContaineranalysisV1alpha1::Cvss]
|
|
8346
8698
|
attr_accessor :cvss_v2
|
|
@@ -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.84.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260505"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -22,6 +22,18 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module ContaineranalysisV1alpha1
|
|
24
24
|
|
|
25
|
+
class AiSkillAnalysisNote
|
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
|
+
|
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
class AiSkillAnalysisOccurrence
|
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
33
|
+
|
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
35
|
+
end
|
|
36
|
+
|
|
25
37
|
class AnalysisCompleted
|
|
26
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
39
|
|
|
@@ -196,6 +208,12 @@ module Google
|
|
|
196
208
|
include Google::Apis::Core::JsonObjectSupport
|
|
197
209
|
end
|
|
198
210
|
|
|
211
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact
|
|
212
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
213
|
+
|
|
214
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
215
|
+
end
|
|
216
|
+
|
|
199
217
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
|
|
200
218
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
201
219
|
|
|
@@ -262,6 +280,12 @@ module Google
|
|
|
262
280
|
include Google::Apis::Core::JsonObjectSupport
|
|
263
281
|
end
|
|
264
282
|
|
|
283
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults
|
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
285
|
+
|
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
287
|
+
end
|
|
288
|
+
|
|
265
289
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildWarning
|
|
266
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
267
291
|
|
|
@@ -286,6 +310,12 @@ module Google
|
|
|
286
310
|
include Google::Apis::Core::JsonObjectSupport
|
|
287
311
|
end
|
|
288
312
|
|
|
313
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency
|
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
315
|
+
|
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
317
|
+
end
|
|
318
|
+
|
|
289
319
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
|
|
290
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
291
321
|
|
|
@@ -382,6 +412,12 @@ module Google
|
|
|
382
412
|
include Google::Apis::Core::JsonObjectSupport
|
|
383
413
|
end
|
|
384
414
|
|
|
415
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult
|
|
416
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
417
|
+
|
|
418
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
419
|
+
end
|
|
420
|
+
|
|
385
421
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
|
|
386
422
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
387
423
|
|
|
@@ -400,6 +436,12 @@ module Google
|
|
|
400
436
|
include Google::Apis::Core::JsonObjectSupport
|
|
401
437
|
end
|
|
402
438
|
|
|
439
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact
|
|
440
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
441
|
+
|
|
442
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
443
|
+
end
|
|
444
|
+
|
|
403
445
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
|
|
404
446
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
405
447
|
|
|
@@ -580,6 +622,18 @@ module Google
|
|
|
580
622
|
include Google::Apis::Core::JsonObjectSupport
|
|
581
623
|
end
|
|
582
624
|
|
|
625
|
+
class Finding
|
|
626
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
627
|
+
|
|
628
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
629
|
+
end
|
|
630
|
+
|
|
631
|
+
class FindingLocation
|
|
632
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
633
|
+
|
|
634
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
635
|
+
end
|
|
636
|
+
|
|
583
637
|
class Fingerprint
|
|
584
638
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
585
639
|
|
|
@@ -1168,6 +1222,22 @@ module Google
|
|
|
1168
1222
|
include Google::Apis::Core::JsonObjectSupport
|
|
1169
1223
|
end
|
|
1170
1224
|
|
|
1225
|
+
class AiSkillAnalysisNote
|
|
1226
|
+
# @private
|
|
1227
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1228
|
+
end
|
|
1229
|
+
end
|
|
1230
|
+
|
|
1231
|
+
class AiSkillAnalysisOccurrence
|
|
1232
|
+
# @private
|
|
1233
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1234
|
+
collection :findings, as: 'findings', class: Google::Apis::ContaineranalysisV1alpha1::Finding, decorator: Google::Apis::ContaineranalysisV1alpha1::Finding::Representation
|
|
1235
|
+
|
|
1236
|
+
property :max_severity, as: 'maxSeverity'
|
|
1237
|
+
property :skill_name, as: 'skillName'
|
|
1238
|
+
end
|
|
1239
|
+
end
|
|
1240
|
+
|
|
1171
1241
|
class AnalysisCompleted
|
|
1172
1242
|
# @private
|
|
1173
1243
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1379,6 +1449,7 @@ module Google
|
|
|
1379
1449
|
# @private
|
|
1380
1450
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1381
1451
|
property :attack_complexity, as: 'attackComplexity'
|
|
1452
|
+
property :attack_requirements, as: 'attackRequirements'
|
|
1382
1453
|
property :attack_vector, as: 'attackVector'
|
|
1383
1454
|
property :authentication, as: 'authentication'
|
|
1384
1455
|
property :availability_impact, as: 'availabilityImpact'
|
|
@@ -1389,7 +1460,13 @@ module Google
|
|
|
1389
1460
|
property :integrity_impact, as: 'integrityImpact'
|
|
1390
1461
|
property :privileges_required, as: 'privilegesRequired'
|
|
1391
1462
|
property :scope, as: 'scope'
|
|
1463
|
+
property :subsequent_system_availability_impact, as: 'subsequentSystemAvailabilityImpact'
|
|
1464
|
+
property :subsequent_system_confidentiality_impact, as: 'subsequentSystemConfidentialityImpact'
|
|
1465
|
+
property :subsequent_system_integrity_impact, as: 'subsequentSystemIntegrityImpact'
|
|
1392
1466
|
property :user_interaction, as: 'userInteraction'
|
|
1467
|
+
property :vulnerable_system_availability_impact, as: 'vulnerableSystemAvailabilityImpact'
|
|
1468
|
+
property :vulnerable_system_confidentiality_impact, as: 'vulnerableSystemConfidentialityImpact'
|
|
1469
|
+
property :vulnerable_system_integrity_impact, as: 'vulnerableSystemIntegrityImpact'
|
|
1393
1470
|
end
|
|
1394
1471
|
end
|
|
1395
1472
|
|
|
@@ -1479,6 +1556,8 @@ module Google
|
|
|
1479
1556
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts
|
|
1480
1557
|
# @private
|
|
1481
1558
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1559
|
+
collection :generic_artifacts, as: 'genericArtifacts', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact::Representation
|
|
1560
|
+
|
|
1482
1561
|
collection :go_modules, as: 'goModules', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule::Representation
|
|
1483
1562
|
|
|
1484
1563
|
collection :images, as: 'images'
|
|
@@ -1505,6 +1584,14 @@ module Google
|
|
|
1505
1584
|
end
|
|
1506
1585
|
end
|
|
1507
1586
|
|
|
1587
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact
|
|
1588
|
+
# @private
|
|
1589
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1590
|
+
property :folder, as: 'folder'
|
|
1591
|
+
property :registry_path, as: 'registryPath'
|
|
1592
|
+
end
|
|
1593
|
+
end
|
|
1594
|
+
|
|
1508
1595
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
|
|
1509
1596
|
# @private
|
|
1510
1597
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1671,6 +1758,8 @@ module Google
|
|
|
1671
1758
|
property :name, as: 'name'
|
|
1672
1759
|
property :pull_timing, as: 'pullTiming', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
|
1673
1760
|
|
|
1761
|
+
collection :results, as: 'results', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult::Representation
|
|
1762
|
+
|
|
1674
1763
|
property :script, as: 'script'
|
|
1675
1764
|
collection :secret_env, as: 'secretEnv'
|
|
1676
1765
|
property :status, as: 'status'
|
|
@@ -1683,6 +1772,13 @@ module Google
|
|
|
1683
1772
|
end
|
|
1684
1773
|
end
|
|
1685
1774
|
|
|
1775
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults
|
|
1776
|
+
# @private
|
|
1777
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1778
|
+
hash :results, as: 'results'
|
|
1779
|
+
end
|
|
1780
|
+
end
|
|
1781
|
+
|
|
1686
1782
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildWarning
|
|
1687
1783
|
# @private
|
|
1688
1784
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1716,11 +1812,21 @@ module Google
|
|
|
1716
1812
|
# @private
|
|
1717
1813
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1718
1814
|
property :empty, as: 'empty'
|
|
1815
|
+
property :generic_artifact, as: 'genericArtifact', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency::Representation
|
|
1816
|
+
|
|
1719
1817
|
property :git_source, as: 'gitSource', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency::Representation
|
|
1720
1818
|
|
|
1721
1819
|
end
|
|
1722
1820
|
end
|
|
1723
1821
|
|
|
1822
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency
|
|
1823
|
+
# @private
|
|
1824
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1825
|
+
property :dest_path, as: 'destPath'
|
|
1826
|
+
property :resource, as: 'resource'
|
|
1827
|
+
end
|
|
1828
|
+
end
|
|
1829
|
+
|
|
1724
1830
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
|
|
1725
1831
|
# @private
|
|
1726
1832
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1820,6 +1926,10 @@ module Google
|
|
|
1820
1926
|
|
|
1821
1927
|
collection :build_step_images, as: 'buildStepImages'
|
|
1822
1928
|
collection :build_step_outputs, as: 'buildStepOutputs'
|
|
1929
|
+
hash :build_step_results, as: 'buildStepResults', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults::Representation
|
|
1930
|
+
|
|
1931
|
+
collection :generic_artifacts, as: 'genericArtifacts', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact::Representation
|
|
1932
|
+
|
|
1823
1933
|
collection :go_modules, as: 'goModules', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule::Representation
|
|
1824
1934
|
|
|
1825
1935
|
collection :images, as: 'images', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage::Representation
|
|
@@ -1896,6 +2006,15 @@ module Google
|
|
|
1896
2006
|
end
|
|
1897
2007
|
end
|
|
1898
2008
|
|
|
2009
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult
|
|
2010
|
+
# @private
|
|
2011
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2012
|
+
property :attestation_content, as: 'attestationContent'
|
|
2013
|
+
property :attestation_type, as: 'attestationType'
|
|
2014
|
+
property :name, as: 'name'
|
|
2015
|
+
end
|
|
2016
|
+
end
|
|
2017
|
+
|
|
1899
2018
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
|
|
1900
2019
|
# @private
|
|
1901
2020
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1923,6 +2042,20 @@ module Google
|
|
|
1923
2042
|
end
|
|
1924
2043
|
end
|
|
1925
2044
|
|
|
2045
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact
|
|
2046
|
+
# @private
|
|
2047
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2048
|
+
property :artifact_fingerprint, as: 'artifactFingerprint', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
|
2049
|
+
|
|
2050
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
2051
|
+
hash :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
|
2052
|
+
|
|
2053
|
+
property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
|
2054
|
+
|
|
2055
|
+
property :uri, as: 'uri'
|
|
2056
|
+
end
|
|
2057
|
+
end
|
|
2058
|
+
|
|
1926
2059
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
|
|
1927
2060
|
# @private
|
|
1928
2061
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2244,6 +2377,25 @@ module Google
|
|
|
2244
2377
|
end
|
|
2245
2378
|
end
|
|
2246
2379
|
|
|
2380
|
+
class Finding
|
|
2381
|
+
# @private
|
|
2382
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2383
|
+
property :category, as: 'category'
|
|
2384
|
+
property :location, as: 'location', class: Google::Apis::ContaineranalysisV1alpha1::FindingLocation, decorator: Google::Apis::ContaineranalysisV1alpha1::FindingLocation::Representation
|
|
2385
|
+
|
|
2386
|
+
property :scanner, as: 'scanner'
|
|
2387
|
+
property :severity, as: 'severity'
|
|
2388
|
+
end
|
|
2389
|
+
end
|
|
2390
|
+
|
|
2391
|
+
class FindingLocation
|
|
2392
|
+
# @private
|
|
2393
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2394
|
+
property :file_path, as: 'filePath'
|
|
2395
|
+
property :line_number, :numeric_string => true, as: 'lineNumber'
|
|
2396
|
+
end
|
|
2397
|
+
end
|
|
2398
|
+
|
|
2247
2399
|
class Fingerprint
|
|
2248
2400
|
# @private
|
|
2249
2401
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2594,6 +2746,8 @@ module Google
|
|
|
2594
2746
|
class Note
|
|
2595
2747
|
# @private
|
|
2596
2748
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2749
|
+
property :ai_skill_analysis, as: 'aiSkillAnalysis', class: Google::Apis::ContaineranalysisV1alpha1::AiSkillAnalysisNote, decorator: Google::Apis::ContaineranalysisV1alpha1::AiSkillAnalysisNote::Representation
|
|
2750
|
+
|
|
2597
2751
|
property :attestation_authority, as: 'attestationAuthority', class: Google::Apis::ContaineranalysisV1alpha1::AttestationAuthority, decorator: Google::Apis::ContaineranalysisV1alpha1::AttestationAuthority::Representation
|
|
2598
2752
|
|
|
2599
2753
|
property :base_image, as: 'baseImage', class: Google::Apis::ContaineranalysisV1alpha1::Basis, decorator: Google::Apis::ContaineranalysisV1alpha1::Basis::Representation
|
|
@@ -2643,6 +2797,8 @@ module Google
|
|
|
2643
2797
|
class Occurrence
|
|
2644
2798
|
# @private
|
|
2645
2799
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2800
|
+
property :ai_skill_analysis, as: 'aiSkillAnalysis', class: Google::Apis::ContaineranalysisV1alpha1::AiSkillAnalysisOccurrence, decorator: Google::Apis::ContaineranalysisV1alpha1::AiSkillAnalysisOccurrence::Representation
|
|
2801
|
+
|
|
2646
2802
|
property :attestation, as: 'attestation', class: Google::Apis::ContaineranalysisV1alpha1::Attestation, decorator: Google::Apis::ContaineranalysisV1alpha1::Attestation::Representation
|
|
2647
2803
|
|
|
2648
2804
|
property :build_details, as: 'buildDetails', class: Google::Apis::ContaineranalysisV1alpha1::BuildDetails, decorator: Google::Apis::ContaineranalysisV1alpha1::BuildDetails::Representation
|
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.84.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.84.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:
|