google-apis-appengine_v1beta 0.54.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 226f8999ab3f1a93a3317550026f00545524e4e9aceef1973c69194c62cf6c3b
4
- data.tar.gz: a9a9b6d298105d1e783eed3cc8fe3584e9e7e6a7b24856b21b7688a9c89584ea
3
+ metadata.gz: e8faddfdce8ce5e7771d635dedcdd0280b90eb54d7c2693343321d0453a45f4c
4
+ data.tar.gz: c62951058bbfe04d2987ebd6f06332c020958cdc5356a853fc4dc3060f81733d
5
5
  SHA512:
6
- metadata.gz: 04ae2b47503189176df4c3716029f4f24fdbbde760aaa6d8cc16e7821ecba89b4409e975a2bef2a728ccf3325ce8fca7f14d5ea80f8a73e3f393af1592213709
7
- data.tar.gz: 68c3562cd5d8e5907fcc401362428ae75399ec57d79b1f1b02b253a2c1dd9a5aac898176c05602b4d0901ac16ae9110d23d4334f325ac05ff6a5982f21f28761
6
+ metadata.gz: c6e152034215aaa6834f679e9f386d979d6655b547e0f00c271f3e9c27f029451190b65fa4a324614157b8050624f0adf88b1e2d1c5ffdaace30a525ee343db7
7
+ data.tar.gz: 39f94fe0d83cb6387e1ac373d93cbb9a62972ed043c60bfee5abca1ac15c6b0fe59420e0d17205c138b1fdfe20ae9730fdb355804a22deb2de06b2bbef7708db
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
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
+
3
8
  ### v0.54.0 (2025-05-18)
4
9
 
5
10
  * Regenerated from discovery document revision 20250512
@@ -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.54.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.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250512"
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,51 @@ 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
+
1775
2037
  # Gets the specified domain mapping.
1776
2038
  # @param [String] projects_id
1777
2039
  # Part of `name`. Name of the resource requested. Example: apps/myapp/
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.54.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.54.0
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.8
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: []