google-apis-run_v2 0.90.0 → 0.92.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: 4d8e0238aa05b8ebda3dc41823c5933becd6efb77d362f12b13472e22aadac5c
4
- data.tar.gz: 80e1540f70872049bf942e212a71df58674ec09bf24b60a36d5ca570a71827d4
3
+ metadata.gz: 168abc5f0041b400af42b51411d9b5cbbcd2ec76a212d99d19cfd493ab3db3e5
4
+ data.tar.gz: 28a77687d8aa1db37d954097319cd24dacda4b521048e600e526e4bb0b217261
5
5
  SHA512:
6
- metadata.gz: 04cdc0bc30c6d1bcdf94e14c09668bc55ae6d644c5292579e01b0598e258e45500da01a05ab7373e6173d086f59707649e2a0007d7d6512a026a98d4fc6723fa
7
- data.tar.gz: f8ae3ea182b1173ba206186ee5be42d72c567a1eb6fc7a22d5a733808f816422896ea3351bb060cd7e6e4ed66d1ca066397ae4fdc79026a7cb9ea25db5b5e42c
6
+ metadata.gz: 6fc6110f67130661286d69675c5f6b634bdda8f63068cd076bd9751237b9710cfd74c66eff33c75475c5f5ae75e8713c0b473ecb9d3e059bc1175ebdfd2e1ebf
7
+ data.tar.gz: 359736b8fe3481663efb11420a27bb8e4f112c33874a2431594bef3edf7a5372b8898e9c88a700184f1114a582fe58be7956b82d08c93344b484cc852c74c4fd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-run_v2
2
2
 
3
+ ### v0.92.0 (2025-07-20)
4
+
5
+ * Regenerated from discovery document revision 20250712
6
+
7
+ ### v0.91.0 (2025-07-13)
8
+
9
+ * Regenerated from discovery document revision 20250704
10
+
3
11
  ### v0.90.0 (2025-06-29)
4
12
 
5
13
  * Regenerated from discovery document revision 20250620
@@ -3312,6 +3312,12 @@ module Google
3312
3312
  # @return [String]
3313
3313
  attr_accessor :execution_environment
3314
3314
 
3315
+ # Optional. True if GPU zonal redundancy is disabled on this task template.
3316
+ # Corresponds to the JSON property `gpuZonalRedundancyDisabled`
3317
+ # @return [Boolean]
3318
+ attr_accessor :gpu_zonal_redundancy_disabled
3319
+ alias_method :gpu_zonal_redundancy_disabled?, :gpu_zonal_redundancy_disabled
3320
+
3315
3321
  # Number of retries allowed per Task, before marking this Task failed. Defaults
3316
3322
  # to 3.
3317
3323
  # Corresponds to the JSON property `maxRetries`
@@ -3359,6 +3365,7 @@ module Google
3359
3365
  @containers = args[:containers] if args.key?(:containers)
3360
3366
  @encryption_key = args[:encryption_key] if args.key?(:encryption_key)
3361
3367
  @execution_environment = args[:execution_environment] if args.key?(:execution_environment)
3368
+ @gpu_zonal_redundancy_disabled = args[:gpu_zonal_redundancy_disabled] if args.key?(:gpu_zonal_redundancy_disabled)
3362
3369
  @max_retries = args[:max_retries] if args.key?(:max_retries)
3363
3370
  @node_selector = args[:node_selector] if args.key?(:node_selector)
3364
3371
  @service_account = args[:service_account] if args.key?(:service_account)
@@ -3765,8 +3772,8 @@ module Google
3765
3772
 
3766
3773
  # The fully qualified name of this WorkerPool. In CreateWorkerPoolRequest, this
3767
3774
  # field is ignored, and instead composed from CreateWorkerPoolRequest.parent and
3768
- # CreateWorkerPoolRequest.worker_id. Format: projects/`project`/locations/`
3769
- # location`/workerPools/`worker_id`
3775
+ # CreateWorkerPoolRequest.worker_id. Format: `projects/`project`/locations/`
3776
+ # location`/workerPools/`worker_id``
3770
3777
  # Corresponds to the JSON property `name`
