google-apis-run_v2 0.100.0 → 0.102.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: bb1df8f3c02273c946f43923a39b1fea8161d03bb13a4eb88e9a31c477ff1229
4
- data.tar.gz: b97bf789f8c451f4110812140aa95b89e81fe0722d3b47b388d0a7e18a49854d
3
+ metadata.gz: 1a35bd9f7467be9c965a29b7e8109170e8bc2badbb2332b9f60a0004e95ec249
4
+ data.tar.gz: 63574035b5ebbb65691c8f9bd66d73b39b33f00b8ae1179db1362a22a6b8b423
5
5
  SHA512:
6
- metadata.gz: 209144f91e24ec0006ea048a10f81acef813c28041cc3fa1f7868aa2ec155c66d992c27c79424d863dc84c939c432defde0a2c02c4020057918350e67ccab0a7
7
- data.tar.gz: 0a08df957c266d2d0d643b6fa59cff8c1c07631c983715d0592ff9714676b6927a0f0be7a6367b7e639878cd88ef48fc63f1ff58bc11edb625c5fcb55e8ba7cb
6
+ metadata.gz: e13d1b1c17d761ee1a76c8c7cd11cdf4925f776acd5f4140562d4ac839bd98045d09e103c8478123eb5b1dcc6000716f113e625c278946c932009a67754c8302
7
+ data.tar.gz: 5ee3db8306f5fc6c87cbf67ddb053b51e00976cd75b9b944e09878bbb732b784bdd8574be6e448529534890a6def282333b1fd43cf3ade4b18583dbe40f3c865
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-run_v2
2
2
 
3
+ ### v0.102.0 (2025-11-09)
4
+
5
+ * Regenerated from discovery document revision 20251031
6
+
7
+ ### v0.101.0 (2025-11-02)
8
+
9
+ * Regenerated from discovery document revision 20251024
10
+
3
11
  ### v0.100.0 (2025-10-26)
4
12
 
5
13
  * Regenerated from discovery document revision 20251019
@@ -279,6 +279,37 @@ module Google
279
279
  end
280
280
  end
281
281
 
282
+ # Cloud Storage source.
283
+ class GoogleCloudRunV2CloudStorageSource
284
+ include Google::Apis::Core::Hashable
285
+
286
+ # Required. The Cloud Storage bucket name.
287
+ # Corresponds to the JSON property `bucket`
288
+ # @return [String]
289
+ attr_accessor :bucket
290
+
291
+ # Optional. The Cloud Storage object generation.
292
+ # Corresponds to the JSON property `generation`
293
+ # @return [Fixnum]
294
+ attr_accessor :generation
295
+
296
+ # Required. The Cloud Storage object name.
297
+ # Corresponds to the JSON property `object`
298
+ # @return [String]
299
+ attr_accessor :object
300
+
301
+ def initialize(**args)
302
+ update!(**args)
303
+ end
304
+
305
+ # Update properties of this object
306
+ def update!(**args)
307
+ @bucket = args[:bucket] if args.key?(:bucket)
308
+ @generation = args[:generation] if args.key?(:generation)
309
+ @object = args[:object] if args.key?(:object)
310
+ end
311
+ end
312
+
282
313
  # Defines a status condition for a resource.
283
314
  class GoogleCloudRunV2Condition
284
315
  include Google::Apis::Core::Hashable
@@ -414,12 +445,10 @@ module Google
414
445
  # @return [Google::Apis::RunV2::GoogleCloudRunV2ResourceRequirements]
415
446
  attr_accessor :resources
416
447
 
417
- # Optional. Location of the source .tar.gz file in Cloud Storage. examples: - gs:
418
- # //bucket/object.tar.gz. - gs://bucket/object.tar.gz#1234567890 (with object
419
- # generation)
420
- # Corresponds to the JSON property `source`
421
- # @return [String]
422
- attr_accessor :source
448
+ # Source type for the container.
449
+ # Corresponds to the JSON property `sourceCode`
450
+ # @return [Google::Apis::RunV2::GoogleCloudRunV2SourceCode]
451
+ attr_accessor :source_code
423
452
 
424
453
  # Probe describes a health check to be performed against a container to
425
454
  # determine whether it is alive or ready to receive traffic.
@@ -455,7 +484,7 @@ module Google
455
484
  @name = args[:name] if args.key?(:name)
456
485
  @ports = args[:ports] if args.key?(:ports)
457
486
  @resources = args[:resources] if args.key?(:resources)
458
- @source = args[:source] if args.key?(:source)
487
+ @source_code = args[:source_code] if args.key?(:source_code)
459
488
  @startup_probe = args[:startup_probe] if args.key?(:startup_probe)
460
489
  @volume_mounts = args[:volume_mounts] if args.key?(:volume_mounts)
461
490
  @working_dir = args[:working_dir] if args.key?(:working_dir)
@@ -2865,6 +2894,25 @@ module Google
2865
2894
  end
2866
2895
  end
2867
2896
 
2897
+ # Source type for the container.
2898
+ class GoogleCloudRunV2SourceCode
2899
+ include Google::Apis::Core::Hashable
2900
+
2901
+ # Cloud Storage source.
2902
+ # Corresponds to the JSON property `cloudStorageSource`
2903
+ # @return [Google::Apis::RunV2::GoogleCloudRunV2CloudStorageSource]
2904
+ attr_accessor :cloud_storage_source
2905
+
2906
+ def initialize(**args)
2907
+ update!(**args)
2908
+ end
2909
+
2910
+ # Update properties of this object
2911
+ def update!(**args)
2912
+ @cloud_storage_source = args[:cloud_storage_source] if args.key?(:cloud_storage_source)
2913
+ end
2914
+ end
2915
+
2868
2916
  # Location of the source in an archive file in Google Cloud Storage.
2869
2917
  class GoogleCloudRunV2StorageSource
2870
2918
  include Google::Apis::Core::Hashable
@@ -4841,6 +4889,11 @@ module Google
4841
4889
  class GoogleDevtoolsCloudbuildV1BuiltImage
4842
4890
  include Google::Apis::Core::Hashable
4843
4891
 
4892
+ # Output only. Path to the artifact in Artifact Registry.
4893
+ # Corresponds to the JSON property `artifactRegistryPackage`
4894
+ # @return [String]
4895
+ attr_accessor :artifact_registry_package
4896
+
4844
4897
  # Docker Registry 2.0 digest.
4845
4898
  # Corresponds to the JSON property `digest`
4846
4899
  # @return [String]
@@ -4863,6 +4916,7 @@ module Google
4863
4916
 
4864
4917
  # Update properties of this object
4865
4918
  def update!(**args)
4919
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
4866
4920
  @digest = args[:digest] if args.key?(:digest)
4867
4921
  @name = args[:name] if args.key?(:name)
4868
4922
  @push_timing = args[:push_timing] if args.key?(:push_timing)
@@ -5856,6 +5910,11 @@ module Google
5856
5910
  class GoogleDevtoolsCloudbuildV1UploadedGoModule
5857
5911
  include Google::Apis::Core::Hashable
5858
5912
 
5913
+ # Output only. Path to the artifact in Artifact Registry.
5914
+ # Corresponds to the JSON property `artifactRegistryPackage`
5915
+ # @return [String]
5916
+ attr_accessor :artifact_registry_package
5917
+
5859
5918
  # Container message for hashes of byte content of files, used in
5860
5919
  # SourceProvenance messages to verify integrity of source input to the build.
5861
5920
  # Corresponds to the JSON property `fileHashes`
@@ -5878,6 +5937,7 @@ module Google
5878
5937
 
5879
5938
  # Update properties of this object
5880
5939
  def update!(**args)
5940
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
5881
5941
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
5882
5942
  @push_timing = args[:push_timing] if args.key?(:push_timing)
5883
5943
  @uri = args[:uri] if args.key?(:uri)
@@ -5888,6 +5948,11 @@ module Google
5888
5948
  class GoogleDevtoolsCloudbuildV1UploadedMavenArtifact
5889
5949
  include Google::Apis::Core::Hashable
5890
5950
 
5951
+ # Output only. Path to the artifact in Artifact Registry.
5952
+ # Corresponds to the JSON property `artifactRegistryPackage`
5953
+ # @return [String]
5954
+ attr_accessor :artifact_registry_package
5955
+
5891
5956
  # Container message for hashes of byte content of files, used in
5892
5957
  # SourceProvenance messages to verify integrity of source input to the build.
5893
5958
  # Corresponds to the JSON property `fileHashes`
@@ -5910,6 +5975,7 @@ module Google
5910
5975
 
5911
5976
  # Update properties of this object
5912
5977
  def update!(**args)
5978
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
5913
5979
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
5914
5980
  @push_timing = args[:push_timing] if args.key?(:push_timing)
5915
5981
  @uri = args[:uri] if args.key?(:uri)
@@ -5920,6 +5986,11 @@ module Google
5920
5986
  class GoogleDevtoolsCloudbuildV1UploadedNpmPackage
5921
5987
  include Google::Apis::Core::Hashable
5922
5988
 
5989
+ # Output only. Path to the artifact in Artifact Registry.
5990
+ # Corresponds to the JSON property `artifactRegistryPackage`
5991
+ # @return [String]
5992
+ attr_accessor :artifact_registry_package
5993
+
5923
5994
  # Container message for hashes of byte content of files, used in
5924
5995
  # SourceProvenance messages to verify integrity of source input to the build.
5925
5996
  # Corresponds to the JSON property `fileHashes`
@@ -5942,6 +6013,7 @@ module Google
5942
6013
 
5943
6014
  # Update properties of this object
5944
6015
  def update!(**args)
6016
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
5945
6017
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
5946
6018
  @push_timing = args[:push_timing] if args.key?(:push_timing)
5947
6019
  @uri = args[:uri] if args.key?(:uri)
@@ -5952,6 +6024,11 @@ module Google
5952
6024
  class GoogleDevtoolsCloudbuildV1UploadedPythonPackage
5953
6025
  include Google::Apis::Core::Hashable
5954
6026
 
6027
+ # Output only. Path to the artifact in Artifact Registry.
6028
+ # Corresponds to the JSON property `artifactRegistryPackage`
6029
+ # @return [String]
6030
+ attr_accessor :artifact_registry_package
6031
+
5955
6032
  # Container message for hashes of byte content of files, used in
5956
6033
  # SourceProvenance messages to verify integrity of source input to the build.
5957
6034
  # Corresponds to the JSON property `fileHashes`
@@ -5974,6 +6051,7 @@ module Google
5974
6051
 
5975
6052
  # Update properties of this object
5976
6053
  def update!(**args)
6054
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
5977
6055
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
5978
6056
  @push_timing = args[:push_timing] if args.key?(:push_timing)
5979
6057
  @uri = args[:uri] if args.key?(:uri)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module RunV2
18
18
  # Version of the google-apis-run_v2 gem
19
- GEM_VERSION = "0.100.0"
19
+ GEM_VERSION = "0.102.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 = "20251019"
25
+ REVISION = "20251031"
26
26
  end
27
27
  end
28
28
  end
@@ -58,6 +58,12 @@ module Google
58
58
  include Google::Apis::Core::JsonObjectSupport
59
59
  end
60
60
 
61
+ class GoogleCloudRunV2CloudStorageSource
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
61
67
  class GoogleCloudRunV2Condition
62
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
69
 
@@ -334,6 +340,12 @@ module Google
334
340
  include Google::Apis::Core::JsonObjectSupport
335
341
  end
336
342
 
343
+ class GoogleCloudRunV2SourceCode
344
+ class Representation < Google::Apis::Core::JsonRepresentation; end
345
+
346
+ include Google::Apis::Core::JsonObjectSupport
347
+ end
348
+
337
349
  class GoogleCloudRunV2StorageSource
338
350
  class Representation < Google::Apis::Core::JsonRepresentation; end
339
351
 
@@ -838,6 +850,15 @@ module Google
838
850
  end
839
851
  end
840
852
 
853
+ class GoogleCloudRunV2CloudStorageSource
854
+ # @private
855
+ class Representation < Google::Apis::Core::JsonRepresentation
856
+ property :bucket, as: 'bucket'
857
+ property :generation, :numeric_string => true, as: 'generation'
858
+ property :object, as: 'object'
859
+ end
860
+ end
861
+
841
862
  class GoogleCloudRunV2Condition
842
863
  # @private
843
864
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -871,7 +892,8 @@ module Google
871
892
 
872
893
  property :resources, as: 'resources', class: Google::Apis::RunV2::GoogleCloudRunV2ResourceRequirements, decorator: Google::Apis::RunV2::GoogleCloudRunV2ResourceRequirements::Representation
873
894
 
874
- property :source, as: 'source'
895
+ property :source_code, as: 'sourceCode', class: Google::Apis::RunV2::GoogleCloudRunV2SourceCode, decorator: Google::Apis::RunV2::GoogleCloudRunV2SourceCode::Representation
896
+
875
897
  property :startup_probe, as: 'startupProbe', class: Google::Apis::RunV2::GoogleCloudRunV2Probe, decorator: Google::Apis::RunV2::GoogleCloudRunV2Probe::Representation
876
898
 
877
899
  collection :volume_mounts, as: 'volumeMounts', class: Google::Apis::RunV2::GoogleCloudRunV2VolumeMount, decorator: Google::Apis::RunV2::GoogleCloudRunV2VolumeMount::Representation
@@ -1436,6 +1458,14 @@ module Google
1436
1458
  end
1437
1459
  end
1438
1460
 
1461
+ class GoogleCloudRunV2SourceCode
1462
+ # @private
1463
+ class Representation < Google::Apis::Core::JsonRepresentation
1464
+ property :cloud_storage_source, as: 'cloudStorageSource', class: Google::Apis::RunV2::GoogleCloudRunV2CloudStorageSource, decorator: Google::Apis::RunV2::GoogleCloudRunV2CloudStorageSource::Representation
1465
+
1466
+ end
1467
+ end
1468
+
1439
1469
  class GoogleCloudRunV2StorageSource
1440
1470
  # @private
1441
1471
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1865,6 +1895,7 @@ module Google
1865
1895
  class GoogleDevtoolsCloudbuildV1BuiltImage
1866
1896
  # @private
1867
1897
  class Representation < Google::Apis::Core::JsonRepresentation
1898
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
1868
1899
  property :digest, as: 'digest'
1869
1900
  property :name, as: 'name'
1870
1901
  property :push_timing, as: 'pushTiming', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -2149,6 +2180,7 @@ module Google
2149
2180
  class GoogleDevtoolsCloudbuildV1UploadedGoModule
2150
2181
  # @private
2151
2182
  class Representation < Google::Apis::Core::JsonRepresentation
2183
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
2152
2184
  property :file_hashes, as: 'fileHashes', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FileHashes::Representation
2153
2185
 
2154
2186
  property :push_timing, as: 'pushTiming', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -2160,6 +2192,7 @@ module Google
2160
2192
  class GoogleDevtoolsCloudbuildV1UploadedMavenArtifact
2161
2193
  # @private
2162
2194
  class Representation < Google::Apis::Core::JsonRepresentation
2195
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
2163
2196
  property :file_hashes, as: 'fileHashes', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FileHashes::Representation
2164
2197
 
2165
2198
  property :push_timing, as: 'pushTiming', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -2171,6 +2204,7 @@ module Google
2171
2204
  class GoogleDevtoolsCloudbuildV1UploadedNpmPackage
2172
2205
  # @private
2173
2206
  class Representation < Google::Apis::Core::JsonRepresentation
2207
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
2174
2208
  property :file_hashes, as: 'fileHashes', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FileHashes::Representation
2175
2209
 
2176
2210
  property :push_timing, as: 'pushTiming', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -2182,6 +2216,7 @@ module Google
2182
2216
  class GoogleDevtoolsCloudbuildV1UploadedPythonPackage
2183
2217
  # @private
2184
2218
  class Representation < Google::Apis::Core::JsonRepresentation
2219
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
2185
2220
  property :file_hashes, as: 'fileHashes', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FileHashes::Representation
2186
2221
 
2187
2222
  property :push_timing, as: 'pushTiming', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan::Representation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-run_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.100.0
4
+ version: 0.102.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-run_v2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.100.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.102.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2
62
62
  rdoc_options: []
63
63
  require_paths: