google-apis-appengine_v1 0.57.0 → 0.59.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: b2eb95ab06361381e78c14f037b2f8270c1e598f440fd8fecfde22134aa34775
4
- data.tar.gz: 3a697a9f5cb2c23f322c11dd87cb008f21495c9ea37867b1092ba33364ecdd20
3
+ metadata.gz: f9160c85d584eaaa02c4ce1d9b4d80301e26dd73720046a15625f6da72aaff26
4
+ data.tar.gz: 0022c00660813a33ad400c16fb4e6eb6057645178fe9e2eab276e4744ddfa599
5
5
  SHA512:
6
- metadata.gz: ea593113e83f2b3475ab710a0a505cb5b25b718afe3e4a86220370037626b04908418e2ee1de333e163e7347d8fc493b19ace6b57b691cee9fa7c93fc910385b
7
- data.tar.gz: 7b3246aa5962069a9ceded9526e7081aba0b06e882dbbec4de3978b033da2dfaf43066c110565aa6df55ecce39063773de170ec7e63fe18febf0557be3c48103
6
+ metadata.gz: 5df6bfa2bfd93827078d614a04f53a847b04bfd7e710e867afcceaa46999337bb7aff041b2969e8222463e105a544a7e17298f849409e591244dc22a6bc49e34
7
+ data.tar.gz: 10ad5889ffac839c3cb13622de175fbca8174ee48e70becd9c52c681c179be402a7a9426cc1d8e5d03061b44cc20666f4ce2323fb2efecbe74444b3fbadfcdbc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-appengine_v1
2
2
 
3
+ ### v0.59.0 (2025-04-20)
4
+
5
+ * Regenerated from discovery document revision 20250409
6
+
7
+ ### v0.58.0 (2025-03-16)
8
+
9
+ * Regenerated from discovery document revision 20250310
10
+
3
11
  ### v0.57.0 (2025-03-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20250223
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AppengineV1
18
18
  # Version of the google-apis-appengine_v1 gem
19
- GEM_VERSION = "0.57.0"
19
+ GEM_VERSION = "0.59.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250223"
25
+ REVISION = "20250409"
26
26
  end
27
27
  end
28
28
  end
@@ -901,6 +901,9 @@ module Google
901
901
  # Lists information about the supported locations for this service.
902
902
  # @param [String] apps_id
903
903
  # Part of `name`. The resource that owns the locations collection, if applicable.
904
+ # @param [Array<String>, String] extra_location_types
905
+ # Optional. A list of extra location types that should be used as conditions for
906
+ # controlling the visibility of the locations.
904
907
  # @param [String] filter
905
908
  # A filter to narrow down results to a preferred subset. The filtering language
906
909
  # accepts strings like "displayName=tokyo", and is documented in more detail in
@@ -928,11 +931,12 @@ module Google
928
931
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
929
932
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
930
933
  # @raise [Google::Apis::AuthorizationError] Authorization is required
931
- def list_app_locations(apps_id, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
934
+ def list_app_locations(apps_id, extra_location_types: nil, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
932
935
  command = make_simple_command(:get, 'v1/apps/{appsId}/locations', options)
933
936
  command.response_representation = Google::Apis::AppengineV1::ListLocationsResponse::Representation
934
937
  command.response_class = Google::Apis::AppengineV1::ListLocationsResponse
935
938
  command.params['appsId'] = apps_id unless apps_id.nil?
939
+ command.query['extraLocationTypes'] = extra_location_types unless extra_location_types.nil?
936
940
  command.query['filter'] = filter unless filter.nil?
937
941
  command.query['pageSize'] = page_size unless page_size.nil?
938
942
  command.query['pageToken'] = page_token unless page_token.nil?
@@ -1594,6 +1598,52 @@ module Google
1594
1598
  execute_or_queue_command(command, &block)
1595
1599
  end
1596
1600
 
1601
+ # Updates the specified Application resource. You can update the following
1602
+ # fields: auth_domain - Google authentication domain for controlling user access
1603
+ # to the application. default_cookie_expiration - Cookie expiration policy for
1604
+ # the application. iap - Identity-Aware Proxy properties for the application.
1605
+ # @param [String] projects_id
1606
+ # Part of `name`. Name of the Application resource to update. Example: apps/
1607
+ # myapp.
1608
+ # @param [String] locations_id
1609
+ # Part of `name`. See documentation of `projectsId`.
1610
+ # @param [String] applications_id
1611
+ # Part of `name`. See documentation of `projectsId`.
1612
+ # @param [Google::Apis::AppengineV1::Application] application_object
1613
+ # @param [String] update_mask
1614
+ # Required. Standard field mask for the set of fields to be updated.
1615
+ # @param [String] fields
1616
+ # Selector specifying which fields to include in a partial response.
1617
+ # @param [String] quota_user
1618
+ # Available to use for quota purposes for server-side applications. Can be any
1619
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1620
+ # @param [Google::Apis::RequestOptions] options
1621
+ # Request-specific options
1622
+ #
1623
+ # @yield [result, err] Result & error if block supplied
1624
+ # @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
1625
+ # @yieldparam err [StandardError] error object if request failed
1626
+ #
1627
+ # @return [Google::Apis::AppengineV1::Operation]
1628
+ #
1629
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1630
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1631
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1632
+ def patch_project_location_application(projects_id, locations_id, applications_id, application_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
1633
+ command = make_simple_command(:patch, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}', options)
1634
+ command.request_representation = Google::Apis::AppengineV1::Application::Representation
1635
+ command.request_object = application_object
1636
+ command.response_representation = Google::Apis::AppengineV1::Operation::Representation
1637
+ command.response_class = Google::Apis::AppengineV1::Operation
1638
+ command.params['projectsId'] = projects_id unless projects_id.nil?
1639
+ command.params['locationsId'] = locations_id unless locations_id.nil?
1640
+ command.params['applicationsId'] = applications_id unless applications_id.nil?
1641
+ command.query['updateMask'] = update_mask unless update_mask.nil?
1642
+ command.query['fields'] = fields unless fields.nil?
1643
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1644
+ execute_or_queue_command(command, &block)
1645
+ end
1646
+
1597
1647
  # Lists all domains the user is authorized to administer.
1598
1648
  # @param [String] projects_id
1599
1649
  # Part of `parent`. Name of the parent Application resource. Example: apps/myapp.
@@ -1718,6 +1768,93 @@ module Google
1718
1768
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1719
1769
  execute_or_queue_command(command, &block)
1720
1770
  end
1771
+
1772
+ # Updates the specified Version resource. You can specify the following fields
1773
+ # depending on the App Engine environment and type of scaling that the version
1774
+ # resource uses:Standard environment instance_class (https://cloud.google.com/
1775
+ # appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.
1776
+ # FIELDS.instance_class)automatic scaling in the standard environment:
1777
+ # automatic_scaling.min_idle_instances (https://cloud.google.com/appengine/docs/
1778
+ # admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.
1779
+ # automatic_scaling) automatic_scaling.max_idle_instances (https://cloud.google.
1780
+ # com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.
1781
+ # FIELDS.automatic_scaling) automaticScaling.standard_scheduler_settings.
1782
+ # max_instances (https://cloud.google.com/appengine/docs/admin-api/reference/
1783
+ # rest/v1/apps.services.versions#StandardSchedulerSettings) automaticScaling.
1784
+ # standard_scheduler_settings.min_instances (https://cloud.google.com/appengine/
1785
+ # docs/admin-api/reference/rest/v1/apps.services.versions#
1786
+ # StandardSchedulerSettings) automaticScaling.standard_scheduler_settings.
1787
+ # target_cpu_utilization (https://cloud.google.com/appengine/docs/admin-api/
1788
+ # reference/rest/v1/apps.services.versions#StandardSchedulerSettings)
1789
+ # automaticScaling.standard_scheduler_settings.target_throughput_utilization (
1790
+ # https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.
1791
+ # services.versions#StandardSchedulerSettings)basic scaling or manual scaling in
1792
+ # the standard environment: serving_status (https://cloud.google.com/appengine/
1793
+ # docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.
1794
+ # serving_status) manual_scaling.instances (https://cloud.google.com/appengine/
1795
+ # docs/admin-api/reference/rest/v1/apps.services.versions#manualscaling)Flexible
1796
+ # environment serving_status (https://cloud.google.com/appengine/docs/admin-api/
1797
+ # reference/rest/v1/apps.services.versions#Version.FIELDS.serving_status)
1798
+ # automatic scaling in the flexible environment: automatic_scaling.
1799
+ # min_total_instances (https://cloud.google.com/appengine/docs/admin-api/
1800
+ # reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling)
1801
+ # automatic_scaling.max_total_instances (https://cloud.google.com/appengine/docs/
1802
+ # admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.
1803
+ # automatic_scaling) automatic_scaling.cool_down_period_sec (https://cloud.
1804
+ # google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#
1805
+ # Version.FIELDS.automatic_scaling) automatic_scaling.cpu_utilization.
1806
+ # target_utilization (https://cloud.google.com/appengine/docs/admin-api/
1807
+ # reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling)
1808
+ # manual scaling in the flexible environment: manual_scaling.instances (https://
1809
+ # cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.
1810
+ # versions#manualscaling)
1811
+ # @param [String] projects_id
1812
+ # Part of `name`. Name of the resource to update. Example: apps/myapp/services/
1813
+ # default/versions/1.
1814
+ # @param [String] locations_id
1815
+ # Part of `name`. See documentation of `projectsId`.
1816
+ # @param [String] applications_id
1817
+ # Part of `name`. See documentation of `projectsId`.
1818
+ # @param [String] services_id
1819
+ # Part of `name`. See documentation of `projectsId`.
1820
+ # @param [String] versions_id
1821
+ # Part of `name`. See documentation of `projectsId`.
1822
+ # @param [Google::Apis::AppengineV1::Version] version_object
1823
+ # @param [String] update_mask
1824
+ # Standard field mask for the set of fields to be updated.
1825
+ # @param [String] fields
1826
+ # Selector specifying which fields to include in a partial response.
1827
+ # @param [String] quota_user
1828
+ # Available to use for quota purposes for server-side applications. Can be any
1829
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1830
+ # @param [Google::Apis::RequestOptions] options
1831
+ # Request-specific options
1832
+ #
1833
+ # @yield [result, err] Result & error if block supplied
1834
+ # @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
1835
+ # @yieldparam err [StandardError] error object if request failed
1836
+ #
1837
+ # @return [Google::Apis::AppengineV1::Operation]
1838
+ #
1839
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1840
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1841
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1842
+ def patch_project_location_application_service_version(projects_id, locations_id, applications_id, services_id, versions_id, version_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
1843
+ command = make_simple_command(:patch, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}/versions/{versionsId}', options)
1844
+ command.request_representation = Google::Apis::AppengineV1::Version::Representation
1845
+ command.request_object = version_object
1846
+ command.response_representation = Google::Apis::AppengineV1::Operation::Representation
1847
+ command.response_class = Google::Apis::AppengineV1::Operation
1848
+ command.params['projectsId'] = projects_id unless projects_id.nil?
1849
+ command.params['locationsId'] = locations_id unless locations_id.nil?
1850
+ command.params['applicationsId'] = applications_id unless applications_id.nil?
1851
+ command.params['servicesId'] = services_id unless services_id.nil?
1852
+ command.params['versionsId'] = versions_id unless versions_id.nil?
1853
+ command.query['updateMask'] = update_mask unless update_mask.nil?
1854
+ command.query['fields'] = fields unless fields.nil?
1855
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1856
+ execute_or_queue_command(command, &block)
1857
+ end
1721
1858
 
1722
1859
  protected
1723
1860
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-appengine_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.57.0
4
+ version: 0.59.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-02 00:00:00.000000000 Z
10
+ date: 2025-04-20 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-appengine_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.57.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.59.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1
62
62
  rdoc_options: []
63
63
  require_paths: