google-apis-containeranalysis_v1alpha1 0.82.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: a7dc4f6c7aba1ddadb431594482eb9a1ec12158dddff395c7c45e044e56701f3
4
- data.tar.gz: 52fe4d8d0e597e2e9a95a50618342cac787e59589697d66147e196935e857d9c
3
+ metadata.gz: 5e7576eb9bd4976037b8df860070771bed24618a00bcb565e57d62844b95d5c7
4
+ data.tar.gz: 19e0a0a08118465944f5148ca99233957735890de41719b321eaf8792becf6fb
5
5
  SHA512:
6
- metadata.gz: 92839d6c90eb004a0093b9131fd2f3b77b9fc548ed987ff77f2bd0f8070795f35c19fd4f656467ddbd86d4ffcf7e3eeed65172079ba18e165475146f40eb71d2
7
- data.tar.gz: fc0e197749d405440734a4e529ba0bab5a3947a83e81a7a2492405c05448374a4daf99db845362a5de56a47fcbe7f8b33a331c4abb818bf17a7151e4788be2b3
6
+ metadata.gz: 6f541c8d277c00929ea766e53fc6bcb642963c433c4d85053f95294137e6389c13c4ece1c329bf111ad87aced932938414b545d12ece5d6d20ba8647e88162ee
7
+ data.tar.gz: 99ad951aa91cd3c7855f087cbc14fcefb9c064d441213b9e50c6a935da1ae02142886603b4614ce1b6aab0c9e0407f4d1ae3bf6fad470838a171989599cffff2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.82.0 (2026-03-22)
4
8
 
5
9
  * Regenerated from discovery document revision 20260313
@@ -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.
@@ -1402,6 +1447,7 @@ module Google
1402
1447
 
1403
1448
  # Update properties of this object
1404
1449
  def update!(**args)
1450
+ @generic_artifacts = args[:generic_artifacts] if args.key?(:generic_artifacts)
1405
1451
  @go_modules = args[:go_modules] if args.key?(:go_modules)
1406
1452
  @images = args[:images] if args.key?(:images)
1407
1453
  @maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
@@ -1447,6 +1493,35 @@ module Google
1447
1493
  end
1448
1494
  end
1449
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
+
1450
1525
  # Go module to upload to Artifact Registry upon successful completion of all
1451
1526
  # build steps. A module refers to all dependencies in a go.mod file.
1452
1527
  class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
@@ -2208,6 +2283,11 @@ module Google
2208
2283
  # @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
2209
2284
  attr_accessor :pull_timing
2210
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
+
2211
2291
  # A shell script to be executed in the step. When script is provided, the user
2212
2292
  # cannot specify the entrypoint or args.
2213
2293
  # Corresponds to the JSON property `script`
@@ -2274,6 +2354,7 @@ module Google
2274
2354
  @id = args[:id] if args.key?(:id)
2275
2355
  @name = args[:name] if args.key?(:name)
2276
2356
  @pull_timing = args[:pull_timing] if args.key?(:pull_timing)
2357
+ @results = args[:results] if args.key?(:results)
2277
2358
  @script = args[:script] if args.key?(:script)
2278
2359
  @secret_env = args[:secret_env] if args.key?(:secret_env)
2279
2360
  @status = args[:status] if args.key?(:status)
@@ -2284,6 +2365,25 @@ module Google
2284
2365
  end
2285
2366
  end
2286
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
+
2287
2387
  # A non-fatal problem encountered during the execution of the build.
2288
2388
  class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildWarning
2289
2389
  include Google::Apis::Core::Hashable
@@ -2399,6 +2499,11 @@ module Google
2399
2499
  attr_accessor :empty
2400
2500
  alias_method :empty?, :empty
2401
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
+
2402
2507
  # Represents a git repository as a build dependency.
2403
2508
  # Corresponds to the JSON property `gitSource`
2404
2509
  # @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency]
@@ -2411,10 +2516,37 @@ module Google
2411
2516
  # Update properties of this object
2412
2517
  def update!(**args)
2413
2518
  @empty = args[:empty] if args.key?(:empty)
2519
+ @generic_artifact = args[:generic_artifact] if args.key?(:generic_artifact)
2414
2520
  @git_source = args[:git_source] if args.key?(:git_source)
2415
2521
  end
2416
2522
  end
2417
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
+
2418
2550
  # Represents a git repository as a build dependency.
2419
2551
  class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
2420
2552
  include Google::Apis::Core::Hashable
@@ -2776,6 +2908,17 @@ module Google
2776
2908
  # @return [Array<String>]
2777
2909
  attr_accessor :build_step_outputs
2778
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
+
2779
2922
  # Optional. Go module artifacts uploaded to Artifact Registry at the end of the
2780
2923
  # build.
2781
2924
  # Corresponds to the JSON property `goModules`
@@ -2818,6 +2961,8 @@ module Google
2818
2961
  @artifact_timing = args[:artifact_timing] if args.key?(:artifact_timing)
2819
2962
  @build_step_images = args[:build_step_images] if args.key?(:build_step_images)
2820
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)
2821
2966
  @go_modules = args[:go_modules] if args.key?(:go_modules)
2822
2967
  @images = args[:images] if args.key?(:images)
2823
2968
  @maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
@@ -3020,6 +3165,37 @@ module Google
3020
3165
  end
3021
3166
  end
3022
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
+
3023
3199
  # Location of the source in an archive file in Cloud Storage.
3024
3200
  class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
3025
3201
  include Google::Apis::Core::Hashable
@@ -3122,6 +3298,52 @@ module Google
3122
3298
  end
3123
3299
  end
3124
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
+
3125
3347
  # A Go module artifact uploaded to Artifact Registry using the GoModule
3126
3348
  # directive.
3127
3349
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
@@ -4304,6 +4526,62 @@ module Google
4304
4526
  end
4305
4527
  end
4306
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
+
4307
4585
  # A set of properties that uniquely identify a given Docker image.
4308
4586
  class Fingerprint
4309
4587
  include Google::Apis::Core::Hashable
@@ -5462,6 +5740,11 @@ module Google
5462
5740
  class Note
5463
5741
  include Google::Apis::Core::Hashable
5464
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
+
5465
5748
  # Note kind that represents a logical attestation "role" or "authority". For
5466
5749
  # example, an organization might have one `AttestationAuthority` for "QA" and
5467
5750
  # one for "build". This Note is intended to act strictly as a grouping mechanism
@@ -5621,6 +5904,7 @@ module Google
5621
5904
 
5622
5905
  # Update properties of this object
5623
5906
  def update!(**args)
5907
+ @ai_skill_analysis = args[:ai_skill_analysis] if args.key?(:ai_skill_analysis)
5624
5908
  @attestation_authority = args[:attestation_authority] if args.key?(:attestation_authority)
5625
5909
  @base_image = args[:base_image] if args.key?(:base_image)
5626
5910
  @build_type = args[:build_type] if args.key?(:build_type)
@@ -5653,6 +5937,11 @@ module Google
5653
5937
  class Occurrence
5654
5938
  include Google::Apis::Core::Hashable
5655
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
+
5656
5945
  # Occurrence that represents a single "attestation". The authenticity of an
5657
5946
  # Attestation can be verified using the attached signature. If the verifier
5658
5947
  # trusts the public key of the signer, then verifying the signature is
@@ -5809,6 +6098,7 @@ module Google
5809
6098
 
5810
6099
  # Update properties of this object
5811
6100
  def update!(**args)
6101
+ @ai_skill_analysis = args[:ai_skill_analysis] if args.key?(:ai_skill_analysis)
5812
6102
  @attestation = args[:attestation] if args.key?(:attestation)
5813
6103
  @build_details = args[:build_details] if args.key?(:build_details)
5814
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.82.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 = "20260313"
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
 
@@ -262,6 +280,12 @@ module Google
262
280
  include Google::Apis::Core::JsonObjectSupport
263
281
  end
264
282
 
283
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
265
289
  class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildWarning
266
290
  class Representation < Google::Apis::Core::JsonRepresentation; end
267
291
 
@@ -286,6 +310,12 @@ module Google
286
310
  include Google::Apis::Core::JsonObjectSupport
287
311
  end
288
312
 
313
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency
314
+ class Representation < Google::Apis::Core::JsonRepresentation; end
315
+
316
+ include Google::Apis::Core::JsonObjectSupport
317
+ end
318
+
289
319
  class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
290
320
  class Representation < Google::Apis::Core::JsonRepresentation; end
291
321
 
@@ -382,6 +412,12 @@ module Google
382
412
  include Google::Apis::Core::JsonObjectSupport
383
413
  end
384
414
 
415
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
385
421
  class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
386
422
  class Representation < Google::Apis::Core::JsonRepresentation; end
387
423
 
@@ -400,6 +436,12 @@ module Google
400
436
  include Google::Apis::Core::JsonObjectSupport
401
437
  end
402
438
 
439
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact
440
+ class Representation < Google::Apis::Core::JsonRepresentation; end
441
+
442
+ include Google::Apis::Core::JsonObjectSupport
443
+ end
444
+
403
445
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
404
446
  class Representation < Google::Apis::Core::JsonRepresentation; end
405
447
 
@@ -580,6 +622,12 @@ 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
+
583
631
  class Fingerprint
584
632
  class Representation < Google::Apis::Core::JsonRepresentation; end
585
633
 
@@ -1168,6 +1216,21 @@ module Google
1168
1216
  include Google::Apis::Core::JsonObjectSupport
1169
1217
  end
1170
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
+
1171
1234
  class AnalysisCompleted
1172
1235
  # @private
1173
1236
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1479,6 +1542,8 @@ module Google
1479
1542
  class ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts
1480
1543
  # @private
1481
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
+
1482
1547
  collection :go_modules, as: 'goModules', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule::Representation
1483
1548
 
1484
1549
  collection :images, as: 'images'
@@ -1505,6 +1570,14 @@ module Google
1505
1570
  end
1506
1571
  end
1507
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
+
1508
1581
  class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
1509
1582
  # @private
1510
1583
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1671,6 +1744,8 @@ module Google
1671
1744
  property :name, as: 'name'
1672
1745
  property :pull_timing, as: 'pullTiming', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
1673
1746
 
1747
+ collection :results, as: 'results', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult::Representation
1748
+
1674
1749
  property :script, as: 'script'
1675
1750
  collection :secret_env, as: 'secretEnv'
1676
1751
  property :status, as: 'status'
@@ -1683,6 +1758,13 @@ module Google
1683
1758
  end
1684
1759
  end
1685
1760
 
1761
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults
1762
+ # @private
1763
+ class Representation < Google::Apis::Core::JsonRepresentation
1764
+ hash :results, as: 'results'
1765
+ end
1766
+ end
1767
+
1686
1768
  class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildWarning
1687
1769
  # @private
1688
1770
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1716,11 +1798,21 @@ module Google
1716
1798
  # @private
1717
1799
  class Representation < Google::Apis::Core::JsonRepresentation
1718
1800
  property :empty, as: 'empty'
1801
+ property :generic_artifact, as: 'genericArtifact', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency::Representation
1802
+
1719
1803
  property :git_source, as: 'gitSource', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency::Representation
1720
1804
 
1721
1805
  end
1722
1806
  end
1723
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
+
1724
1816
  class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
1725
1817
  # @private
1726
1818
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1820,6 +1912,10 @@ module Google
1820
1912
 
1821
1913
  collection :build_step_images, as: 'buildStepImages'
1822
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
+
1823
1919
  collection :go_modules, as: 'goModules', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule::Representation
1824
1920
 
1825
1921
  collection :images, as: 'images', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage::Representation
@@ -1896,6 +1992,15 @@ module Google
1896
1992
  end
1897
1993
  end
1898
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
+
1899
2004
  class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
1900
2005
  # @private
1901
2006
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1923,6 +2028,20 @@ module Google
1923
2028
  end
1924
2029
  end
1925
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
+
1926
2045
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
1927
2046
  # @private
1928
2047
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2244,6 +2363,19 @@ module Google
2244
2363
  end
2245
2364
  end
2246
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
+
2247
2379
  class Fingerprint
2248
2380
  # @private
2249
2381
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2594,6 +2726,8 @@ module Google
2594
2726
  class Note
2595
2727
  # @private
2596
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
+
2597
2731
  property :attestation_authority, as: 'attestationAuthority', class: Google::Apis::ContaineranalysisV1alpha1::AttestationAuthority, decorator: Google::Apis::ContaineranalysisV1alpha1::AttestationAuthority::Representation
2598
2732
 
2599
2733
  property :base_image, as: 'baseImage', class: Google::Apis::ContaineranalysisV1alpha1::Basis, decorator: Google::Apis::ContaineranalysisV1alpha1::Basis::Representation
@@ -2643,6 +2777,8 @@ module Google
2643
2777
  class Occurrence
2644
2778
  # @private
2645
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
+
2646
2782
  property :attestation, as: 'attestation', class: Google::Apis::ContaineranalysisV1alpha1::Attestation, decorator: Google::Apis::ContaineranalysisV1alpha1::Attestation::Representation
2647
2783
 
2648
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.82.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.82.0
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: