google-apis-containeranalysis_v1alpha1 0.81.0 → 0.83.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: 5e7576eb9bd4976037b8df860070771bed24618a00bcb565e57d62844b95d5c7
|
|
4
|
+
data.tar.gz: 19e0a0a08118465944f5148ca99233957735890de41719b321eaf8792becf6fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6f541c8d277c00929ea766e53fc6bcb642963c433c4d85053f95294137e6389c13c4ece1c329bf111ad87aced932938414b545d12ece5d6d20ba8647e88162ee
|
|
7
|
+
data.tar.gz: 99ad951aa91cd3c7855f087cbc14fcefb9c064d441213b9e50c6a935da1ae02142886603b4614ce1b6aab0c9e0407f4d1ae3bf6fad470838a171989599cffff2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1alpha1
|
|
2
2
|
|
|
3
|
+
### v0.83.0 (2026-05-03)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260423
|
|
6
|
+
|
|
7
|
+
### v0.82.0 (2026-03-22)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260313
|
|
10
|
+
|
|
3
11
|
### v0.81.0 (2026-03-01)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260220
|
|
@@ -22,6 +22,44 @@ 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. Name of the skill that produced this analysis.
|
|
48
|
+
# Corresponds to the JSON property `skillName`
|
|
49
|
+
# @return [String]
|
|
50
|
+
attr_accessor :skill_name
|
|
51
|
+
|
|
52
|
+
def initialize(**args)
|
|
53
|
+
update!(**args)
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
# Update properties of this object
|
|
57
|
+
def update!(**args)
|
|
58
|
+
@findings = args[:findings] if args.key?(:findings)
|
|
59
|
+
@skill_name = args[:skill_name] if args.key?(:skill_name)
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
|
|
25
63
|
# Indicates which analysis completed successfully. Multiple types of analysis
|
|
26
64
|
# can be performed on a single resource.
|
|
27
65
|
class AnalysisCompleted
|
|
@@ -1339,6 +1377,13 @@ module Google
|
|
|
1339
1377
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts
|
|
1340
1378
|
include Google::Apis::Core::Hashable
|
|
1341
1379
|
|
|
1380
|
+
# Optional. A list of generic artifacts to be uploaded to Artifact Registry upon
|
|
1381
|
+
# successful completion of all build steps. If any artifacts fail to be pushed,
|
|
1382
|
+
# the build is marked FAILURE.
|
|
1383
|
+
# Corresponds to the JSON property `genericArtifacts`
|
|
1384
|
+
# @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact>]
|
|
1385
|
+
attr_accessor :generic_artifacts
|
|
1386
|
+
|
|
1342
1387
|
# Optional. A list of Go modules to be uploaded to Artifact Registry upon
|
|
1343
1388
|
# successful completion of all build steps. If any objects fail to be pushed,
|
|
1344
1389
|
# the build is marked FAILURE.
|
|
@@ -1379,6 +1424,15 @@ module Google
|
|
|
1379
1424
|
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsArtifactObjects]
|
|
1380
1425
|
attr_accessor :objects
|
|
1381
1426
|
|
|
1427
|
+
# Optional. A list of OCI images to be uploaded to Artifact Registry upon
|
|
1428
|
+
# successful completion of all build steps. OCI images in the specified paths
|
|
1429
|
+
# will be uploaded to the specified Artifact Registry repository using the
|
|
1430
|
+
# builder service account's credentials. If any images fail to be pushed, the
|
|
1431
|
+
# build is marked FAILURE.
|
|
1432
|
+
# Corresponds to the JSON property `oci`
|
|
1433
|
+
# @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsOci>]
|
|
1434
|
+
attr_accessor :oci
|
|
1435
|
+
|
|
1382
1436
|
# A list of Python packages to be uploaded to Artifact Registry upon successful
|
|
1383
1437
|
# completion of all build steps. The build service account credentials will be
|
|
1384
1438
|
# used to perform the upload. If any objects fail to be pushed, the build is
|
|
@@ -1393,11 +1447,13 @@ module Google
|
|
|
1393
1447
|
|
|
1394
1448
|
# Update properties of this object
|
|
1395
1449
|
def update!(**args)
|
|
1450
|
+
@generic_artifacts = args[:generic_artifacts] if args.key?(:generic_artifacts)
|
|
1396
1451
|
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
|
1397
1452
|
@images = args[:images] if args.key?(:images)
|
|
1398
1453
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
|
1399
1454
|
@npm_packages = args[:npm_packages] if args.key?(:npm_packages)
|
|
1400
1455
|
@objects = args[:objects] if args.key?(:objects)
|
|
1456
|
+
@oci = args[:oci] if args.key?(:oci)
|
|
1401
1457
|
@python_packages = args[:python_packages] if args.key?(:python_packages)
|
|
1402
1458
|
end
|
|
1403
1459
|
end
|
|
@@ -1437,6 +1493,35 @@ module Google
|
|
|
1437
1493
|
end
|
|
1438
1494
|
end
|
|
1439
1495
|
|
|
1496
|
+
# Generic artifact to upload to Artifact Registry upon successful completion of
|
|
1497
|
+
# all build steps.
|
|
1498
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact
|
|
1499
|
+
include Google::Apis::Core::Hashable
|
|
1500
|
+
|
|
1501
|
+
# Required. Path to the generic artifact in the build's workspace to be uploaded
|
|
1502
|
+
# to Artifact Registry.
|
|
1503
|
+
# Corresponds to the JSON property `folder`
|
|
1504
|
+
# @return [String]
|
|
1505
|
+
attr_accessor :folder
|
|
1506
|
+
|
|
1507
|
+
# Required. Registry path to upload the generic artifact to, in the form
|
|
1508
|
+
# projects/$PROJECT/locations/$LOCATION/repositories/$REPO/packages/$PACKAGE/
|
|
1509
|
+
# versions/$VERSION
|
|
1510
|
+
# Corresponds to the JSON property `registryPath`
|
|
1511
|
+
# @return [String]
|
|
1512
|
+
attr_accessor :registry_path
|
|
1513
|
+
|
|
1514
|
+
def initialize(**args)
|
|
1515
|
+
update!(**args)
|
|
1516
|
+
end
|
|
1517
|
+
|
|
1518
|
+
# Update properties of this object
|
|
1519
|
+
def update!(**args)
|
|
1520
|
+
@folder = args[:folder] if args.key?(:folder)
|
|
1521
|
+
@registry_path = args[:registry_path] if args.key?(:registry_path)
|
|
1522
|
+
end
|
|
1523
|
+
end
|
|
1524
|
+
|
|
1440
1525
|
# Go module to upload to Artifact Registry upon successful completion of all
|
|
1441
1526
|
# build steps. A module refers to all dependencies in a go.mod file.
|
|
1442
1527
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
|
|
@@ -1582,6 +1667,40 @@ module Google
|
|
|
1582
1667
|
end
|
|
1583
1668
|
end
|
|
1584
1669
|
|
|
1670
|
+
# OCI image to upload to Artifact Registry upon successful completion of all
|
|
1671
|
+
# build steps.
|
|
1672
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsOci
|
|
1673
|
+
include Google::Apis::Core::Hashable
|
|
1674
|
+
|
|
1675
|
+
# Required. Path on the local file system where to find the container to upload.
|
|
1676
|
+
# e.g. /workspace/my-image.tar
|
|
1677
|
+
# Corresponds to the JSON property `file`
|
|
1678
|
+
# @return [String]
|
|
1679
|
+
attr_accessor :file
|
|
1680
|
+
|
|
1681
|
+
# Required. Registry path to upload the container to. e.g. us-east1-docker.pkg.
|
|
1682
|
+
# dev/my-project/my-repo/my-image
|
|
1683
|
+
# Corresponds to the JSON property `registryPath`
|
|
1684
|
+
# @return [String]
|
|
1685
|
+
attr_accessor :registry_path
|
|
1686
|
+
|
|
1687
|
+
# Optional. Tags to apply to the uploaded image. e.g. latest, 1.0.0
|
|
1688
|
+
# Corresponds to the JSON property `tags`
|
|
1689
|
+
# @return [Array<String>]
|
|
1690
|
+
attr_accessor :tags
|
|
1691
|
+
|
|
1692
|
+
def initialize(**args)
|
|
1693
|
+
update!(**args)
|
|
1694
|
+
end
|
|
1695
|
+
|
|
1696
|
+
# Update properties of this object
|
|
1697
|
+
def update!(**args)
|
|
1698
|
+
@file = args[:file] if args.key?(:file)
|
|
1699
|
+
@registry_path = args[:registry_path] if args.key?(:registry_path)
|
|
1700
|
+
@tags = args[:tags] if args.key?(:tags)
|
|
1701
|
+
end
|
|
1702
|
+
end
|
|
1703
|
+
|
|
1585
1704
|
# Python package to upload to Artifact Registry upon successful completion of
|
|
1586
1705
|
# all build steps. A package can encapsulate multiple objects to be uploaded to
|
|
1587
1706
|
# a single repository.
|
|
@@ -2164,6 +2283,11 @@ module Google
|
|
|
2164
2283
|
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
|
|
2165
2284
|
attr_accessor :pull_timing
|
|
2166
2285
|
|
|
2286
|
+
# Declaration of results for this build step.
|
|
2287
|
+
# Corresponds to the JSON property `results`
|
|
2288
|
+
# @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult>]
|
|
2289
|
+
attr_accessor :results
|
|
2290
|
+
|
|
2167
2291
|
# A shell script to be executed in the step. When script is provided, the user
|
|
2168
2292
|
# cannot specify the entrypoint or args.
|
|
2169
2293
|
# Corresponds to the JSON property `script`
|
|
@@ -2230,6 +2354,7 @@ module Google
|
|
|
2230
2354
|
@id = args[:id] if args.key?(:id)
|
|
2231
2355
|
@name = args[:name] if args.key?(:name)
|
|
2232
2356
|
@pull_timing = args[:pull_timing] if args.key?(:pull_timing)
|
|
2357
|
+
@results = args[:results] if args.key?(:results)
|
|
2233
2358
|
@script = args[:script] if args.key?(:script)
|
|
2234
2359
|
@secret_env = args[:secret_env] if args.key?(:secret_env)
|
|
2235
2360
|
@status = args[:status] if args.key?(:status)
|
|
@@ -2240,6 +2365,25 @@ module Google
|
|
|
2240
2365
|
end
|
|
2241
2366
|
end
|
|
2242
2367
|
|
|
2368
|
+
# Results for a build step.
|
|
2369
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults
|
|
2370
|
+
include Google::Apis::Core::Hashable
|
|
2371
|
+
|
|
2372
|
+
# Results for a build step.
|
|
2373
|
+
# Corresponds to the JSON property `results`
|
|
2374
|
+
# @return [Hash<String,String>]
|
|
2375
|
+
attr_accessor :results
|
|
2376
|
+
|
|
2377
|
+
def initialize(**args)
|
|
2378
|
+
update!(**args)
|
|
2379
|
+
end
|
|
2380
|
+
|
|
2381
|
+
# Update properties of this object
|
|
2382
|
+
def update!(**args)
|
|
2383
|
+
@results = args[:results] if args.key?(:results)
|
|
2384
|
+
end
|
|
2385
|
+
end
|
|
2386
|
+
|
|
2243
2387
|
# A non-fatal problem encountered during the execution of the build.
|
|
2244
2388
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildWarning
|
|
2245
2389
|
include Google::Apis::Core::Hashable
|
|
@@ -2285,6 +2429,12 @@ module Google
|
|
|
2285
2429
|
# @return [String]
|
|
2286
2430
|
attr_accessor :name
|
|
2287
2431
|
|
|
2432
|
+
# Output only. The OCI media type of the artifact. Non-OCI images, such as
|
|
2433
|
+
# Docker images, will have an unspecified value.
|
|
2434
|
+
# Corresponds to the JSON property `ociMediaType`
|
|
2435
|
+
# @return [String]
|
|
2436
|
+
attr_accessor :oci_media_type
|
|
2437
|
+
|
|
2288
2438
|
# Start and end times for a build execution phase.
|
|
2289
2439
|
# Corresponds to the JSON property `pushTiming`
|
|
2290
2440
|
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
|
|
@@ -2299,6 +2449,7 @@ module Google
|
|
|
2299
2449
|
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
2300
2450
|
@digest = args[:digest] if args.key?(:digest)
|
|
2301
2451
|
@name = args[:name] if args.key?(:name)
|
|
2452
|
+
@oci_media_type = args[:oci_media_type] if args.key?(:oci_media_type)
|
|
2302
2453
|
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
2303
2454
|
end
|
|
2304
2455
|
end
|
|
@@ -2348,6 +2499,11 @@ module Google
|
|
|
2348
2499
|
attr_accessor :empty
|
|
2349
2500
|
alias_method :empty?, :empty
|
|
2350
2501
|
|
|
2502
|
+
# Represents a generic artifact as a build dependency.
|
|
2503
|
+
# Corresponds to the JSON property `genericArtifact`
|
|
2504
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency]
|
|
2505
|
+
attr_accessor :generic_artifact
|
|
2506
|
+
|
|
2351
2507
|
# Represents a git repository as a build dependency.
|
|
2352
2508
|
# Corresponds to the JSON property `gitSource`
|
|
2353
2509
|
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency]
|
|
@@ -2360,10 +2516,37 @@ module Google
|
|
|
2360
2516
|
# Update properties of this object
|
|
2361
2517
|
def update!(**args)
|
|
2362
2518
|
@empty = args[:empty] if args.key?(:empty)
|
|
2519
|
+
@generic_artifact = args[:generic_artifact] if args.key?(:generic_artifact)
|
|
2363
2520
|
@git_source = args[:git_source] if args.key?(:git_source)
|
|
2364
2521
|
end
|
|
2365
2522
|
end
|
|
2366
2523
|
|
|
2524
|
+
# Represents a generic artifact as a build dependency.
|
|
2525
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency
|
|
2526
|
+
include Google::Apis::Core::Hashable
|
|
2527
|
+
|
|
2528
|
+
# Required. Where the artifact files should be placed on the worker.
|
|
2529
|
+
# Corresponds to the JSON property `destPath`
|
|
2530
|
+
# @return [String]
|
|
2531
|
+
attr_accessor :dest_path
|
|
2532
|
+
|
|
2533
|
+
# Required. The location to download the artifact files from. Ex: projects/p1/
|
|
2534
|
+
# locations/us/repositories/r1/packages/p1/versions/v1
|
|
2535
|
+
# Corresponds to the JSON property `resource`
|
|
2536
|
+
# @return [String]
|
|
2537
|
+
attr_accessor :resource
|
|
2538
|
+
|
|
2539
|
+
def initialize(**args)
|
|
2540
|
+
update!(**args)
|
|
2541
|
+
end
|
|
2542
|
+
|
|
2543
|
+
# Update properties of this object
|
|
2544
|
+
def update!(**args)
|
|
2545
|
+
@dest_path = args[:dest_path] if args.key?(:dest_path)
|
|
2546
|
+
@resource = args[:resource] if args.key?(:resource)
|
|
2547
|
+
end
|
|
2548
|
+
end
|
|
2549
|
+
|
|
2367
2550
|
# Represents a git repository as a build dependency.
|
|
2368
2551
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
|
|
2369
2552
|
include Google::Apis::Core::Hashable
|
|
@@ -2725,6 +2908,17 @@ module Google
|
|
|
2725
2908
|
# @return [Array<String>]
|
|
2726
2909
|
attr_accessor :build_step_outputs
|
|
2727
2910
|
|
|
2911
|
+
# Results for build steps. step_id ->
|
|
2912
|
+
# Corresponds to the JSON property `buildStepResults`
|
|
2913
|
+
# @return [Hash<String,Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults>]
|
|
2914
|
+
attr_accessor :build_step_results
|
|
2915
|
+
|
|
2916
|
+
# Output only. Generic artifacts uploaded to Artifact Registry at the end of the
|
|
2917
|
+
# build.
|
|
2918
|
+
# Corresponds to the JSON property `genericArtifacts`
|
|
2919
|
+
# @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact>]
|
|
2920
|
+
attr_accessor :generic_artifacts
|
|
2921
|
+
|
|
2728
2922
|
# Optional. Go module artifacts uploaded to Artifact Registry at the end of the
|
|
2729
2923
|
# build.
|
|
2730
2924
|
# Corresponds to the JSON property `goModules`
|
|
@@ -2767,6 +2961,8 @@ module Google
|
|
|
2767
2961
|
@artifact_timing = args[:artifact_timing] if args.key?(:artifact_timing)
|
|
2768
2962
|
@build_step_images = args[:build_step_images] if args.key?(:build_step_images)
|
|
2769
2963
|
@build_step_outputs = args[:build_step_outputs] if args.key?(:build_step_outputs)
|
|
2964
|
+
@build_step_results = args[:build_step_results] if args.key?(:build_step_results)
|
|
2965
|
+
@generic_artifacts = args[:generic_artifacts] if args.key?(:generic_artifacts)
|
|
2770
2966
|
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
|
2771
2967
|
@images = args[:images] if args.key?(:images)
|
|
2772
2968
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
|
@@ -2969,6 +3165,37 @@ module Google
|
|
|
2969
3165
|
end
|
|
2970
3166
|
end
|
|
2971
3167
|
|
|
3168
|
+
# StepResult is the declaration of a result for a build step.
|
|
3169
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult
|
|
3170
|
+
include Google::Apis::Core::Hashable
|
|
3171
|
+
|
|
3172
|
+
# Optional. The content of the attestation to be generated.
|
|
3173
|
+
# Corresponds to the JSON property `attestationContent`
|
|
3174
|
+
# @return [String]
|
|
3175
|
+
attr_accessor :attestation_content
|
|
3176
|
+
|
|
3177
|
+
# Optional. The type of attestation to be generated.
|
|
3178
|
+
# Corresponds to the JSON property `attestationType`
|
|
3179
|
+
# @return [String]
|
|
3180
|
+
attr_accessor :attestation_type
|
|
3181
|
+
|
|
3182
|
+
# Required. The name of the result.
|
|
3183
|
+
# Corresponds to the JSON property `name`
|
|
3184
|
+
# @return [String]
|
|
3185
|
+
attr_accessor :name
|
|
3186
|
+
|
|
3187
|
+
def initialize(**args)
|
|
3188
|
+
update!(**args)
|
|
3189
|
+
end
|
|
3190
|
+
|
|
3191
|
+
# Update properties of this object
|
|
3192
|
+
def update!(**args)
|
|
3193
|
+
@attestation_content = args[:attestation_content] if args.key?(:attestation_content)
|
|
3194
|
+
@attestation_type = args[:attestation_type] if args.key?(:attestation_type)
|
|
3195
|
+
@name = args[:name] if args.key?(:name)
|
|
3196
|
+
end
|
|
3197
|
+
end
|
|
3198
|
+
|
|
2972
3199
|
# Location of the source in an archive file in Cloud Storage.
|
|
2973
3200
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
|
|
2974
3201
|
include Google::Apis::Core::Hashable
|
|
@@ -3071,6 +3298,52 @@ module Google
|
|
|
3071
3298
|
end
|
|
3072
3299
|
end
|
|
3073
3300
|
|
|
3301
|
+
# A generic artifact uploaded to Artifact Registry using the GenericArtifact
|
|
3302
|
+
# directive.
|
|
3303
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact
|
|
3304
|
+
include Google::Apis::Core::Hashable
|
|
3305
|
+
|
|
3306
|
+
# Container message for hashes of byte content of files, used in
|
|
3307
|
+
# SourceProvenance messages to verify integrity of source input to the build.
|
|
3308
|
+
# Corresponds to the JSON property `artifactFingerprint`
|
|
3309
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes]
|
|
3310
|
+
attr_accessor :artifact_fingerprint
|
|
3311
|
+
|
|
3312
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
3313
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
3314
|
+
# @return [String]
|
|
3315
|
+
attr_accessor :artifact_registry_package
|
|
3316
|
+
|
|
3317
|
+
# Output only. The file hashes that make up the generic artifact.
|
|
3318
|
+
# Corresponds to the JSON property `fileHashes`
|
|
3319
|
+
# @return [Hash<String,Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes>]
|
|
3320
|
+
attr_accessor :file_hashes
|
|
3321
|
+
|
|
3322
|
+
# Start and end times for a build execution phase.
|
|
3323
|
+
# Corresponds to the JSON property `pushTiming`
|
|
3324
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
|
|
3325
|
+
attr_accessor :push_timing
|
|
3326
|
+
|
|
3327
|
+
# Output only. URI of the uploaded artifact. Ex: projects/p1/locations/us/
|
|
3328
|
+
# repositories/r1/packages/p1/versions/v1
|
|
3329
|
+
# Corresponds to the JSON property `uri`
|
|
3330
|
+
# @return [String]
|
|
3331
|
+
attr_accessor :uri
|
|
3332
|
+
|
|
3333
|
+
def initialize(**args)
|
|
3334
|
+
update!(**args)
|
|
3335
|
+
end
|
|
3336
|
+
|
|
3337
|
+
# Update properties of this object
|
|
3338
|
+
def update!(**args)
|
|
3339
|
+
@artifact_fingerprint = args[:artifact_fingerprint] if args.key?(:artifact_fingerprint)
|
|
3340
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
3341
|
+
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
3342
|
+
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
3343
|
+
@uri = args[:uri] if args.key?(:uri)
|
|
3344
|
+
end
|
|
3345
|
+
end
|
|
3346
|
+
|
|
3074
3347
|
# A Go module artifact uploaded to Artifact Registry using the GoModule
|
|
3075
3348
|
# directive.
|
|
3076
3349
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
|
|
@@ -4134,6 +4407,12 @@ module Google
|
|
|
4134
4407
|
# @return [Google::Apis::ContaineranalysisV1alpha1::LayerDetails]
|
|
4135
4408
|
attr_accessor :layer_details
|
|
4136
4409
|
|
|
4410
|
+
# Line number in the file where the package is found. Optional field that only
|
|
4411
|
+
# applies to source repository scanning.
|
|
4412
|
+
# Corresponds to the JSON property `lineNumber`
|
|
4413
|
+
# @return [Fixnum]
|
|
4414
|
+
attr_accessor :line_number
|
|
4415
|
+
|
|
4137
4416
|
def initialize(**args)
|
|
4138
4417
|
update!(**args)
|
|
4139
4418
|
end
|
|
@@ -4142,6 +4421,7 @@ module Google
|
|
|
4142
4421
|
def update!(**args)
|
|
4143
4422
|
@file_path = args[:file_path] if args.key?(:file_path)
|
|
4144
4423
|
@layer_details = args[:layer_details] if args.key?(:layer_details)
|
|
4424
|
+
@line_number = args[:line_number] if args.key?(:line_number)
|
|
4145
4425
|
end
|
|
4146
4426
|
end
|
|
4147
4427
|
|
|
@@ -4246,6 +4526,62 @@ module Google
|
|
|
4246
4526
|
end
|
|
4247
4527
|
end
|
|
4248
4528
|
|
|
4529
|
+
# Finding provides details for a single finding within an
|
|
4530
|
+
# AISkillAnalysisOccurrence.
|
|
4531
|
+
class Finding
|
|
4532
|
+
include Google::Apis::Core::Hashable
|
|
4533
|
+
|
|
4534
|
+
# Optional. Category of the finding.
|
|
4535
|
+
# Corresponds to the JSON property `category`
|
|
4536
|
+
# @return [String]
|
|
4537
|
+
attr_accessor :category
|
|
4538
|
+
|
|
4539
|
+
# Optional. Detailed description of the finding.
|
|
4540
|
+
# Corresponds to the JSON property `description`
|
|
4541
|
+
# @return [String]
|
|
4542
|
+
attr_accessor :description
|
|
4543
|
+
|
|
4544
|
+
# Optional. Path to the file where the finding was detected.
|
|
4545
|
+
# Corresponds to the JSON property `filePath`
|
|
4546
|
+
# @return [String]
|
|
4547
|
+
attr_accessor :file_path
|
|
4548
|
+
|
|
4549
|
+
# Optional. Unique identifier of the rule that produced this finding.
|
|
4550
|
+
# Corresponds to the JSON property `ruleId`
|
|
4551
|
+
# @return [String]
|
|
4552
|
+
attr_accessor :rule_id
|
|
4553
|
+
|
|
4554
|
+
# Optional. Severity of the finding.
|
|
4555
|
+
# Corresponds to the JSON property `severity`
|
|
4556
|
+
# @return [String]
|
|
4557
|
+
attr_accessor :severity
|
|
4558
|
+
|
|
4559
|
+
# Optional. Code snippet relevant to the finding.
|
|
4560
|
+
# Corresponds to the JSON property `snippet`
|
|
4561
|
+
# @return [String]
|
|
4562
|
+
attr_accessor :snippet
|
|
4563
|
+
|
|
4564
|
+
# Optional. Title of the finding.
|
|
4565
|
+
# Corresponds to the JSON property `title`
|
|
4566
|
+
# @return [String]
|
|
4567
|
+
attr_accessor :title
|
|
4568
|
+
|
|
4569
|
+
def initialize(**args)
|
|
4570
|
+
update!(**args)
|
|
4571
|
+
end
|
|
4572
|
+
|
|
4573
|
+
# Update properties of this object
|
|
4574
|
+
def update!(**args)
|
|
4575
|
+
@category = args[:category] if args.key?(:category)
|
|
4576
|
+
@description = args[:description] if args.key?(:description)
|
|
4577
|
+
@file_path = args[:file_path] if args.key?(:file_path)
|
|
4578
|
+
@rule_id = args[:rule_id] if args.key?(:rule_id)
|
|
4579
|
+
@severity = args[:severity] if args.key?(:severity)
|
|
4580
|
+
@snippet = args[:snippet] if args.key?(:snippet)
|
|
4581
|
+
@title = args[:title] if args.key?(:title)
|
|
4582
|
+
end
|
|
4583
|
+
end
|
|
4584
|
+
|
|
4249
4585
|
# A set of properties that uniquely identify a given Docker image.
|
|
4250
4586
|
class Fingerprint
|
|
4251
4587
|
include Google::Apis::Core::Hashable
|
|
@@ -5404,6 +5740,11 @@ module Google
|
|
|
5404
5740
|
class Note
|
|
5405
5741
|
include Google::Apis::Core::Hashable
|
|
5406
5742
|
|
|
5743
|
+
# AISkillAnalysisNote provides the metadata of an AI-based skill analysis.
|
|
5744
|
+
# Corresponds to the JSON property `aiSkillAnalysis`
|
|
5745
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::AiSkillAnalysisNote]
|
|
5746
|
+
attr_accessor :ai_skill_analysis
|
|
5747
|
+
|
|
5407
5748
|
# Note kind that represents a logical attestation "role" or "authority". For
|
|
5408
5749
|
# example, an organization might have one `AttestationAuthority` for "QA" and
|
|
5409
5750
|
# one for "build". This Note is intended to act strictly as a grouping mechanism
|
|
@@ -5563,6 +5904,7 @@ module Google
|
|
|
5563
5904
|
|
|
5564
5905
|
# Update properties of this object
|
|
5565
5906
|
def update!(**args)
|
|
5907
|
+
@ai_skill_analysis = args[:ai_skill_analysis] if args.key?(:ai_skill_analysis)
|
|
5566
5908
|
@attestation_authority = args[:attestation_authority] if args.key?(:attestation_authority)
|
|
5567
5909
|
@base_image = args[:base_image] if args.key?(:base_image)
|
|
5568
5910
|
@build_type = args[:build_type] if args.key?(:build_type)
|
|
@@ -5595,6 +5937,11 @@ module Google
|
|
|
5595
5937
|
class Occurrence
|
|
5596
5938
|
include Google::Apis::Core::Hashable
|
|
5597
5939
|
|
|
5940
|
+
# AISkillAnalysisOccurrence provides the results of an AI-based skill analysis.
|
|
5941
|
+
# Corresponds to the JSON property `aiSkillAnalysis`
|
|
5942
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::AiSkillAnalysisOccurrence]
|
|
5943
|
+
attr_accessor :ai_skill_analysis
|
|
5944
|
+
|
|
5598
5945
|
# Occurrence that represents a single "attestation". The authenticity of an
|
|
5599
5946
|
# Attestation can be verified using the attached signature. If the verifier
|
|
5600
5947
|
# trusts the public key of the signer, then verifying the signature is
|
|
@@ -5751,6 +6098,7 @@ module Google
|
|
|
5751
6098
|
|
|
5752
6099
|
# Update properties of this object
|
|
5753
6100
|
def update!(**args)
|
|
6101
|
+
@ai_skill_analysis = args[:ai_skill_analysis] if args.key?(:ai_skill_analysis)
|
|
5754
6102
|
@attestation = args[:attestation] if args.key?(:attestation)
|
|
5755
6103
|
@build_details = args[:build_details] if args.key?(:build_details)
|
|
5756
6104
|
@compliance = args[:compliance] if args.key?(:compliance)
|
|
@@ -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.83.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 = "20260423"
|
|
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
|
|
|
@@ -214,6 +232,12 @@ module Google
|
|
|
214
232
|
include Google::Apis::Core::JsonObjectSupport
|
|
215
233
|
end
|
|
216
234
|
|
|
235
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsOci
|
|
236
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
237
|
+
|
|
238
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
239
|
+
end
|
|
240
|
+
|
|
217
241
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage
|
|
218
242
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
219
243
|
|
|
@@ -256,6 +280,12 @@ module Google
|
|
|
256
280
|
include Google::Apis::Core::JsonObjectSupport
|
|
257
281
|
end
|
|
258
282
|
|
|
283
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults
|
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
285
|
+
|
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
287
|
+
end
|
|
288
|
+
|
|
259
289
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildWarning
|
|
260
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
261
291
|
|
|
@@ -280,6 +310,12 @@ module Google
|
|
|
280
310
|
include Google::Apis::Core::JsonObjectSupport
|
|
281
311
|
end
|
|
282
312
|
|
|
313
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency
|
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
315
|
+
|
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
317
|
+
end
|
|
318
|
+
|
|
283
319
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
|
|
284
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
285
321
|
|
|
@@ -376,6 +412,12 @@ module Google
|
|
|
376
412
|
include Google::Apis::Core::JsonObjectSupport
|
|
377
413
|
end
|
|
378
414
|
|
|
415
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult
|
|
416
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
417
|
+
|
|
418
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
419
|
+
end
|
|
420
|
+
|
|
379
421
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
|
|
380
422
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
381
423
|
|
|
@@ -394,6 +436,12 @@ module Google
|
|
|
394
436
|
include Google::Apis::Core::JsonObjectSupport
|
|
395
437
|
end
|
|
396
438
|
|
|
439
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact
|
|
440
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
441
|
+
|
|
442
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
443
|
+
end
|
|
444
|
+
|
|
397
445
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
|
|
398
446
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
399
447
|
|
|
@@ -574,6 +622,12 @@ module Google
|
|
|
574
622
|
include Google::Apis::Core::JsonObjectSupport
|
|
575
623
|
end
|
|
576
624
|
|
|
625
|
+
class Finding
|
|
626
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
627
|
+
|
|
628
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
629
|
+
end
|
|
630
|
+
|
|
577
631
|
class Fingerprint
|
|
578
632
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
579
633
|
|
|
@@ -1162,6 +1216,21 @@ module Google
|
|
|
1162
1216
|
include Google::Apis::Core::JsonObjectSupport
|
|
1163
1217
|
end
|
|
1164
1218
|
|
|
1219
|
+
class AiSkillAnalysisNote
|
|
1220
|
+
# @private
|
|
1221
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1222
|
+
end
|
|
1223
|
+
end
|
|
1224
|
+
|
|
1225
|
+
class AiSkillAnalysisOccurrence
|
|
1226
|
+
# @private
|
|
1227
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1228
|
+
collection :findings, as: 'findings', class: Google::Apis::ContaineranalysisV1alpha1::Finding, decorator: Google::Apis::ContaineranalysisV1alpha1::Finding::Representation
|
|
1229
|
+
|
|
1230
|
+
property :skill_name, as: 'skillName'
|
|
1231
|
+
end
|
|
1232
|
+
end
|
|
1233
|
+
|
|
1165
1234
|
class AnalysisCompleted
|
|
1166
1235
|
# @private
|
|
1167
1236
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1473,6 +1542,8 @@ module Google
|
|
|
1473
1542
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts
|
|
1474
1543
|
# @private
|
|
1475
1544
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1545
|
+
collection :generic_artifacts, as: 'genericArtifacts', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact::Representation
|
|
1546
|
+
|
|
1476
1547
|
collection :go_modules, as: 'goModules', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule::Representation
|
|
1477
1548
|
|
|
1478
1549
|
collection :images, as: 'images'
|
|
@@ -1482,6 +1553,8 @@ module Google
|
|
|
1482
1553
|
|
|
1483
1554
|
property :objects, as: 'objects', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsArtifactObjects, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsArtifactObjects::Representation
|
|
1484
1555
|
|
|
1556
|
+
collection :oci, as: 'oci', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsOci, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsOci::Representation
|
|
1557
|
+
|
|
1485
1558
|
collection :python_packages, as: 'pythonPackages', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage::Representation
|
|
1486
1559
|
|
|
1487
1560
|
end
|
|
@@ -1497,6 +1570,14 @@ module Google
|
|
|
1497
1570
|
end
|
|
1498
1571
|
end
|
|
1499
1572
|
|
|
1573
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact
|
|
1574
|
+
# @private
|
|
1575
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1576
|
+
property :folder, as: 'folder'
|
|
1577
|
+
property :registry_path, as: 'registryPath'
|
|
1578
|
+
end
|
|
1579
|
+
end
|
|
1580
|
+
|
|
1500
1581
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
|
|
1501
1582
|
# @private
|
|
1502
1583
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1529,6 +1610,15 @@ module Google
|
|
|
1529
1610
|
end
|
|
1530
1611
|
end
|
|
1531
1612
|
|
|
1613
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsOci
|
|
1614
|
+
# @private
|
|
1615
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1616
|
+
property :file, as: 'file'
|
|
1617
|
+
property :registry_path, as: 'registryPath'
|
|
1618
|
+
collection :tags, as: 'tags'
|
|
1619
|
+
end
|
|
1620
|
+
end
|
|
1621
|
+
|
|
1532
1622
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage
|
|
1533
1623
|
# @private
|
|
1534
1624
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1654,6 +1744,8 @@ module Google
|
|
|
1654
1744
|
property :name, as: 'name'
|
|
1655
1745
|
property :pull_timing, as: 'pullTiming', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
|
1656
1746
|
|
|
1747
|
+
collection :results, as: 'results', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult::Representation
|
|
1748
|
+
|
|
1657
1749
|
property :script, as: 'script'
|
|
1658
1750
|
collection :secret_env, as: 'secretEnv'
|
|
1659
1751
|
property :status, as: 'status'
|
|
@@ -1666,6 +1758,13 @@ module Google
|
|
|
1666
1758
|
end
|
|
1667
1759
|
end
|
|
1668
1760
|
|
|
1761
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults
|
|
1762
|
+
# @private
|
|
1763
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1764
|
+
hash :results, as: 'results'
|
|
1765
|
+
end
|
|
1766
|
+
end
|
|
1767
|
+
|
|
1669
1768
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildWarning
|
|
1670
1769
|
# @private
|
|
1671
1770
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1680,6 +1779,7 @@ module Google
|
|
|
1680
1779
|
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
1681
1780
|
property :digest, as: 'digest'
|
|
1682
1781
|
property :name, as: 'name'
|
|
1782
|
+
property :oci_media_type, as: 'ociMediaType'
|
|
1683
1783
|
property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
|
1684
1784
|
|
|
1685
1785
|
end
|
|
@@ -1698,11 +1798,21 @@ module Google
|
|
|
1698
1798
|
# @private
|
|
1699
1799
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1700
1800
|
property :empty, as: 'empty'
|
|
1801
|
+
property :generic_artifact, as: 'genericArtifact', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency::Representation
|
|
1802
|
+
|
|
1701
1803
|
property :git_source, as: 'gitSource', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency::Representation
|
|
1702
1804
|
|
|
1703
1805
|
end
|
|
1704
1806
|
end
|
|
1705
1807
|
|
|
1808
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency
|
|
1809
|
+
# @private
|
|
1810
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1811
|
+
property :dest_path, as: 'destPath'
|
|
1812
|
+
property :resource, as: 'resource'
|
|
1813
|
+
end
|
|
1814
|
+
end
|
|
1815
|
+
|
|
1706
1816
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
|
|
1707
1817
|
# @private
|
|
1708
1818
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1802,6 +1912,10 @@ module Google
|
|
|
1802
1912
|
|
|
1803
1913
|
collection :build_step_images, as: 'buildStepImages'
|
|
1804
1914
|
collection :build_step_outputs, as: 'buildStepOutputs'
|
|
1915
|
+
hash :build_step_results, as: 'buildStepResults', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults::Representation
|
|
1916
|
+
|
|
1917
|
+
collection :generic_artifacts, as: 'genericArtifacts', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact::Representation
|
|
1918
|
+
|
|
1805
1919
|
collection :go_modules, as: 'goModules', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule::Representation
|
|
1806
1920
|
|
|
1807
1921
|
collection :images, as: 'images', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage::Representation
|
|
@@ -1878,6 +1992,15 @@ module Google
|
|
|
1878
1992
|
end
|
|
1879
1993
|
end
|
|
1880
1994
|
|
|
1995
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult
|
|
1996
|
+
# @private
|
|
1997
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1998
|
+
property :attestation_content, as: 'attestationContent'
|
|
1999
|
+
property :attestation_type, as: 'attestationType'
|
|
2000
|
+
property :name, as: 'name'
|
|
2001
|
+
end
|
|
2002
|
+
end
|
|
2003
|
+
|
|
1881
2004
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
|
|
1882
2005
|
# @private
|
|
1883
2006
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1905,6 +2028,20 @@ module Google
|
|
|
1905
2028
|
end
|
|
1906
2029
|
end
|
|
1907
2030
|
|
|
2031
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact
|
|
2032
|
+
# @private
|
|
2033
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2034
|
+
property :artifact_fingerprint, as: 'artifactFingerprint', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
|
2035
|
+
|
|
2036
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
2037
|
+
hash :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
|
2038
|
+
|
|
2039
|
+
property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
|
2040
|
+
|
|
2041
|
+
property :uri, as: 'uri'
|
|
2042
|
+
end
|
|
2043
|
+
end
|
|
2044
|
+
|
|
1908
2045
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
|
|
1909
2046
|
# @private
|
|
1910
2047
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2198,6 +2335,7 @@ module Google
|
|
|
2198
2335
|
property :file_path, as: 'filePath'
|
|
2199
2336
|
property :layer_details, as: 'layerDetails', class: Google::Apis::ContaineranalysisV1alpha1::LayerDetails, decorator: Google::Apis::ContaineranalysisV1alpha1::LayerDetails::Representation
|
|
2200
2337
|
|
|
2338
|
+
property :line_number, as: 'lineNumber'
|
|
2201
2339
|
end
|
|
2202
2340
|
end
|
|
2203
2341
|
|
|
@@ -2225,6 +2363,19 @@ module Google
|
|
|
2225
2363
|
end
|
|
2226
2364
|
end
|
|
2227
2365
|
|
|
2366
|
+
class Finding
|
|
2367
|
+
# @private
|
|
2368
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2369
|
+
property :category, as: 'category'
|
|
2370
|
+
property :description, as: 'description'
|
|
2371
|
+
property :file_path, as: 'filePath'
|
|
2372
|
+
property :rule_id, as: 'ruleId'
|
|
2373
|
+
property :severity, as: 'severity'
|
|
2374
|
+
property :snippet, as: 'snippet'
|
|
2375
|
+
property :title, as: 'title'
|
|
2376
|
+
end
|
|
2377
|
+
end
|
|
2378
|
+
|
|
2228
2379
|
class Fingerprint
|
|
2229
2380
|
# @private
|
|
2230
2381
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2575,6 +2726,8 @@ module Google
|
|
|
2575
2726
|
class Note
|
|
2576
2727
|
# @private
|
|
2577
2728
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2729
|
+
property :ai_skill_analysis, as: 'aiSkillAnalysis', class: Google::Apis::ContaineranalysisV1alpha1::AiSkillAnalysisNote, decorator: Google::Apis::ContaineranalysisV1alpha1::AiSkillAnalysisNote::Representation
|
|
2730
|
+
|
|
2578
2731
|
property :attestation_authority, as: 'attestationAuthority', class: Google::Apis::ContaineranalysisV1alpha1::AttestationAuthority, decorator: Google::Apis::ContaineranalysisV1alpha1::AttestationAuthority::Representation
|
|
2579
2732
|
|
|
2580
2733
|
property :base_image, as: 'baseImage', class: Google::Apis::ContaineranalysisV1alpha1::Basis, decorator: Google::Apis::ContaineranalysisV1alpha1::Basis::Representation
|
|
@@ -2624,6 +2777,8 @@ module Google
|
|
|
2624
2777
|
class Occurrence
|
|
2625
2778
|
# @private
|
|
2626
2779
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2780
|
+
property :ai_skill_analysis, as: 'aiSkillAnalysis', class: Google::Apis::ContaineranalysisV1alpha1::AiSkillAnalysisOccurrence, decorator: Google::Apis::ContaineranalysisV1alpha1::AiSkillAnalysisOccurrence::Representation
|
|
2781
|
+
|
|
2627
2782
|
property :attestation, as: 'attestation', class: Google::Apis::ContaineranalysisV1alpha1::Attestation, decorator: Google::Apis::ContaineranalysisV1alpha1::Attestation::Representation
|
|
2628
2783
|
|
|
2629
2784
|
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.83.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.83.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:
|