google-apis-run_v2 0.62.0 → 0.64.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7c24ca63a65a0b3947706fe0d5cb77ffbac1e4816e299c717c5d67e33490f5a8
4
- data.tar.gz: 77bbf6c55792308d06b3fbd09198696ba0a813829b871d17a2fc08e59b8e4447
3
+ metadata.gz: 65769b514e22dab34042948efac7291f81c4e5f09851c38640c9f2bcb5a4ec81
4
+ data.tar.gz: 8cee5dd118a410f9f96e39a54e0c5c15939ec85ed91fbcfc7774ce6396a1f2ce
5
5
  SHA512:
6
- metadata.gz: e38a56b4da03f4f4f536eb15e8eb7d64373cf82bb402ba7232f743b6e4699d5d2b492099c6e536ef4d6ce6ddac4cb3923e066c59fe2d3eb607a6d795262142f4
7
- data.tar.gz: e8ccc0c4f270ebc35ba2ded509b8ae815d52a24dabce9048582e61f9c84fb1557b58bc9e91586dafe99dc19423c81b74e39a1d795f455cd974c24fed18e0a76a
6
+ metadata.gz: d05dff54aaf9e4708439cb5f21f349f34b355a5a883afe53cda16cc424e9b2b90d5cc63c708ac528c8769219129cfd7a30c3749e9aec6d9c131d59466c36d785
7
+ data.tar.gz: 14edaec2dbeaaf00902d50f25cdae45238cc40f4cfd0ecf6ed8cfb31b937e87ca31e33ea76c90c59b951e1b0d6ff7b8a2982f0586bae57305b650e117ee40c38
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-run_v2
2
2
 
3
+ ### v0.64.0 (2024-05-19)
4
+
5
+ * Regenerated from discovery document revision 20240510
6
+ * Regenerated using generator version 0.15.0
7
+
8
+ ### v0.63.0 (2024-05-05)
9
+
10
+ * Regenerated from discovery document revision 20240426
11
+
3
12
  ### v0.62.0 (2024-04-21)
4
13
 
5
14
  * Regenerated from discovery document revision 20240412
@@ -1399,6 +1399,25 @@ module Google
1399
1399
  end
1400
1400
  end
1401
1401
 
1402
+ # Hardware constraints configuration.
1403
+ class GoogleCloudRunV2NodeSelector
1404
+ include Google::Apis::Core::Hashable
1405
+
1406
+ # Required. GPU accelerator type to attach to an instance.
1407
+ # Corresponds to the JSON property `accelerator`
1408
+ # @return [String]
1409
+ attr_accessor :accelerator
1410
+
1411
+ def initialize(**args)
1412
+ update!(**args)
1413
+ end
1414
+
1415
+ # Update properties of this object
1416
+ def update!(**args)
1417
+ @accelerator = args[:accelerator] if args.key?(:accelerator)
1418
+ end
1419
+ end
1420
+
1402
1421
  # RunJob Overrides that contains Execution fields to be overridden.
1403
1422
  class GoogleCloudRunV2Overrides
1404
1423
  include Google::Apis::Core::Hashable
@@ -1649,6 +1668,11 @@ module Google
1649
1668
  # @return [String]
1650
1669
  attr_accessor :name
1651
1670
 
1671
+ # Hardware constraints configuration.
1672
+ # Corresponds to the JSON property `nodeSelector`
1673
+ # @return [Google::Apis::RunV2::GoogleCloudRunV2NodeSelector]
1674
+ attr_accessor :node_selector
1675
+
1652
1676
  # Output only. The generation of this Revision currently serving traffic. See
1653
1677
  # comments in `reconciling` for additional information on reconciliation process
1654
1678
  # in Cloud Run.
@@ -1749,6 +1773,7 @@ module Google
1749
1773
  @log_uri = args[:log_uri] if args.key?(:log_uri)
1750
1774
  @max_instance_request_concurrency = args[:max_instance_request_concurrency] if args.key?(:max_instance_request_concurrency)
1751
1775
  @name = args[:name] if args.key?(:name)
1776
+ @node_selector = args[:node_selector] if args.key?(:node_selector)
1752
1777
  @observed_generation = args[:observed_generation] if args.key?(:observed_generation)
1753
1778
  @reconciling = args[:reconciling] if args.key?(:reconciling)
1754
1779
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
@@ -1868,6 +1893,11 @@ module Google
1868
1893
  # @return [Fixnum]
1869
1894
  attr_accessor :max_instance_request_concurrency
1870
1895
 
