google-apis-run_v2 0.101.0 → 0.103.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: aa2e6a92de0c5f876b6fbc7f93d47e7243cc1c28138664b1cff7c50902c74814
4
- data.tar.gz: a24c3ac010224c36fe85dea8981bca93081a78267065f309ee2a7c2a978c03bc
3
+ metadata.gz: 549a4d1625710578fd8c893e3ca470102e7cf6284847934da90024e7b407f180
4
+ data.tar.gz: 3dbacc1ef384ac9de500d0b17272b48c1b56a1e05983bae32024e65d4fa22a37
5
5
  SHA512:
6
- metadata.gz: 62c5e52127490fbb98d97f2f612408936530f212253997c7a3e0c2f7555885d94b2e8f599731541a5cd7144190eed2a795f48ee01aa0b1fb7c9ec6d96cc675ab
7
- data.tar.gz: ec20666d14f656696cb4cda3bc8bb199e13d759da794aeebf9adeb629b85b56f0ea2dcd589fd6dae9a1b2754dad1d80fb1a71e2b0beba082cec243e201988a1e
6
+ metadata.gz: d41a26502d28061059fc817b8bf26c543a6a00c7baf3cc7c42bbffd81a183a72dddb84f660750dbd83edeab2553d807757a416fa6178412be802481b3401b68b
7
+ data.tar.gz: b5368fc6aed6aaee5877ca261044536dea89c41b4d62dec39d8bb3b8d0311fdf2f44bb2ab74c958abddb01f2121c7f2d7100ca5987d146c9d0fe3a4bcfd4afd9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-run_v2
2
2
 
3
+ ### v0.103.0 (2025-12-07)
4
+
5
+ * Regenerated from discovery document revision 20251202
6
+
7
+ ### v0.102.0 (2025-11-09)
8
+
9
+ * Regenerated from discovery document revision 20251031
10
+
3
11
  ### v0.101.0 (2025-11-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20251024
@@ -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,6 +445,11 @@ module Google
414
445
  # @return [Google::Apis::RunV2::GoogleCloudRunV2ResourceRequirements]
415
446
  attr_accessor :resources
416
447
 
448
+ # Source type for the container.
449
+ # Corresponds to the JSON property `sourceCode`
450
+ # @return [Google::Apis::RunV2::GoogleCloudRunV2SourceCode]
451
+ attr_accessor :source_code
452
+
417
453
  # Probe describes a health check to be performed against a container to
418
454
  # determine whether it is alive or ready to receive traffic.
419
455
  # Corresponds to the JSON property `startupProbe`
@@ -448,6 +484,7 @@ module Google
448
484
  @name = args[:name] if args.key?(:name)
449
485
  @ports = args[:ports] if args.key?(:ports)
450
486
  @resources = args[:resources] if args.key?(:resources)
487
+ @source_code = args[:source_code] if args.key?(:source_code)
451
488
  @startup_probe = args[:startup_probe] if args.key?(:startup_probe)
452
489
  @volume_mounts = args[:volume_mounts] if args.key?(:volume_mounts)
453
490
  @working_dir = args[:working_dir] if args.key?(:working_dir)
@@ -1561,6 +1598,12 @@ module Google
1561
1598
  # @return [Array<Google::Apis::RunV2::GoogleCloudRunV2Service>]
1562
1599
  attr_accessor :services
1563
1600
 
1601
+ # Output only. For global requests, returns the list of regions that could not
1602
+ # be reached within the deadline.
1603
+ # Corresponds to the JSON property `unreachable`
1604
+ # @return [Array<String>]
1605
+ attr_accessor :unreachable
1606
+
1564
1607
  def initialize(**args)
1565
1608
  update!(**args)
1566
1609
  end
@@ -1569,6 +1612,7 @@ module Google
1569
1612
  def update!(**args)
1570
1613
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1571
1614
  @services = args[:services] if args.key?(:services)
1615
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1572
1616
  end
1573
1617
  end
1574
1618
 
@@ -2857,6 +2901,25 @@ module Google
2857
2901
  end
2858
2902
  end
2859
2903
 
2904
+ # Source type for the container.
2905
+ class GoogleCloudRunV2SourceCode
2906
+ include Google::Apis::Core::Hashable
2907
+
2908
+ # Cloud Storage source.
2909
+ # Corresponds to the JSON property `cloudStorageSource`
2910
+ # @return [Google::Apis::RunV2::GoogleCloudRunV2CloudStorageSource]
2911
+ attr_accessor :cloud_storage_source
2912
+
2913
+ def initialize(**args)
2914
+ update!(**args)
2915
+ end
2916
+
2917
+ # Update properties of this object
2918
+ def update!(**args)
2919
+ @cloud_storage_source = args[:cloud_storage_source] if args.key?(:cloud_storage_source)
2920
+ end
2921
+ end
2922
+
2860
2923
  # Location of the source in an archive file in Google Cloud Storage.
2861
2924
  class GoogleCloudRunV2StorageSource
2862
2925
  include Google::Apis::Core::Hashable
@@ -3701,11 +3764,7 @@ module Google
3701
3764
  # @return [String]
3702
3765
  attr_accessor :creator
3703
3766
 
3704
- # One or more custom audiences that you want this worker pool to support.
3705
- # Specify each custom audience as the full URL in a string. The custom audiences
3706
- # are encoded in the token and used to authenticate requests. For more
3707
- # information, see https://cloud.google.com/run/docs/configuring/custom-
3708
- # audiences.
3767
+ # Not supported, and ignored by Cloud Run.
3709
3768
  # Corresponds to the JSON property `customAudiences`
3710
3769
  # @return [Array<String>]
3711
3770
  attr_accessor :custom_audiences
@@ -3860,6 +3919,13 @@ module Google
3860
3919
  # @return [Google::Apis::RunV2::GoogleCloudRunV2Condition]
3861
3920
  attr_accessor :terminal_condition
3862
3921
 
3922
+ # Output only. Indicates whether Cloud Run Threat Detection monitoring is
3923
+ # enabled for the parent project of this worker pool.
3924
+ # Corresponds to the JSON property `threatDetectionEnabled`
3925
+ # @return [Boolean]
3926
+ attr_accessor :threat_detection_enabled
3927
+ alias_method :threat_detection_enabled?, :threat_detection_enabled
3928
+
3863
3929
  # Output only. Server assigned unique identifier for the trigger. The value is a
3864
3930
  # UUID4 string and guaranteed to remain unchanged until the resource is deleted.
3865
3931
  # Corresponds to the JSON property `uid`
@@ -3904,6 +3970,7 @@ module Google
3904
3970
  @scaling = args[:scaling] if args.key?(:scaling)
3905
3971
  @template = args[:template] if args.key?(:template)
3906
3972
  @terminal_condition = args[:terminal_condition] if args.key?(:terminal_condition)
3973
+ @threat_detection_enabled = args[:threat_detection_enabled] if args.key?(:threat_detection_enabled)
3907
3974
  @uid = args[:uid] if args.key?(:uid)
3908
3975
  @update_time = args[:update_time] if args.key?(:update_time)
3909
3976
  end
@@ -4833,6 +4900,11 @@ module Google
4833
4900
  class GoogleDevtoolsCloudbuildV1BuiltImage
4834
4901
  include Google::Apis::Core::Hashable
4835
4902
 
4903
+ # Output only. Path to the artifact in Artifact Registry.
4904
+ # Corresponds to the JSON property `artifactRegistryPackage`
4905
+ # @return [String]
4906
+ attr_accessor :artifact_registry_package
4907
+
4836
4908
  # Docker Registry 2.0 digest.
4837
4909
  # Corresponds to the JSON property `digest`
4838
4910
  # @return [String]
@@ -4855,6 +4927,7 @@ module Google
4855
4927
 
4856
4928
  # Update properties of this object
4857
4929
  def update!(**args)
4930
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
4858
4931
  @digest = args[:digest] if args.key?(:digest)
4859
4932
  @name = args[:name] if args.key?(:name)
4860
4933
  @push_timing = args[:push_timing] if args.key?(:push_timing)
@@ -5276,6 +5349,14 @@ module Google
5276
5349
  # @return [String]
5277
5350
  attr_accessor :artifact_id
5278
5351
 
5352
+ # Optional. Path to a folder containing the files to upload to Artifact Registry.
5353
+ # This can be either an absolute path, e.g. `/workspace/my-app/target/`, or a
5354
+ # relative path from /workspace, e.g. `my-app/target/`. This field is mutually
5355
+ # exclusive with the `path` field.
5356
+ # Corresponds to the JSON property `deployFolder`
5357
+ # @return [String]
5358
+ attr_accessor :deploy_folder
5359
+
5279
5360
  # Maven `groupId` value used when uploading the artifact to Artifact Registry.
5280
5361
  # Corresponds to the JSON property `groupId`
5281
5362
  # @return [String]
@@ -5308,6 +5389,7 @@ module Google
5308
5389
  # Update properties of this object
5309
5390
  def update!(**args)
5310
5391
  @artifact_id = args[:artifact_id] if args.key?(:artifact_id)
5392
+ @deploy_folder = args[:deploy_folder] if args.key?(:deploy_folder)
5311
5393
  @group_id = args[:group_id] if args.key?(:group_id)
5312
5394
  @path = args[:path] if args.key?(:path)
5313
5395
  @repository = args[:repository] if args.key?(:repository)
@@ -5848,6 +5930,11 @@ module Google
5848
5930
  class GoogleDevtoolsCloudbuildV1UploadedGoModule
5849
5931
  include Google::Apis::Core::Hashable
5850
5932
 
5933
+ # Output only. Path to the artifact in Artifact Registry.
5934
+ # Corresponds to the JSON property `artifactRegistryPackage`
5935
+ # @return [String]
5936
+ attr_accessor :artifact_registry_package
5937
+
5851
5938
  # Container message for hashes of byte content of files, used in
5852
5939
  # SourceProvenance messages to verify integrity of source input to the build.
5853
5940
  # Corresponds to the JSON property `fileHashes`
@@ -5870,6 +5957,7 @@ module Google
5870
5957
 
5871
5958
  # Update properties of this object
5872
5959
  def update!(**args)
5960
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
5873
5961
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
5874
5962
  @push_timing = args[:push_timing] if args.key?(:push_timing)
5875
5963
  @uri = args[:uri] if args.key?(:uri)
@@ -5880,6 +5968,11 @@ module Google
5880
5968
  class GoogleDevtoolsCloudbuildV1UploadedMavenArtifact
5881
5969
  include Google::Apis::Core::Hashable
5882
5970
 
5971
+ # Output only. Path to the artifact in Artifact Registry.
5972
+ # Corresponds to the JSON property `artifactRegistryPackage`
5973
+ # @return [String]
5974
+ attr_accessor :artifact_registry_package
5975
+
5883
5976
  # Container message for hashes of byte content of files, used in
5884
5977
  # SourceProvenance messages to verify integrity of source input to the build.
5885
5978
  # Corresponds to the JSON property `fileHashes`
@@ -5902,6 +5995,7 @@ module Google
5902
5995
 
5903
5996
  # Update properties of this object
5904
5997
  def update!(**args)
5998
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
5905
5999
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
5906
6000
  @push_timing = args[:push_timing] if args.key?(:push_timing)
5907
6001
  @uri = args[:uri] if args.key?(:uri)
@@ -5912,6 +6006,11 @@ module Google
5912
6006
  class GoogleDevtoolsCloudbuildV1UploadedNpmPackage
5913
6007
  include Google::Apis::Core::Hashable
5914
6008
 
6009
+ # Output only. Path to the artifact in Artifact Registry.
6010
+ # Corresponds to the JSON property `artifactRegistryPackage`
6011
+ # @return [String]
6012
+ attr_accessor :artifact_registry_package
6013
+
5915
6014
  # Container message for hashes of byte content of files, used in
5916
6015
  # SourceProvenance messages to verify integrity of source input to the build.
5917
6016
  # Corresponds to the JSON property `fileHashes`
@@ -5934,6 +6033,7 @@ module Google
5934
6033
 
5935
6034
  # Update properties of this object
5936
6035
  def update!(**args)
6036
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
5937
6037
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
5938
6038
  @push_timing = args[:push_timing] if args.key?(:push_timing)
5939
6039
  @uri = args[:uri] if args.key?(:uri)
@@ -5944,6 +6044,11 @@ module Google
5944
6044
  class GoogleDevtoolsCloudbuildV1UploadedPythonPackage
5945
6045
  include Google::Apis::Core::Hashable
5946
6046
 
6047
+ # Output only. Path to the artifact in Artifact Registry.
6048
+ # Corresponds to the JSON property `artifactRegistryPackage`
6049
+ # @return [String]
6050
+ attr_accessor :artifact_registry_package
6051
+
5947
6052
  # Container message for hashes of byte content of files, used in
5948
6053
  # SourceProvenance messages to verify integrity of source input to the build.
5949
6054
  # Corresponds to the JSON property `fileHashes`
@@ -5966,6 +6071,7 @@ module Google
5966
6071
 
5967
6072
  # Update properties of this object
5968
6073
  def update!(**args)
6074
+ @artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
5969
6075
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
5970
6076
  @push_timing = args[:push_timing] if args.key?(:push_timing)
5971
6077
  @uri = args[:uri] if args.key?(:uri)
@@ -6402,8 +6508,9 @@ module Google
6402
6508
  attr_accessor :operations
6403
6509
 
6404
6510
  # Unordered list. Unreachable resources. Populated when the request sets `
6405
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
6406
- # when attempting to list all resources across all supported locations.
6511
+ # ListOperationsRequest.return_partial_success` and reads across collections.
6512
+ # For example, when attempting to list all resources across all supported
6513
+ # locations.
6407
6514
  # Corresponds to the JSON property `unreachable`
6408
6515
  # @return [Array<String>]
6409
6516
  attr_accessor :unreachable
@@ -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.101.0"
19
+ GEM_VERSION = "0.103.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 = "20251024"
25
+ REVISION = "20251202"
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,6 +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
 
895
+ property :source_code, as: 'sourceCode', class: Google::Apis::RunV2::GoogleCloudRunV2SourceCode, decorator: Google::Apis::RunV2::GoogleCloudRunV2SourceCode::Representation
896
+
874
897
  property :startup_probe, as: 'startupProbe', class: Google::Apis::RunV2::GoogleCloudRunV2Probe, decorator: Google::Apis::RunV2::GoogleCloudRunV2Probe::Representation
875
898
 
876
899
  collection :volume_mounts, as: 'volumeMounts', class: Google::Apis::RunV2::GoogleCloudRunV2VolumeMount, decorator: Google::Apis::RunV2::GoogleCloudRunV2VolumeMount::Representation
@@ -1147,6 +1170,7 @@ module Google
1147
1170
  property :next_page_token, as: 'nextPageToken'
1148
1171
  collection :services, as: 'services', class: Google::Apis::RunV2::GoogleCloudRunV2Service, decorator: Google::Apis::RunV2::GoogleCloudRunV2Service::Representation
1149
1172
 
1173
+ collection :unreachable, as: 'unreachable'
1150
1174
  end
1151
1175
  end
1152
1176
 
@@ -1435,6 +1459,14 @@ module Google
1435
1459
  end
1436
1460
  end
1437
1461
 
1462
+ class GoogleCloudRunV2SourceCode
1463
+ # @private
1464
+ class Representation < Google::Apis::Core::JsonRepresentation
1465
+ property :cloud_storage_source, as: 'cloudStorageSource', class: Google::Apis::RunV2::GoogleCloudRunV2CloudStorageSource, decorator: Google::Apis::RunV2::GoogleCloudRunV2CloudStorageSource::Representation
1466
+
1467
+ end
1468
+ end
1469
+
1438
1470
  class GoogleCloudRunV2StorageSource
1439
1471
  # @private
1440
1472
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1658,6 +1690,7 @@ module Google
1658
1690
 
1659
1691
  property :terminal_condition, as: 'terminalCondition', class: Google::Apis::RunV2::GoogleCloudRunV2Condition, decorator: Google::Apis::RunV2::GoogleCloudRunV2Condition::Representation
1660
1692
 
1693
+ property :threat_detection_enabled, as: 'threatDetectionEnabled'
1661
1694
  property :uid, as: 'uid'
1662
1695
  property :update_time, as: 'updateTime'
1663
1696
  end
@@ -1864,6 +1897,7 @@ module Google
1864
1897
  class GoogleDevtoolsCloudbuildV1BuiltImage
1865
1898
  # @private
1866
1899
  class Representation < Google::Apis::Core::JsonRepresentation
1900
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
1867
1901
  property :digest, as: 'digest'
1868
1902
  property :name, as: 'name'
1869
1903
  property :push_timing, as: 'pushTiming', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -1990,6 +2024,7 @@ module Google
1990
2024
  # @private
1991
2025
  class Representation < Google::Apis::Core::JsonRepresentation
1992
2026
  property :artifact_id, as: 'artifactId'
2027
+ property :deploy_folder, as: 'deployFolder'
1993
2028
  property :group_id, as: 'groupId'
1994
2029
  property :path, as: 'path'
1995
2030
  property :repository, as: 'repository'
@@ -2148,6 +2183,7 @@ module Google
2148
2183
  class GoogleDevtoolsCloudbuildV1UploadedGoModule
2149
2184
  # @private
2150
2185
  class Representation < Google::Apis::Core::JsonRepresentation
2186
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
2151
2187
  property :file_hashes, as: 'fileHashes', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FileHashes::Representation
2152
2188
 
2153
2189
  property :push_timing, as: 'pushTiming', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -2159,6 +2195,7 @@ module Google
2159
2195
  class GoogleDevtoolsCloudbuildV1UploadedMavenArtifact
2160
2196
  # @private
2161
2197
  class Representation < Google::Apis::Core::JsonRepresentation
2198
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
2162
2199
  property :file_hashes, as: 'fileHashes', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FileHashes::Representation
2163
2200
 
2164
2201
  property :push_timing, as: 'pushTiming', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -2170,6 +2207,7 @@ module Google
2170
2207
  class GoogleDevtoolsCloudbuildV1UploadedNpmPackage
2171
2208
  # @private
2172
2209
  class Representation < Google::Apis::Core::JsonRepresentation
2210
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
2173
2211
  property :file_hashes, as: 'fileHashes', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FileHashes::Representation
2174
2212
 
2175
2213
  property :push_timing, as: 'pushTiming', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -2181,6 +2219,7 @@ module Google
2181
2219
  class GoogleDevtoolsCloudbuildV1UploadedPythonPackage
2182
2220
  # @private
2183
2221
  class Representation < Google::Apis::Core::JsonRepresentation
2222
+ property :artifact_registry_package, as: 'artifactRegistryPackage'
2184
2223
  property :file_hashes, as: 'fileHashes', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FileHashes::Representation
2185
2224
 
2186
2225
  property :push_timing, as: 'pushTiming', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -916,11 +916,12 @@ module Google
916
916
  # list call.
917
917
  # @param [Boolean] return_partial_success
918
918
  # When set to `true`, operations that are reachable are returned as normal, and
919
- # those that are unreachable are returned in the [ListOperationsResponse.
920
- # unreachable] field. This can only be `true` when reading across collections e.
921
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
922
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
923
- # explicitly documented otherwise in service or product specific documentation.
919
+ # those that are unreachable are returned in the ListOperationsResponse.
920
+ # unreachable field. This can only be `true` when reading across collections.
921
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
922
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
923
+ # if set unless explicitly documented otherwise in service or product specific
924
+ # documentation.
924
925
  # @param [String] fields
925
926
  # Selector specifying which fields to include in a partial response.
926
927
  # @param [String] quota_user
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.101.0
4
+ version: 0.103.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.101.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.103.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: