google-apis-containeranalysis_v1 0.55.0 → 0.56.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: 592a51fe9b6086b3213d3db6ed3d4abc00660fcf53da12a5663f2e09b61b8592
4
- data.tar.gz: 1fc160668e3a8fdb2779963ff58c3200cdd6534d6fc9ed63670e6a46fad2bbb1
3
+ metadata.gz: fa7effae4a7ac74993ff3b0d1444bce4e9aba1d7b0294e5fa8aa6d2b71b2b6cb
4
+ data.tar.gz: 95ddbd1c57438de156ecac4aecc8e056ac2041467b9258085a5fccb740c0fe6b
5
5
  SHA512:
6
- metadata.gz: ed65471fb24cf54fb6e69e031b0e2209685546b77ece311befe267ccaa659da05c012c379265764c8ef54510e48bee35a9889fed4420c8134e68cd61f7bf96db
7
- data.tar.gz: 6c08e0b7f8e6d7557ebe3f308e91ce9ad63868315b8314a1d5ce51955f85ddd1b6547c46c515ab0ea2b152b8a8a104048d5859e294a0e12e202f2780b7e040c7
6
+ metadata.gz: 521f7040bb0f934b526807e9e0b7e7049d1e0afc737b68170c32d32afb6839b25f81eb0f4a42fe120adbb93aa49fe2e7b2879709a4c7ce623b29c2172ee7ef51
7
+ data.tar.gz: cba55b5b3de7f3c74d0b2267318ccd33e45020d497bb03ec09f0ba24a948a74168e6e1cca95964fcfa6a62a48e12ad18e57b3c2bf84a78225eb63c0c92895b4c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-containeranalysis_v1
2
2
 
3
+ ### v0.56.0 (2025-02-26)
4
+
5
+ * Regenerated from discovery document revision 20250207
6
+ * Regenerated using generator version 0.16.0
7
+
3
8
  ### v0.55.0 (2024-08-25)
4
9
 
5
10
  * Regenerated from discovery document revision 20240816
@@ -1418,6 +1418,13 @@ module Google
1418
1418
  class ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts
1419
1419
  include Google::Apis::Core::Hashable
1420
1420
 
1421
+ # Optional. A list of Go modules to be uploaded to Artifact Registry upon
1422
+ # successful completion of all build steps. If any objects fail to be pushed,
1423
+ # the build is marked FAILURE.
1424
+ # Corresponds to the JSON property `goModules`
1425
+ # @return [Array<Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule>]
1426
+ attr_accessor :go_modules
1427
+
1421
1428
  # A list of images to be pushed upon the successful completion of all build
1422
1429
  # steps. The images will be pushed using the builder service account's
1423
1430
  # credentials. The digests of the pushed images will be stored in the Build
@@ -1465,6 +1472,7 @@ module Google
1465
1472
 
1466
1473
  # Update properties of this object
1467
1474
  def update!(**args)
1475
+ @go_modules = args[:go_modules] if args.key?(:go_modules)
1468
1476
  @images = args[:images] if args.key?(:images)
1469
1477
  @maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
1470
1478
  @npm_packages = args[:npm_packages] if args.key?(:npm_packages)
@@ -1508,6 +1516,64 @@ module Google
1508
1516
  end
1509
1517
  end
1510
1518
 
1519
+ # Go module to upload to Artifact Registry upon successful completion of all
1520
+ # build steps. A module refers to all dependencies in a go.mod file.
1521
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
1522
+ include Google::Apis::Core::Hashable
1523
+
1524
+ # Optional. The Go module's "module path". e.g. example.com/foo/v2
1525
+ # Corresponds to the JSON property `modulePath`
1526
+ # @return [String]
1527
+ attr_accessor :module_path
1528
+
1529
+ # Optional. The Go module's semantic version in the form vX.Y.Z. e.g. v0.1.1 Pre-
1530
+ # release identifiers can also be added by appending a dash and dot separated
1531
+ # ASCII alphanumeric characters and hyphens. e.g. v0.2.3-alpha.x.12m.5
1532
+ # Corresponds to the JSON property `moduleVersion`
1533
+ # @return [String]
1534
+ attr_accessor :module_version
1535
+
1536
+ # Optional. Location of the Artifact Registry repository. i.e. us-east1 Defaults
1537
+ # to the build’s location.
1538
+ # Corresponds to the JSON property `repositoryLocation`
1539
+ # @return [String]
1540
+ attr_accessor :repository_location
1541
+
1542
+ # Optional. Artifact Registry repository name. Specified Go modules will be
1543
+ # zipped and uploaded to Artifact Registry with this location as a prefix. e.g.
1544
+ # my-go-repo
1545
+ # Corresponds to the JSON property `repositoryName`
1546
+ # @return [String]
1547
+ attr_accessor :repository_name
1548
+
1549
+ # Optional. Project ID of the Artifact Registry repository. Defaults to the
1550
+ # build project.
1551
+ # Corresponds to the JSON property `repositoryProjectId`
1552
+ # @return [String]
1553
+ attr_accessor :repository_project_id
1554
+
1555
+ # Optional. Source path of the go.mod file in the build's workspace. If not
1556
+ # specified, this will default to the current directory. e.g. ~/code/go/
1557
+ # mypackage
1558
+ # Corresponds to the JSON property `sourcePath`
1559
+ # @return [String]
1560
+ attr_accessor :source_path
1561
+
1562
+ def initialize(**args)
1563
+ update!(**args)
1564
+ end
1565
+
1566
+ # Update properties of this object
1567
+ def update!(**args)
1568
+ @module_path = args[:module_path] if args.key?(:module_path)
1569
+ @module_version = args[:module_version] if args.key?(:module_version)
1570
+ @repository_location = args[:repository_location] if args.key?(:repository_location)
1571
+ @repository_name = args[:repository_name] if args.key?(:repository_name)
1572
+ @repository_project_id = args[:repository_project_id] if args.key?(:repository_project_id)
1573
+ @source_path = args[:source_path] if args.key?(:source_path)
1574
+ end
1575
+ end
1576
+
1511
1577
  # A Maven artifact to upload to Artifact Registry upon successful completion of
1512
1578
  # all build steps.
1513
1579
  class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact
@@ -1657,6 +1723,12 @@ module Google
1657
1723
  # @return [String]
1658
1724
  attr_accessor :create_time
1659
1725
 
1726
+ # Optional. Dependencies that the Cloud Build worker will fetch before executing
1727
+ # user steps.
1728
+ # Corresponds to the JSON property `dependencies`
1729
+ # @return [Array<Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency>]
1730
+ attr_accessor :dependencies
1731
+
1660
1732
  # A fatal problem encountered during the execution of the build.
1661
1733
  # Corresponds to the JSON property `failureInfo`
1662
1734
  # @return [Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo]
@@ -1818,6 +1890,7 @@ module Google
1818
1890
  @available_secrets = args[:available_secrets] if args.key?(:available_secrets)
1819
1891
  @build_trigger_id = args[:build_trigger_id] if args.key?(:build_trigger_id)
1820
1892
  @create_time = args[:create_time] if args.key?(:create_time)
1893
+ @dependencies = args[:dependencies] if args.key?(:dependencies)
1821
1894
  @failure_info = args[:failure_info] if args.key?(:failure_info)
1822
1895
  @finish_time = args[:finish_time] if args.key?(:finish_time)
1823
1896
  @git_config = args[:git_config] if args.key?(:git_config)
@@ -1937,6 +2010,13 @@ module Google
1937
2010
  attr_accessor :dynamic_substitutions
1938
2011
  alias_method :dynamic_substitutions?, :dynamic_substitutions
1939
2012
 
2013
+ # Optional. Option to specify whether structured logging is enabled. If true,
2014
+ # JSON-formatted logs are parsed as structured logs.
2015
+ # Corresponds to the JSON property `enableStructuredLogging`
2016
+ # @return [Boolean]
2017
+ attr_accessor :enable_structured_logging
2018
+ alias_method :enable_structured_logging?, :enable_structured_logging
2019
+
1940
2020
  # A list of global environment variable definitions that will exist for all
1941
2021
  # build steps in this build. If a variable is defined in both globally and in a
1942
2022
  # build step, the variable will use the build step value. The elements are of
@@ -1969,6 +2049,11 @@ module Google
1969
2049
  # @return [Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption]
1970
2050
  attr_accessor :pool
1971
2051
 
2052
+ # Optional. Option to specify the Pub/Sub topic to receive build status updates.
2053
+ # Corresponds to the JSON property `pubsubTopic`
2054
+ # @return [String]
2055
+ attr_accessor :pubsub_topic
2056
+
1972
2057
  # Requested verifiability options.
1973
2058
  # Corresponds to the JSON property `requestedVerifyOption`
1974
2059
  # @return [String]
@@ -2018,11 +2103,13 @@ module Google
2018
2103
  @default_logs_bucket_behavior = args[:default_logs_bucket_behavior] if args.key?(:default_logs_bucket_behavior)
2019
2104
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
2020
2105
  @dynamic_substitutions = args[:dynamic_substitutions] if args.key?(:dynamic_substitutions)
2106
+ @enable_structured_logging = args[:enable_structured_logging] if args.key?(:enable_structured_logging)
2021
2107
  @env = args[:env] if args.key?(:env)
2022
2108
  @log_streaming_option = args[:log_streaming_option] if args.key?(:log_streaming_option)
2023
2109
  @logging = args[:logging] if args.key?(:logging)
2024
2110
  @machine_type = args[:machine_type] if args.key?(:machine_type)
2025
2111
  @pool = args[:pool] if args.key?(:pool)
2112
+ @pubsub_topic = args[:pubsub_topic] if args.key?(:pubsub_topic)
2026
2113
  @requested_verify_option = args[:requested_verify_option] if args.key?(:requested_verify_option)
2027
2114
  @secret_env = args[:secret_env] if args.key?(:secret_env)
2028
2115
  @source_provenance_hash = args[:source_provenance_hash] if args.key?(:source_provenance_hash)
@@ -2312,6 +2399,106 @@ module Google
2312
2399
  end
2313
2400
  end
2314
2401
 
