google-apis-run_v2 0.82.0 → 0.84.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.
@@ -130,7 +130,7 @@ module Google
130
130
  # service`` for Service `projects/`project_id_or_number`/locations/`location`/
131
131
  # services/`service`/revisions/`revision`` for Revision `projects/`
132
132
  # project_id_or_number`/locations/`location`/jobs/`job`/executions/`execution``
133
- # for Execution
133
+ # for Execution `project_id_or_number` may contains domain-scoped project IDs
134
134
  # @param [String] fields
135
135
  # Selector specifying which fields to include in a partial response.
136
136
  # @param [String] quota_user
@@ -1455,6 +1455,369 @@ module Google
1455
1455
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1456
1456
  execute_or_queue_command(command, &block)
1457
1457
  end
1458
+
1459
+ # Creates a new WorkerPool in a given project and location.
1460
+ # @param [String] parent
1461
+ # Required. The location and project in which this worker pool should be created.
1462
+ # Format: projects/`project`/locations/`location`, where `project` can be
1463
+ # project id or number. Only lowercase characters, digits, and hyphens.
1464
+ # @param [Google::Apis::RunV2::GoogleCloudRunV2WorkerPool] google_cloud_run_v2_worker_pool_object
1465
+ # @param [Boolean] validate_only
1466
+ # Optional. Indicates that the request should be validated and default values
1467
+ # populated, without persisting the request or creating any resources.
1468
+ # @param [String] worker_pool_id
1469
+ # Required. The unique identifier for the WorkerPool. It must begin with letter,
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`.
1472
+ # @param [String] fields
1473
+ # Selector specifying which fields to include in a partial response.
1474
+ # @param [String] quota_user
1475
+ # Available to use for quota purposes for server-side applications. Can be any
1476
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1477
+ # @param [Google::Apis::RequestOptions] options
1478
+ # Request-specific options
1479
+ #
1480
+ # @yield [result, err] Result & error if block supplied
1481
+ # @yieldparam result [Google::Apis::RunV2::GoogleLongrunningOperation] parsed result object
1482
+ # @yieldparam err [StandardError] error object if request failed
1483
+ #
1484
+ # @return [Google::Apis::RunV2::GoogleLongrunningOperation]
1485
+ #
1486
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1487
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1488
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1489
+ def create_project_location_worker_pool(parent, google_cloud_run_v2_worker_pool_object = nil, validate_only: nil, worker_pool_id: nil, fields: nil, quota_user: nil, options: nil, &block)
1490
+ command = make_simple_command(:post, 'v2/{+parent}/workerPools', options)
1491
+ command.request_representation = Google::Apis::RunV2::GoogleCloudRunV2WorkerPool::Representation
1492
+ command.request_object = google_cloud_run_v2_worker_pool_object
1493
+ command.response_representation = Google::Apis::RunV2::GoogleLongrunningOperation::Representation
1494
+ command.response_class = Google::Apis::RunV2::GoogleLongrunningOperation
1495
+ command.params['parent'] = parent unless parent.nil?
1496
+ command.query['validateOnly'] = validate_only unless validate_only.nil?
1497
+ command.query['workerPoolId'] = worker_pool_id unless worker_pool_id.nil?
1498
+ command.query['fields'] = fields unless fields.nil?
1499
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1500
+ execute_or_queue_command(command, &block)
1501
+ end
1502
+
1503
+ # Deletes a WorkerPool.
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.
1508
+ # @param [String] etag
1509
+ # A system-generated fingerprint for this version of the resource. May be used
1510
+ # to detect modification conflict during updates.
1511
+ # @param [Boolean] validate_only
1512
+ # Optional. Indicates that the request should be validated without actually
1513
+ # deleting any resources.
1514
+ # @param [String] fields
1515
+ # Selector specifying which fields to include in a partial response.
1516
+ # @param [String] quota_user
1517
+ # Available to use for quota purposes for server-side applications. Can be any
1518
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1519
+ # @param [Google::Apis::RequestOptions] options
1520
+ # Request-specific options
1521
+ #
1522
+ # @yield [result, err] Result & error if block supplied
1523
+ # @yieldparam result [Google::Apis::RunV2::GoogleLongrunningOperation] parsed result object
1524
+ # @yieldparam err [StandardError] error object if request failed
1525
+ #
1526
+ # @return [Google::Apis::RunV2::GoogleLongrunningOperation]
1527
+ #
1528
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1529
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1530
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1531
+ def delete_project_location_worker_pool(name, etag: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
1532
+ command = make_simple_command(:delete, 'v2/{+name}', options)
1533
+ command.response_representation = Google::Apis::RunV2::GoogleLongrunningOperation::Representation
1534
+ command.response_class = Google::Apis::RunV2::GoogleLongrunningOperation
1535
+ command.params['name'] = name unless name.nil?
1536
+ command.query['etag'] = etag unless etag.nil?
1537
+ command.query['validateOnly'] = validate_only unless validate_only.nil?
1538
+ command.query['fields'] = fields unless fields.nil?
1539
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1540
+ execute_or_queue_command(command, &block)
1541
+ end
1542
+
1543
+ # Gets information about a WorkerPool.
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.
1548
+ # @param [String] fields
1549
+ # Selector specifying which fields to include in a partial response.
1550
+ # @param [String] quota_user
1551
+ # Available to use for quota purposes for server-side applications. Can be any
1552
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1553
+ # @param [Google::Apis::RequestOptions] options
1554
+ # Request-specific options
1555
+ #
1556
+ # @yield [result, err] Result & error if block supplied
1557
+ # @yieldparam result [Google::Apis::RunV2::GoogleCloudRunV2WorkerPool] parsed result object
1558
+ # @yieldparam err [StandardError] error object if request failed
1559
+ #
1560
+ # @return [Google::Apis::RunV2::GoogleCloudRunV2WorkerPool]
1561
+ #
1562
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1563
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1564
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1565
+ def get_project_location_worker_pool(name, fields: nil, quota_user: nil, options: nil, &block)
1566
+ command = make_simple_command(:get, 'v2/{+name}', options)
1567
+ command.response_representation = Google::Apis::RunV2::GoogleCloudRunV2WorkerPool::Representation
1568
+ command.response_class = Google::Apis::RunV2::GoogleCloudRunV2WorkerPool
1569
+ command.params['name'] = name unless name.nil?
1570
+ command.query['fields'] = fields unless fields.nil?
1571
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1572
+ execute_or_queue_command(command, &block)
1573
+ end
1574
+
1575
+ # Lists WorkerPools. Results are sorted by creation time, descending.
1576
+ # @param [String] parent
1577
+ # Required. The location and project to list resources on. Location must be a
1578
+ # valid Google Cloud region, and cannot be the "-" wildcard. Format: projects/`
1579
+ # project`/locations/`location`, where `project` can be project id or number.
1580
+ # @param [Fixnum] page_size
1581
+ # Maximum number of WorkerPools to return in this call.
1582
+ # @param [String] page_token
1583
+ # A page token received from a previous call to ListWorkerPools. All other
1584
+ # parameters must match.
1585
+ # @param [Boolean] show_deleted
1586
+ # If true, returns deleted (but unexpired) resources along with active ones.
1587
+ # @param [String] fields
1588
+ # Selector specifying which fields to include in a partial response.
1589
+ # @param [String] quota_user
1590
+ # Available to use for quota purposes for server-side applications. Can be any
1591
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1592
+ # @param [Google::Apis::RequestOptions] options
1593
+ # Request-specific options
1594
+ #
1595
+ # @yield [result, err] Result & error if block supplied
1596
+ # @yieldparam result [Google::Apis::RunV2::GoogleCloudRunV2ListWorkerPoolsResponse] parsed result object
1597
+ # @yieldparam err [StandardError] error object if request failed
1598
+ #
1599
+ # @return [Google::Apis::RunV2::GoogleCloudRunV2ListWorkerPoolsResponse]
1600
+ #
1601
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1602
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1603
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1604
+ def list_project_location_worker_pools(parent, page_size: nil, page_token: nil, show_deleted: nil, fields: nil, quota_user: nil, options: nil, &block)
1605
+ command = make_simple_command(:get, 'v2/{+parent}/workerPools', options)
1606
+ command.response_representation = Google::Apis::RunV2::GoogleCloudRunV2ListWorkerPoolsResponse::Representation
1607
+ command.response_class = Google::Apis::RunV2::GoogleCloudRunV2ListWorkerPoolsResponse
1608
+ command.params['parent'] = parent unless parent.nil?
1609
+ command.query['pageSize'] = page_size unless page_size.nil?
1610
+ command.query['pageToken'] = page_token unless page_token.nil?
1611
+ command.query['showDeleted'] = show_deleted unless show_deleted.nil?
1612
+ command.query['fields'] = fields unless fields.nil?
1613
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1614
+ execute_or_queue_command(command, &block)
1615
+ end
1616
+
1617
+ # Updates a WorkerPool.
1618
+ # @param [String] name
1619
+ # The fully qualified name of this WorkerPool. In CreateWorkerPoolRequest, this
1620
+ # field is ignored, and instead composed from CreateWorkerPoolRequest.parent and
1621
+ # CreateWorkerPoolRequest.worker_id. Format: projects/`project`/locations/`
1622
+ # location`/workerPools/`worker_id`
1623
+ # @param [Google::Apis::RunV2::GoogleCloudRunV2WorkerPool] google_cloud_run_v2_worker_pool_object
1624
+ # @param [Boolean] allow_missing
1625
+ # Optional. If set to true, and if the WorkerPool does not exist, it will create
1626
+ # a new one. The caller must have 'run.workerpools.create' permissions if this
1627
+ # is set to true and the WorkerPool does not exist.
1628
+ # @param [Boolean] force_new_revision
1629
+ # Optional. If set to true, a new revision will be created from the template
1630
+ # even if the system doesn't detect any changes from the previously deployed
1631
+ # revision. This may be useful for cases where the underlying resources need to
1632
+ # be recreated or reinitialized. For example if the image is specified by label,
1633
+ # but the underlying image digest has changed) or if the container performs
1634
+ # deployment initialization work that needs to be performed again.
1635
+ # @param [String] update_mask
1636
+ # Optional. The list of fields to be updated.
1637
+ # @param [Boolean] validate_only
1638
+ # Optional. Indicates that the request should be validated and default values
1639
+ # populated, without persisting the request or updating any resources.
1640
+ # @param [String] fields
1641
+ # Selector specifying which fields to include in a partial response.
1642
+ # @param [String] quota_user
1643
+ # Available to use for quota purposes for server-side applications. Can be any
1644
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1645
+ # @param [Google::Apis::RequestOptions] options
1646
+ # Request-specific options
1647
+ #
1648
+ # @yield [result, err] Result & error if block supplied
1649
+ # @yieldparam result [Google::Apis::RunV2::GoogleLongrunningOperation] parsed result object
1650
+ # @yieldparam err [StandardError] error object if request failed
1651
+ #
1652
+ # @return [Google::Apis::RunV2::GoogleLongrunningOperation]
1653
+ #
1654
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1655
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1656
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1657
+ def patch_project_location_worker_pool(name, google_cloud_run_v2_worker_pool_object = nil, allow_missing: nil, force_new_revision: nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
1658
+ command = make_simple_command(:patch, 'v2/{+name}', options)
1659
+ command.request_representation = Google::Apis::RunV2::GoogleCloudRunV2WorkerPool::Representation
1660
+ command.request_object = google_cloud_run_v2_worker_pool_object
1661
+ command.response_representation = Google::Apis::RunV2::GoogleLongrunningOperation::Representation
1662
+ command.response_class = Google::Apis::RunV2::GoogleLongrunningOperation
1663
+ command.params['name'] = name unless name.nil?
1664
+ command.query['allowMissing'] = allow_missing unless allow_missing.nil?
1665
+ command.query['forceNewRevision'] = force_new_revision unless force_new_revision.nil?
1666
+ command.query['updateMask'] = update_mask unless update_mask.nil?
1667
+ command.query['validateOnly'] = validate_only unless validate_only.nil?
1668
+ command.query['fields'] = fields unless fields.nil?
1669
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1670
+ execute_or_queue_command(command, &block)
1671
+ end
1672
+
1673
+ # Returns permissions that a caller has on the specified Project. There are no
1674
+ # permissions required for making this API call.
1675
+ # @param [String] resource
1676
+ # REQUIRED: The resource for which the policy detail is being requested. See [
1677
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
1678
+ # appropriate value for this field.
1679
+ # @param [Google::Apis::RunV2::GoogleIamV1TestIamPermissionsRequest] google_iam_v1_test_iam_permissions_request_object
1680
+ # @param [String] fields
1681
+ # Selector specifying which fields to include in a partial response.
1682
+ # @param [String] quota_user
1683
+ # Available to use for quota purposes for server-side applications. Can be any
1684
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1685
+ # @param [Google::Apis::RequestOptions] options
1686
+ # Request-specific options
1687
+ #
1688
+ # @yield [result, err] Result & error if block supplied
1689
+ # @yieldparam result [Google::Apis::RunV2::GoogleIamV1TestIamPermissionsResponse] parsed result object
1690
+ # @yieldparam err [StandardError] error object if request failed
1691
+ #
1692
+ # @return [Google::Apis::RunV2::GoogleIamV1TestIamPermissionsResponse]
1693
+ #
1694
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1695
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1696
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1697
+ def test_project_location_worker_pool_iam_permissions(resource, google_iam_v1_test_iam_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1698
+ command = make_simple_command(:post, 'v2/{+resource}:testIamPermissions', options)
1699
+ command.request_representation = Google::Apis::RunV2::GoogleIamV1TestIamPermissionsRequest::Representation
1700
+ command.request_object = google_iam_v1_test_iam_permissions_request_object
1701
+ command.response_representation = Google::Apis::RunV2::GoogleIamV1TestIamPermissionsResponse::Representation
1702
+ command.response_class = Google::Apis::RunV2::GoogleIamV1TestIamPermissionsResponse
1703
+ command.params['resource'] = resource unless resource.nil?
1704
+ command.query['fields'] = fields unless fields.nil?
1705
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1706
+ execute_or_queue_command(command, &block)
1707
+ end
1708
+
1709
+ # Deletes a Revision.
1710
+ # @param [String] name
1711
+ # Required. The name of the Revision to delete. Format: projects/`project`/
1712
+ # locations/`location`/services/`service`/revisions/`revision`
1713
+ # @param [String] etag
1714
+ # A system-generated fingerprint for this version of the resource. This may be
1715
+ # used to detect modification conflict during updates.
1716
+ # @param [Boolean] validate_only
1717
+ # Indicates that the request should be validated without actually deleting any
1718
+ # resources.
1719
+ # @param [String] fields
1720
+ # Selector specifying which fields to include in a partial response.
1721
+ # @param [String] quota_user
1722
+ # Available to use for quota purposes for server-side applications. Can be any
1723
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1724
+ # @param [Google::Apis::RequestOptions] options
1725
+ # Request-specific options
1726
+ #
1727
+ # @yield [result, err] Result & error if block supplied
1728
+ # @yieldparam result [Google::Apis::RunV2::GoogleLongrunningOperation] parsed result object
1729
+ # @yieldparam err [StandardError] error object if request failed
1730
+ #
1731
+ # @return [Google::Apis::RunV2::GoogleLongrunningOperation]
1732
+ #
1733
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1734
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1735
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1736
+ def delete_project_location_worker_pool_revision(name, etag: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
1737
+ command = make_simple_command(:delete, 'v2/{+name}', options)
1738
+ command.response_representation = Google::Apis::RunV2::GoogleLongrunningOperation::Representation
1739
+ command.response_class = Google::Apis::RunV2::GoogleLongrunningOperation
1740
+ command.params['name'] = name unless name.nil?
1741
+ command.query['etag'] = etag unless etag.nil?
1742
+ command.query['validateOnly'] = validate_only unless validate_only.nil?
1743
+ command.query['fields'] = fields unless fields.nil?
1744
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1745
+ execute_or_queue_command(command, &block)
1746
+ end
1747
+
1748
+ # Gets information about a Revision.
1749
+ # @param [String] name
1750
+ # Required. The full name of the Revision. Format: projects/`project`/locations/`
1751
+ # location`/services/`service`/revisions/`revision`
1752
+ # @param [String] fields
1753
+ # Selector specifying which fields to include in a partial response.
1754
+ # @param [String] quota_user
1755
+ # Available to use for quota purposes for server-side applications. Can be any
1756
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1757
+ # @param [Google::Apis::RequestOptions] options
1758
+ # Request-specific options
1759
+ #
1760
+ # @yield [result, err] Result & error if block supplied
1761
+ # @yieldparam result [Google::Apis::RunV2::GoogleCloudRunV2Revision] parsed result object
1762
+ # @yieldparam err [StandardError] error object if request failed
1763
+ #
1764
+ # @return [Google::Apis::RunV2::GoogleCloudRunV2Revision]
1765
+ #
1766
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1767
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1768
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1769
+ def get_project_location_worker_pool_revision(name, fields: nil, quota_user: nil, options: nil, &block)
1770
+ command = make_simple_command(:get, 'v2/{+name}', options)
1771
+ command.response_representation = Google::Apis::RunV2::GoogleCloudRunV2Revision::Representation
1772
+ command.response_class = Google::Apis::RunV2::GoogleCloudRunV2Revision
1773
+ command.params['name'] = name unless name.nil?
1774
+ command.query['fields'] = fields unless fields.nil?
1775
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1776
+ execute_or_queue_command(command, &block)
1777
+ end
1778
+
1779
+ # Lists Revisions from a given Service, or from a given location. Results are
1780
+ # sorted by creation time, descending.
1781
+ # @param [String] parent
1782
+ # Required. The Service from which the Revisions should be listed. To list all
1783
+ # Revisions across Services, use "-" instead of Service name. Format: projects/`
1784
+ # project`/locations/`location`/services/`service`
1785
+ # @param [Fixnum] page_size
1786
+ # Maximum number of revisions to return in this call.
1787
+ # @param [String] page_token
1788
+ # A page token received from a previous call to ListRevisions. All other
1789
+ # parameters must match.
1790
+ # @param [Boolean] show_deleted
1791
+ # If true, returns deleted (but unexpired) resources along with active ones.
1792
+ # @param [String] fields
1793
+ # Selector specifying which fields to include in a partial response.
1794
+ # @param [String] quota_user
1795
+ # Available to use for quota purposes for server-side applications. Can be any
1796
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1797
+ # @param [Google::Apis::RequestOptions] options
1798
+ # Request-specific options
1799
+ #
1800
+ # @yield [result, err] Result & error if block supplied
1801
+ # @yieldparam result [Google::Apis::RunV2::GoogleCloudRunV2ListRevisionsResponse] parsed result object
1802
+ # @yieldparam err [StandardError] error object if request failed
1803
+ #
1804
+ # @return [Google::Apis::RunV2::GoogleCloudRunV2ListRevisionsResponse]
1805
+ #
1806
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1807
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1808
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1809
+ def list_project_location_worker_pool_revisions(parent, page_size: nil, page_token: nil, show_deleted: nil, fields: nil, quota_user: nil, options: nil, &block)
1810
+ command = make_simple_command(:get, 'v2/{+parent}/revisions', options)
1811
+ command.response_representation = Google::Apis::RunV2::GoogleCloudRunV2ListRevisionsResponse::Representation
1812
+ command.response_class = Google::Apis::RunV2::GoogleCloudRunV2ListRevisionsResponse
1813
+ command.params['parent'] = parent unless parent.nil?
1814
+ command.query['pageSize'] = page_size unless page_size.nil?
1815
+ command.query['pageToken'] = page_token unless page_token.nil?
1816
+ command.query['showDeleted'] = show_deleted unless show_deleted.nil?
1817
+ command.query['fields'] = fields unless fields.nil?
1818
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1819
+ execute_or_queue_command(command, &block)
1820
+ end
1458
1821
 
1459
1822
  protected
1460
1823
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-run_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.82.0
4
+ version: 0.84.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-12 00:00:00.000000000 Z
10
+ date: 2025-03-23 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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.82.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.84.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:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.2
76
+ rubygems_version: 3.6.5
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Cloud Run Admin API V2
79
79
  test_files: []