1896
+ # Hardware constraints configuration.
1897
+ # Corresponds to the JSON property `nodeSelector`
1898
+ # @return [Google::Apis::RunV2::GoogleCloudRunV2NodeSelector]
1899
+ attr_accessor :node_selector
1900
+
1871
1901
  # Optional. The unique name for the revision. If this field is omitted, it will
1872
1902
  # be automatically generated based on the Service name.
1873
1903
  # Corresponds to the JSON property `revision`
@@ -1922,6 +1952,7 @@ module Google
1922
1952
  @health_check_disabled = args[:health_check_disabled] if args.key?(:health_check_disabled)
1923
1953
  @labels = args[:labels] if args.key?(:labels)
1924
1954
  @max_instance_request_concurrency = args[:max_instance_request_concurrency] if args.key?(:max_instance_request_concurrency)
1955
+ @node_selector = args[:node_selector] if args.key?(:node_selector)
1925
1956
  @revision = args[:revision] if args.key?(:revision)
1926
1957
  @scaling = args[:scaling] if args.key?(:scaling)
1927
1958
  @service_account = args[:service_account] if args.key?(:service_account)
@@ -3165,6 +3196,11 @@ module Google
3165
3196
  # @return [String]
3166
3197
  attr_accessor :finish_time
3167
3198
 
3199
+ # GitConfig is a configuration for git operations.
3200
+ # Corresponds to the JSON property `gitConfig`
3201
+ # @return [Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1GitConfig]
3202
+ attr_accessor :git_config
3203
+
3168
3204
  # Output only. Unique identifier of the build.
3169
3205
  # Corresponds to the JSON property `id`
3170
3206
  # @return [String]
@@ -3312,6 +3348,7 @@ module Google
3312
3348
  @create_time = args[:create_time] if args.key?(:create_time)
3313
3349
  @failure_info = args[:failure_info] if args.key?(:failure_info)
3314
3350
  @finish_time = args[:finish_time] if args.key?(:finish_time)
3351
+ @git_config = args[:git_config] if args.key?(:git_config)
3315
3352
  @id = args[:id] if args.key?(:id)
3316
3353
  @images = args[:images] if args.key?(:images)
3317
3354
  @log_url = args[:log_url] if args.key?(:log_url)
@@ -3760,6 +3797,39 @@ module Google
3760
3797
  end
3761
3798
  end
3762
3799
 
3800
+ # This config defines the location of a source through Developer Connect.
3801
+ class GoogleDevtoolsCloudbuildV1DeveloperConnectConfig
3802
+ include Google::Apis::Core::Hashable
3803
+
3804
+ # Required. Directory, relative to the source root, in which to run the build.
3805
+ # Corresponds to the JSON property `dir`
3806
+ # @return [String]
3807
+ attr_accessor :dir
3808
+
3809
+ # Required. The Developer Connect Git repository link, formatted as `projects/*/
3810
+ # locations/*/connections/*/gitRepositoryLink/*`.
3811
+ # Corresponds to the JSON property `gitRepositoryLink`
3812
+ # @return [String]
3813
+ attr_accessor :git_repository_link
3814
+
3815
+ # Required. The revision to fetch from the Git repository such as a branch, a
3816
+ # tag, a commit SHA, or any Git ref.
3817
+ # Corresponds to the JSON property `revision`
3818
+ # @return [String]
3819
+ attr_accessor :revision
3820
+
3821
+ def initialize(**args)
3822
+ update!(**args)
3823
+ end
3824
+
3825
+ # Update properties of this object
3826
+ def update!(**args)
3827
+ @dir = args[:dir] if args.key?(:dir)
3828
+ @git_repository_link = args[:git_repository_link] if args.key?(:git_repository_link)
3829
+ @revision = args[:revision] if args.key?(:revision)
3830
+ end
3831
+ end
3832
+
3763
3833
  # A fatal problem encountered during the execution of the build.
3764
3834
  class GoogleDevtoolsCloudbuildV1FailureInfo
3765
3835
  include Google::Apis::Core::Hashable
@@ -3805,6 +3875,59 @@ module Google
3805
3875
  end
3806
3876
  end
3807
3877
 
3878
+ # Represents a storage location in Cloud Storage
3879
+ class GoogleDevtoolsCloudbuildV1GcsLocation
3880
+ include Google::Apis::Core::Hashable
3881
+
3882
+ # Cloud Storage bucket. See https://cloud.google.com/storage/docs/naming#
3883
+ # requirements
3884
+ # Corresponds to the JSON property `bucket`
3885
+ # @return [String]
3886
+ attr_accessor :bucket
3887
+
3888
+ # Cloud Storage generation for the object. If the generation is omitted, the
3889
+ # latest generation will be used.
3890
+ # Corresponds to the JSON property `generation`
3891
+ # @return [Fixnum]
3892
+ attr_accessor :generation
3893
+
3894
+ # Cloud Storage object. See https://cloud.google.com/storage/docs/naming#
3895
+ # objectnames
3896
+ # Corresponds to the JSON property `object`
3897
+ # @return [String]
3898
+ attr_accessor :object
3899
+
3900
+ def initialize(**args)
3901
+ update!(**args)
3902
+ end
3903
+
3904
+ # Update properties of this object
3905
+ def update!(**args)
3906
+ @bucket = args[:bucket] if args.key?(:bucket)
3907
+ @generation = args[:generation] if args.key?(:generation)
3908
+ @object = args[:object] if args.key?(:object)
3909
+ end
3910
+ end
3911
+
3912
+ # GitConfig is a configuration for git operations.
3913
+ class GoogleDevtoolsCloudbuildV1GitConfig
3914
+ include Google::Apis::Core::Hashable
3915
+
3916
+ # HttpConfig is a configuration for HTTP related git operations.
3917
+ # Corresponds to the JSON property `http`
3918
+ # @return [Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1HttpConfig]
3919
+ attr_accessor :http
3920
+
3921
+ def initialize(**args)
3922
+ update!(**args)
3923
+ end
3924
+
3925
+ # Update properties of this object
3926
+ def update!(**args)
3927
+ @http = args[:http] if args.key?(:http)
3928
+ end
3929
+ end
3930
+
3808
3931
  # Location of the source in any accessible Git repository.
3809
3932
  class GoogleDevtoolsCloudbuildV1GitSource
3810
3933
  include Google::Apis::Core::Hashable
@@ -3871,6 +3994,32 @@ module Google
3871
3994
  end
3872
3995
  end
3873
3996
 
3997
+ # HttpConfig is a configuration for HTTP related git operations.
3998
+ class GoogleDevtoolsCloudbuildV1HttpConfig
3999
+ include Google::Apis::Core::Hashable
4000
+
4001
+ # SecretVersion resource of the HTTP proxy URL. The proxy URL should be in
4002
+ # format protocol://@]proxyhost[:port].
4003
+ # Corresponds to the JSON property `proxySecretVersionName`
4004
+ # @return [String]
4005
+ attr_accessor :proxy_secret_version_name
4006
+
4007
+ # Represents a storage location in Cloud Storage
4008
+ # Corresponds to the JSON property `proxySslCaInfo`
4009
+ # @return [Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1GcsLocation]
4010
+ attr_accessor :proxy_ssl_ca_info
4011
+
4012
+ def initialize(**args)
4013
+ update!(**args)
4014
+ end
4015
+
4016
+ # Update properties of this object
4017
+ def update!(**args)
4018
+ @proxy_secret_version_name = args[:proxy_secret_version_name] if args.key?(:proxy_secret_version_name)
4019
+ @proxy_ssl_ca_info = args[:proxy_ssl_ca_info] if args.key?(:proxy_ssl_ca_info)
4020
+ end
4021
+ end
4022
+
3874
4023
  # Pairs a set of secret environment variables mapped to encrypted values with
3875
4024
  # the Cloud KMS key to use to decrypt the value.
3876
4025
  class GoogleDevtoolsCloudbuildV1InlineSecret
@@ -4124,7 +4273,8 @@ module Google
4124
4273
  # List of build step outputs, produced by builder images, in the order
4125
4274
  # corresponding to build step indices. [Cloud Builders](https://cloud.google.com/
4126
4275
  # cloud-build/docs/cloud-builders) can produce this output by writing to `$
4127
- # BUILDER_OUTPUT/output`. Only the first 50KB of data is stored.
4276
+ # BUILDER_OUTPUT/output`. Only the first 50KB of data is stored. Note that the `$
4277
+ # BUILDER_OUTPUT` variable is read-only and can't be substituted.
4128
4278
  # Corresponds to the JSON property `buildStepOutputs`
4129
4279
  # @return [Array<String>]
4130
4280
  attr_accessor :build_step_outputs
@@ -4266,6 +4416,11 @@ module Google
4266
4416
  # @return [Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1ConnectedRepository]
4267
4417
  attr_accessor :connected_repository
4268
4418
 
4419
+ # This config defines the location of a source through Developer Connect.
4420
+ # Corresponds to the JSON property `developerConnectConfig`
4421
+ # @return [Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1DeveloperConnectConfig]
4422
+ attr_accessor :developer_connect_config
4423
+
4269
4424
  # Location of the source in any accessible Git repository.
4270
4425
  # Corresponds to the JSON property `gitSource`
4271
4426
  # @return [Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1GitSource]
@@ -4295,6 +4450,7 @@ module Google
4295
4450
  # Update properties of this object
4296
4451
  def update!(**args)
4297
4452
  @connected_repository = args[:connected_repository] if args.key?(:connected_repository)
4453
+ @developer_connect_config = args[:developer_connect_config] if args.key?(:developer_connect_config)
4298
4454
  @git_source = args[:git_source] if args.key?(:git_source)
4299
4455
  @repo_source = args[:repo_source] if args.key?(:repo_source)
4300
4456
  @storage_source = args[:storage_source] if args.key?(:storage_source)
@@ -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.62.0"
19
+ GEM_VERSION = "0.64.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240412"
25
+ REVISION = "20240510"
26
26
  end
27
27
  end
28
28
  end
@@ -202,6 +202,12 @@ module Google
202
202
  include Google::Apis::Core::JsonObjectSupport
203
203
  end
204
204
 
205
+ class GoogleCloudRunV2NodeSelector
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
205
211
  class GoogleCloudRunV2Overrides
206
212
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
213
 
@@ -400,6 +406,12 @@ module Google
400
406
  include Google::Apis::Core::JsonObjectSupport
401
407
  end
402
408
 
409
+ class GoogleDevtoolsCloudbuildV1DeveloperConnectConfig
410
+ class Representation < Google::Apis::Core::JsonRepresentation; end
411
+
412
+ include Google::Apis::Core::JsonObjectSupport
413
+ end
414
+
403
415
  class GoogleDevtoolsCloudbuildV1FailureInfo
404
416
  class Representation < Google::Apis::Core::JsonRepresentation; end
405
417
 
@@ -412,6 +424,18 @@ module Google
412
424
  include Google::Apis::Core::JsonObjectSupport
413
425
  end
414
426
 
427
+ class GoogleDevtoolsCloudbuildV1GcsLocation
428
+ class Representation < Google::Apis::Core::JsonRepresentation; end
429
+
430
+ include Google::Apis::Core::JsonObjectSupport
431
+ end
432
+
433
+ class GoogleDevtoolsCloudbuildV1GitConfig
434
+ class Representation < Google::Apis::Core::JsonRepresentation; end
435
+
436
+ include Google::Apis::Core::JsonObjectSupport
437
+ end
438
+
415
439
  class GoogleDevtoolsCloudbuildV1GitSource
416
440
  class Representation < Google::Apis::Core::JsonRepresentation; end
417
441
 
@@ -424,6 +448,12 @@ module Google
424
448
  include Google::Apis::Core::JsonObjectSupport
425
449
  end
426
450
 
451
+ class GoogleDevtoolsCloudbuildV1HttpConfig
452
+ class Representation < Google::Apis::Core::JsonRepresentation; end
453
+
454
+ include Google::Apis::Core::JsonObjectSupport
455
+ end
456
+
427
457
  class GoogleDevtoolsCloudbuildV1InlineSecret
428
458
  class Representation < Google::Apis::Core::JsonRepresentation; end
429
459
 
@@ -972,6 +1002,13 @@ module Google
972
1002
  end
973
1003
  end
974
1004
 
1005
+ class GoogleCloudRunV2NodeSelector
1006
+ # @private
1007
+ class Representation < Google::Apis::Core::JsonRepresentation
1008
+ property :accelerator, as: 'accelerator'
1009
+ end
1010
+ end
1011
+
975
1012
  class GoogleCloudRunV2Overrides
976
1013
  # @private
977
1014
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1029,6 +1066,8 @@ module Google
1029
1066
  property :log_uri, as: 'logUri'
1030
1067
  property :max_instance_request_concurrency, as: 'maxInstanceRequestConcurrency'
1031
1068
  property :name, as: 'name'
1069
+ property :node_selector, as: 'nodeSelector', class: Google::Apis::RunV2::GoogleCloudRunV2NodeSelector, decorator: Google::Apis::RunV2::GoogleCloudRunV2NodeSelector::Representation
1070
+
1032
1071
  property :observed_generation, :numeric_string => true, as: 'observedGeneration'
1033
1072
  property :reconciling, as: 'reconciling'
1034
1073
  property :satisfies_pzs, as: 'satisfiesPzs'
@@ -1075,6 +1114,8 @@ module Google
1075
1114
  property :health_check_disabled, as: 'healthCheckDisabled'
1076
1115
  hash :labels, as: 'labels'
1077
1116
  property :max_instance_request_concurrency, as: 'maxInstanceRequestConcurrency'
1117
+ property :node_selector, as: 'nodeSelector', class: Google::Apis::RunV2::GoogleCloudRunV2NodeSelector, decorator: Google::Apis::RunV2::GoogleCloudRunV2NodeSelector::Representation
1118
+
1078
1119
  property :revision, as: 'revision'
1079
1120
  property :scaling, as: 'scaling', class: Google::Apis::RunV2::GoogleCloudRunV2RevisionScaling, decorator: Google::Apis::RunV2::GoogleCloudRunV2RevisionScaling::Representation
1080
1121
 
@@ -1365,6 +1406,8 @@ module Google
1365
1406
  property :failure_info, as: 'failureInfo', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FailureInfo, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1FailureInfo::Representation
1366
1407
 
1367
1408
  property :finish_time, as: 'finishTime'
1409
+ property :git_config, as: 'gitConfig', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1GitConfig, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1GitConfig::Representation
1410
+
1368
1411
  property :id, as: 'id'
1369
1412
  collection :images, as: 'images'
1370
1413
  property :log_url, as: 'logUrl'
@@ -1486,6 +1529,15 @@ module Google
1486
1529
  end
1487
1530
  end
1488
1531
 
1532
+ class GoogleDevtoolsCloudbuildV1DeveloperConnectConfig
1533
+ # @private
1534
+ class Representation < Google::Apis::Core::JsonRepresentation
1535
+ property :dir, as: 'dir'
1536
+ property :git_repository_link, as: 'gitRepositoryLink'
1537
+ property :revision, as: 'revision'
1538
+ end
1539
+ end
1540
+
1489
1541
  class GoogleDevtoolsCloudbuildV1FailureInfo
1490
1542
  # @private
1491
1543
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1502,6 +1554,23 @@ module Google
1502
1554
  end
1503
1555
  end
1504
1556
 
1557
+ class GoogleDevtoolsCloudbuildV1GcsLocation
1558
+ # @private
1559
+ class Representation < Google::Apis::Core::JsonRepresentation
1560
+ property :bucket, as: 'bucket'
1561
+ property :generation, :numeric_string => true, as: 'generation'
1562
+ property :object, as: 'object'
1563
+ end
1564
+ end
1565
+
1566
+ class GoogleDevtoolsCloudbuildV1GitConfig
1567
+ # @private
1568
+ class Representation < Google::Apis::Core::JsonRepresentation
1569
+ property :http, as: 'http', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1HttpConfig, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1HttpConfig::Representation
1570
+
1571
+ end
1572
+ end
1573
+
1505
1574
  class GoogleDevtoolsCloudbuildV1GitSource
1506
1575
  # @private
1507
1576
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1519,6 +1588,15 @@ module Google
1519
1588
  end
1520
1589
  end
1521
1590
 
1591
+ class GoogleDevtoolsCloudbuildV1HttpConfig
1592
+ # @private
1593
+ class Representation < Google::Apis::Core::JsonRepresentation
1594
+ property :proxy_secret_version_name, as: 'proxySecretVersionName'
1595
+ property :proxy_ssl_ca_info, as: 'proxySslCaInfo', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1GcsLocation, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1GcsLocation::Representation
1596
+
1597
+ end
1598
+ end
1599
+
1522
1600
  class GoogleDevtoolsCloudbuildV1InlineSecret
1523
1601
  # @private
1524
1602
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1626,6 +1704,8 @@ module Google
1626
1704
  class Representation < Google::Apis::Core::JsonRepresentation
1627
1705
  property :connected_repository, as: 'connectedRepository', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1ConnectedRepository, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1ConnectedRepository::Representation
1628
1706
 
1707
+ property :developer_connect_config, as: 'developerConnectConfig', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1DeveloperConnectConfig, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1DeveloperConnectConfig::Representation
1708
+
1629
1709
  property :git_source, as: 'gitSource', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1GitSource, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1GitSource::Representation
1630
1710
 
1631
1711
  property :repo_source, as: 'repoSource', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1RepoSource, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1RepoSource::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-run_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.62.0
4
+ version: 0.64.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-04-21 00:00:00.000000000 Z
11
+ date: 2024-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.15.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.14.0
29
+ version: 0.15.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.62.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.64.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2
63
63
  post_install_message:
64
64
  rdoc_options: []