google-apis-appengine_v1beta 0.33.0 → 0.35.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3c3a29e16ef3b450cfa707e6bcceaa8afd424391d622df5959e734709da2e23d
|
4
|
+
data.tar.gz: e9e852b1be3d8b4c1100baf1f05982021a138c17264fbe8e523e96b802b1a160
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: abf49e11d378067c2f4326a2d3747ef6c4503d374b14da0f1b65fe0ab0876e6a153e7110cbb46baae6c758eb2cd6d58a3a2804ef7b2e8c02d5dbec4c5ff10757
|
7
|
+
data.tar.gz: 0bbaaca734d8fbd9727d8f1845fa47b855dc2b99070770094895aead934665e1623718b0f9528ae676578bd9e11a1b6e98ce52067cc19a8c38fdcf1d7ec028ce
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-appengine_v1beta
|
2
2
|
|
3
|
+
### v0.35.0 (2023-06-11)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230601
|
6
|
+
|
7
|
+
### v0.34.0 (2023-04-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230424
|
10
|
+
|
3
11
|
### v0.33.0 (2023-04-16)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230403
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AppengineV1beta
|
18
18
|
# Version of the google-apis-appengine_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.35.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 = "
|
25
|
+
REVISION = "20230601"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1761,6 +1761,88 @@ module Google
|
|
1761
1761
|
execute_or_queue_command(command, &block)
|
1762
1762
|
end
|
1763
1763
|
|
1764
|
+
# Gets the current configuration of the specified service.
|
1765
|
+
# @param [String] projects_id
|
1766
|
+
# Part of `name`. Name of the resource requested. Example: apps/myapp/services/
|
1767
|
+
# default.
|
1768
|
+
# @param [String] locations_id
|
1769
|
+
# Part of `name`. See documentation of `projectsId`.
|
1770
|
+
# @param [String] applications_id
|
1771
|
+
# Part of `name`. See documentation of `projectsId`.
|
1772
|
+
# @param [String] services_id
|
1773
|
+
# Part of `name`. See documentation of `projectsId`.
|
1774
|
+
# @param [String] fields
|
1775
|
+
# Selector specifying which fields to include in a partial response.
|
1776
|
+
# @param [String] quota_user
|
1777
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1778
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1779
|
+
# @param [Google::Apis::RequestOptions] options
|
1780
|
+
# Request-specific options
|
1781
|
+
#
|
1782
|
+
# @yield [result, err] Result & error if block supplied
|
1783
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::Service] parsed result object
|
1784
|
+
# @yieldparam err [StandardError] error object if request failed
|
1785
|
+
#
|
1786
|
+
# @return [Google::Apis::AppengineV1beta::Service]
|
1787
|
+
#
|
1788
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1789
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1790
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1791
|
+
def get_project_location_application_service(projects_id, locations_id, applications_id, services_id, fields: nil, quota_user: nil, options: nil, &block)
|
1792
|
+
command = make_simple_command(:get, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}', options)
|
1793
|
+
command.response_representation = Google::Apis::AppengineV1beta::Service::Representation
|
1794
|
+
command.response_class = Google::Apis::AppengineV1beta::Service
|
1795
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1796
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1797
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1798
|
+
command.params['servicesId'] = services_id unless services_id.nil?
|
1799
|
+
command.query['fields'] = fields unless fields.nil?
|
1800
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1801
|
+
execute_or_queue_command(command, &block)
|
1802
|
+
end
|
1803
|
+
|
1804
|
+
# Lists all the services in the application.
|
1805
|
+
# @param [String] projects_id
|
1806
|
+
# Part of `parent`. Name of the parent Application resource. Example: apps/myapp.
|
1807
|
+
# @param [String] locations_id
|
1808
|
+
# Part of `parent`. See documentation of `projectsId`.
|
1809
|
+
# @param [String] applications_id
|
1810
|
+
# Part of `parent`. See documentation of `projectsId`.
|
1811
|
+
# @param [Fixnum] page_size
|
1812
|
+
# Maximum results to return per page.
|
1813
|
+
# @param [String] page_token
|
1814
|
+
# Continuation token for fetching the next page of results.
|
1815
|
+
# @param [String] fields
|
1816
|
+
# Selector specifying which fields to include in a partial response.
|
1817
|
+
# @param [String] quota_user
|
1818
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1819
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1820
|
+
# @param [Google::Apis::RequestOptions] options
|
1821
|
+
# Request-specific options
|
1822
|
+
#
|
1823
|
+
# @yield [result, err] Result & error if block supplied
|
1824
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::ListServicesResponse] parsed result object
|
1825
|
+
# @yieldparam err [StandardError] error object if request failed
|
1826
|
+
#
|
1827
|
+
# @return [Google::Apis::AppengineV1beta::ListServicesResponse]
|
1828
|
+
#
|
1829
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1830
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1831
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1832
|
+
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)
|
1833
|
+
command = make_simple_command(:get, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services', options)
|
1834
|
+
command.response_representation = Google::Apis::AppengineV1beta::ListServicesResponse::Representation
|
1835
|
+
command.response_class = Google::Apis::AppengineV1beta::ListServicesResponse
|
1836
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1837
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1838
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1839
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
1840
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
1841
|
+
command.query['fields'] = fields unless fields.nil?
|
1842
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1843
|
+
execute_or_queue_command(command, &block)
|
1844
|
+
end
|
1845
|
+
|
1764
1846
|
# Gets the latest state of a long-running operation. Clients can use this method
|
1765
1847
|
# to poll the operation result at intervals as recommended by the API service.
|
1766
1848
|
# @param [String] projects_id
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-appengine_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.35.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-
|
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_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.35.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|