google-apis-containeranalysis_v1alpha1 0.76.0 → 0.78.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: 6ee1f7d229fbe714b0ad35e87ade16e8b8a7a96f81c1eb84536c1eb5e8c10857
4
- data.tar.gz: 72221099062df93d06c720bbbac2801153b98cea5f881ec1fa485fc6edb9e7e1
3
+ metadata.gz: c41712dbe420affe9ca527cc21709c685bfe441b1e6227ecfd083012bb8d24d6
4
+ data.tar.gz: 986db1dcfab16bc32b809c73829f62ba6539a738d2be5318740a130beed33a6e
5
5
  SHA512:
6
- metadata.gz: a74543c9318d4222e19e39fd7c2eead4e6385a94181668a79f1ce4513fc54d3cb93bc66c315fd151f1f9af6affc5523df3d20377e04f72644d8caf2ebd8f7614
7
- data.tar.gz: 890ae6f8bfdc8b72be386308b4526218dada99491f3f590496b3b62028b52445855909182c9d118b282bdcafeb9263783914cd9b0d4711426f009f8012c60b94
6
+ metadata.gz: 989c3fbbef3bc75d5b74d545e4734d63f752b29d264b5b9387084a019eb955aea0ed3314ca8820c516c68fd6540678a64c740527ee35ebc7afec18bf7f27664d
7
+ data.tar.gz: c1bfd667593d1fa4ac8347c86e9df4b8ffca7c52e84920e170aecb0d1812fb039a897322b8ad5255c704afe478de57e761860711b2d157cb665736e31c457437
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-containeranalysis_v1alpha1
2
2
 
3
+ ### v0.78.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251203
6
+
7
+ ### v0.77.0 (2025-11-09)
8
+
9
+ * Regenerated from discovery document revision 20251030
10
+
3
11
  ### v0.76.0 (2025-10-05)
4
12
 
5
13
  * Regenerated from discovery document revision 20250928
@@ -1499,6 +1499,14 @@ module Google
1499
1499
  # @return [String]
1500
1500
  attr_accessor :artifact_id
1501
1501
 
1502
+ # Optional. Path to a folder containing the files to upload to Artifact Registry.
1503
+ # This can be either an absolute path, e.g. `/workspace/my-app/target/`, or a
1504
+ # relative path from /workspace, e.g. `my-app/target/`. This field is mutually
1505
+ # exclusive with the `path` field.
1506
+ # Corresponds to the JSON property `deployFolder`
1507
+ # @return [String]
1508
+ attr_accessor :deploy_folder
1509
+
1502
1510
  # Maven `groupId` value used when uploading the artifact to Artifact Registry.
1503
1511
  # Corresponds to the JSON property `groupId`
1504
1512
  # @return [String]
@@ -1531,6 +1539,7 @@ module Google
1531
1539
  # Update properties of this object
1532
1540
  def update!(**args)
1533
1541
  @artifact_id = args[:artifact_id] if args.key?(:artifact_id)
1542
+ @deploy_folder = args[:deploy_folder] if args.key?(:deploy_folder)
1534
1543
  @group_id = args[:group_id] if args.key?(:group_id)
1535
1544
  @path = args[:path] if args.key?(:path)
1536
1545
  @repository = args[:repository] if args.key?(:repository)
@@ -2254,6 +2263,11 @@ module Google
2254
2263
  class ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage
2255
2264
  include Google::Apis::Core::Hashable
2256
2265
 
2266
+ # Output only. Path to the artifact in Artifact Registry.
2267
+ # Corresponds to the JSON property `artifactRegistryPackage`
2268
+ # @return [String]
2269
+ attr_accessor :artifact_registry_package
2270
+
2257
2271
  # Docker Registry 2.0 digest.
2258
2272
  # Corresponds to the JSON property `digest`
2259
2273
  # @return [String]
@@ -2276,6 +2290,7 @@ module Google
2276
2290
 
2277
2291
  # Update properties of this object
2278
2292
  def update!(**args)
2293
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
2279
2294
  @digest = args[:digest] if args.key?(:digest)
2280
2295
  @name = args[:name] if args.key?(:name)
2281
2296
  @push_timing = args[:push_timing] if args.key?(:push_timing)
@@ -3055,6 +3070,11 @@ module Google
3055
3070
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
3056
3071
  include Google::Apis::Core::Hashable
3057
3072
 
3073
+ # Output only. Path to the artifact in Artifact Registry.
3074
+ # Corresponds to the JSON property `artifactRegistryPackage`
3075
+ # @return [String]
3076
+ attr_accessor :artifact_registry_package
3077
+
3058
3078
  # Container message for hashes of byte content of files, used in
3059
3079
  # SourceProvenance messages to verify integrity of source input to the build.
3060
3080
  # Corresponds to the JSON property `fileHashes`
@@ -3077,6 +3097,7 @@ module Google
3077
3097
 
3078
3098
  # Update properties of this object
3079
3099
  def update!(**args)
3100
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
3080
3101
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
3081
3102
  @push_timing = args[:push_timing] if args.key?(:push_timing)
3082
3103
  @uri = args[:uri] if args.key?(:uri)
@@ -3087,6 +3108,11 @@ module Google
3087
3108
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
3088
3109
  include Google::Apis::Core::Hashable
3089
3110
 
3111
+ # Output only. Path to the artifact in Artifact Registry.
3112
+ # Corresponds to the JSON property `artifactRegistryPackage`
3113
+ # @return [String]
3114
+ attr_accessor :artifact_registry_package
3115
+
3090
3116
  # Container message for hashes of byte content of files, used in
3091
3117
  # SourceProvenance messages to verify integrity of source input to the build.
3092
3118
  # Corresponds to the JSON property `fileHashes`
@@ -3109,6 +3135,7 @@ module Google
3109
3135
 
3110
3136
  # Update properties of this object
3111
3137
  def update!(**args)
3138
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
3112
3139
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
3113
3140
  @push_timing = args[:push_timing] if args.key?(:push_timing)
3114
3141
  @uri = args[:uri] if args.key?(:uri)
@@ -3119,6 +3146,11 @@ module Google
3119
3146
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedNpmPackage
3120
3147
  include Google::Apis::Core::Hashable
3121
3148
 
3149
+ # Output only. Path to the artifact in Artifact Registry.
3150
+ # Corresponds to the JSON property `artifactRegistryPackage`
3151
+ # @return [String]
3152
+ attr_accessor :artifact_registry_package
3153
+
3122
3154
  # Container message for hashes of byte content of files, used in
3123
3155
  # SourceProvenance messages to verify integrity of source input to the build.
3124
3156
  # Corresponds to the JSON property `fileHashes`
@@ -3141,6 +3173,7 @@ module Google
3141
3173
 
3142
3174
  # Update properties of this object
3143
3175
  def update!(**args)
3176
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
3144
3177
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
3145
3178
  @push_timing = args[:push_timing] if args.key?(:push_timing)
3146
3179
  @uri = args[:uri] if args.key?(:uri)
@@ -3151,6 +3184,11 @@ module Google
3151
3184
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage
3152
3185
  include Google::Apis::Core::Hashable
3153
3186
 
3187
+ # Output only. Path to the artifact in Artifact Registry.
3188
+ # Corresponds to the JSON property `artifactRegistryPackage`
3189
+ # @return [String]
3190
+ attr_accessor :artifact_registry_package
3191
+
3154
3192
  # Container message for hashes of byte content of files, used in
3155
3193
  # SourceProvenance messages to verify integrity of source input to the build.
3156
3194
  # Corresponds to the JSON property `fileHashes`
@@ -3173,6 +3211,7 @@ module Google
3173
3211
 
3174
3212
  # Update properties of this object
3175
3213
  def update!(**args)
3214
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
3176
3215
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
3177
3216
  @push_timing = args[:push_timing] if args.key?(:push_timing)
3178
3217
  @uri = args[:uri] if args.key?(:uri)
@@ -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.76.0"
19
+ GEM_VERSION = "0.78.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 = "20250928"
25
+ REVISION = "20251203"
26
26
  end
27
27
  end
28
28
  end
@@ -1512,6 +1512,7 @@ module Google
1512
1512
  # @private
1513
1513
  class Representation < Google::Apis::Core::JsonRepresentation
1514
1514
  property :artifact_id, as: 'artifactId'
1515
+ property :deploy_folder, as: 'deployFolder'
1515
1516
  property :group_id, as: 'groupId'
1516
1517
  property :path, as: 'path'
1517
1518
  property :repository, as: 'repository'
@@ -1675,6 +1676,7 @@ module Google
1675
1676
  class ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage
1676
1677
  # @private
1677
1678
  class Representation < Google::Apis::Core::JsonRepresentation
1679
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
1678
1680
  property :digest, as: 'digest'
1679
1681
  property :name, as: 'name'
1680
1682
  property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -1905,6 +1907,7 @@ module Google
1905
1907
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
1906
1908
  # @private
1907
1909
  class Representation < Google::Apis::Core::JsonRepresentation
1910
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
1908
1911
  property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
1909
1912
 
1910
1913
  property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -1916,6 +1919,7 @@ module Google
1916
1919
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
1917
1920
  # @private
1918
1921
  class Representation < Google::Apis::Core::JsonRepresentation
1922
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
1919
1923
  property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
1920
1924
 
1921
1925
  property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -1927,6 +1931,7 @@ module Google
1927
1931
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedNpmPackage
1928
1932
  # @private
1929
1933
  class Representation < Google::Apis::Core::JsonRepresentation
1934
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
1930
1935
  property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
1931
1936
 
1932
1937
  property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -1938,6 +1943,7 @@ module Google
1938
1943
  class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage
1939
1944
  # @private
1940
1945
  class Representation < Google::Apis::Core::JsonRepresentation
1946
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
1941
1947
  property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
1942
1948
 
1943
1949
  property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.76.0
4
+ version: 0.78.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_v1alpha1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.76.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.78.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1alpha1
62
62
  rdoc_options: []
63
63
  require_paths: