google-apis-containeranalysis_v1alpha1 0.65.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: b74fe1f1008502dbbdaa0a22ae6bc53a4344516aa1cce56831c0bb35fc29d192
4
- data.tar.gz: ff057034a3dba0731c6948c7f5d4a07f9eb952fc880a34b774b395373f3056f8
3
+ metadata.gz: 023a8a7ec4b4c65af6a1c3f282b16f4e47056a73939844b2e0793faf1972f31e
4
+ data.tar.gz: c231861a2d10cc08210931ae6d7de4f62c461cc52007fd0492cc2d197897313c
5
5
  SHA512:
6
- metadata.gz: ddb2ae3fc6da23e5c6670c896740cbecd1a9c75b8c89155d72dcf88435afb60b4180f8151b65cbcc4c84c0f82c36d23be19dda9d84e0223d6b218938ebbf45cb
7
- data.tar.gz: a5a6978e335e03305f0c6c73f46d17202d7938891b7f1ecec8e4166bb3a3a9da4f1fdbcb7a9e9ccf36443f1577456bb16c941cbf8c7df317cc7211d996d49a86
6
+ metadata.gz: 307c9ca7b1f4aa24f70dab3ff6a7df1ad2004c445049f5e94f1f02460f706e8e08ad50ce100a79d7c05950e2e8255b4fa1841fd99db73ab5a713ac0f676834cc
7
+ data.tar.gz: c86c2cb8ee5cf7859f548abdf6510b231008c2d3269fe62355ecb7c97c22c9bf29322386db2addc4d29629c2986db5755a190635a57ac3c2e8332ea767b5bbec
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
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
+
8
+ ### v0.66.0 (2024-07-25)
9
+
10
+ * Regenerated from discovery document revision 20240704
11
+
3
12
  ### v0.65.0 (2024-06-27)
4
13
 
5
14
  * Regenerated from discovery document revision 20240625
@@ -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
@@ -2216,40 +2403,6 @@ module Google
2216
2403
  end
2217
2404
  end
2218
2405
 
2219
- # Represents a storage location in Cloud Storage
2220
- class ContaineranalysisGoogleDevtoolsCloudbuildV1GcsLocation
2221
- include Google::Apis::Core::Hashable
2222
-
2223
- # Cloud Storage bucket. See https://cloud.google.com/storage/docs/naming#
2224
- # requirements
2225
- # Corresponds to the JSON property `bucket`
2226
- # @return [String]
2227
- attr_accessor :bucket
2228
-
2229
- # Cloud Storage generation for the object. If the generation is omitted, the
2230
- # latest generation will be used.
2231
- # Corresponds to the JSON property `generation`
2232
- # @return [Fixnum]
2233
- attr_accessor :generation
2234
-
2235
- # Cloud Storage object. See https://cloud.google.com/storage/docs/naming#
2236
- # objectnames
2237
- # Corresponds to the JSON property `object`
2238
- # @return [String]
2239
- attr_accessor :object
2240
-
2241
- def initialize(**args)
2242
- update!(**args)
2243
- end
2244
-
2245
- # Update properties of this object
2246
- def update!(**args)
2247
- @bucket = args[:bucket] if args.key?(:bucket)
2248
- @generation = args[:generation] if args.key?(:generation)
2249
- @object = args[:object] if args.key?(:object)
2250
- end
2251
- end
2252
-
2253
2406
  # GitConfig is a configuration for git operations.
2254
2407
  class ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfig
2255
2408
  include Google::Apis::Core::Hashable
@@ -2273,17 +2426,14 @@ module Google
2273
2426
  class ContaineranalysisGoogleDevtoolsCloudbuildV1GitConfigHttpConfig
2274
2427
  include Google::Apis::Core::Hashable
2275
2428
 
2276
- # SecretVersion resource of the HTTP proxy URL. The proxy URL should be in
2277
- # format protocol://@]proxyhost[:port].
2429
+ # SecretVersion resource of the HTTP proxy URL. The Service Account used in the
2430
+ # build (either the default Service Account or user-specified Service Account)
2431
+ # should have `secretmanager.versions.access` permissions on this secret. The
2432
+ # proxy URL should be in format `protocol://@]proxyhost[:port]`.
2278
2433
  # Corresponds to the JSON property `proxySecretVersionName`
2279
2434
  # @return [String]
2280
2435
  attr_accessor :proxy_secret_version_name
2281
2436
 
2282
- # Represents a storage location in Cloud Storage
2283
- # Corresponds to the JSON property `proxySslCaInfo`
2284
- # @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GcsLocation]
2285
- attr_accessor :proxy_ssl_ca_info
2286
-
2287
2437
  def initialize(**args)
2288
2438
  update!(**args)
2289
2439
  end
@@ -2291,7 +2441,6 @@ module Google
2291
2441
  # Update properties of this object
2292
2442
  def update!(**args)
2293
2443
  @proxy_secret_version_name = args[:proxy_secret_version_name] if args.key?(:proxy_secret_version_name)
2294
- @proxy_ssl_ca_info = args[:proxy_ssl_ca_info] if args.key?(:proxy_ssl_ca_info)
2295
2444
  end
2296
2445
  end
2297
2446
 
@@ -2491,6 +2640,12 @@ module Google
2491
2640
  # @return [Array<String>]
2492
2641
  attr_accessor :build_step_outputs
2493
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
+
2494
2649
  # Container images that were built as a part of the build.
2495
2650
  # Corresponds to the JSON property `images`
2496
2651
  # @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage>]
@@ -2527,6 +2682,7 @@ module Google
2527
2682
  @artifact_timing = args[:artifact_timing] if args.key?(:artifact_timing)
2528
2683
  @build_step_images = args[:build_step_images] if args.key?(:build_step_images)
2529
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)
2530
2686
  @images = args[:images] if args.key?(:images)
2531
2687
  @maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
2532
2688
  @npm_packages = args[:npm_packages] if args.key?(:npm_packages)
@@ -2830,6 +2986,39 @@ module Google
2830
2986
  end
2831
2987
  end
2832
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
+
2833
3022
  # A Maven artifact uploaded using the MavenArtifact directive.
2834
3023
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
2835
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.65.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 = "20240625"
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,19 +262,31 @@ module Google
256
262
  include Google::Apis::Core::JsonObjectSupport
257
263
  end
258
264
 
259
- class ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig
265
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency
260
266
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
267
 
262
268
  include Google::Apis::Core::JsonObjectSupport
263
269
  end
264
270
 
265
- class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
271
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
272
+ class Representation < Google::Apis::Core::JsonRepresentation; end
273
+
274
+ include Google::Apis::Core::JsonObjectSupport
275
+ end
276
+
277
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository
266
278
  class Representation < Google::Apis::Core::JsonRepresentation; end
267
279
 
268
280
  include Google::Apis::Core::JsonObjectSupport
269
281
  end
270
282
 
271
- class ContaineranalysisGoogleDevtoolsCloudbuildV1GcsLocation
283
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
289
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
272
290
  class Representation < Google::Apis::Core::JsonRepresentation; end
273
291
 
274
292
  include Google::Apis::Core::JsonObjectSupport
@@ -364,6 +382,12 @@ module Google
364
382
  include Google::Apis::Core::JsonObjectSupport
365
383
  end
366
384
 
385
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
386
+ class Representation < Google::Apis::Core::JsonRepresentation; end
387
+
388
+ include Google::Apis::Core::JsonObjectSupport
389
+ end
390
+
367
391
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
368
392
  class Representation < Google::Apis::Core::JsonRepresentation; end
369
393
 
@@ -1363,6 +1387,8 @@ module Google
1363
1387
  class ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts
1364
1388
  # @private
1365
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
+
1366
1392
  collection :images, as: 'images'
1367
1393
  collection :maven_artifacts, as: 'mavenArtifacts', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact::Representation
1368
1394
 
@@ -1385,6 +1411,18 @@ module Google
1385
1411
  end
1386
1412
  end
1387
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
+
1388
1426
  class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact
1389
1427
  # @private
1390
1428
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1423,6 +1461,8 @@ module Google
1423
1461
 
1424
1462
  property :build_trigger_id, as: 'buildTriggerId'
1425
1463
  property :create_time, as: 'createTime'
1464
+ collection :dependencies, as: 'dependencies', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency::Representation
1465
+
1426
1466
  property :failure_info, as: 'failureInfo', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo::Representation
1427
1467
 
1428
1468
  property :finish_time, as: 'finishTime'
@@ -1487,12 +1527,14 @@ module Google
1487
1527
  property :default_logs_bucket_behavior, as: 'defaultLogsBucketBehavior'
1488
1528
  property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
1489
1529
  property :dynamic_substitutions, as: 'dynamicSubstitutions'
1530
+ property :enable_structured_logging, as: 'enableStructuredLogging'
1490
1531
  collection :env, as: 'env'
1491
1532
  property :log_streaming_option, as: 'logStreamingOption'
1492
1533
  property :logging, as: 'logging'
1493
1534
  property :machine_type, as: 'machineType'
1494
1535
  property :pool, as: 'pool', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption::Representation
1495
1536
 
1537
+ property :pubsub_topic, as: 'pubsubTopic'
1496
1538
  property :requested_verify_option, as: 'requestedVerifyOption'
1497
1539
  collection :secret_env, as: 'secretEnv'
1498
1540
  collection :source_provenance_hash, as: 'sourceProvenanceHash'
@@ -1564,29 +1606,49 @@ module Google
1564
1606
  end
1565
1607
  end
1566
1608
 
1567
- class ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig
1609
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency
1568
1610
  # @private
1569
1611
  class Representation < Google::Apis::Core::JsonRepresentation
1570
- property :dir, as: 'dir'
1571
- property :git_repository_link, as: 'gitRepositoryLink'
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
+
1572
1626
  property :revision, as: 'revision'
1573
1627
  end
1574
1628
  end
1575
1629
 
1576
- class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
1630
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository
1577
1631
  # @private
1578
1632
  class Representation < Google::Apis::Core::JsonRepresentation
1579
- collection :file_hash, as: 'fileHash', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1Hash, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1Hash::Representation
1633
+ property :developer_connect, as: 'developerConnect'
1634
+ property :url, as: 'url'
1635
+ end
1636
+ end
1580
1637
 
1638
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig
1639
+ # @private
1640
+ class Representation < Google::Apis::Core::JsonRepresentation
1641
+ property :dir, as: 'dir'
1642
+ property :git_repository_link, as: 'gitRepositoryLink'
1643
+ property :revision, as: 'revision'
1581
1644
  end
1582
1645
  end
1583
1646
 
1584
- class ContaineranalysisGoogleDevtoolsCloudbuildV1GcsLocation
1647
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
1585
1648
  # @private
1586
1649
  class Representation < Google::Apis::Core::JsonRepresentation
1587
- property :bucket, as: 'bucket'
1588
- property :generation, :numeric_string => true, as: 'generation'
1589
- property :object, as: 'object'
1650
+ collection :file_hash, as: 'fileHash', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1Hash, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1Hash::Representation
1651
+
1590
1652
  end
1591
1653
  end
1592
1654
 
@@ -1602,8 +1664,6 @@ module Google
1602
1664
  # @private
1603
1665
  class Representation < Google::Apis::Core::JsonRepresentation
1604
1666
  property :proxy_secret_version_name, as: 'proxySecretVersionName'
1605
- property :proxy_ssl_ca_info, as: 'proxySslCaInfo', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GcsLocation, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GcsLocation::Representation
1606
-
1607
1667
  end
1608
1668
  end
1609
1669
 
@@ -1654,6 +1714,8 @@ module Google
1654
1714
 
1655
1715
  collection :build_step_images, as: 'buildStepImages'
1656
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
+
1657
1719
  collection :images, as: 'images', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage::Representation
1658
1720
 
1659
1721
  collection :maven_artifacts, as: 'mavenArtifacts', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact::Representation
@@ -1755,6 +1817,17 @@ module Google
1755
1817
  end
1756
1818
  end
1757
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
+
1758
1831
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
1759
1832
  # @private
1760
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.65.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-06-27 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.65.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: []