3771
3778
  # @return [String]
3772
3779
  attr_accessor :name
@@ -3915,6 +3922,12 @@ module Google
3915
3922
  # @return [String]
3916
3923
  attr_accessor :encryption_key_shutdown_duration
3917
3924
 
3925
+ # Optional. True if GPU zonal redundancy is disabled on this worker pool.
3926
+ # Corresponds to the JSON property `gpuZonalRedundancyDisabled`
3927
+ # @return [Boolean]
3928
+ attr_accessor :gpu_zonal_redundancy_disabled
3929
+ alias_method :gpu_zonal_redundancy_disabled?, :gpu_zonal_redundancy_disabled
3930
+
3918
3931
  # Optional. Unstructured key value map that can be used to organize and
3919
3932
  # categorize objects. User-provided labels are shared with Google's billing
3920
3933
  # system, so they can be used to filter, or break down billing charges by team,
@@ -3976,6 +3989,7 @@ module Google
3976
3989
  @encryption_key = args[:encryption_key] if args.key?(:encryption_key)
3977
3990
  @encryption_key_revocation_action = args[:encryption_key_revocation_action] if args.key?(:encryption_key_revocation_action)
3978
3991
  @encryption_key_shutdown_duration = args[:encryption_key_shutdown_duration] if args.key?(:encryption_key_shutdown_duration)
3992
+ @gpu_zonal_redundancy_disabled = args[:gpu_zonal_redundancy_disabled] if args.key?(:gpu_zonal_redundancy_disabled)
3979
3993
  @labels = args[:labels] if args.key?(:labels)
3980
3994
  @node_selector = args[:node_selector] if args.key?(:node_selector)
3981
3995
  @revision = args[:revision] if args.key?(:revision)
@@ -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.90.0"
19
+ GEM_VERSION = "0.92.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 = "20250620"
25
+ REVISION = "20250712"
26
26
  end
27
27
  end
28
28
  end
@@ -1539,6 +1539,7 @@ module Google
1539
1539
 
1540
1540
  property :encryption_key, as: 'encryptionKey'
1541
1541
  property :execution_environment, as: 'executionEnvironment'
1542
+ property :gpu_zonal_redundancy_disabled, as: 'gpuZonalRedundancyDisabled'
1542
1543
  property :max_retries, as: 'maxRetries'
1543
1544
  property :node_selector, as: 'nodeSelector', class: Google::Apis::RunV2::GoogleCloudRunV2NodeSelector, decorator: Google::Apis::RunV2::GoogleCloudRunV2NodeSelector::Representation
1544
1545
 
@@ -1667,6 +1668,7 @@ module Google
1667
1668
  property :encryption_key, as: 'encryptionKey'
1668
1669
  property :encryption_key_revocation_action, as: 'encryptionKeyRevocationAction'
1669
1670
  property :encryption_key_shutdown_duration, as: 'encryptionKeyShutdownDuration'
1671
+ property :gpu_zonal_redundancy_disabled, as: 'gpuZonalRedundancyDisabled'
1670
1672
  hash :labels, as: 'labels'
1671
1673
  property :node_selector, as: 'nodeSelector', class: Google::Apis::RunV2::GoogleCloudRunV2NodeSelector, decorator: Google::Apis::RunV2::GoogleCloudRunV2NodeSelector::Representation
1672
1674
 
@@ -1459,7 +1459,7 @@ module Google
1459
1459
  # Creates a new WorkerPool in a given project and location.
1460
1460
  # @param [String] parent
1461
1461
  # Required. The location and project in which this worker pool should be created.
1462
- # Format: projects/`project`/locations/`location`, where `project` can be
1462
+ # Format: `projects/`project`/locations/`location``, where ``project`` can be
1463
1463
  # project id or number. Only lowercase characters, digits, and hyphens.
1464
1464
  # @param [Google::Apis::RunV2::GoogleCloudRunV2WorkerPool] google_cloud_run_v2_worker_pool_object
1465
1465
  # @param [Boolean] validate_only
@@ -1468,7 +1468,7 @@ module Google
1468
1468
  # @param [String] worker_pool_id
1469
1469
  # Required. The unique identifier for the WorkerPool. It must begin with letter,
1470
1470
  # and cannot end with hyphen; must contain fewer than 50 characters. The name of
1471
- # the worker pool becomes `parent`/workerPools/`worker_pool_id`.
1471
+ # the worker pool becomes ``parent`/workerPools/`worker_pool_id``.
1472
1472
  # @param [String] fields
1473
1473
  # Selector specifying which fields to include in a partial response.
1474
1474
  # @param [String] quota_user
@@ -1502,9 +1502,9 @@ module Google
1502
1502
 
1503
1503
  # Deletes a WorkerPool.
1504
1504
  # @param [String] name
1505
- # Required. The full name of the WorkerPool. Format: projects/`project`/
1506
- # locations/`location`/workerPools/`worker_pool`, where `project` can be project
1507
- # id or number.
1505
+ # Required. The full name of the WorkerPool. Format: `projects/`project`/
1506
+ # locations/`location`/workerPools/`worker_pool``, where ``project`` can be
1507
+ # project id or number.
1508
1508
  # @param [String] etag
1509
1509
  # A system-generated fingerprint for this version of the resource. May be used
1510
1510
  # to detect modification conflict during updates.
@@ -1542,9 +1542,9 @@ module Google
1542
1542
 
1543
1543
  # Gets information about a WorkerPool.
1544
1544
  # @param [String] name
1545
- # Required. The full name of the WorkerPool. Format: projects/`project`/
1546
- # locations/`location`/workerPools/`worker_pool`, where `project` can be project
1547
- # id or number.
1545
+ # Required. The full name of the WorkerPool. Format: `projects/`project`/
1546
+ # locations/`location`/workerPools/`worker_pool``, where ``project`` can be
1547
+ # project id or number.
1548
1548
  # @param [String] fields
1549
1549
  # Selector specifying which fields to include in a partial response.
1550
1550
  # @param [String] quota_user
@@ -1620,8 +1620,8 @@ module Google
1620
1620
  # Lists WorkerPools. Results are sorted by creation time, descending.
1621
1621
  # @param [String] parent
1622
1622
  # Required. The location and project to list resources on. Location must be a
1623
- # valid Google Cloud region, and cannot be the "-" wildcard. Format: projects/`
1624
- # project`/locations/`location`, where `project` can be project id or number.
1623
+ # valid Google Cloud region, and cannot be the "-" wildcard. Format: `projects/`
1624
+ # project`/locations/`location``, where ``project`` can be project id or number.
1625
1625
  # @param [Fixnum] page_size
1626
1626
  # Maximum number of WorkerPools to return in this call.
1627
1627
  # @param [String] page_token
@@ -1663,8 +1663,8 @@ module Google
1663
1663
  # @param [String] name
1664
1664
  # The fully qualified name of this WorkerPool. In CreateWorkerPoolRequest, this
1665
1665
  # field is ignored, and instead composed from CreateWorkerPoolRequest.parent and
1666
- # CreateWorkerPoolRequest.worker_id. Format: projects/`project`/locations/`
1667
- # location`/workerPools/`worker_id`
1666
+ # CreateWorkerPoolRequest.worker_id. Format: `projects/`project`/locations/`
1667
+ # location`/workerPools/`worker_id``
1668
1668
  # @param [Google::Apis::RunV2::GoogleCloudRunV2WorkerPool] google_cloud_run_v2_worker_pool_object
1669
1669
  # @param [Boolean] allow_missing
1670
1670
  # Optional. If set to true, and if the WorkerPool does not exist, it will create
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.90.0
4
+ version: 0.92.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.90.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.92.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: