google-apis-containeranalysis_v1 0.64.0 → 0.66.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: 31d5274d439216bde3bdaf5b0e70e417205a0b6f31ee1e1bd608b8c4df42a81b
4
- data.tar.gz: 337be72e3a6489e927744a13b07b65c792abf31f634281f95e01c32f7f79ee7d
3
+ metadata.gz: 7749d9a56bbdf1f132dd300aa0616bbd9f93f4e492ce6c19e14bccda8ce6204f
4
+ data.tar.gz: b733cb64e8f72d4da03ccaba8bc55f1a36bc50917db2729c55b3ad306dd9928a
5
5
  SHA512:
6
- metadata.gz: c40e7397b9acbf3c05c42befd2d914b03622c683edee12c4b625dd4060b758429b2c70e3dc676374e3b72ca91bd5787f93ce860e35784baeff1819849a55a9fc
7
- data.tar.gz: 4eee36ba63a1093e187af6b667b45088ff261f0c483dfc85c1e96e900e40cf24800fce6abda33b0c3d9e0d2dac776967615a8d52edf68f3e40255ce1566c6028
6
+ metadata.gz: d458d328b28fc2f41a25ae5597f89239b838f864edd74d1c9b3866e6208dbf4a62e883701ff50b006f79011d7cb6dfbdde9b8bf0d71e14bb49813e4a94be0563
7
+ data.tar.gz: 8f75ff65fd2bca39f4cddd46aab9d33da51ffd4257efed66abfca465475bd331531ad15e114a9c6d98c2c84dd5586a1c5f47b058c3ce1c0c022e17464c5c9d41
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-containeranalysis_v1
2
2
 
3
+ ### v0.66.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251203
6
+
7
+ ### v0.65.0 (2025-11-09)
8
+
9
+ * Regenerated from discovery document revision 20251030
10
+
3
11
  ### v0.64.0 (2025-09-07)
4
12
 
5
13
  * Regenerated from discovery document revision 20250829
@@ -1647,6 +1647,14 @@ module Google
1647
1647
  # @return [String]
1648
1648
  attr_accessor :artifact_id
1649
1649
 
1650
+ # Optional. Path to a folder containing the files to upload to Artifact Registry.
1651
+ # This can be either an absolute path, e.g. `/workspace/my-app/target/`, or a
1652
+ # relative path from /workspace, e.g. `my-app/target/`. This field is mutually
1653
+ # exclusive with the `path` field.
1654
+ # Corresponds to the JSON property `deployFolder`
1655
+ # @return [String]
1656
+ attr_accessor :deploy_folder
1657
+
1650
1658
  # Maven `groupId` value used when uploading the artifact to Artifact Registry.
1651
1659
  # Corresponds to the JSON property `groupId`
1652
1660
  # @return [String]
@@ -1679,6 +1687,7 @@ module Google
1679
1687
  # Update properties of this object
1680
1688
  def update!(**args)
1681
1689
  @artifact_id = args[:artifact_id] if args.key?(:artifact_id)
1690
+ @deploy_folder = args[:deploy_folder] if args.key?(:deploy_folder)
1682
1691
  @group_id = args[:group_id] if args.key?(:group_id)
1683
1692
  @path = args[:path] if args.key?(:path)
1684
1693
  @repository = args[:repository] if args.key?(:repository)
@@ -2402,6 +2411,11 @@ module Google
2402
2411
  class ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage
2403
2412
  include Google::Apis::Core::Hashable
2404
2413
 
2414
+ # Output only. Path to the artifact in Artifact Registry.
2415
+ # Corresponds to the JSON property `artifactRegistryPackage`
2416
+ # @return [String]
2417
+ attr_accessor :artifact_registry_package
2418
+
2405
2419
  # Docker Registry 2.0 digest.
2406
2420
  # Corresponds to the JSON property `digest`
2407
2421
  # @return [String]
@@ -2424,6 +2438,7 @@ module Google
2424
2438
 
2425
2439
  # Update properties of this object
2426
2440
  def update!(**args)
2441
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
2427
2442
  @digest = args[:digest] if args.key?(:digest)
2428
2443
  @name = args[:name] if args.key?(:name)
2429
2444
  @push_timing = args[:push_timing] if args.key?(:push_timing)
@@ -3203,6 +3218,11 @@ module Google
3203
3218
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
3204
3219
  include Google::Apis::Core::Hashable
3205
3220
 
3221
+ # Output only. Path to the artifact in Artifact Registry.
3222
+ # Corresponds to the JSON property `artifactRegistryPackage`
3223
+ # @return [String]
3224
+ attr_accessor :artifact_registry_package
3225
+
3206
3226
  # Container message for hashes of byte content of files, used in
3207
3227
  # SourceProvenance messages to verify integrity of source input to the build.
3208
3228
  # Corresponds to the JSON property `fileHashes`
@@ -3225,6 +3245,7 @@ module Google
3225
3245
 
3226
3246
  # Update properties of this object
3227
3247
  def update!(**args)
3248
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
3228
3249
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
3229
3250
  @push_timing = args[:push_timing] if args.key?(:push_timing)
3230
3251
  @uri = args[:uri] if args.key?(:uri)
@@ -3235,6 +3256,11 @@ module Google
3235
3256
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
3236
3257
  include Google::Apis::Core::Hashable
3237
3258
 
3259
+ # Output only. Path to the artifact in Artifact Registry.
3260
+ # Corresponds to the JSON property `artifactRegistryPackage`
3261
+ # @return [String]
3262
+ attr_accessor :artifact_registry_package
3263
+
3238
3264
  # Container message for hashes of byte content of files, used in
3239
3265
  # SourceProvenance messages to verify integrity of source input to the build.
3240
3266
  # Corresponds to the JSON property `fileHashes`
@@ -3257,6 +3283,7 @@ module Google
3257
3283
 
3258
3284
  # Update properties of this object
3259
3285
  def update!(**args)
3286
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
3260
3287
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
3261
3288
  @push_timing = args[:push_timing] if args.key?(:push_timing)
3262
3289
  @uri = args[:uri] if args.key?(:uri)
@@ -3267,6 +3294,11 @@ module Google
3267
3294
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedNpmPackage
3268
3295
  include Google::Apis::Core::Hashable
3269
3296
 
3297
+ # Output only. Path to the artifact in Artifact Registry.
3298
+ # Corresponds to the JSON property `artifactRegistryPackage`
3299
+ # @return [String]
3300
+ attr_accessor :artifact_registry_package
3301
+
3270
3302
  # Container message for hashes of byte content of files, used in
3271
3303
  # SourceProvenance messages to verify integrity of source input to the build.
3272
3304
  # Corresponds to the JSON property `fileHashes`
@@ -3289,6 +3321,7 @@ module Google
3289
3321
 
3290
3322
  # Update properties of this object
3291
3323
  def update!(**args)
3324
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
3292
3325
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
3293
3326
  @push_timing = args[:push_timing] if args.key?(:push_timing)
3294
3327
  @uri = args[:uri] if args.key?(:uri)
@@ -3299,6 +3332,11 @@ module Google
3299
3332
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage
3300
3333
  include Google::Apis::Core::Hashable
3301
3334
 
3335
+ # Output only. Path to the artifact in Artifact Registry.
3336
+ # Corresponds to the JSON property `artifactRegistryPackage`
3337
+ # @return [String]
3338
+ attr_accessor :artifact_registry_package
3339
+
3302
3340
  # Container message for hashes of byte content of files, used in
3303
3341
  # SourceProvenance messages to verify integrity of source input to the build.
3304
3342
  # Corresponds to the JSON property `fileHashes`
@@ -3321,6 +3359,7 @@ module Google
3321
3359
 
3322
3360
  # Update properties of this object
3323
3361
  def update!(**args)
3362
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
3324
3363
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
3325
3364
  @push_timing = args[:push_timing] if args.key?(:push_timing)
3326
3365
  @uri = args[:uri] if args.key?(:uri)
@@ -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.64.0"
19
+ GEM_VERSION = "0.66.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 = "20250829"
25
+ REVISION = "20251203"
26
26
  end
27
27
  end
28
28
  end
@@ -1520,6 +1520,7 @@ module Google
1520
1520
  # @private
1521
1521
  class Representation < Google::Apis::Core::JsonRepresentation
1522
1522
  property :artifact_id, as: 'artifactId'
1523
+ property :deploy_folder, as: 'deployFolder'
1523
1524
  property :group_id, as: 'groupId'
1524
1525
  property :path, as: 'path'
1525
1526
  property :repository, as: 'repository'
@@ -1683,6 +1684,7 @@ module Google
1683
1684
  class ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage
1684
1685
  # @private
1685
1686
  class Representation < Google::Apis::Core::JsonRepresentation
1687
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
1686
1688
  property :digest, as: 'digest'
1687
1689
  property :name, as: 'name'
1688
1690
  property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -1913,6 +1915,7 @@ module Google
1913
1915
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
1914
1916
  # @private
1915
1917
  class Representation < Google::Apis::Core::JsonRepresentation
1918
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
1916
1919
  property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
1917
1920
 
1918
1921
  property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -1924,6 +1927,7 @@ module Google
1924
1927
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
1925
1928
  # @private
1926
1929
  class Representation < Google::Apis::Core::JsonRepresentation
1930
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
1927
1931
  property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
1928
1932
 
1929
1933
  property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -1935,6 +1939,7 @@ module Google
1935
1939
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedNpmPackage
1936
1940
  # @private
1937
1941
  class Representation < Google::Apis::Core::JsonRepresentation
1942
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
1938
1943
  property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
1939
1944
 
1940
1945
  property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -1946,6 +1951,7 @@ module Google
1946
1951
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage
1947
1952
  # @private
1948
1953
  class Representation < Google::Apis::Core::JsonRepresentation
1954
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
1949
1955
  property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
1950
1956
 
1951
1957
  property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.64.0
4
+ version: 0.66.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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.64.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.66.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1
62
62
  rdoc_options: []
63
63
  require_paths: