google-apis-containeranalysis_v1alpha1 0.66.0 → 0.67.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: 8073b807ef7ac5fb3ce2453c4f7537dc2732c560b80b8f2a7b6c043aaf6d622a
4
- data.tar.gz: 847cb46e046fb0ed09c547eaf537888a2437562bf5830c6f007745a18d67d05b
3
+ metadata.gz: 023a8a7ec4b4c65af6a1c3f282b16f4e47056a73939844b2e0793faf1972f31e
4
+ data.tar.gz: c231861a2d10cc08210931ae6d7de4f62c461cc52007fd0492cc2d197897313c
5
5
  SHA512:
6
- metadata.gz: 601df4153ffbf49b0ede75b3d5943c4f1ca448ca83be7b0c6e25dbe662143d5d9f89b6339512f3905464a912392661b9dc09a2024a39b046d86b5c14475b9bae
7
- data.tar.gz: 2ea1a7302700e92a92629cce1d7d9da09cc0827819b701de64d35bfc73f4b7b273178eda457982a1bde1806b686685f13c7568e49c27be3edb4fd09fa443c904
6
+ metadata.gz: 307c9ca7b1f4aa24f70dab3ff6a7df1ad2004c445049f5e94f1f02460f706e8e08ad50ce100a79d7c05950e2e8255b4fa1841fd99db73ab5a713ac0f676834cc
7
+ data.tar.gz: c86c2cb8ee5cf7859f548abdf6510b231008c2d3269fe62355ecb7c97c22c9bf29322386db2addc4d29629c2986db5755a190635a57ac3c2e8332ea767b5bbec
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-containeranalysis_v1alpha1
2
2
 
3
+ ### v0.67.0 (2025-02-26)
4
+
5
+ * Regenerated from discovery document revision 20250207
6
+ * Regenerated using generator version 0.16.0
7
+
3
8
  ### v0.66.0 (2024-07-25)
4
9
 
5
10
  * Regenerated from discovery document revision 20240704
@@ -1269,6 +1269,13 @@ module Google
1269
1269
  class ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts
1270
1270
  include Google::Apis::Core::Hashable
1271
1271
 
1272
+ # Optional. A list of Go modules to be uploaded to Artifact Registry upon
1273
+ # successful completion of all build steps. If any objects fail to be pushed,
1274
+ # the build is marked FAILURE.
1275
+ # Corresponds to the JSON property `goModules`
1276
+ # @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule>]
1277
+ attr_accessor :go_modules
1278
+
1272
1279
  # A list of images to be pushed upon the successful completion of all build
1273
1280
  # steps. The images will be pushed using the builder service account's
1274
1281
  # credentials. The digests of the pushed images will be stored in the Build
@@ -1316,6 +1323,7 @@ module Google
1316
1323
 
1317
1324
  # Update properties of this object
1318
1325
  def update!(**args)
1326
+ @go_modules = args[:go_modules] if args.key?(:go_modules)
1319
1327
  @images = args[:images] if args.key?(:images)
1320
1328
  @maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
1321
1329
  @npm_packages = args[:npm_packages] if args.key?(:npm_packages)
@@ -1359,6 +1367,64 @@ module Google
1359
1367
  end
1360
1368
  end
1361
1369
 
1370
+ # Go module to upload to Artifact Registry upon successful completion of all
1371
+ # build steps. A module refers to all dependencies in a go.mod file.
1372
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
1373
+ include Google::Apis::Core::Hashable
1374
+
1375
+ # Optional. The Go module's "module path". e.g. example.com/foo/v2
1376
+ # Corresponds to the JSON property `modulePath`
1377
+ # @return [String]
1378
+ attr_accessor :module_path
1379
+
1380
+ # Optional. The Go module's semantic version in the form vX.Y.Z. e.g. v0.1.1 Pre-
1381
+ # release identifiers can also be added by appending a dash and dot separated
1382
+ # ASCII alphanumeric characters and hyphens. e.g. v0.2.3-alpha.x.12m.5
1383
+ # Corresponds to the JSON property `moduleVersion`
1384
+ # @return [String]
1385
+ attr_accessor :module_version
1386
+
1387
+ # Optional. Location of the Artifact Registry repository. i.e. us-east1 Defaults
1388
+ # to the build’s location.
1389
+ # Corresponds to the JSON property `repositoryLocation`
1390
+ # @return [String]
1391
+ attr_accessor :repository_location
1392
+
1393
+ # Optional. Artifact Registry repository name. Specified Go modules will be
1394
+ # zipped and uploaded to Artifact Registry with this location as a prefix. e.g.
1395
+ # my-go-repo
1396
+ # Corresponds to the JSON property `repositoryName`
1397
+ # @return [String]
1398
+ attr_accessor :repository_name
1399
+
1400
+ # Optional. Project ID of the Artifact Registry repository. Defaults to the
1401
+ # build project.
1402
+ # Corresponds to the JSON property `repositoryProjectId`
1403
+ # @return [String]
1404
+ attr_accessor :repository_project_id
1405
+
1406
+ # Optional. Source path of the go.mod file in the build's workspace. If not
1407
+ # specified, this will default to the current directory. e.g. ~/code/go/
1408
+ # mypackage
1409
+ # Corresponds to the JSON property `sourcePath`
1410
+ # @return [String]
1411
+ attr_accessor :source_path
1412
+
1413
+ def initialize(**args)
1414
+ update!(**args)
1415
+ end
1416
+
1417
+ # Update properties of this object
1418
+ def update!(**args)
1419
+ @module_path = args[:module_path] if args.key?(:module_path)
1420
+ @module_version = args[:module_version] if args.key?(:module_version)
1421
+ @repository_location = args[:repository_location] if args.key?(:repository_location)
1422
+ @repository_name = args[:repository_name] if args.key?(:repository_name)
1423
+ @repository_project_id = args[:repository_project_id] if args.key?(:repository_project_id)
1424
+ @source_path = args[:source_path] if args.key?(:source_path)
1425
+ end
1426
+ end
1427
+
1362
1428
  # A Maven artifact to upload to Artifact Registry upon successful completion of
1363
1429
  # all build steps.
1364
1430
  class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact
@@ -1508,6 +1574,12 @@ module Google
1508
1574
  # @return [String]
1509
1575
  attr_accessor :create_time
1510
1576
 
1577
+ # Optional. Dependencies that the Cloud Build worker will fetch before executing
1578
+ # user steps.
1579
+ # Corresponds to the JSON property `dependencies`
1580
+ # @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency>]
1581
+ attr_accessor :dependencies
1582
+
1511
1583
  # A fatal problem encountered during the execution of the build.
1512
1584
  # Corresponds to the JSON property `failureInfo`
1513
1585
  # @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo]
@@ -1669,6 +1741,7 @@ module Google
1669
1741
  @available_secrets = args[:available_secrets] if args.key?(:available_secrets)
1670
1742
  @build_trigger_id = args[:build_trigger_id] if args.key?(:build_trigger_id)
1671
1743
  @create_time = args[:create_time] if args.key?(:create_time)
1744
+ @dependencies = args[:dependencies] if args.key?(:dependencies)
1672
1745
  @failure_info = args[:failure_info] if args.key?(:failure_info)
1673
1746
  @finish_time = args[:finish_time] if args.key?(:finish_time)
1674
1747
  @git_config = args[:git_config] if args.key?(:git_config)
@@ -1788,6 +1861,13 @@ module Google
1788
1861
  attr_accessor :dynamic_substitutions
1789
1862
  alias_method :dynamic_substitutions?, :dynamic_substitutions
1790
1863
 
1864
+ # Optional. Option to specify whether structured logging is enabled. If true,
1865
+ # JSON-formatted logs are parsed as structured logs.
1866
+ # Corresponds to the JSON property `enableStructuredLogging`
1867
+ # @return [Boolean]
1868
+ attr_accessor :enable_structured_logging
1869
+ alias_method :enable_structured_logging?, :enable_structured_logging
1870
+
1791
1871
  # A list of global environment variable definitions that will exist for all
1792
1872
  # build steps in this build. If a variable is defined in both globally and in a
1793
1873
  # build step, the variable will use the build step value. The elements are of
@@ -1820,6 +1900,11 @@ module Google
1820
1900
  # @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption]
1821
1901
  attr_accessor :pool
1822
1902
 
1903
+ # Optional. Option to specify the Pub/Sub topic to receive build status updates.
1904
+ # Corresponds to the JSON property `pubsubTopic`
1905
+ # @return [String]
1906
+ attr_accessor :pubsub_topic
1907
+
1823
1908
  # Requested verifiability options.
1824
1909
  # Corresponds to the JSON property `requestedVerifyOption`
1825
1910
  # @return [String]
@@ -1869,11 +1954,13 @@ module Google
1869
1954
  @default_logs_bucket_behavior = args[:default_logs_bucket_behavior] if args.key?(:default_logs_bucket_behavior)
1870
1955
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
1871
1956
  @dynamic_substitutions = args[:dynamic_substitutions] if args.key?(:dynamic_substitutions)
1957
+ @enable_structured_logging = args[:enable_structured_logging] if args.key?(:enable_structured_logging)
1872
1958
  @env = args[:env] if args.key?(:env)
1873
1959
  @log_streaming_option = args[:log_streaming_option] if args.key?(:log_streaming_option)
1874
1960
  @logging = args[:logging] if args.key?(:logging)
1875
1961
  @machine_type = args[:machine_type] if args.key?(:machine_type)
1876
1962
  @pool = args[:pool] if args.key?(:pool)
1963
+ @pubsub_topic = args[:pubsub_topic] if args.key?(:pubsub_topic)
1877
1964
  @requested_verify_option = args[:requested_verify_option] if args.key?(:requested_verify_option)
1878
1965
  @secret_env = args[:secret_env] if args.key?(:secret_env)
1879
1966
  @source_provenance_hash = args[:source_provenance_hash] if args.key?(:source_provenance_hash)
@@ -2163,6 +2250,106 @@ module Google
2163
2250
  end
2164
2251
  end
2165
2252
 
2253
+ # A dependency that the Cloud Build worker will fetch before executing user
2254
+ # steps.
2255
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency
2256
+ include Google::Apis::Core::Hashable
2257
+
2258
+ # If set to true disable all dependency fetching (ignoring the default source as
2259
+ # well).
2260
+ # Corresponds to the JSON property `empty`
2261
+ # @return [Boolean]
2262
+ attr_accessor :empty
2263
+ alias_method :empty?, :empty
2264
+
2265
+ # Represents a git repository as a build dependency.
2266
+ # Corresponds to the JSON property `gitSource`
2267
+ # @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency]
2268
+ attr_accessor :git_source
2269
+
2270
+ def initialize(**args)
2271
+ update!(**args)
2272
+ end
2273
+
2274
+ # Update properties of this object
2275
+ def update!(**args)
2276
+ @empty = args[:empty] if args.key?(:empty)
2277
+ @git_source = args[:git_source] if args.key?(:git_source)
2278
+ end
2279
+ end
2280
+
2281
+ # Represents a git repository as a build dependency.
2282
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
2283
+ include Google::Apis::Core::Hashable
2284
+
2285
+ # Optional. How much history should be fetched for the build (default 1, -1 for
2286
+ # all history).
2287
+ # Corresponds to the JSON property `depth`
2288
+ # @return [Fixnum]
2289
+ attr_accessor :depth
2290
+
2291
+ # Required. Where should the files be placed on the worker.
2292
+ # Corresponds to the JSON property `destPath`
2293
+ # @return [String]
2294
+ attr_accessor :dest_path
2295
+
2296
+ # Optional. True if submodules should be fetched too (default false).
2297
+ # Corresponds to the JSON property `recurseSubmodules`
2298
+ # @return [Boolean]
2299
+ attr_accessor :recurse_submodules
2300
+ alias_method :recurse_submodules?, :recurse_submodules
2301
+
2302
+ # A repository for a git source.
2303
+ # Corresponds to the JSON property `repository`
2304
+ # @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository]
2305
+ attr_accessor :repository
2306
+
2307
+ # Required. The revision that we will fetch the repo at.
2308
+ # Corresponds to the JSON property `revision`
2309
+ # @return [String]
2310
+ attr_accessor :revision
2311
+
2312
+ def initialize(**args)
2313
+ update!(**args)
2314
+ end
2315
+
2316
+ # Update properties of this object
2317
+ def update!(**args)
2318
+ @depth = args[:depth] if args.key?(:depth)
2319
+ @dest_path = args[:dest_path] if args.key?(:dest_path)
2320
+ @recurse_submodules = args[:recurse_submodules] if args.key?(:recurse_submodules)
2321
+ @repository = args[:repository] if args.key?(:repository)
2322
+ @revision = args[:revision] if args.key?(:revision)
2323
+ end
2324
+ end
2325
+
2326
+ # A repository for a git source.
2327
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository
2328
+ include Google::Apis::Core::Hashable
2329
+
2330
+ # The Developer Connect Git repository link or the url that matches a repository
2331
+ # link in the current project, formatted as `projects/*/locations/*/connections/*
2332
+ # /gitRepositoryLink/*`
2333
+ # Corresponds to the JSON property `developerConnect`
2334
+ # @return [String]
2335
+ attr_accessor :developer_connect
2336
+
2337
+ # Location of the Git repository.
2338
+ # Corresponds to the JSON property `url`
2339
+ # @return [String]
2340
+ attr_accessor :url
2341
+
2342
+ def initialize(**args)
2343
+ update!(**args)
2344
+ end
2345
+
2346
+ # Update properties of this object
2347
+ def update!(**args)
2348
+ @developer_connect = args[:developer_connect] if args.key?(:developer_connect)
2349
+ @url = args[:url] if args.key?(:url)
2350
+ end
2351
+ end
2352
+
2166
2353
  # This config defines the location of a source through Developer Connect.
2167
2354
  class ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig
2168
2355
  include Google::Apis::Core::Hashable
@@ -2453,6 +2640,12 @@ module Google
2453
2640
  # @return [Array<String>]
2454
2641
  attr_accessor :build_step_outputs
2455
2642
 
2643
+ # Optional. Go module artifacts uploaded to Artifact Registry at the end of the
2644
+ # build.
2645
+ # Corresponds to the JSON property `goModules`
2646
+ # @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule>]
2647
+ attr_accessor :go_modules
2648
+
2456
2649
  # Container images that were built as a part of the build.
2457
2650
  # Corresponds to the JSON property `images`
2458
2651
  # @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage>]
@@ -2489,6 +2682,7 @@ module Google
2489
2682
  @artifact_timing = args[:artifact_timing] if args.key?(:artifact_timing)
2490
2683
  @build_step_images = args[:build_step_images] if args.key?(:build_step_images)
2491
2684
  @build_step_outputs = args[:build_step_outputs] if args.key?(:build_step_outputs)
2685
+ @go_modules = args[:go_modules] if args.key?(:go_modules)
2492
2686
  @images = args[:images] if args.key?(:images)
2493
2687
  @maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
2494
2688
  @npm_packages = args[:npm_packages] if args.key?(:npm_packages)
@@ -2792,6 +2986,39 @@ module Google
2792
2986
  end
2793
2987
  end
2794
2988
 
2989
+ # A Go module artifact uploaded to Artifact Registry using the GoModule
2990
+ # directive.
2991
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
2992
+ include Google::Apis::Core::Hashable
2993
+
2994
+ # Container message for hashes of byte content of files, used in
2995
+ # SourceProvenance messages to verify integrity of source input to the build.
2996
+ # Corresponds to the JSON property `fileHashes`
2997
+ # @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes]
2998
+ attr_accessor :file_hashes
2999
+
3000
+ # Start and end times for a build execution phase.
3001
+ # Corresponds to the JSON property `pushTiming`
3002
+ # @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
3003
+ attr_accessor :push_timing
3004
+
3005
+ # URI of the uploaded artifact.
3006
+ # Corresponds to the JSON property `uri`
3007
+ # @return [String]
3008
+ attr_accessor :uri
3009
+
3010
+ def initialize(**args)
3011
+ update!(**args)
3012
+ end
3013
+
3014
+ # Update properties of this object
3015
+ def update!(**args)
3016
+ @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
3017
+ @push_timing = args[:push_timing] if args.key?(:push_timing)
3018
+ @uri = args[:uri] if args.key?(:uri)
3019
+ end
3020
+ end
3021
+
2795
3022
  # A Maven artifact uploaded using the MavenArtifact directive.
2796
3023
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
2797
3024
  include Google::Apis::Core::Hashable
@@ -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.66.0"
19
+ GEM_VERSION = "0.67.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240704"
25
+ REVISION = "20250207"
26
26
  end
27
27
  end
28
28
  end
@@ -184,6 +184,12 @@ module Google
184
184
  include Google::Apis::Core::JsonObjectSupport
185
185
  end
186
186
 
187
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
187
193
  class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact
188
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
189
195
 
@@ -256,6 +262,24 @@ module Google
256
262
  include Google::Apis::Core::JsonObjectSupport
257
263
  end
258
264
 
265
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency
266
+ class Representation < Google::Apis::Core::JsonRepresentation; end
267
+
268
+ include Google::Apis::Core::JsonObjectSupport
269
+ end
270
+
271
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
272
+ class Representation < Google::Apis::Core::JsonRepresentation; end
273
+
274
+ include Google::Apis::Core::JsonObjectSupport
275
+ end
276
+
277
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
259
283
  class ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig
260
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
285
 
@@ -358,6 +382,12 @@ module Google
358
382
  include Google::Apis::Core::JsonObjectSupport
359
383
  end
360
384
 
385
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
386
+ class Representation < Google::Apis::Core::JsonRepresentation; end
387
+
388
+ include Google::Apis::Core::JsonObjectSupport
389
+ end
390
+
361
391
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
362
392
  class Representation < Google::Apis::Core::JsonRepresentation; end
363
393
 
@@ -1357,6 +1387,8 @@ module Google
1357
1387
  class ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts
1358
1388
  # @private
1359
1389
  class Representation < Google::Apis::Core::JsonRepresentation
1390
+ collection :go_modules, as: 'goModules', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule::Representation
1391
+
1360
1392
  collection :images, as: 'images'
1361
1393
  collection :maven_artifacts, as: 'mavenArtifacts', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact::Representation
1362
1394
 
@@ -1379,6 +1411,18 @@ module Google
1379
1411
  end
1380
1412
  end
1381
1413
 
1414
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
1415
+ # @private
1416
+ class Representation < Google::Apis::Core::JsonRepresentation
1417
+ property :module_path, as: 'modulePath'
1418
+ property :module_version, as: 'moduleVersion'
1419
+ property :repository_location, as: 'repositoryLocation'
1420
+ property :repository_name, as: 'repositoryName'
1421
+ property :repository_project_id, as: 'repositoryProjectId'
1422
+ property :source_path, as: 'sourcePath'
1423
+ end
1424
+ end
1425
+
1382
1426
  class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact
1383
1427
  # @private
1384
1428
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1417,6 +1461,8 @@ module Google
1417
1461
 
1418
1462
  property :build_trigger_id, as: 'buildTriggerId'
1419
1463
  property :create_time, as: 'createTime'
1464
+ collection :dependencies, as: 'dependencies', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency::Representation
1465
+
1420
1466
  property :failure_info, as: 'failureInfo', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo::Representation
1421
1467
 
1422
1468
  property :finish_time, as: 'finishTime'
@@ -1481,12 +1527,14 @@ module Google
1481
1527
  property :default_logs_bucket_behavior, as: 'defaultLogsBucketBehavior'
1482
1528
  property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
1483
1529
  property :dynamic_substitutions, as: 'dynamicSubstitutions'
1530
+ property :enable_structured_logging, as: 'enableStructuredLogging'
1484
1531
  collection :env, as: 'env'
1485
1532
  property :log_streaming_option, as: 'logStreamingOption'
1486
1533
  property :logging, as: 'logging'
1487
1534
  property :machine_type, as: 'machineType'
1488
1535
  property :pool, as: 'pool', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption::Representation
1489
1536
 
1537
+ property :pubsub_topic, as: 'pubsubTopic'
1490
1538
  property :requested_verify_option, as: 'requestedVerifyOption'
1491
1539
  collection :secret_env, as: 'secretEnv'
1492
1540
  collection :source_provenance_hash, as: 'sourceProvenanceHash'
@@ -1558,6 +1606,35 @@ module Google
1558
1606
  end
1559
1607
  end
1560
1608
 
1609
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency
1610
+ # @private
1611
+ class Representation < Google::Apis::Core::JsonRepresentation
1612
+ property :empty, as: 'empty'
1613
+ property :git_source, as: 'gitSource', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency::Representation
1614
+
1615
+ end
1616
+ end
1617
+
1618
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
1619
+ # @private
1620
+ class Representation < Google::Apis::Core::JsonRepresentation
1621
+ property :depth, :numeric_string => true, as: 'depth'
1622
+ property :dest_path, as: 'destPath'
1623
+ property :recurse_submodules, as: 'recurseSubmodules'
1624
+ property :repository, as: 'repository', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository::Representation
1625
+
1626
+ property :revision, as: 'revision'
1627
+ end
1628
+ end
1629
+
1630
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository
1631
+ # @private
1632
+ class Representation < Google::Apis::Core::JsonRepresentation
1633
+ property :developer_connect, as: 'developerConnect'
1634
+ property :url, as: 'url'
1635
+ end
1636
+ end
1637
+
1561
1638
  class ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig
1562
1639
  # @private
1563
1640
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1637,6 +1714,8 @@ module Google
1637
1714
 
1638
1715
  collection :build_step_images, as: 'buildStepImages'
1639
1716
  collection :build_step_outputs, as: 'buildStepOutputs'
1717
+ collection :go_modules, as: 'goModules', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule::Representation
1718
+
1640
1719
  collection :images, as: 'images', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage::Representation
1641
1720
 
1642
1721
  collection :maven_artifacts, as: 'mavenArtifacts', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact::Representation
@@ -1738,6 +1817,17 @@ module Google
1738
1817
  end
1739
1818
  end
1740
1819
 
1820
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
1821
+ # @private
1822
+ class Representation < Google::Apis::Core::JsonRepresentation
1823
+ property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
1824
+
1825
+ property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
1826
+
1827
+ property :uri, as: 'uri'
1828
+ end
1829
+ end
1830
+
1741
1831
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
1742
1832
  # @private
1743
1833
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.66.0
4
+ version: 0.67.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-07-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_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.66.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.67.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1alpha1
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 V1alpha1
82
79
  test_files: []