google-apis-containeranalysis_v1 0.72.0 → 0.74.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: b0313ff0f05638740eb96626ce72abffe80bf3171479970acedcf6712646a029
|
|
4
|
+
data.tar.gz: c1d8c552782ea8208db486422fd2d38dcea172765c2766e23f0c54bcc948fe1a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: acc78d0bd1ee82bd9f72f6f643ebb078e7998d4ddc3ef75ac4b9238c3553fcef03b2a8c620fefadde878468c3c7546ecc4e6c74cbf33c14b6a055c13afb764a7
|
|
7
|
+
data.tar.gz: 6a0c1aff548206c4c782498a9c10a7700f778ddcb1cd0b6ccfcea2ce29bef95bbaed2342e6f36e9b72f507159414d110e0114b4afee79e7ec59510d457822f2b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1
|
|
2
2
|
|
|
3
|
+
### v0.74.0 (2026-05-17)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260505
|
|
6
|
+
|
|
7
|
+
### v0.73.0 (2026-05-03)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260423
|
|
10
|
+
|
|
3
11
|
### v0.72.0 (2026-04-19)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260320
|
|
@@ -22,6 +22,50 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module ContaineranalysisV1
|
|
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
|
+
# Findings produced by the analysis.
|
|
43
|
+
# Corresponds to the JSON property `findings`
|
|
44
|
+
# @return [Array<Google::Apis::ContaineranalysisV1::Finding>]
|
|
45
|
+
attr_accessor :findings
|
|
46
|
+
|
|
47
|
+
# Maximum severity found among findings.
|
|
48
|
+
# Corresponds to the JSON property `maxSeverity`
|
|
49
|
+
# @return [String]
|
|
50
|
+
attr_accessor :max_severity
|
|
51
|
+
|
|
52
|
+
# 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
|
# An alias to a repo revision.
|
|
26
70
|
class AliasContext
|
|
27
71
|
include Google::Apis::Core::Hashable
|
|
@@ -1487,6 +1531,13 @@ module Google
|
|
|
1487
1531
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts
|
|
1488
1532
|
include Google::Apis::Core::Hashable
|
|
1489
1533
|
|
|
1534
|
+
# Optional. A list of generic artifacts to be uploaded to Artifact Registry upon
|
|
1535
|
+
# successful completion of all build steps. If any artifacts fail to be pushed,
|
|
1536
|
+
# the build is marked FAILURE.
|
|
1537
|
+
# Corresponds to the JSON property `genericArtifacts`
|
|
1538
|
+
# @return [Array<Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact>]
|
|
1539
|
+
attr_accessor :generic_artifacts
|
|
1540
|
+
|
|
1490
1541
|
# Optional. A list of Go modules to be uploaded to Artifact Registry upon
|
|
1491
1542
|
# successful completion of all build steps. If any objects fail to be pushed,
|
|
1492
1543
|
# the build is marked FAILURE.
|
|
@@ -1550,6 +1601,7 @@ module Google
|
|
|
1550
1601
|
|
|
1551
1602
|
# Update properties of this object
|
|
1552
1603
|
def update!(**args)
|
|
1604
|
+
@generic_artifacts = args[:generic_artifacts] if args.key?(:generic_artifacts)
|
|
1553
1605
|
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
|
1554
1606
|
@images = args[:images] if args.key?(:images)
|
|
1555
1607
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
|
@@ -1595,6 +1647,35 @@ module Google
|
|
|
1595
1647
|
end
|
|
1596
1648
|
end
|
|
1597
1649
|
|
|
1650
|
+
# Generic artifact to upload to Artifact Registry upon successful completion of
|
|
1651
|
+
# all build steps.
|
|
1652
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact
|
|
1653
|
+
include Google::Apis::Core::Hashable
|
|
1654
|
+
|
|
1655
|
+
# Required. Path to the generic artifact in the build's workspace to be uploaded
|
|
1656
|
+
# to Artifact Registry.
|
|
1657
|
+
# Corresponds to the JSON property `folder`
|
|
1658
|
+
# @return [String]
|
|
1659
|
+
attr_accessor :folder
|
|
1660
|
+
|
|
1661
|
+
# Required. Registry path to upload the generic artifact to, in the form
|
|
1662
|
+
# projects/$PROJECT/locations/$LOCATION/repositories/$REPO/packages/$PACKAGE/
|
|
1663
|
+
# versions/$VERSION
|
|
1664
|
+
# Corresponds to the JSON property `registryPath`
|
|
1665
|
+
# @return [String]
|
|
1666
|
+
attr_accessor :registry_path
|
|
1667
|
+
|
|
1668
|
+
def initialize(**args)
|
|
1669
|
+
update!(**args)
|
|
1670
|
+
end
|
|
1671
|
+
|
|
1672
|
+
# Update properties of this object
|
|
1673
|
+
def update!(**args)
|
|
1674
|
+
@folder = args[:folder] if args.key?(:folder)
|
|
1675
|
+
@registry_path = args[:registry_path] if args.key?(:registry_path)
|
|
1676
|
+
end
|
|
1677
|
+
end
|
|
1678
|
+
|
|
1598
1679
|
# Go module to upload to Artifact Registry upon successful completion of all
|
|
1599
1680
|
# build steps. A module refers to all dependencies in a go.mod file.
|
|
1600
1681
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
|
|
@@ -2356,6 +2437,11 @@ module Google
|
|
|
2356
2437
|
# @return [Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
|
|
2357
2438
|
attr_accessor :pull_timing
|
|
2358
2439
|
|
|
2440
|
+
# Declaration of results for this build step.
|
|
2441
|
+
# Corresponds to the JSON property `results`
|
|
2442
|
+
# @return [Array<Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult>]
|
|
2443
|
+
attr_accessor :results
|
|
2444
|
+
|
|
2359
2445
|
# A shell script to be executed in the step. When script is provided, the user
|
|
2360
2446
|
# cannot specify the entrypoint or args.
|
|
2361
2447
|
# Corresponds to the JSON property `script`
|
|
@@ -2422,6 +2508,7 @@ module Google
|
|
|
2422
2508
|
@id = args[:id] if args.key?(:id)
|
|
2423
2509
|
@name = args[:name] if args.key?(:name)
|
|
2424
2510
|
@pull_timing = args[:pull_timing] if args.key?(:pull_timing)
|
|
2511
|
+
@results = args[:results] if args.key?(:results)
|
|
2425
2512
|
@script = args[:script] if args.key?(:script)
|
|
2426
2513
|
@secret_env = args[:secret_env] if args.key?(:secret_env)
|
|
2427
2514
|
@status = args[:status] if args.key?(:status)
|
|
@@ -2432,6 +2519,25 @@ module Google
|
|
|
2432
2519
|
end
|
|
2433
2520
|
end
|
|
2434
2521
|
|
|
2522
|
+
# Results for a build step.
|
|
2523
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults
|
|
2524
|
+
include Google::Apis::Core::Hashable
|
|
2525
|
+
|
|
2526
|
+
# Results for a build step.
|
|
2527
|
+
# Corresponds to the JSON property `results`
|
|
2528
|
+
# @return [Hash<String,String>]
|
|
2529
|
+
attr_accessor :results
|
|
2530
|
+
|
|
2531
|
+
def initialize(**args)
|
|
2532
|
+
update!(**args)
|
|
2533
|
+
end
|
|
2534
|
+
|
|
2535
|
+
# Update properties of this object
|
|
2536
|
+
def update!(**args)
|
|
2537
|
+
@results = args[:results] if args.key?(:results)
|
|
2538
|
+
end
|
|
2539
|
+
end
|
|
2540
|
+
|
|
2435
2541
|
# A non-fatal problem encountered during the execution of the build.
|
|
2436
2542
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildWarning
|
|
2437
2543
|
include Google::Apis::Core::Hashable
|
|
@@ -2547,6 +2653,11 @@ module Google
|
|
|
2547
2653
|
attr_accessor :empty
|
|
2548
2654
|
alias_method :empty?, :empty
|
|
2549
2655
|
|
|
2656
|
+
# Represents a generic artifact as a build dependency.
|
|
2657
|
+
# Corresponds to the JSON property `genericArtifact`
|
|
2658
|
+
# @return [Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency]
|
|
2659
|
+
attr_accessor :generic_artifact
|
|
2660
|
+
|
|
2550
2661
|
# Represents a git repository as a build dependency.
|
|
2551
2662
|
# Corresponds to the JSON property `gitSource`
|
|
2552
2663
|
# @return [Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency]
|
|
@@ -2559,10 +2670,37 @@ module Google
|
|
|
2559
2670
|
# Update properties of this object
|
|
2560
2671
|
def update!(**args)
|
|
2561
2672
|
@empty = args[:empty] if args.key?(:empty)
|
|
2673
|
+
@generic_artifact = args[:generic_artifact] if args.key?(:generic_artifact)
|
|
2562
2674
|
@git_source = args[:git_source] if args.key?(:git_source)
|
|
2563
2675
|
end
|
|
2564
2676
|
end
|
|
2565
2677
|
|
|
2678
|
+
# Represents a generic artifact as a build dependency.
|
|
2679
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency
|
|
2680
|
+
include Google::Apis::Core::Hashable
|
|
2681
|
+
|
|
2682
|
+
# Required. Where the artifact files should be placed on the worker.
|
|
2683
|
+
# Corresponds to the JSON property `destPath`
|
|
2684
|
+
# @return [String]
|
|
2685
|
+
attr_accessor :dest_path
|
|
2686
|
+
|
|
2687
|
+
# Required. The location to download the artifact files from. Ex: projects/p1/
|
|
2688
|
+
# locations/us/repositories/r1/packages/p1/versions/v1
|
|
2689
|
+
# Corresponds to the JSON property `resource`
|
|
2690
|
+
# @return [String]
|
|
2691
|
+
attr_accessor :resource
|
|
2692
|
+
|
|
2693
|
+
def initialize(**args)
|
|
2694
|
+
update!(**args)
|
|
2695
|
+
end
|
|
2696
|
+
|
|
2697
|
+
# Update properties of this object
|
|
2698
|
+
def update!(**args)
|
|
2699
|
+
@dest_path = args[:dest_path] if args.key?(:dest_path)
|
|
2700
|
+
@resource = args[:resource] if args.key?(:resource)
|
|
2701
|
+
end
|
|
2702
|
+
end
|
|
2703
|
+
|
|
2566
2704
|
# Represents a git repository as a build dependency.
|
|
2567
2705
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
|
|
2568
2706
|
include Google::Apis::Core::Hashable
|
|
@@ -2924,6 +3062,17 @@ module Google
|
|
|
2924
3062
|
# @return [Array<String>]
|
|
2925
3063
|
attr_accessor :build_step_outputs
|
|
2926
3064
|
|
|
3065
|
+
# Results for build steps. step_id ->
|
|
3066
|
+
# Corresponds to the JSON property `buildStepResults`
|
|
3067
|
+
# @return [Hash<String,Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults>]
|
|
3068
|
+
attr_accessor :build_step_results
|
|
3069
|
+
|
|
3070
|
+
# Output only. Generic artifacts uploaded to Artifact Registry at the end of the
|
|
3071
|
+
# build.
|
|
3072
|
+
# Corresponds to the JSON property `genericArtifacts`
|
|
3073
|
+
# @return [Array<Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact>]
|
|
3074
|
+
attr_accessor :generic_artifacts
|
|
3075
|
+
|
|
2927
3076
|
# Optional. Go module artifacts uploaded to Artifact Registry at the end of the
|
|
2928
3077
|
# build.
|
|
2929
3078
|
# Corresponds to the JSON property `goModules`
|
|
@@ -2966,6 +3115,8 @@ module Google
|
|
|
2966
3115
|
@artifact_timing = args[:artifact_timing] if args.key?(:artifact_timing)
|
|
2967
3116
|
@build_step_images = args[:build_step_images] if args.key?(:build_step_images)
|
|
2968
3117
|
@build_step_outputs = args[:build_step_outputs] if args.key?(:build_step_outputs)
|
|
3118
|
+
@build_step_results = args[:build_step_results] if args.key?(:build_step_results)
|
|
3119
|
+
@generic_artifacts = args[:generic_artifacts] if args.key?(:generic_artifacts)
|
|
2969
3120
|
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
|
2970
3121
|
@images = args[:images] if args.key?(:images)
|
|
2971
3122
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
|
@@ -3168,6 +3319,37 @@ module Google
|
|
|
3168
3319
|
end
|
|
3169
3320
|
end
|
|
3170
3321
|
|
|
3322
|
+
# StepResult is the declaration of a result for a build step.
|
|
3323
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult
|
|
3324
|
+
include Google::Apis::Core::Hashable
|
|
3325
|
+
|
|
3326
|
+
# Optional. The content of the attestation to be generated.
|
|
3327
|
+
# Corresponds to the JSON property `attestationContent`
|
|
3328
|
+
# @return [String]
|
|
3329
|
+
attr_accessor :attestation_content
|
|
3330
|
+
|
|
3331
|
+
# Optional. The type of attestation to be generated.
|
|
3332
|
+
# Corresponds to the JSON property `attestationType`
|
|
3333
|
+
# @return [String]
|
|
3334
|
+
attr_accessor :attestation_type
|
|
3335
|
+
|
|
3336
|
+
# Required. The name of the result.
|
|
3337
|
+
# Corresponds to the JSON property `name`
|
|
3338
|
+
# @return [String]
|
|
3339
|
+
attr_accessor :name
|
|
3340
|
+
|
|
3341
|
+
def initialize(**args)
|
|
3342
|
+
update!(**args)
|
|
3343
|
+
end
|
|
3344
|
+
|
|
3345
|
+
# Update properties of this object
|
|
3346
|
+
def update!(**args)
|
|
3347
|
+
@attestation_content = args[:attestation_content] if args.key?(:attestation_content)
|
|
3348
|
+
@attestation_type = args[:attestation_type] if args.key?(:attestation_type)
|
|
3349
|
+
@name = args[:name] if args.key?(:name)
|
|
3350
|
+
end
|
|
3351
|
+
end
|
|
3352
|
+
|
|
3171
3353
|
# Location of the source in an archive file in Cloud Storage.
|
|
3172
3354
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
|
|
3173
3355
|
include Google::Apis::Core::Hashable
|
|
@@ -3270,6 +3452,52 @@ module Google
|
|
|
3270
3452
|
end
|
|
3271
3453
|
end
|
|
3272
3454
|
|
|
3455
|
+
# A generic artifact uploaded to Artifact Registry using the GenericArtifact
|
|
3456
|
+
# directive.
|
|
3457
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact
|
|
3458
|
+
include Google::Apis::Core::Hashable
|
|
3459
|
+
|
|
3460
|
+
# Container message for hashes of byte content of files, used in
|
|
3461
|
+
# SourceProvenance messages to verify integrity of source input to the build.
|
|
3462
|
+
# Corresponds to the JSON property `artifactFingerprint`
|
|
3463
|
+
# @return [Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes]
|
|
3464
|
+
attr_accessor :artifact_fingerprint
|
|
3465
|
+
|
|
3466
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
3467
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
3468
|
+
# @return [String]
|
|
3469
|
+
attr_accessor :artifact_registry_package
|
|
3470
|
+
|
|
3471
|
+
# Output only. The file hashes that make up the generic artifact.
|
|
3472
|
+
# Corresponds to the JSON property `fileHashes`
|
|
3473
|
+
# @return [Hash<String,Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes>]
|
|
3474
|
+
attr_accessor :file_hashes
|
|
3475
|
+
|
|
3476
|
+
# Start and end times for a build execution phase.
|
|
3477
|
+
# Corresponds to the JSON property `pushTiming`
|
|
3478
|
+
# @return [Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
|
|
3479
|
+
attr_accessor :push_timing
|
|
3480
|
+
|
|
3481
|
+
# Output only. URI of the uploaded artifact. Ex: projects/p1/locations/us/
|
|
3482
|
+
# repositories/r1/packages/p1/versions/v1
|
|
3483
|
+
# Corresponds to the JSON property `uri`
|
|
3484
|
+
# @return [String]
|
|
3485
|
+
attr_accessor :uri
|
|
3486
|
+
|
|
3487
|
+
def initialize(**args)
|
|
3488
|
+
update!(**args)
|
|
3489
|
+
end
|
|
3490
|
+
|
|
3491
|
+
# Update properties of this object
|
|
3492
|
+
def update!(**args)
|
|
3493
|
+
@artifact_fingerprint = args[:artifact_fingerprint] if args.key?(:artifact_fingerprint)
|
|
3494
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
3495
|
+
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
3496
|
+
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
3497
|
+
@uri = args[:uri] if args.key?(:uri)
|
|
3498
|
+
end
|
|
3499
|
+
end
|
|
3500
|
+
|
|
3273
3501
|
# A Go module artifact uploaded to Artifact Registry using the GoModule
|
|
3274
3502
|
# directive.
|
|
3275
3503
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
|
|
@@ -4142,6 +4370,69 @@ module Google
|
|
|
4142
4370
|
end
|
|
4143
4371
|
end
|
|
4144
4372
|
|
|
4373
|
+
# Finding provides details for a single finding within an
|
|
4374
|
+
# AISkillAnalysisOccurrence.
|
|
4375
|
+
class Finding
|
|
4376
|
+
include Google::Apis::Core::Hashable
|
|
4377
|
+
|
|
4378
|
+
# Category of the finding.
|
|
4379
|
+
# Corresponds to the JSON property `category`
|
|
4380
|
+
# @return [String]
|
|
4381
|
+
attr_accessor :category
|
|
4382
|
+
|
|
4383
|
+
# Location details with file path and line number.
|
|
4384
|
+
# Corresponds to the JSON property `location`
|
|
4385
|
+
# @return [Google::Apis::ContaineranalysisV1::FindingLocation]
|
|
4386
|
+
attr_accessor :location
|
|
4387
|
+
|
|
4388
|
+
# Scanner determines which engine (e.g. static, llm) emitted the finding.
|
|
4389
|
+
# Corresponds to the JSON property `scanner`
|
|
4390
|
+
# @return [String]
|
|
4391
|
+
attr_accessor :scanner
|
|
4392
|
+
|
|
4393
|
+
# Severity of the finding.
|
|
4394
|
+
# Corresponds to the JSON property `severity`
|
|
4395
|
+
# @return [String]
|
|
4396
|
+
attr_accessor :severity
|
|
4397
|
+
|
|
4398
|
+
def initialize(**args)
|
|
4399
|
+
update!(**args)
|
|
4400
|
+
end
|
|
4401
|
+
|
|
4402
|
+
# Update properties of this object
|
|
4403
|
+
def update!(**args)
|
|
4404
|
+
@category = args[:category] if args.key?(:category)
|
|
4405
|
+
@location = args[:location] if args.key?(:location)
|
|
4406
|
+
@scanner = args[:scanner] if args.key?(:scanner)
|
|
4407
|
+
@severity = args[:severity] if args.key?(:severity)
|
|
4408
|
+
end
|
|
4409
|
+
end
|
|
4410
|
+
|
|
4411
|
+
# Location details with file path and line number.
|
|
4412
|
+
class FindingLocation
|
|
4413
|
+
include Google::Apis::Core::Hashable
|
|
4414
|
+
|
|
4415
|
+
# Relative path of the file containing the finding.
|
|
4416
|
+
# Corresponds to the JSON property `filePath`
|
|
4417
|
+
# @return [String]
|
|
4418
|
+
attr_accessor :file_path
|
|
4419
|
+
|
|
4420
|
+
# Line number (1-based), or 0 if whole File / unknown.
|
|
4421
|
+
# Corresponds to the JSON property `lineNumber`
|
|
4422
|
+
# @return [Fixnum]
|
|
4423
|
+
attr_accessor :line_number
|
|
4424
|
+
|
|
4425
|
+
def initialize(**args)
|
|
4426
|
+
update!(**args)
|
|
4427
|
+
end
|
|
4428
|
+
|
|
4429
|
+
# Update properties of this object
|
|
4430
|
+
def update!(**args)
|
|
4431
|
+
@file_path = args[:file_path] if args.key?(:file_path)
|
|
4432
|
+
@line_number = args[:line_number] if args.key?(:line_number)
|
|
4433
|
+
end
|
|
4434
|
+
end
|
|
4435
|
+
|
|
4145
4436
|
# A set of properties that uniquely identify a given Docker image.
|
|
4146
4437
|
class Fingerprint
|
|
4147
4438
|
include Google::Apis::Core::Hashable
|
|
@@ -5259,6 +5550,11 @@ module Google
|
|
|
5259
5550
|
class Note
|
|
5260
5551
|
include Google::Apis::Core::Hashable
|
|
5261
5552
|
|
|
5553
|
+
# AISkillAnalysisNote provides the metadata of an AI-based skill analysis.
|
|
5554
|
+
# Corresponds to the JSON property `aiSkillAnalysis`
|
|
5555
|
+
# @return [Google::Apis::ContaineranalysisV1::AiSkillAnalysisNote]
|
|
5556
|
+
attr_accessor :ai_skill_analysis
|
|
5557
|
+
|
|
5262
5558
|
# Note kind that represents a logical attestation "role" or "authority". For
|
|
5263
5559
|
# example, an organization might have one `Authority` for "QA" and one for "
|
|
5264
5560
|
# build". This note is intended to act strictly as a grouping mechanism for the
|
|
@@ -5395,6 +5691,7 @@ module Google
|
|
|
5395
5691
|
|
|
5396
5692
|
# Update properties of this object
|
|
5397
5693
|
def update!(**args)
|
|
5694
|
+
@ai_skill_analysis = args[:ai_skill_analysis] if args.key?(:ai_skill_analysis)
|
|
5398
5695
|
@attestation = args[:attestation] if args.key?(:attestation)
|
|
5399
5696
|
@build = args[:build] if args.key?(:build)
|
|
5400
5697
|
@compliance = args[:compliance] if args.key?(:compliance)
|
|
@@ -5429,6 +5726,11 @@ module Google
|
|
|
5429
5726
|
# @return [String]
|
|
5430
5727
|
attr_accessor :advisory_publish_time
|
|
5431
5728
|
|
|
5729
|
+
# AISkillAnalysisOccurrence provides the results of an AI-based skill analysis.
|
|
5730
|
+
# Corresponds to the JSON property `aiSkillAnalysis`
|
|
5731
|
+
# @return [Google::Apis::ContaineranalysisV1::AiSkillAnalysisOccurrence]
|
|
5732
|
+
attr_accessor :ai_skill_analysis
|
|
5733
|
+
|
|
5432
5734
|
# Occurrence that represents a single "attestation". The authenticity of an
|
|
5433
5735
|
# attestation can be verified using the attached signature. If the verifier
|
|
5434
5736
|
# trusts the public key of the signer, then verifying the signature is
|
|
@@ -5558,6 +5860,7 @@ module Google
|
|
|
5558
5860
|
# Update properties of this object
|
|
5559
5861
|
def update!(**args)
|
|
5560
5862
|
@advisory_publish_time = args[:advisory_publish_time] if args.key?(:advisory_publish_time)
|
|
5863
|
+
@ai_skill_analysis = args[:ai_skill_analysis] if args.key?(:ai_skill_analysis)
|
|
5561
5864
|
@attestation = args[:attestation] if args.key?(:attestation)
|
|
5562
5865
|
@build = args[:build] if args.key?(:build)
|
|
5563
5866
|
@compliance = args[:compliance] if args.key?(:compliance)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ContaineranalysisV1
|
|
18
18
|
# Version of the google-apis-containeranalysis_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.74.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 ContaineranalysisV1
|
|
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 AliasContext
|
|
26
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
39
|
|
|
@@ -232,6 +244,12 @@ module Google
|
|
|
232
244
|
include Google::Apis::Core::JsonObjectSupport
|
|
233
245
|
end
|
|
234
246
|
|
|
247
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact
|
|
248
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
249
|
+
|
|
250
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
251
|
+
end
|
|
252
|
+
|
|
235
253
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
|
|
236
254
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
237
255
|
|
|
@@ -298,6 +316,12 @@ module Google
|
|
|
298
316
|
include Google::Apis::Core::JsonObjectSupport
|
|
299
317
|
end
|
|
300
318
|
|
|
319
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults
|
|
320
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
321
|
+
|
|
322
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
323
|
+
end
|
|
324
|
+
|
|
301
325
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildWarning
|
|
302
326
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
303
327
|
|
|
@@ -322,6 +346,12 @@ module Google
|
|
|
322
346
|
include Google::Apis::Core::JsonObjectSupport
|
|
323
347
|
end
|
|
324
348
|
|
|
349
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency
|
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
351
|
+
|
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
353
|
+
end
|
|
354
|
+
|
|
325
355
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
|
|
326
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
327
357
|
|
|
@@ -418,6 +448,12 @@ module Google
|
|
|
418
448
|
include Google::Apis::Core::JsonObjectSupport
|
|
419
449
|
end
|
|
420
450
|
|
|
451
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult
|
|
452
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
453
|
+
|
|
454
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
455
|
+
end
|
|
456
|
+
|
|
421
457
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
|
|
422
458
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
423
459
|
|
|
@@ -436,6 +472,12 @@ module Google
|
|
|
436
472
|
include Google::Apis::Core::JsonObjectSupport
|
|
437
473
|
end
|
|
438
474
|
|
|
475
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact
|
|
476
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
477
|
+
|
|
478
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
479
|
+
end
|
|
480
|
+
|
|
439
481
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
|
|
440
482
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
441
483
|
|
|
@@ -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
|
|
|
@@ -1120,6 +1174,22 @@ module Google
|
|
|
1120
1174
|
include Google::Apis::Core::JsonObjectSupport
|
|
1121
1175
|
end
|
|
1122
1176
|
|
|
1177
|
+
class AiSkillAnalysisNote
|
|
1178
|
+
# @private
|
|
1179
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1180
|
+
end
|
|
1181
|
+
end
|
|
1182
|
+
|
|
1183
|
+
class AiSkillAnalysisOccurrence
|
|
1184
|
+
# @private
|
|
1185
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1186
|
+
collection :findings, as: 'findings', class: Google::Apis::ContaineranalysisV1::Finding, decorator: Google::Apis::ContaineranalysisV1::Finding::Representation
|
|
1187
|
+
|
|
1188
|
+
property :max_severity, as: 'maxSeverity'
|
|
1189
|
+
property :skill_name, as: 'skillName'
|
|
1190
|
+
end
|
|
1191
|
+
end
|
|
1192
|
+
|
|
1123
1193
|
class AliasContext
|
|
1124
1194
|
# @private
|
|
1125
1195
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1487,6 +1557,8 @@ module Google
|
|
|
1487
1557
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts
|
|
1488
1558
|
# @private
|
|
1489
1559
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1560
|
+
collection :generic_artifacts, as: 'genericArtifacts', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact::Representation
|
|
1561
|
+
|
|
1490
1562
|
collection :go_modules, as: 'goModules', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule::Representation
|
|
1491
1563
|
|
|
1492
1564
|
collection :images, as: 'images'
|
|
@@ -1513,6 +1585,14 @@ module Google
|
|
|
1513
1585
|
end
|
|
1514
1586
|
end
|
|
1515
1587
|
|
|
1588
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact
|
|
1589
|
+
# @private
|
|
1590
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1591
|
+
property :folder, as: 'folder'
|
|
1592
|
+
property :registry_path, as: 'registryPath'
|
|
1593
|
+
end
|
|
1594
|
+
end
|
|
1595
|
+
|
|
1516
1596
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
|
|
1517
1597
|
# @private
|
|
1518
1598
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1679,6 +1759,8 @@ module Google
|
|
|
1679
1759
|
property :name, as: 'name'
|
|
1680
1760
|
property :pull_timing, as: 'pullTiming', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
|
1681
1761
|
|
|
1762
|
+
collection :results, as: 'results', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult::Representation
|
|
1763
|
+
|
|
1682
1764
|
property :script, as: 'script'
|
|
1683
1765
|
collection :secret_env, as: 'secretEnv'
|
|
1684
1766
|
property :status, as: 'status'
|
|
@@ -1691,6 +1773,13 @@ module Google
|
|
|
1691
1773
|
end
|
|
1692
1774
|
end
|
|
1693
1775
|
|
|
1776
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults
|
|
1777
|
+
# @private
|
|
1778
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1779
|
+
hash :results, as: 'results'
|
|
1780
|
+
end
|
|
1781
|
+
end
|
|
1782
|
+
|
|
1694
1783
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildWarning
|
|
1695
1784
|
# @private
|
|
1696
1785
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1724,11 +1813,21 @@ module Google
|
|
|
1724
1813
|
# @private
|
|
1725
1814
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1726
1815
|
property :empty, as: 'empty'
|
|
1816
|
+
property :generic_artifact, as: 'genericArtifact', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency::Representation
|
|
1817
|
+
|
|
1727
1818
|
property :git_source, as: 'gitSource', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency::Representation
|
|
1728
1819
|
|
|
1729
1820
|
end
|
|
1730
1821
|
end
|
|
1731
1822
|
|
|
1823
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency
|
|
1824
|
+
# @private
|
|
1825
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1826
|
+
property :dest_path, as: 'destPath'
|
|
1827
|
+
property :resource, as: 'resource'
|
|
1828
|
+
end
|
|
1829
|
+
end
|
|
1830
|
+
|
|
1732
1831
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
|
|
1733
1832
|
# @private
|
|
1734
1833
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1828,6 +1927,10 @@ module Google
|
|
|
1828
1927
|
|
|
1829
1928
|
collection :build_step_images, as: 'buildStepImages'
|
|
1830
1929
|
collection :build_step_outputs, as: 'buildStepOutputs'
|
|
1930
|
+
hash :build_step_results, as: 'buildStepResults', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults::Representation
|
|
1931
|
+
|
|
1932
|
+
collection :generic_artifacts, as: 'genericArtifacts', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact::Representation
|
|
1933
|
+
|
|
1831
1934
|
collection :go_modules, as: 'goModules', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule::Representation
|
|
1832
1935
|
|
|
1833
1936
|
collection :images, as: 'images', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage::Representation
|
|
@@ -1904,6 +2007,15 @@ module Google
|
|
|
1904
2007
|
end
|
|
1905
2008
|
end
|
|
1906
2009
|
|
|
2010
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult
|
|
2011
|
+
# @private
|
|
2012
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2013
|
+
property :attestation_content, as: 'attestationContent'
|
|
2014
|
+
property :attestation_type, as: 'attestationType'
|
|
2015
|
+
property :name, as: 'name'
|
|
2016
|
+
end
|
|
2017
|
+
end
|
|
2018
|
+
|
|
1907
2019
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
|
|
1908
2020
|
# @private
|
|
1909
2021
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1931,6 +2043,20 @@ module Google
|
|
|
1931
2043
|
end
|
|
1932
2044
|
end
|
|
1933
2045
|
|
|
2046
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact
|
|
2047
|
+
# @private
|
|
2048
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2049
|
+
property :artifact_fingerprint, as: 'artifactFingerprint', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
|
2050
|
+
|
|
2051
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
2052
|
+
hash :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
|
2053
|
+
|
|
2054
|
+
property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
|
2055
|
+
|
|
2056
|
+
property :uri, as: 'uri'
|
|
2057
|
+
end
|
|
2058
|
+
end
|
|
2059
|
+
|
|
1934
2060
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
|
|
1935
2061
|
# @private
|
|
1936
2062
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2178,6 +2304,25 @@ module Google
|
|
|
2178
2304
|
end
|
|
2179
2305
|
end
|
|
2180
2306
|
|
|
2307
|
+
class Finding
|
|
2308
|
+
# @private
|
|
2309
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2310
|
+
property :category, as: 'category'
|
|
2311
|
+
property :location, as: 'location', class: Google::Apis::ContaineranalysisV1::FindingLocation, decorator: Google::Apis::ContaineranalysisV1::FindingLocation::Representation
|
|
2312
|
+
|
|
2313
|
+
property :scanner, as: 'scanner'
|
|
2314
|
+
property :severity, as: 'severity'
|
|
2315
|
+
end
|
|
2316
|
+
end
|
|
2317
|
+
|
|
2318
|
+
class FindingLocation
|
|
2319
|
+
# @private
|
|
2320
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2321
|
+
property :file_path, as: 'filePath'
|
|
2322
|
+
property :line_number, :numeric_string => true, as: 'lineNumber'
|
|
2323
|
+
end
|
|
2324
|
+
end
|
|
2325
|
+
|
|
2181
2326
|
class Fingerprint
|
|
2182
2327
|
# @private
|
|
2183
2328
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2511,6 +2656,8 @@ module Google
|
|
|
2511
2656
|
class Note
|
|
2512
2657
|
# @private
|
|
2513
2658
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2659
|
+
property :ai_skill_analysis, as: 'aiSkillAnalysis', class: Google::Apis::ContaineranalysisV1::AiSkillAnalysisNote, decorator: Google::Apis::ContaineranalysisV1::AiSkillAnalysisNote::Representation
|
|
2660
|
+
|
|
2514
2661
|
property :attestation, as: 'attestation', class: Google::Apis::ContaineranalysisV1::AttestationNote, decorator: Google::Apis::ContaineranalysisV1::AttestationNote::Representation
|
|
2515
2662
|
|
|
2516
2663
|
property :build, as: 'build', class: Google::Apis::ContaineranalysisV1::BuildNote, decorator: Google::Apis::ContaineranalysisV1::BuildNote::Representation
|
|
@@ -2554,6 +2701,8 @@ module Google
|
|
|
2554
2701
|
# @private
|
|
2555
2702
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2556
2703
|
property :advisory_publish_time, as: 'advisoryPublishTime'
|
|
2704
|
+
property :ai_skill_analysis, as: 'aiSkillAnalysis', class: Google::Apis::ContaineranalysisV1::AiSkillAnalysisOccurrence, decorator: Google::Apis::ContaineranalysisV1::AiSkillAnalysisOccurrence::Representation
|
|
2705
|
+
|
|
2557
2706
|
property :attestation, as: 'attestation', class: Google::Apis::ContaineranalysisV1::AttestationOccurrence, decorator: Google::Apis::ContaineranalysisV1::AttestationOccurrence::Representation
|
|
2558
2707
|
|
|
2559
2708
|
property :build, as: 'build', class: Google::Apis::ContaineranalysisV1::BuildOccurrence, decorator: Google::Apis::ContaineranalysisV1::BuildOccurrence::Representation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-containeranalysis_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.74.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_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.74.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|