google-apis-appengine_v1 0.36.0 → 0.37.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: 30a3eaf11dbbcb43bcbe84c086d45effec7c095d64f0c24a5c6275bea1eedb14
4
- data.tar.gz: d7a775796cb51833572252a27584cfe3299452a6cb2df5edfdda06076d090646
3
+ metadata.gz: fc9fd92d7aaf0e8811b399eccfee57ac47282d251da4e95e1fa032969882be30
4
+ data.tar.gz: b5042422af5151bf9d4feb55b4cc66a8d7ba07cfc3e635e9614d158b980894fe
5
5
  SHA512:
6
- metadata.gz: b1fc1216d236a5ee344a9b20a79f5ad1eb3343a57005814764315371bb19dc51e581a508880059eefca28638f2d80054df17373319fadcfbe2f4e5e619875a9b
7
- data.tar.gz: b251e1b99e211f291a05ab1112ed56ef39c98f06a8db8fc586a93b6cb0ca3ccdedc9b2b18083513e19be8133e601c6aba4bc641952504d36b4e0026c8b28d4de
6
+ metadata.gz: 19168d3b731db73b5fc48447deb9fa56669ed6967d752c38a83b0a2877f5078d1a5aed4bbb563ab63cc6d7c614ee6b0c8ddcf56198b61127fb10757032384d46
7
+ data.tar.gz: 14cd4cf5500e10b8d6bfac5c2a6333f73da2d50a9bf427115e68dc8f043e34bc50f15b1d853623cb9c73d91d1092223f2bd6332cae06658423f74278c778646f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-appengine_v1
2
2
 
3
+ ### v0.37.0 (2023-06-11)
4
+
5
+ * Regenerated from discovery document revision 20230601
6
+
3
7
  ### v0.36.0 (2023-06-04)
4
8
 
5
9
  * Regenerated from discovery document revision 20230529
@@ -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.36.0"
19
+ GEM_VERSION = "0.37.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230529"
25
+ REVISION = "20230601"
26
26
  end
27
27
  end
28
28
  end
@@ -1684,6 +1684,88 @@ module Google
1684
1684
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1685
1685
  execute_or_queue_command(command, &block)
1686
1686
  end
1687
+
1688
+ # Gets the current configuration of the specified service.
1689
+ # @param [String] projects_id
1690
+ # Part of `name`. Name of the resource requested. Example: apps/myapp/services/
1691
+ # default.
1692
+ # @param [String] locations_id
1693
+ # Part of `name`. See documentation of `projectsId`.
1694
+ # @param [String] applications_id
1695
+ # Part of `name`. See documentation of `projectsId`.
1696
+ # @param [String] services_id
1697
+ # Part of `name`. See documentation of `projectsId`.
1698
+ # @param [String] fields
1699
+ # Selector specifying which fields to include in a partial response.
1700
+ # @param [String] quota_user
1701
+ # Available to use for quota purposes for server-side applications. Can be any
1702
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1703
+ # @param [Google::Apis::RequestOptions] options
1704
+ # Request-specific options
1705
+ #
1706
+ # @yield [result, err] Result & error if block supplied
1707
+ # @yieldparam result [Google::Apis::AppengineV1::Service] parsed result object
1708
+ # @yieldparam err [StandardError] error object if request failed
1709
+ #
1710
+ # @return [Google::Apis::AppengineV1::Service]
1711
+ #
1712
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1713
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1714
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1715
+ def get_project_location_application_service(projects_id, locations_id, applications_id, services_id, fields: nil, quota_user: nil, options: nil, &block)
1716
+ command = make_simple_command(:get, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}', options)
1717
+ command.response_representation = Google::Apis::AppengineV1::Service::Representation
1718
+ command.response_class = Google::Apis::AppengineV1::Service
1719
+ command.params['projectsId'] = projects_id unless projects_id.nil?
1720
+ command.params['locationsId'] = locations_id unless locations_id.nil?
1721
+ command.params['applicationsId'] = applications_id unless applications_id.nil?
1722
+ command.params['servicesId'] = services_id unless services_id.nil?
1723
+ command.query['fields'] = fields unless fields.nil?
1724
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1725
+ execute_or_queue_command(command, &block)
1726
+ end
1727
+
1728
+ # Lists all the services in the application.
1729
+ # @param [String] projects_id
1730
+ # Part of `parent`. Name of the parent Application resource. Example: apps/myapp.
1731
+ # @param [String] locations_id
1732
+ # Part of `parent`. See documentation of `projectsId`.
1733
+ # @param [String] applications_id
1734
+ # Part of `parent`. See documentation of `projectsId`.
1735
+ # @param [Fixnum] page_size
1736
+ # Maximum results to return per page.
1737
+ # @param [String] page_token
1738
+ # Continuation token for fetching the next page of results.
1739
+ # @param [String] fields
1740
+ # Selector specifying which fields to include in a partial response.
1741
+ # @param [String] quota_user
1742
+ # Available to use for quota purposes for server-side applications. Can be any
1743
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1744
+ # @param [Google::Apis::RequestOptions] options
1745
+ # Request-specific options
1746
+ #
1747
+ # @yield [result, err] Result & error if block supplied
1748
+ # @yieldparam result [Google::Apis::AppengineV1::ListServicesResponse] parsed result object
1749
+ # @yieldparam err [StandardError] error object if request failed
1750
+ #
1751
+ # @return [Google::Apis::AppengineV1::ListServicesResponse]
1752
+ #
1753
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1754
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1755
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1756
+ def list_project_location_application_services(projects_id, locations_id, applications_id, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1757
+ command = make_simple_command(:get, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services', options)
1758
+ command.response_representation = Google::Apis::AppengineV1::ListServicesResponse::Representation
1759
+ command.response_class = Google::Apis::AppengineV1::ListServicesResponse
1760
+ command.params['projectsId'] = projects_id unless projects_id.nil?
1761
+ command.params['locationsId'] = locations_id unless locations_id.nil?
1762
+ command.params['applicationsId'] = applications_id unless applications_id.nil?
1763
+ command.query['pageSize'] = page_size unless page_size.nil?
1764
+ command.query['pageToken'] = page_token unless page_token.nil?
1765
+ command.query['fields'] = fields unless fields.nil?
1766
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1767
+ execute_or_queue_command(command, &block)
1768
+ end
1687
1769
 
1688
1770
  protected
1689
1771
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-appengine_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.36.0
4
+ version: 0.37.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: 2023-06-04 00:00:00.000000000 Z
11
+ date: 2023-06-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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-appengine_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.36.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.37.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1
63
63
  post_install_message:
64
64
  rdoc_options: []