google-apis-appengine_v1beta 0.53.0 → 0.55.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/appengine_v1beta/gem_version.rb +3 -3
- data/lib/google/apis/appengine_v1beta/service.rb +362 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e8faddfdce8ce5e7771d635dedcdd0280b90eb54d7c2693343321d0453a45f4c
|
4
|
+
data.tar.gz: c62951058bbfe04d2987ebd6f06332c020958cdc5356a853fc4dc3060f81733d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c6e152034215aaa6834f679e9f386d979d6655b547e0f00c271f3e9c27f029451190b65fa4a324614157b8050624f0adf88b1e2d1c5ffdaace30a525ee343db7
|
7
|
+
data.tar.gz: 39f94fe0d83cb6387e1ac373d93cbb9a62972ed043c60bfee5abca1ac15c6b0fe59420e0d17205c138b1fdfe20ae9730fdb355804a22deb2de06b2bbef7708db
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-appengine_v1beta
|
2
2
|
|
3
|
+
### v0.55.0 (2025-06-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250616
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
8
|
+
### v0.54.0 (2025-05-18)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20250512
|
11
|
+
|
3
12
|
### v0.53.0 (2025-05-04)
|
4
13
|
|
5
14
|
* Regenerated using generator version 0.17.0
|
@@ -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.55.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250616"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1730,6 +1730,223 @@ module Google
|
|
1730
1730
|
execute_or_queue_command(command, &block)
|
1731
1731
|
end
|
1732
1732
|
|
1733
|
+
# Uploads the specified SSL certificate.
|
1734
|
+
# @param [String] projects_id
|
1735
|
+
# Part of `parent`. Name of the parent Application resource. Example: apps/myapp.
|
1736
|
+
# @param [String] locations_id
|
1737
|
+
# Part of `parent`. See documentation of `projectsId`.
|
1738
|
+
# @param [String] applications_id
|
1739
|
+
# Part of `parent`. See documentation of `projectsId`.
|
1740
|
+
# @param [Google::Apis::AppengineV1beta::AuthorizedCertificate] authorized_certificate_object
|
1741
|
+
# @param [String] fields
|
1742
|
+
# Selector specifying which fields to include in a partial response.
|
1743
|
+
# @param [String] quota_user
|
1744
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1745
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1746
|
+
# @param [Google::Apis::RequestOptions] options
|
1747
|
+
# Request-specific options
|
1748
|
+
#
|
1749
|
+
# @yield [result, err] Result & error if block supplied
|
1750
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::AuthorizedCertificate] parsed result object
|
1751
|
+
# @yieldparam err [StandardError] error object if request failed
|
1752
|
+
#
|
1753
|
+
# @return [Google::Apis::AppengineV1beta::AuthorizedCertificate]
|
1754
|
+
#
|
1755
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1756
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1757
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1758
|
+
def create_project_location_application_authorized_certificate(projects_id, locations_id, applications_id, authorized_certificate_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1759
|
+
command = make_simple_command(:post, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/authorizedCertificates', options)
|
1760
|
+
command.request_representation = Google::Apis::AppengineV1beta::AuthorizedCertificate::Representation
|
1761
|
+
command.request_object = authorized_certificate_object
|
1762
|
+
command.response_representation = Google::Apis::AppengineV1beta::AuthorizedCertificate::Representation
|
1763
|
+
command.response_class = Google::Apis::AppengineV1beta::AuthorizedCertificate
|
1764
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1765
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1766
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1767
|
+
command.query['fields'] = fields unless fields.nil?
|
1768
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1769
|
+
execute_or_queue_command(command, &block)
|
1770
|
+
end
|
1771
|
+
|
1772
|
+
# Deletes the specified SSL certificate.
|
1773
|
+
# @param [String] projects_id
|
1774
|
+
# Part of `name`. Name of the resource to delete. Example: apps/myapp/
|
1775
|
+
# authorizedCertificates/12345.
|
1776
|
+
# @param [String] locations_id
|
1777
|
+
# Part of `name`. See documentation of `projectsId`.
|
1778
|
+
# @param [String] applications_id
|
1779
|
+
# Part of `name`. See documentation of `projectsId`.
|
1780
|
+
# @param [String] authorized_certificates_id
|
1781
|
+
# Part of `name`. See documentation of `projectsId`.
|
1782
|
+
# @param [String] fields
|
1783
|
+
# Selector specifying which fields to include in a partial response.
|
1784
|
+
# @param [String] quota_user
|
1785
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1786
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1787
|
+
# @param [Google::Apis::RequestOptions] options
|
1788
|
+
# Request-specific options
|
1789
|
+
#
|
1790
|
+
# @yield [result, err] Result & error if block supplied
|
1791
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::Empty] parsed result object
|
1792
|
+
# @yieldparam err [StandardError] error object if request failed
|
1793
|
+
#
|
1794
|
+
# @return [Google::Apis::AppengineV1beta::Empty]
|
1795
|
+
#
|
1796
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1797
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1798
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1799
|
+
def delete_project_location_application_authorized_certificate(projects_id, locations_id, applications_id, authorized_certificates_id, fields: nil, quota_user: nil, options: nil, &block)
|
1800
|
+
command = make_simple_command(:delete, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/authorizedCertificates/{authorizedCertificatesId}', options)
|
1801
|
+
command.response_representation = Google::Apis::AppengineV1beta::Empty::Representation
|
1802
|
+
command.response_class = Google::Apis::AppengineV1beta::Empty
|
1803
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1804
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1805
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1806
|
+
command.params['authorizedCertificatesId'] = authorized_certificates_id unless authorized_certificates_id.nil?
|
1807
|
+
command.query['fields'] = fields unless fields.nil?
|
1808
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1809
|
+
execute_or_queue_command(command, &block)
|
1810
|
+
end
|
1811
|
+
|
1812
|
+
# Gets the specified SSL certificate.
|
1813
|
+
# @param [String] projects_id
|
1814
|
+
# Part of `name`. Name of the resource requested. Example: apps/myapp/
|
1815
|
+
# authorizedCertificates/12345.
|
1816
|
+
# @param [String] locations_id
|
1817
|
+
# Part of `name`. See documentation of `projectsId`.
|
1818
|
+
# @param [String] applications_id
|
1819
|
+
# Part of `name`. See documentation of `projectsId`.
|
1820
|
+
# @param [String] authorized_certificates_id
|
1821
|
+
# Part of `name`. See documentation of `projectsId`.
|
1822
|
+
# @param [String] view
|
1823
|
+
# Controls the set of fields returned in the GET response.
|
1824
|
+
# @param [String] fields
|
1825
|
+
# Selector specifying which fields to include in a partial response.
|
1826
|
+
# @param [String] quota_user
|
1827
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1828
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1829
|
+
# @param [Google::Apis::RequestOptions] options
|
1830
|
+
# Request-specific options
|
1831
|
+
#
|
1832
|
+
# @yield [result, err] Result & error if block supplied
|
1833
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::AuthorizedCertificate] parsed result object
|
1834
|
+
# @yieldparam err [StandardError] error object if request failed
|
1835
|
+
#
|
1836
|
+
# @return [Google::Apis::AppengineV1beta::AuthorizedCertificate]
|
1837
|
+
#
|
1838
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1839
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1840
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1841
|
+
def get_project_location_application_authorized_certificate(projects_id, locations_id, applications_id, authorized_certificates_id, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1842
|
+
command = make_simple_command(:get, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/authorizedCertificates/{authorizedCertificatesId}', options)
|
1843
|
+
command.response_representation = Google::Apis::AppengineV1beta::AuthorizedCertificate::Representation
|
1844
|
+
command.response_class = Google::Apis::AppengineV1beta::AuthorizedCertificate
|
1845
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1846
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1847
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1848
|
+
command.params['authorizedCertificatesId'] = authorized_certificates_id unless authorized_certificates_id.nil?
|
1849
|
+
command.query['view'] = view unless view.nil?
|
1850
|
+
command.query['fields'] = fields unless fields.nil?
|
1851
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1852
|
+
execute_or_queue_command(command, &block)
|
1853
|
+
end
|
1854
|
+
|
1855
|
+
# Lists all SSL certificates the user is authorized to administer.
|
1856
|
+
# @param [String] projects_id
|
1857
|
+
# Part of `parent`. Name of the parent Application resource. Example: apps/myapp.
|
1858
|
+
# @param [String] locations_id
|
1859
|
+
# Part of `parent`. See documentation of `projectsId`.
|
1860
|
+
# @param [String] applications_id
|
1861
|
+
# Part of `parent`. See documentation of `projectsId`.
|
1862
|
+
# @param [Fixnum] page_size
|
1863
|
+
# Maximum results to return per page.
|
1864
|
+
# @param [String] page_token
|
1865
|
+
# Continuation token for fetching the next page of results.
|
1866
|
+
# @param [String] view
|
1867
|
+
# Controls the set of fields returned in the LIST response.
|
1868
|
+
# @param [String] fields
|
1869
|
+
# Selector specifying which fields to include in a partial response.
|
1870
|
+
# @param [String] quota_user
|
1871
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1872
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1873
|
+
# @param [Google::Apis::RequestOptions] options
|
1874
|
+
# Request-specific options
|
1875
|
+
#
|
1876
|
+
# @yield [result, err] Result & error if block supplied
|
1877
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::ListAuthorizedCertificatesResponse] parsed result object
|
1878
|
+
# @yieldparam err [StandardError] error object if request failed
|
1879
|
+
#
|
1880
|
+
# @return [Google::Apis::AppengineV1beta::ListAuthorizedCertificatesResponse]
|
1881
|
+
#
|
1882
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1883
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1884
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1885
|
+
def list_project_location_application_authorized_certificates(projects_id, locations_id, applications_id, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1886
|
+
command = make_simple_command(:get, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/authorizedCertificates', options)
|
1887
|
+
command.response_representation = Google::Apis::AppengineV1beta::ListAuthorizedCertificatesResponse::Representation
|
1888
|
+
command.response_class = Google::Apis::AppengineV1beta::ListAuthorizedCertificatesResponse
|
1889
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1890
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1891
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1892
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
1893
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
1894
|
+
command.query['view'] = view unless view.nil?
|
1895
|
+
command.query['fields'] = fields unless fields.nil?
|
1896
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1897
|
+
execute_or_queue_command(command, &block)
|
1898
|
+
end
|
1899
|
+
|
1900
|
+
# Updates the specified SSL certificate. To renew a certificate and maintain its
|
1901
|
+
# existing domain mappings, update certificate_data with a new certificate. The
|
1902
|
+
# new certificate must be applicable to the same domains as the original
|
1903
|
+
# certificate. The certificate display_name may also be updated.
|
1904
|
+
# @param [String] projects_id
|
1905
|
+
# Part of `name`. Name of the resource to update. Example: apps/myapp/
|
1906
|
+
# authorizedCertificates/12345.
|
1907
|
+
# @param [String] locations_id
|
1908
|
+
# Part of `name`. See documentation of `projectsId`.
|
1909
|
+
# @param [String] applications_id
|
1910
|
+
# Part of `name`. See documentation of `projectsId`.
|
1911
|
+
# @param [String] authorized_certificates_id
|
1912
|
+
# Part of `name`. See documentation of `projectsId`.
|
1913
|
+
# @param [Google::Apis::AppengineV1beta::AuthorizedCertificate] authorized_certificate_object
|
1914
|
+
# @param [String] update_mask
|
1915
|
+
# Standard field mask for the set of fields to be updated. Updates are only
|
1916
|
+
# supported on the certificate_raw_data and display_name fields.
|
1917
|
+
# @param [String] fields
|
1918
|
+
# Selector specifying which fields to include in a partial response.
|
1919
|
+
# @param [String] quota_user
|
1920
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1921
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1922
|
+
# @param [Google::Apis::RequestOptions] options
|
1923
|
+
# Request-specific options
|
1924
|
+
#
|
1925
|
+
# @yield [result, err] Result & error if block supplied
|
1926
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::AuthorizedCertificate] parsed result object
|
1927
|
+
# @yieldparam err [StandardError] error object if request failed
|
1928
|
+
#
|
1929
|
+
# @return [Google::Apis::AppengineV1beta::AuthorizedCertificate]
|
1930
|
+
#
|
1931
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1932
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1933
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1934
|
+
def patch_project_location_application_authorized_certificate(projects_id, locations_id, applications_id, authorized_certificates_id, authorized_certificate_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1935
|
+
command = make_simple_command(:patch, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/authorizedCertificates/{authorizedCertificatesId}', options)
|
1936
|
+
command.request_representation = Google::Apis::AppengineV1beta::AuthorizedCertificate::Representation
|
1937
|
+
command.request_object = authorized_certificate_object
|
1938
|
+
command.response_representation = Google::Apis::AppengineV1beta::AuthorizedCertificate::Representation
|
1939
|
+
command.response_class = Google::Apis::AppengineV1beta::AuthorizedCertificate
|
1940
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1941
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1942
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1943
|
+
command.params['authorizedCertificatesId'] = authorized_certificates_id unless authorized_certificates_id.nil?
|
1944
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
1945
|
+
command.query['fields'] = fields unless fields.nil?
|
1946
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1947
|
+
execute_or_queue_command(command, &block)
|
1948
|
+
end
|
1949
|
+
|
1733
1950
|
# Lists all domains the user is authorized to administer.
|
1734
1951
|
# @param [String] projects_id
|
1735
1952
|
# Part of `parent`. Name of the parent Application resource. Example: apps/myapp.
|
@@ -1772,6 +1989,91 @@ module Google
|
|
1772
1989
|
execute_or_queue_command(command, &block)
|
1773
1990
|
end
|
1774
1991
|
|
1992
|
+
# Maps a domain to an application. A user must be authorized to administer a
|
1993
|
+
# domain in order to map it to an application. For a list of available
|
1994
|
+
# authorized domains, see AuthorizedDomains.ListAuthorizedDomains.
|
1995
|
+
# @param [String] projects_id
|
1996
|
+
# Part of `parent`. Name of the parent Application resource. Example: apps/myapp.
|
1997
|
+
# @param [String] locations_id
|
1998
|
+
# Part of `parent`. See documentation of `projectsId`.
|
1999
|
+
# @param [String] applications_id
|
2000
|
+
# Part of `parent`. See documentation of `projectsId`.
|
2001
|
+
# @param [Google::Apis::AppengineV1beta::DomainMapping] domain_mapping_object
|
2002
|
+
# @param [String] override_strategy
|
2003
|
+
# Whether the domain creation should override any existing mappings for this
|
2004
|
+
# domain. By default, overrides are rejected.
|
2005
|
+
# @param [String] fields
|
2006
|
+
# Selector specifying which fields to include in a partial response.
|
2007
|
+
# @param [String] quota_user
|
2008
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2009
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2010
|
+
# @param [Google::Apis::RequestOptions] options
|
2011
|
+
# Request-specific options
|
2012
|
+
#
|
2013
|
+
# @yield [result, err] Result & error if block supplied
|
2014
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::Operation] parsed result object
|
2015
|
+
# @yieldparam err [StandardError] error object if request failed
|
2016
|
+
#
|
2017
|
+
# @return [Google::Apis::AppengineV1beta::Operation]
|
2018
|
+
#
|
2019
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2020
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2021
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2022
|
+
def create_project_location_application_domain_mapping(projects_id, locations_id, applications_id, domain_mapping_object = nil, override_strategy: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2023
|
+
command = make_simple_command(:post, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/domainMappings', options)
|
2024
|
+
command.request_representation = Google::Apis::AppengineV1beta::DomainMapping::Representation
|
2025
|
+
command.request_object = domain_mapping_object
|
2026
|
+
command.response_representation = Google::Apis::AppengineV1beta::Operation::Representation
|
2027
|
+
command.response_class = Google::Apis::AppengineV1beta::Operation
|
2028
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
2029
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
2030
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
2031
|
+
command.query['overrideStrategy'] = override_strategy unless override_strategy.nil?
|
2032
|
+
command.query['fields'] = fields unless fields.nil?
|
2033
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2034
|
+
execute_or_queue_command(command, &block)
|
2035
|
+
end
|
2036
|
+
|
2037
|
+
# Gets the specified domain mapping.
|
2038
|
+
# @param [String] projects_id
|
2039
|
+
# Part of `name`. Name of the resource requested. Example: apps/myapp/
|
2040
|
+
# domainMappings/example.com.
|
2041
|
+
# @param [String] locations_id
|
2042
|
+
# Part of `name`. See documentation of `projectsId`.
|
2043
|
+
# @param [String] applications_id
|
2044
|
+
# Part of `name`. See documentation of `projectsId`.
|
2045
|
+
# @param [String] domain_mappings_id
|
2046
|
+
# Part of `name`. See documentation of `projectsId`.
|
2047
|
+
# @param [String] fields
|
2048
|
+
# Selector specifying which fields to include in a partial response.
|
2049
|
+
# @param [String] quota_user
|
2050
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2051
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2052
|
+
# @param [Google::Apis::RequestOptions] options
|
2053
|
+
# Request-specific options
|
2054
|
+
#
|
2055
|
+
# @yield [result, err] Result & error if block supplied
|
2056
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::DomainMapping] parsed result object
|
2057
|
+
# @yieldparam err [StandardError] error object if request failed
|
2058
|
+
#
|
2059
|
+
# @return [Google::Apis::AppengineV1beta::DomainMapping]
|
2060
|
+
#
|
2061
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2062
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2063
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2064
|
+
def get_project_location_application_domain_mapping(projects_id, locations_id, applications_id, domain_mappings_id, fields: nil, quota_user: nil, options: nil, &block)
|
2065
|
+
command = make_simple_command(:get, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/domainMappings/{domainMappingsId}', options)
|
2066
|
+
command.response_representation = Google::Apis::AppengineV1beta::DomainMapping::Representation
|
2067
|
+
command.response_class = Google::Apis::AppengineV1beta::DomainMapping
|
2068
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
2069
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
2070
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
2071
|
+
command.params['domainMappingsId'] = domain_mappings_id unless domain_mappings_id.nil?
|
2072
|
+
command.query['fields'] = fields unless fields.nil?
|
2073
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2074
|
+
execute_or_queue_command(command, &block)
|
2075
|
+
end
|
2076
|
+
|
1775
2077
|
# Deletes the specified service and all enclosed versions.
|
1776
2078
|
# @param [String] projects_id
|
1777
2079
|
# Part of `name`. Name of the resource requested. Example: apps/myapp/services/
|
@@ -1812,6 +2114,66 @@ module Google
|
|
1812
2114
|
execute_or_queue_command(command, &block)
|
1813
2115
|
end
|
1814
2116
|
|
2117
|
+
# Updates the configuration of the specified service.
|
2118
|
+
# @param [String] projects_id
|
2119
|
+
# Part of `name`. Name of the resource to update. Example: apps/myapp/services/
|
2120
|
+
# default.
|
2121
|
+
# @param [String] locations_id
|
2122
|
+
# Part of `name`. See documentation of `projectsId`.
|
2123
|
+
# @param [String] applications_id
|
2124
|
+
# Part of `name`. See documentation of `projectsId`.
|
2125
|
+
# @param [String] services_id
|
2126
|
+
# Part of `name`. See documentation of `projectsId`.
|
2127
|
+
# @param [Google::Apis::AppengineV1beta::Service] service_object
|
2128
|
+
# @param [Boolean] migrate_traffic
|
2129
|
+
# Set to true to gradually shift traffic to one or more versions that you
|
2130
|
+
# specify. By default, traffic is shifted immediately. For gradual traffic
|
2131
|
+
# migration, the target versions must be located within instances that are
|
2132
|
+
# configured for both warmup requests (https://cloud.google.com/appengine/docs/
|
2133
|
+
# admin-api/reference/rest/v1beta/apps.services.versions#InboundServiceType) and
|
2134
|
+
# automatic scaling (https://cloud.google.com/appengine/docs/admin-api/reference/
|
2135
|
+
# rest/v1beta/apps.services.versions#AutomaticScaling). You must specify the
|
2136
|
+
# shardBy (https://cloud.google.com/appengine/docs/admin-api/reference/rest/
|
2137
|
+
# v1beta/apps.services#ShardBy) field in the Service resource. Gradual traffic
|
2138
|
+
# migration is not supported in the App Engine flexible environment. For
|
2139
|
+
# examples, see Migrating and Splitting Traffic (https://cloud.google.com/
|
2140
|
+
# appengine/docs/admin-api/migrating-splitting-traffic).
|
2141
|
+
# @param [String] update_mask
|
2142
|
+
# Required. Standard field mask for the set of fields to be updated.
|
2143
|
+
# @param [String] fields
|
2144
|
+
# Selector specifying which fields to include in a partial response.
|
2145
|
+
# @param [String] quota_user
|
2146
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2147
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2148
|
+
# @param [Google::Apis::RequestOptions] options
|
2149
|
+
# Request-specific options
|
2150
|
+
#
|
2151
|
+
# @yield [result, err] Result & error if block supplied
|
2152
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::Operation] parsed result object
|
2153
|
+
# @yieldparam err [StandardError] error object if request failed
|
2154
|
+
#
|
2155
|
+
# @return [Google::Apis::AppengineV1beta::Operation]
|
2156
|
+
#
|
2157
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2158
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2159
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2160
|
+
def patch_project_location_application_service(projects_id, locations_id, applications_id, services_id, service_object = nil, migrate_traffic: nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2161
|
+
command = make_simple_command(:patch, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}', options)
|
2162
|
+
command.request_representation = Google::Apis::AppengineV1beta::Service::Representation
|
2163
|
+
command.request_object = service_object
|
2164
|
+
command.response_representation = Google::Apis::AppengineV1beta::Operation::Representation
|
2165
|
+
command.response_class = Google::Apis::AppengineV1beta::Operation
|
2166
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
2167
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
2168
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
2169
|
+
command.params['servicesId'] = services_id unless services_id.nil?
|
2170
|
+
command.query['migrateTraffic'] = migrate_traffic unless migrate_traffic.nil?
|
2171
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
2172
|
+
command.query['fields'] = fields unless fields.nil?
|
2173
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2174
|
+
execute_or_queue_command(command, &block)
|
2175
|
+
end
|
2176
|
+
|
1815
2177
|
# Deletes an existing Version resource.
|
1816
2178
|
# @param [String] projects_id
|
1817
2179
|
# Part of `name`. Name of the resource requested. Example: apps/myapp/services/
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.55.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-appengine_v1beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.55.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1beta
|
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.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for App Engine Admin API V1beta
|
79
79
|
test_files: []
|