2402
+ # A dependency that the Cloud Build worker will fetch before executing user
2403
+ # steps.
2404
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency
2405
+ include Google::Apis::Core::Hashable
2406
+
2407
+ # If set to true disable all dependency fetching (ignoring the default source as
2408
+ # well).
2409
+ # Corresponds to the JSON property `empty`
2410
+ # @return [Boolean]
2411
+ attr_accessor :empty
2412
+ alias_method :empty?, :empty
2413
+
2414
+ # Represents a git repository as a build dependency.
2415
+ # Corresponds to the JSON property `gitSource`
2416
+ # @return [Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency]
2417
+ attr_accessor :git_source
2418
+
2419
+ def initialize(**args)
2420
+ update!(**args)
2421
+ end
2422
+
2423
+ # Update properties of this object
2424
+ def update!(**args)
2425
+ @empty = args[:empty] if args.key?(:empty)
2426
+ @git_source = args[:git_source] if args.key?(:git_source)
2427
+ end
2428
+ end
2429
+
2430
+ # Represents a git repository as a build dependency.
2431
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
2432
+ include Google::Apis::Core::Hashable
2433
+
2434
+ # Optional. How much history should be fetched for the build (default 1, -1 for
2435
+ # all history).
2436
+ # Corresponds to the JSON property `depth`
2437
+ # @return [Fixnum]
2438
+ attr_accessor :depth
2439
+
2440
+ # Required. Where should the files be placed on the worker.
2441
+ # Corresponds to the JSON property `destPath`
2442
+ # @return [String]
2443
+ attr_accessor :dest_path
2444
+
2445
+ # Optional. True if submodules should be fetched too (default false).
2446
+ # Corresponds to the JSON property `recurseSubmodules`
2447
+ # @return [Boolean]
2448
+ attr_accessor :recurse_submodules
2449
+ alias_method :recurse_submodules?, :recurse_submodules
2450
+
2451
+ # A repository for a git source.
2452
+ # Corresponds to the JSON property `repository`
2453
+ # @return [Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository]
2454
+ attr_accessor :repository
2455
+
2456
+ # Required. The revision that we will fetch the repo at.
2457
+ # Corresponds to the JSON property `revision`
2458
+ # @return [String]
2459
+ attr_accessor :revision
2460
+
2461
+ def initialize(**args)
2462
+ update!(**args)
2463
+ end
2464
+
2465
+ # Update properties of this object
2466
+ def update!(**args)
2467
+ @depth = args[:depth] if args.key?(:depth)
2468
+ @dest_path = args[:dest_path] if args.key?(:dest_path)
2469
+ @recurse_submodules = args[:recurse_submodules] if args.key?(:recurse_submodules)
2470
+ @repository = args[:repository] if args.key?(:repository)
2471
+ @revision = args[:revision] if args.key?(:revision)
2472
+ end
2473
+ end
2474
+
2475
+ # A repository for a git source.
2476
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository
2477
+ include Google::Apis::Core::Hashable
2478
+
2479
+ # The Developer Connect Git repository link or the url that matches a repository
2480
+ # link in the current project, formatted as `projects/*/locations/*/connections/*
2481
+ # /gitRepositoryLink/*`
2482
+ # Corresponds to the JSON property `developerConnect`
2483
+ # @return [String]
2484
+ attr_accessor :developer_connect
2485
+
2486
+ # Location of the Git repository.
2487
+ # Corresponds to the JSON property `url`
2488
+ # @return [String]
2489
+ attr_accessor :url
2490
+
2491
+ def initialize(**args)
2492
+ update!(**args)
2493
+ end
2494
+
2495
+ # Update properties of this object
2496
+ def update!(**args)
2497
+ @developer_connect = args[:developer_connect] if args.key?(:developer_connect)
2498
+ @url = args[:url] if args.key?(:url)
2499
+ end
2500
+ end
2501
+
2315
2502
  # This config defines the location of a source through Developer Connect.
2316
2503
  class ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig
2317
2504
  include Google::Apis::Core::Hashable
@@ -2602,6 +2789,12 @@ module Google
2602
2789
  # @return [Array<String>]
2603
2790
  attr_accessor :build_step_outputs
2604
2791
 
2792
+ # Optional. Go module artifacts uploaded to Artifact Registry at the end of the
2793
+ # build.
2794
+ # Corresponds to the JSON property `goModules`
2795
+ # @return [Array<Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule>]
2796
+ attr_accessor :go_modules
2797
+
2605
2798
  # Container images that were built as a part of the build.
2606
2799
  # Corresponds to the JSON property `images`
2607
2800
  # @return [Array<Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage>]
@@ -2638,6 +2831,7 @@ module Google
2638
2831
  @artifact_timing = args[:artifact_timing] if args.key?(:artifact_timing)
2639
2832
  @build_step_images = args[:build_step_images] if args.key?(:build_step_images)
2640
2833
  @build_step_outputs = args[:build_step_outputs] if args.key?(:build_step_outputs)
2834
+ @go_modules = args[:go_modules] if args.key?(:go_modules)
2641
2835
  @images = args[:images] if args.key?(:images)
2642
2836
  @maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
2643
2837
  @npm_packages = args[:npm_packages] if args.key?(:npm_packages)
@@ -2941,6 +3135,39 @@ module Google
2941
3135
  end
2942
3136
  end
2943
3137
 
3138
+ # A Go module artifact uploaded to Artifact Registry using the GoModule
3139
+ # directive.
3140
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
3141
+ include Google::Apis::Core::Hashable
3142
+
3143
+ # Container message for hashes of byte content of files, used in
3144
+ # SourceProvenance messages to verify integrity of source input to the build.
3145
+ # Corresponds to the JSON property `fileHashes`
3146
+ # @return [Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes]
3147
+ attr_accessor :file_hashes
3148
+
3149
+ # Start and end times for a build execution phase.
3150
+ # Corresponds to the JSON property `pushTiming`
3151
+ # @return [Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
3152
+ attr_accessor :push_timing
3153
+
3154
+ # URI of the uploaded artifact.
3155
+ # Corresponds to the JSON property `uri`
3156
+ # @return [String]
3157
+ attr_accessor :uri
3158
+
3159
+ def initialize(**args)
3160
+ update!(**args)
3161
+ end
3162
+
3163
+ # Update properties of this object
3164
+ def update!(**args)
3165
+ @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
3166
+ @push_timing = args[:push_timing] if args.key?(:push_timing)
3167
+ @uri = args[:uri] if args.key?(:uri)
3168
+ end
3169
+ end
3170
+
2944
3171
  # A Maven artifact uploaded using the MavenArtifact directive.
2945
3172
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
2946
3173
  include Google::Apis::Core::Hashable
@@ -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.55.0"
19
+ GEM_VERSION = "0.56.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.1"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240816"
25
+ REVISION = "20250207"
26
26
  end
27
27
  end
28
28
  end
@@ -220,6 +220,12 @@ module Google
220
220
  include Google::Apis::Core::JsonObjectSupport
221
221
  end
222
222
 
223
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
224
+ class Representation < Google::Apis::Core::JsonRepresentation; end
225
+
226
+ include Google::Apis::Core::JsonObjectSupport
227
+ end
228
+
223
229
  class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact
224
230
  class Representation < Google::Apis::Core::JsonRepresentation; end
225
231
 
@@ -292,6 +298,24 @@ module Google
292
298
  include Google::Apis::Core::JsonObjectSupport
293
299
  end
294
300
 
301
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency
302
+ class Representation < Google::Apis::Core::JsonRepresentation; end
303
+
304
+ include Google::Apis::Core::JsonObjectSupport
305
+ end
306
+
307
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
308
+ class Representation < Google::Apis::Core::JsonRepresentation; end
309
+
310
+ include Google::Apis::Core::JsonObjectSupport
311
+ end
312
+
313
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository
314
+ class Representation < Google::Apis::Core::JsonRepresentation; end
315
+
316
+ include Google::Apis::Core::JsonObjectSupport
317
+ end
318
+
295
319
  class ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig
296
320
  class Representation < Google::Apis::Core::JsonRepresentation; end
297
321
 
@@ -394,6 +418,12 @@ module Google
394
418
  include Google::Apis::Core::JsonObjectSupport
395
419
  end
396
420
 
421
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
422
+ class Representation < Google::Apis::Core::JsonRepresentation; end
423
+
424
+ include Google::Apis::Core::JsonObjectSupport
425
+ end
426
+
397
427
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
398
428
  class Representation < Google::Apis::Core::JsonRepresentation; end
399
429
 
@@ -1365,6 +1395,8 @@ module Google
1365
1395
  class ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts
1366
1396
  # @private
1367
1397
  class Representation < Google::Apis::Core::JsonRepresentation
1398
+ collection :go_modules, as: 'goModules', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule::Representation
1399
+
1368
1400
  collection :images, as: 'images'
1369
1401
  collection :maven_artifacts, as: 'mavenArtifacts', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact::Representation
1370
1402
 
@@ -1387,6 +1419,18 @@ module Google
1387
1419
  end
1388
1420
  end
1389
1421
 
1422
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
1423
+ # @private
1424
+ class Representation < Google::Apis::Core::JsonRepresentation
1425
+ property :module_path, as: 'modulePath'
1426
+ property :module_version, as: 'moduleVersion'
1427
+ property :repository_location, as: 'repositoryLocation'
1428
+ property :repository_name, as: 'repositoryName'
1429
+ property :repository_project_id, as: 'repositoryProjectId'
1430
+ property :source_path, as: 'sourcePath'
1431
+ end
1432
+ end
1433
+
1390
1434
  class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact
1391
1435
  # @private
1392
1436
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1425,6 +1469,8 @@ module Google
1425
1469
 
1426
1470
  property :build_trigger_id, as: 'buildTriggerId'
1427
1471
  property :create_time, as: 'createTime'
1472
+ collection :dependencies, as: 'dependencies', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency::Representation
1473
+
1428
1474
  property :failure_info, as: 'failureInfo', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo::Representation
1429
1475
 
1430
1476
  property :finish_time, as: 'finishTime'
@@ -1489,12 +1535,14 @@ module Google
1489
1535
  property :default_logs_bucket_behavior, as: 'defaultLogsBucketBehavior'
1490
1536
  property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
1491
1537
  property :dynamic_substitutions, as: 'dynamicSubstitutions'
1538
+ property :enable_structured_logging, as: 'enableStructuredLogging'
1492
1539
  collection :env, as: 'env'
1493
1540
  property :log_streaming_option, as: 'logStreamingOption'
1494
1541
  property :logging, as: 'logging'
1495
1542
  property :machine_type, as: 'machineType'
1496
1543
  property :pool, as: 'pool', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption::Representation
1497
1544
 
1545
+ property :pubsub_topic, as: 'pubsubTopic'
1498
1546
  property :requested_verify_option, as: 'requestedVerifyOption'
1499
1547
  collection :secret_env, as: 'secretEnv'
1500
1548
  collection :source_provenance_hash, as: 'sourceProvenanceHash'
@@ -1566,6 +1614,35 @@ module Google
1566
1614
  end
1567
1615
  end
1568
1616
 
1617
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency
1618
+ # @private
1619
+ class Representation < Google::Apis::Core::JsonRepresentation
1620
+ property :empty, as: 'empty'
1621
+ property :git_source, as: 'gitSource', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency::Representation
1622
+
1623
+ end
1624
+ end
1625
+
1626
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
1627
+ # @private
1628
+ class Representation < Google::Apis::Core::JsonRepresentation
1629
+ property :depth, :numeric_string => true, as: 'depth'
1630
+ property :dest_path, as: 'destPath'
1631
+ property :recurse_submodules, as: 'recurseSubmodules'
1632
+ property :repository, as: 'repository', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository::Representation
1633
+
1634
+ property :revision, as: 'revision'
1635
+ end
1636
+ end
1637
+
1638
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository
1639
+ # @private
1640
+ class Representation < Google::Apis::Core::JsonRepresentation
1641
+ property :developer_connect, as: 'developerConnect'
1642
+ property :url, as: 'url'
1643
+ end
1644
+ end
1645
+
1569
1646
  class ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig
1570
1647
  # @private
1571
1648
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1645,6 +1722,8 @@ module Google
1645
1722
 
1646
1723
  collection :build_step_images, as: 'buildStepImages'
1647
1724
  collection :build_step_outputs, as: 'buildStepOutputs'
1725
+ collection :go_modules, as: 'goModules', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule::Representation
1726
+
1648
1727
  collection :images, as: 'images', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage::Representation
1649
1728
 
1650
1729
  collection :maven_artifacts, as: 'mavenArtifacts', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact::Representation
@@ -1746,6 +1825,17 @@ module Google
1746
1825
  end
1747
1826
  end
1748
1827
 
1828
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
1829
+ # @private
1830
+ class Representation < Google::Apis::Core::JsonRepresentation
1831
+ property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
1832
+
1833
+ property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
1834
+
1835
+ property :uri, as: 'uri'
1836
+ end
1837
+ end
1838
+
1749
1839
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
1750
1840
  # @private
1751
1841
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.55.0
4
+ version: 0.56.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-08-25 00:00:00.000000000 Z
10
+ date: 2025-03-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-apis-core
@@ -58,9 +57,8 @@ licenses:
58
57
  metadata:
59
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.55.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.56.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1
63
- post_install_message:
64
62
  rdoc_options: []
65
63
  require_paths:
66
64
  - lib
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.6
79
- signing_key:
76
+ rubygems_version: 3.6.5
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Container Analysis API V1
82
79
  test_files: []