google-apis-containeranalysis_v1beta1 0.73.0 → 0.74.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: 75e4835fd1700eed96d6b6d9acb5423a8dfba7aebfe8e973356ec91db8c4a6ed
4
- data.tar.gz: 0fdd00b8e3e00b23742a3149e5c00fccc9b610a76673ba74513bc93640595920
3
+ metadata.gz: 7c5657764a20654cb57eae5174e6717491eaedd48c83e992a0f1093230396c3f
4
+ data.tar.gz: 3ce00f17f5623ab1a32dac52048dcbee0d29f3649daaf58d157d5cd6620f789c
5
5
  SHA512:
6
- metadata.gz: bdac3c78da1b807cebfc65431f26c13d693183409b022917fd29bb471fa3f943485642c6d3807bac55a2cfd1241b5d2caf4ada11714fe4f81a19b56f52d7f4d2
7
- data.tar.gz: 72f408b47d217a7085ba3b46b4f381242a8f338589cf4195a3a18f5b774a7601c91978a9e4df2fa349021108234b77a47869910df3c0f9661d827e124985e282
6
+ metadata.gz: d96062174fa510897979ffa502a8a436c3122a3cfb1d78f93453b0b7edce3a9c7eb22a0355e6f6b8a540aa71268fd1ecb5789b9eaf9a7c2ca1152d333c614cbb
7
+ data.tar.gz: 444ea38b5ddd9a45f3df298cab94a68ec1a5e4d599f9cfa36ed643da85edb8b934c80e8e5210c89d4dea3e9faa9c3cda7f6c17d524c10e98c9cb7e97db0e2077
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-containeranalysis_v1beta1
2
2
 
3
+ ### v0.74.0 (2026-03-22)
4
+
5
+ * Regenerated from discovery document revision 20260313
6
+
3
7
  ### v0.73.0 (2026-03-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20260220
@@ -1300,6 +1300,15 @@ module Google
1300
1300
  # @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsArtifactObjects]
1301
1301
  attr_accessor :objects
1302
1302
 
1303
+ # Optional. A list of OCI images to be uploaded to Artifact Registry upon
1304
+ # successful completion of all build steps. OCI images in the specified paths
1305
+ # will be uploaded to the specified Artifact Registry repository using the
1306
+ # builder service account's credentials. If any images fail to be pushed, the
1307
+ # build is marked FAILURE.
1308
+ # Corresponds to the JSON property `oci`
1309
+ # @return [Array<Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsOci>]
1310
+ attr_accessor :oci
1311
+
1303
1312
  # A list of Python packages to be uploaded to Artifact Registry upon successful
1304
1313
  # completion of all build steps. The build service account credentials will be
1305
1314
  # used to perform the upload. If any objects fail to be pushed, the build is
@@ -1319,6 +1328,7 @@ module Google
1319
1328
  @maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
1320
1329
  @npm_packages = args[:npm_packages] if args.key?(:npm_packages)
1321
1330
  @objects = args[:objects] if args.key?(:objects)
1331
+ @oci = args[:oci] if args.key?(:oci)
1322
1332
  @python_packages = args[:python_packages] if args.key?(:python_packages)
1323
1333
  end
1324
1334
  end
@@ -1503,6 +1513,40 @@ module Google
1503
1513
  end
1504
1514
  end
1505
1515
 
1516
+ # OCI image to upload to Artifact Registry upon successful completion of all
1517
+ # build steps.
1518
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsOci
1519
+ include Google::Apis::Core::Hashable
1520
+
1521
+ # Required. Path on the local file system where to find the container to upload.
1522
+ # e.g. /workspace/my-image.tar
1523
+ # Corresponds to the JSON property `file`
1524
+ # @return [String]
1525
+ attr_accessor :file
1526
+
1527
+ # Required. Registry path to upload the container to. e.g. us-east1-docker.pkg.
1528
+ # dev/my-project/my-repo/my-image
1529
+ # Corresponds to the JSON property `registryPath`
1530
+ # @return [String]
1531
+ attr_accessor :registry_path
1532
+
1533
+ # Optional. Tags to apply to the uploaded image. e.g. latest, 1.0.0
1534
+ # Corresponds to the JSON property `tags`
1535
+ # @return [Array<String>]
1536
+ attr_accessor :tags
1537
+
1538
+ def initialize(**args)
1539
+ update!(**args)
1540
+ end
1541
+
1542
+ # Update properties of this object
1543
+ def update!(**args)
1544
+ @file = args[:file] if args.key?(:file)
1545
+ @registry_path = args[:registry_path] if args.key?(:registry_path)
1546
+ @tags = args[:tags] if args.key?(:tags)
1547
+ end
1548
+ end
1549
+
1506
1550
  # Python package to upload to Artifact Registry upon successful completion of
1507
1551
  # all build steps. A package can encapsulate multiple objects to be uploaded to
1508
1552
  # a single repository.
@@ -2206,6 +2250,12 @@ module Google
2206
2250
  # @return [String]
2207
2251
  attr_accessor :name
2208
2252
 
2253
+ # Output only. The OCI media type of the artifact. Non-OCI images, such as
2254
+ # Docker images, will have an unspecified value.
2255
+ # Corresponds to the JSON property `ociMediaType`
2256
+ # @return [String]
2257
+ attr_accessor :oci_media_type
2258
+
2209
2259
  # Start and end times for a build execution phase.
2210
2260
  # Corresponds to the JSON property `pushTiming`
2211
2261
  # @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
@@ -2220,6 +2270,7 @@ module Google
2220
2270
  @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
2221
2271
  @digest = args[:digest] if args.key?(:digest)
2222
2272
  @name = args[:name] if args.key?(:name)
2273
+ @oci_media_type = args[:oci_media_type] if args.key?(:oci_media_type)
2223
2274
  @push_timing = args[:push_timing] if args.key?(:push_timing)
2224
2275
  end
2225
2276
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContaineranalysisV1beta1
18
18
  # Version of the google-apis-containeranalysis_v1beta1 gem
19
- GEM_VERSION = "0.73.0"
19
+ GEM_VERSION = "0.74.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 = "20260220"
25
+ REVISION = "20260313"
26
26
  end
27
27
  end
28
28
  end
@@ -214,6 +214,12 @@ module Google
214
214
  include Google::Apis::Core::JsonObjectSupport
215
215
  end
216
216
 
217
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsOci
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
217
223
  class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage
218
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
225
 
@@ -1377,6 +1383,8 @@ module Google
1377
1383
 
1378
1384
  property :objects, as: 'objects', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsArtifactObjects, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsArtifactObjects::Representation
1379
1385
 
1386
+ collection :oci, as: 'oci', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsOci, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsOci::Representation
1387
+
1380
1388
  collection :python_packages, as: 'pythonPackages', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage::Representation
1381
1389
 
1382
1390
  end
@@ -1424,6 +1432,15 @@ module Google
1424
1432
  end
1425
1433
  end
1426
1434
 
1435
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsOci
1436
+ # @private
1437
+ class Representation < Google::Apis::Core::JsonRepresentation
1438
+ property :file, as: 'file'
1439
+ property :registry_path, as: 'registryPath'
1440
+ collection :tags, as: 'tags'
1441
+ end
1442
+ end
1443
+
1427
1444
  class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage
1428
1445
  # @private
1429
1446
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1575,6 +1592,7 @@ module Google
1575
1592
  property :artifact_registry_package, as: 'artifactRegistryPackage'
1576
1593
  property :digest, as: 'digest'
1577
1594
  property :name, as: 'name'
1595
+ property :oci_media_type, as: 'ociMediaType'
1578
1596
  property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
1579
1597
 
1580
1598
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.73.0
4
+ version: 0.74.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.73.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.74.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: