google-apis-containeranalysis_v1beta1 0.74.0 → 0.76.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: 794fe6667711037ae5aa70e700e9f82ba7a7efd1111b779238fe9def933b14d5
|
|
4
|
+
data.tar.gz: b80e94ecd592725f9475e88fd7f46018e6f6d5f81fb81dc1a1667ea168593a6b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2ba51cc9f3658e8fcb2d013801247939cc70baeb5f7e49d973f7f3e06e0e4221664ad16f40b3a6ecab29c41643cef5366f5d4bec56ae8749f8a6a07a4f74d5a
|
|
7
|
+
data.tar.gz: e2aebaef3342e6876cd6e3a6f66614fb6724049dbfc6eadb030e4bafc6688cb72974cfce5edc86343a68fa067164166474cb9a3636f6ae1401d4d8f170b24a10
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.76.0 (2026-05-17)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260505
|
|
6
|
+
|
|
7
|
+
### v0.75.0 (2026-05-03)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260423
|
|
10
|
+
|
|
3
11
|
### v0.74.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 ContaineranalysisV1beta1
|
|
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::ContaineranalysisV1beta1::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
|
|
@@ -1260,6 +1304,13 @@ module Google
|
|
|
1260
1304
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts
|
|
1261
1305
|
include Google::Apis::Core::Hashable
|
|
1262
1306
|
|
|
1307
|
+
# Optional. A list of generic artifacts to be uploaded to Artifact Registry upon
|
|
1308
|
+
# successful completion of all build steps. If any artifacts fail to be pushed,
|
|
1309
|
+
# the build is marked FAILURE.
|
|
1310
|
+
# Corresponds to the JSON property `genericArtifacts`
|
|
1311
|
+
# @return [Array<Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact>]
|
|
1312
|
+
attr_accessor :generic_artifacts
|
|
1313
|
+
|
|
1263
1314
|
# Optional. A list of Go modules to be uploaded to Artifact Registry upon
|
|
1264
1315
|
# successful completion of all build steps. If any objects fail to be pushed,
|
|
1265
1316
|
# the build is marked FAILURE.
|
|
@@ -1323,6 +1374,7 @@ module Google
|
|
|
1323
1374
|
|
|
1324
1375
|
# Update properties of this object
|
|
1325
1376
|
def update!(**args)
|
|
1377
|
+
@generic_artifacts = args[:generic_artifacts] if args.key?(:generic_artifacts)
|
|
1326
1378
|
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
|
1327
1379
|
@images = args[:images] if args.key?(:images)
|
|
1328
1380
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
|
@@ -1368,6 +1420,35 @@ module Google
|
|
|
1368
1420
|
end
|
|
1369
1421
|
end
|
|
1370
1422
|
|
|
1423
|
+
# Generic artifact to upload to Artifact Registry upon successful completion of
|
|
1424
|
+
# all build steps.
|
|
1425
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact
|
|
1426
|
+
include Google::Apis::Core::Hashable
|
|
1427
|
+
|
|
1428
|
+
# Required. Path to the generic artifact in the build's workspace to be uploaded
|
|
1429
|
+
# to Artifact Registry.
|
|
1430
|
+
# Corresponds to the JSON property `folder`
|
|
1431
|
+
# @return [String]
|
|
1432
|
+
attr_accessor :folder
|
|
1433
|
+
|
|
1434
|
+
# Required. Registry path to upload the generic artifact to, in the form
|
|
1435
|
+
# projects/$PROJECT/locations/$LOCATION/repositories/$REPO/packages/$PACKAGE/
|
|
1436
|
+
# versions/$VERSION
|
|
1437
|
+
# Corresponds to the JSON property `registryPath`
|
|
1438
|
+
# @return [String]
|
|
1439
|
+
attr_accessor :registry_path
|
|
1440
|
+
|
|
1441
|
+
def initialize(**args)
|
|
1442
|
+
update!(**args)
|
|
1443
|
+
end
|
|
1444
|
+
|
|
1445
|
+
# Update properties of this object
|
|
1446
|
+
def update!(**args)
|
|
1447
|
+
@folder = args[:folder] if args.key?(:folder)
|
|
1448
|
+
@registry_path = args[:registry_path] if args.key?(:registry_path)
|
|
1449
|
+
end
|
|
1450
|
+
end
|
|
1451
|
+
|
|
1371
1452
|
# Go module to upload to Artifact Registry upon successful completion of all
|
|
1372
1453
|
# build steps. A module refers to all dependencies in a go.mod file.
|
|
1373
1454
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
|
|
@@ -2129,6 +2210,11 @@ module Google
|
|
|
2129
2210
|
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
|
|
2130
2211
|
attr_accessor :pull_timing
|
|
2131
2212
|
|
|
2213
|
+
# Declaration of results for this build step.
|
|
2214
|
+
# Corresponds to the JSON property `results`
|
|
2215
|
+
# @return [Array<Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult>]
|
|
2216
|
+
attr_accessor :results
|
|
2217
|
+
|
|
2132
2218
|
# A shell script to be executed in the step. When script is provided, the user
|
|
2133
2219
|
# cannot specify the entrypoint or args.
|
|
2134
2220
|
# Corresponds to the JSON property `script`
|
|
@@ -2195,6 +2281,7 @@ module Google
|
|
|
2195
2281
|
@id = args[:id] if args.key?(:id)
|
|
2196
2282
|
@name = args[:name] if args.key?(:name)
|
|
2197
2283
|
@pull_timing = args[:pull_timing] if args.key?(:pull_timing)
|
|
2284
|
+
@results = args[:results] if args.key?(:results)
|
|
2198
2285
|
@script = args[:script] if args.key?(:script)
|
|
2199
2286
|
@secret_env = args[:secret_env] if args.key?(:secret_env)
|
|
2200
2287
|
@status = args[:status] if args.key?(:status)
|
|
@@ -2205,6 +2292,25 @@ module Google
|
|
|
2205
2292
|
end
|
|
2206
2293
|
end
|
|
2207
2294
|
|
|
2295
|
+
# Results for a build step.
|
|
2296
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults
|
|
2297
|
+
include Google::Apis::Core::Hashable
|
|
2298
|
+
|
|
2299
|
+
# Results for a build step.
|
|
2300
|
+
# Corresponds to the JSON property `results`
|
|
2301
|
+
# @return [Hash<String,String>]
|
|
2302
|
+
attr_accessor :results
|
|
2303
|
+
|
|
2304
|
+
def initialize(**args)
|
|
2305
|
+
update!(**args)
|
|
2306
|
+
end
|
|
2307
|
+
|
|
2308
|
+
# Update properties of this object
|
|
2309
|
+
def update!(**args)
|
|
2310
|
+
@results = args[:results] if args.key?(:results)
|
|
2311
|
+
end
|
|
2312
|
+
end
|
|
2313
|
+
|
|
2208
2314
|
# A non-fatal problem encountered during the execution of the build.
|
|
2209
2315
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildWarning
|
|
2210
2316
|
include Google::Apis::Core::Hashable
|
|
@@ -2320,6 +2426,11 @@ module Google
|
|
|
2320
2426
|
attr_accessor :empty
|
|
2321
2427
|
alias_method :empty?, :empty
|
|
2322
2428
|
|
|
2429
|
+
# Represents a generic artifact as a build dependency.
|
|
2430
|
+
# Corresponds to the JSON property `genericArtifact`
|
|
2431
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency]
|
|
2432
|
+
attr_accessor :generic_artifact
|
|
2433
|
+
|
|
2323
2434
|
# Represents a git repository as a build dependency.
|
|
2324
2435
|
# Corresponds to the JSON property `gitSource`
|
|
2325
2436
|
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency]
|
|
@@ -2332,10 +2443,37 @@ module Google
|
|
|
2332
2443
|
# Update properties of this object
|
|
2333
2444
|
def update!(**args)
|
|
2334
2445
|
@empty = args[:empty] if args.key?(:empty)
|
|
2446
|
+
@generic_artifact = args[:generic_artifact] if args.key?(:generic_artifact)
|
|
2335
2447
|
@git_source = args[:git_source] if args.key?(:git_source)
|
|
2336
2448
|
end
|
|
2337
2449
|
end
|
|
2338
2450
|
|
|
2451
|
+
# Represents a generic artifact as a build dependency.
|
|
2452
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency
|
|
2453
|
+
include Google::Apis::Core::Hashable
|
|
2454
|
+
|
|
2455
|
+
# Required. Where the artifact files should be placed on the worker.
|
|
2456
|
+
# Corresponds to the JSON property `destPath`
|
|
2457
|
+
# @return [String]
|
|
2458
|
+
attr_accessor :dest_path
|
|
2459
|
+
|
|
2460
|
+
# Required. The location to download the artifact files from. Ex: projects/p1/
|
|
2461
|
+
# locations/us/repositories/r1/packages/p1/versions/v1
|
|
2462
|
+
# Corresponds to the JSON property `resource`
|
|
2463
|
+
# @return [String]
|
|
2464
|
+
attr_accessor :resource
|
|
2465
|
+
|
|
2466
|
+
def initialize(**args)
|
|
2467
|
+
update!(**args)
|
|
2468
|
+
end
|
|
2469
|
+
|
|
2470
|
+
# Update properties of this object
|
|
2471
|
+
def update!(**args)
|
|
2472
|
+
@dest_path = args[:dest_path] if args.key?(:dest_path)
|
|
2473
|
+
@resource = args[:resource] if args.key?(:resource)
|
|
2474
|
+
end
|
|
2475
|
+
end
|
|
2476
|
+
|
|
2339
2477
|
# Represents a git repository as a build dependency.
|
|
2340
2478
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
|
|
2341
2479
|
include Google::Apis::Core::Hashable
|
|
@@ -2697,6 +2835,17 @@ module Google
|
|
|
2697
2835
|
# @return [Array<String>]
|
|
2698
2836
|
attr_accessor :build_step_outputs
|
|
2699
2837
|
|
|
2838
|
+
# Results for build steps. step_id ->
|
|
2839
|
+
# Corresponds to the JSON property `buildStepResults`
|
|
2840
|
+
# @return [Hash<String,Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults>]
|
|
2841
|
+
attr_accessor :build_step_results
|
|
2842
|
+
|
|
2843
|
+
# Output only. Generic artifacts uploaded to Artifact Registry at the end of the
|
|
2844
|
+
# build.
|
|
2845
|
+
# Corresponds to the JSON property `genericArtifacts`
|
|
2846
|
+
# @return [Array<Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact>]
|
|
2847
|
+
attr_accessor :generic_artifacts
|
|
2848
|
+
|
|
2700
2849
|
# Optional. Go module artifacts uploaded to Artifact Registry at the end of the
|
|
2701
2850
|
# build.
|
|
2702
2851
|
# Corresponds to the JSON property `goModules`
|
|
@@ -2739,6 +2888,8 @@ module Google
|
|
|
2739
2888
|
@artifact_timing = args[:artifact_timing] if args.key?(:artifact_timing)
|
|
2740
2889
|
@build_step_images = args[:build_step_images] if args.key?(:build_step_images)
|
|
2741
2890
|
@build_step_outputs = args[:build_step_outputs] if args.key?(:build_step_outputs)
|
|
2891
|
+
@build_step_results = args[:build_step_results] if args.key?(:build_step_results)
|
|
2892
|
+
@generic_artifacts = args[:generic_artifacts] if args.key?(:generic_artifacts)
|
|
2742
2893
|
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
|
2743
2894
|
@images = args[:images] if args.key?(:images)
|
|
2744
2895
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
|
@@ -2941,6 +3092,37 @@ module Google
|
|
|
2941
3092
|
end
|
|
2942
3093
|
end
|
|
2943
3094
|
|
|
3095
|
+
# StepResult is the declaration of a result for a build step.
|
|
3096
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult
|
|
3097
|
+
include Google::Apis::Core::Hashable
|
|
3098
|
+
|
|
3099
|
+
# Optional. The content of the attestation to be generated.
|
|
3100
|
+
# Corresponds to the JSON property `attestationContent`
|
|
3101
|
+
# @return [String]
|
|
3102
|
+
attr_accessor :attestation_content
|
|
3103
|
+
|
|
3104
|
+
# Optional. The type of attestation to be generated.
|
|
3105
|
+
# Corresponds to the JSON property `attestationType`
|
|
3106
|
+
# @return [String]
|
|
3107
|
+
attr_accessor :attestation_type
|
|
3108
|
+
|
|
3109
|
+
# Required. The name of the result.
|
|
3110
|
+
# Corresponds to the JSON property `name`
|
|
3111
|
+
# @return [String]
|
|
3112
|
+
attr_accessor :name
|
|
3113
|
+
|
|
3114
|
+
def initialize(**args)
|
|
3115
|
+
update!(**args)
|
|
3116
|
+
end
|
|
3117
|
+
|
|
3118
|
+
# Update properties of this object
|
|
3119
|
+
def update!(**args)
|
|
3120
|
+
@attestation_content = args[:attestation_content] if args.key?(:attestation_content)
|
|
3121
|
+
@attestation_type = args[:attestation_type] if args.key?(:attestation_type)
|
|
3122
|
+
@name = args[:name] if args.key?(:name)
|
|
3123
|
+
end
|
|
3124
|
+
end
|
|
3125
|
+
|
|
2944
3126
|
# Location of the source in an archive file in Cloud Storage.
|
|
2945
3127
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
|
|
2946
3128
|
include Google::Apis::Core::Hashable
|
|
@@ -3043,6 +3225,52 @@ module Google
|
|
|
3043
3225
|
end
|
|
3044
3226
|
end
|
|
3045
3227
|
|
|
3228
|
+
# A generic artifact uploaded to Artifact Registry using the GenericArtifact
|
|
3229
|
+
# directive.
|
|
3230
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact
|
|
3231
|
+
include Google::Apis::Core::Hashable
|
|
3232
|
+
|
|
3233
|
+
# Container message for hashes of byte content of files, used in
|
|
3234
|
+
# SourceProvenance messages to verify integrity of source input to the build.
|
|
3235
|
+
# Corresponds to the JSON property `artifactFingerprint`
|
|
3236
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes]
|
|
3237
|
+
attr_accessor :artifact_fingerprint
|
|
3238
|
+
|
|
3239
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
3240
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
3241
|
+
# @return [String]
|
|
3242
|
+
attr_accessor :artifact_registry_package
|
|
3243
|
+
|
|
3244
|
+
# Output only. The file hashes that make up the generic artifact.
|
|
3245
|
+
# Corresponds to the JSON property `fileHashes`
|
|
3246
|
+
# @return [Hash<String,Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes>]
|
|
3247
|
+
attr_accessor :file_hashes
|
|
3248
|
+
|
|
3249
|
+
# Start and end times for a build execution phase.
|
|
3250
|
+
# Corresponds to the JSON property `pushTiming`
|
|
3251
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
|
|
3252
|
+
attr_accessor :push_timing
|
|
3253
|
+
|
|
3254
|
+
# Output only. URI of the uploaded artifact. Ex: projects/p1/locations/us/
|
|
3255
|
+
# repositories/r1/packages/p1/versions/v1
|
|
3256
|
+
# Corresponds to the JSON property `uri`
|
|
3257
|
+
# @return [String]
|
|
3258
|
+
attr_accessor :uri
|
|
3259
|
+
|
|
3260
|
+
def initialize(**args)
|
|
3261
|
+
update!(**args)
|
|
3262
|
+
end
|
|
3263
|
+
|
|
3264
|
+
# Update properties of this object
|
|
3265
|
+
def update!(**args)
|
|
3266
|
+
@artifact_fingerprint = args[:artifact_fingerprint] if args.key?(:artifact_fingerprint)
|
|
3267
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
3268
|
+
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
3269
|
+
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
3270
|
+
@uri = args[:uri] if args.key?(:uri)
|
|
3271
|
+
end
|
|
3272
|
+
end
|
|
3273
|
+
|
|
3046
3274
|
# A Go module artifact uploaded to Artifact Registry using the GoModule
|
|
3047
3275
|
# directive.
|
|
3048
3276
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
|
|
@@ -4138,6 +4366,69 @@ module Google
|
|
|
4138
4366
|
end
|
|
4139
4367
|
end
|
|
4140
4368
|
|
|
4369
|
+
# Finding provides details for a single finding within an
|
|
4370
|
+
# AISkillAnalysisOccurrence.
|
|
4371
|
+
class Finding
|
|
4372
|
+
include Google::Apis::Core::Hashable
|
|
4373
|
+
|
|
4374
|
+
# Category of the finding.
|
|
4375
|
+
# Corresponds to the JSON property `category`
|
|
4376
|
+
# @return [String]
|
|
4377
|
+
attr_accessor :category
|
|
4378
|
+
|
|
4379
|
+
# Location details with file path and line number.
|
|
4380
|
+
# Corresponds to the JSON property `location`
|
|
4381
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::FindingLocation]
|
|
4382
|
+
attr_accessor :location
|
|
4383
|
+
|
|
4384
|
+
# Scanner determines which engine (e.g. static, llm) emitted the finding.
|
|
4385
|
+
# Corresponds to the JSON property `scanner`
|
|
4386
|
+
# @return [String]
|
|
4387
|
+
attr_accessor :scanner
|
|
4388
|
+
|
|
4389
|
+
# Severity of the finding.
|
|
4390
|
+
# Corresponds to the JSON property `severity`
|
|
4391
|
+
# @return [String]
|
|
4392
|
+
attr_accessor :severity
|
|
4393
|
+
|
|
4394
|
+
def initialize(**args)
|
|
4395
|
+
update!(**args)
|
|
4396
|
+
end
|
|
4397
|
+
|
|
4398
|
+
# Update properties of this object
|
|
4399
|
+
def update!(**args)
|
|
4400
|
+
@category = args[:category] if args.key?(:category)
|
|
4401
|
+
@location = args[:location] if args.key?(:location)
|
|
4402
|
+
@scanner = args[:scanner] if args.key?(:scanner)
|
|
4403
|
+
@severity = args[:severity] if args.key?(:severity)
|
|
4404
|
+
end
|
|
4405
|
+
end
|
|
4406
|
+
|
|
4407
|
+
# Location details with file path and line number.
|
|
4408
|
+
class FindingLocation
|
|
4409
|
+
include Google::Apis::Core::Hashable
|
|
4410
|
+
|
|
4411
|
+
# Relative path of the file containing the finding.
|
|
4412
|
+
# Corresponds to the JSON property `filePath`
|
|
4413
|
+
# @return [String]
|
|
4414
|
+
attr_accessor :file_path
|
|
4415
|
+
|
|
4416
|
+
# Line number (1-based), or 0 if whole File / unknown.
|
|
4417
|
+
# Corresponds to the JSON property `lineNumber`
|
|
4418
|
+
# @return [Fixnum]
|
|
4419
|
+
attr_accessor :line_number
|
|
4420
|
+
|
|
4421
|
+
def initialize(**args)
|
|
4422
|
+
update!(**args)
|
|
4423
|
+
end
|
|
4424
|
+
|
|
4425
|
+
# Update properties of this object
|
|
4426
|
+
def update!(**args)
|
|
4427
|
+
@file_path = args[:file_path] if args.key?(:file_path)
|
|
4428
|
+
@line_number = args[:line_number] if args.key?(:line_number)
|
|
4429
|
+
end
|
|
4430
|
+
end
|
|
4431
|
+
|
|
4141
4432
|
# A set of properties that uniquely identify a given Docker image.
|
|
4142
4433
|
class Fingerprint
|
|
4143
4434
|
include Google::Apis::Core::Hashable
|
|
@@ -5230,6 +5521,11 @@ module Google
|
|
|
5230
5521
|
class Note
|
|
5231
5522
|
include Google::Apis::Core::Hashable
|
|
5232
5523
|
|
|
5524
|
+
# AISkillAnalysisNote provides the metadata of an AI-based skill analysis.
|
|
5525
|
+
# Corresponds to the JSON property `aiSkillAnalysis`
|
|
5526
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::AiSkillAnalysisNote]
|
|
5527
|
+
attr_accessor :ai_skill_analysis
|
|
5528
|
+
|
|
5233
5529
|
# Note kind that represents a logical attestation "role" or "authority". For
|
|
5234
5530
|
# example, an organization might have one `Authority` for "QA" and one for "
|
|
5235
5531
|
# build". This note is intended to act strictly as a grouping mechanism for the
|
|
@@ -5378,6 +5674,7 @@ module Google
|
|
|
5378
5674
|
|
|
5379
5675
|
# Update properties of this object
|
|
5380
5676
|
def update!(**args)
|
|
5677
|
+
@ai_skill_analysis = args[:ai_skill_analysis] if args.key?(:ai_skill_analysis)
|
|
5381
5678
|
@attestation_authority = args[:attestation_authority] if args.key?(:attestation_authority)
|
|
5382
5679
|
@base_image = args[:base_image] if args.key?(:base_image)
|
|
5383
5680
|
@build = args[:build] if args.key?(:build)
|
|
@@ -5409,6 +5706,11 @@ module Google
|
|
|
5409
5706
|
class Occurrence
|
|
5410
5707
|
include Google::Apis::Core::Hashable
|
|
5411
5708
|
|
|
5709
|
+
# AISkillAnalysisOccurrence provides the results of an AI-based skill analysis.
|
|
5710
|
+
# Corresponds to the JSON property `aiSkillAnalysis`
|
|
5711
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::AiSkillAnalysisOccurrence]
|
|
5712
|
+
attr_accessor :ai_skill_analysis
|
|
5713
|
+
|
|
5412
5714
|
# Details of an attestation occurrence.
|
|
5413
5715
|
# Corresponds to the JSON property `attestation`
|
|
5414
5716
|
# @return [Google::Apis::ContaineranalysisV1beta1::Details]
|
|
@@ -5538,6 +5840,7 @@ module Google
|
|
|
5538
5840
|
|
|
5539
5841
|
# Update properties of this object
|
|
5540
5842
|
def update!(**args)
|
|
5843
|
+
@ai_skill_analysis = args[:ai_skill_analysis] if args.key?(:ai_skill_analysis)
|
|
5541
5844
|
@attestation = args[:attestation] if args.key?(:attestation)
|
|
5542
5845
|
@build = args[:build] if args.key?(:build)
|
|
5543
5846
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ContaineranalysisV1beta1
|
|
18
18
|
# Version of the google-apis-containeranalysis_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.76.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 ContaineranalysisV1beta1
|
|
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
|
|
|
@@ -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
|
|
|
@@ -574,6 +616,18 @@ module Google
|
|
|
574
616
|
include Google::Apis::Core::JsonObjectSupport
|
|
575
617
|
end
|
|
576
618
|
|
|
619
|
+
class Finding
|
|
620
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
621
|
+
|
|
622
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
623
|
+
end
|
|
624
|
+
|
|
625
|
+
class FindingLocation
|
|
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
|
|
|
@@ -1072,6 +1126,22 @@ module Google
|
|
|
1072
1126
|
include Google::Apis::Core::JsonObjectSupport
|
|
1073
1127
|
end
|
|
1074
1128
|
|
|
1129
|
+
class AiSkillAnalysisNote
|
|
1130
|
+
# @private
|
|
1131
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1132
|
+
end
|
|
1133
|
+
end
|
|
1134
|
+
|
|
1135
|
+
class AiSkillAnalysisOccurrence
|
|
1136
|
+
# @private
|
|
1137
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1138
|
+
collection :findings, as: 'findings', class: Google::Apis::ContaineranalysisV1beta1::Finding, decorator: Google::Apis::ContaineranalysisV1beta1::Finding::Representation
|
|
1139
|
+
|
|
1140
|
+
property :max_severity, as: 'maxSeverity'
|
|
1141
|
+
property :skill_name, as: 'skillName'
|
|
1142
|
+
end
|
|
1143
|
+
end
|
|
1144
|
+
|
|
1075
1145
|
class AliasContext
|
|
1076
1146
|
# @private
|
|
1077
1147
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1374,6 +1444,8 @@ module Google
|
|
|
1374
1444
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts
|
|
1375
1445
|
# @private
|
|
1376
1446
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1447
|
+
collection :generic_artifacts, as: 'genericArtifacts', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact::Representation
|
|
1448
|
+
|
|
1377
1449
|
collection :go_modules, as: 'goModules', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule::Representation
|
|
1378
1450
|
|
|
1379
1451
|
collection :images, as: 'images'
|
|
@@ -1400,6 +1472,14 @@ module Google
|
|
|
1400
1472
|
end
|
|
1401
1473
|
end
|
|
1402
1474
|
|
|
1475
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact
|
|
1476
|
+
# @private
|
|
1477
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1478
|
+
property :folder, as: 'folder'
|
|
1479
|
+
property :registry_path, as: 'registryPath'
|
|
1480
|
+
end
|
|
1481
|
+
end
|
|
1482
|
+
|
|
1403
1483
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
|
|
1404
1484
|
# @private
|
|
1405
1485
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1566,6 +1646,8 @@ module Google
|
|
|
1566
1646
|
property :name, as: 'name'
|
|
1567
1647
|
property :pull_timing, as: 'pullTiming', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
|
1568
1648
|
|
|
1649
|
+
collection :results, as: 'results', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult::Representation
|
|
1650
|
+
|
|
1569
1651
|
property :script, as: 'script'
|
|
1570
1652
|
collection :secret_env, as: 'secretEnv'
|
|
1571
1653
|
property :status, as: 'status'
|
|
@@ -1578,6 +1660,13 @@ module Google
|
|
|
1578
1660
|
end
|
|
1579
1661
|
end
|
|
1580
1662
|
|
|
1663
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults
|
|
1664
|
+
# @private
|
|
1665
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1666
|
+
hash :results, as: 'results'
|
|
1667
|
+
end
|
|
1668
|
+
end
|
|
1669
|
+
|
|
1581
1670
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildWarning
|
|
1582
1671
|
# @private
|
|
1583
1672
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1611,11 +1700,21 @@ module Google
|
|
|
1611
1700
|
# @private
|
|
1612
1701
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1613
1702
|
property :empty, as: 'empty'
|
|
1703
|
+
property :generic_artifact, as: 'genericArtifact', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency::Representation
|
|
1704
|
+
|
|
1614
1705
|
property :git_source, as: 'gitSource', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency::Representation
|
|
1615
1706
|
|
|
1616
1707
|
end
|
|
1617
1708
|
end
|
|
1618
1709
|
|
|
1710
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency
|
|
1711
|
+
# @private
|
|
1712
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1713
|
+
property :dest_path, as: 'destPath'
|
|
1714
|
+
property :resource, as: 'resource'
|
|
1715
|
+
end
|
|
1716
|
+
end
|
|
1717
|
+
|
|
1619
1718
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
|
|
1620
1719
|
# @private
|
|
1621
1720
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1715,6 +1814,10 @@ module Google
|
|
|
1715
1814
|
|
|
1716
1815
|
collection :build_step_images, as: 'buildStepImages'
|
|
1717
1816
|
collection :build_step_outputs, as: 'buildStepOutputs'
|
|
1817
|
+
hash :build_step_results, as: 'buildStepResults', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults::Representation
|
|
1818
|
+
|
|
1819
|
+
collection :generic_artifacts, as: 'genericArtifacts', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact::Representation
|
|
1820
|
+
|
|
1718
1821
|
collection :go_modules, as: 'goModules', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule::Representation
|
|
1719
1822
|
|
|
1720
1823
|
collection :images, as: 'images', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage::Representation
|
|
@@ -1791,6 +1894,15 @@ module Google
|
|
|
1791
1894
|
end
|
|
1792
1895
|
end
|
|
1793
1896
|
|
|
1897
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult
|
|
1898
|
+
# @private
|
|
1899
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1900
|
+
property :attestation_content, as: 'attestationContent'
|
|
1901
|
+
property :attestation_type, as: 'attestationType'
|
|
1902
|
+
property :name, as: 'name'
|
|
1903
|
+
end
|
|
1904
|
+
end
|
|
1905
|
+
|
|
1794
1906
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
|
|
1795
1907
|
# @private
|
|
1796
1908
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1818,6 +1930,20 @@ module Google
|
|
|
1818
1930
|
end
|
|
1819
1931
|
end
|
|
1820
1932
|
|
|
1933
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact
|
|
1934
|
+
# @private
|
|
1935
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1936
|
+
property :artifact_fingerprint, as: 'artifactFingerprint', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
|
1937
|
+
|
|
1938
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
1939
|
+
hash :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
|
1940
|
+
|
|
1941
|
+
property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
|
1942
|
+
|
|
1943
|
+
property :uri, as: 'uri'
|
|
1944
|
+
end
|
|
1945
|
+
end
|
|
1946
|
+
|
|
1821
1947
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
|
|
1822
1948
|
# @private
|
|
1823
1949
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2118,6 +2244,25 @@ module Google
|
|
|
2118
2244
|
end
|
|
2119
2245
|
end
|
|
2120
2246
|
|
|
2247
|
+
class Finding
|
|
2248
|
+
# @private
|
|
2249
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2250
|
+
property :category, as: 'category'
|
|
2251
|
+
property :location, as: 'location', class: Google::Apis::ContaineranalysisV1beta1::FindingLocation, decorator: Google::Apis::ContaineranalysisV1beta1::FindingLocation::Representation
|
|
2252
|
+
|
|
2253
|
+
property :scanner, as: 'scanner'
|
|
2254
|
+
property :severity, as: 'severity'
|
|
2255
|
+
end
|
|
2256
|
+
end
|
|
2257
|
+
|
|
2258
|
+
class FindingLocation
|
|
2259
|
+
# @private
|
|
2260
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2261
|
+
property :file_path, as: 'filePath'
|
|
2262
|
+
property :line_number, :numeric_string => true, as: 'lineNumber'
|
|
2263
|
+
end
|
|
2264
|
+
end
|
|
2265
|
+
|
|
2121
2266
|
class Fingerprint
|
|
2122
2267
|
# @private
|
|
2123
2268
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2445,6 +2590,8 @@ module Google
|
|
|
2445
2590
|
class Note
|
|
2446
2591
|
# @private
|
|
2447
2592
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2593
|
+
property :ai_skill_analysis, as: 'aiSkillAnalysis', class: Google::Apis::ContaineranalysisV1beta1::AiSkillAnalysisNote, decorator: Google::Apis::ContaineranalysisV1beta1::AiSkillAnalysisNote::Representation
|
|
2594
|
+
|
|
2448
2595
|
property :attestation_authority, as: 'attestationAuthority', class: Google::Apis::ContaineranalysisV1beta1::Authority, decorator: Google::Apis::ContaineranalysisV1beta1::Authority::Representation
|
|
2449
2596
|
|
|
2450
2597
|
property :base_image, as: 'baseImage', class: Google::Apis::ContaineranalysisV1beta1::Basis, decorator: Google::Apis::ContaineranalysisV1beta1::Basis::Representation
|
|
@@ -2491,6 +2638,8 @@ module Google
|
|
|
2491
2638
|
class Occurrence
|
|
2492
2639
|
# @private
|
|
2493
2640
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2641
|
+
property :ai_skill_analysis, as: 'aiSkillAnalysis', class: Google::Apis::ContaineranalysisV1beta1::AiSkillAnalysisOccurrence, decorator: Google::Apis::ContaineranalysisV1beta1::AiSkillAnalysisOccurrence::Representation
|
|
2642
|
+
|
|
2494
2643
|
property :attestation, as: 'attestation', class: Google::Apis::ContaineranalysisV1beta1::Details, decorator: Google::Apis::ContaineranalysisV1beta1::Details::Representation
|
|
2495
2644
|
|
|
2496
2645
|
property :build, as: 'build', class: Google::Apis::ContaineranalysisV1beta1::GrafeasV1beta1BuildDetails, decorator: Google::Apis::ContaineranalysisV1beta1::GrafeasV1beta1BuildDetails::Representation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-containeranalysis_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.76.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_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.76.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|