google-apis-appengine_v1beta 0.53.0 → 0.54.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 +4 -0
- data/lib/google/apis/appengine_v1beta/gem_version.rb +2 -2
- data/lib/google/apis/appengine_v1beta/service.rb +100 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 226f8999ab3f1a93a3317550026f00545524e4e9aceef1973c69194c62cf6c3b
|
4
|
+
data.tar.gz: a9a9b6d298105d1e783eed3cc8fe3584e9e7e6a7b24856b21b7688a9c89584ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04ae2b47503189176df4c3716029f4f24fdbbde760aaa6d8cc16e7821ecba89b4409e975a2bef2a728ccf3325ce8fca7f14d5ea80f8a73e3f393af1592213709
|
7
|
+
data.tar.gz: 68c3562cd5d8e5907fcc401362428ae75399ec57d79b1f1b02b253a2c1dd9a5aac898176c05602b4d0901ac16ae9110d23d4334f325ac05ff6a5982f21f28761
|
data/CHANGELOG.md
CHANGED
@@ -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.54.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250512"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1772,6 +1772,46 @@ module Google
|
|
1772
1772
|
execute_or_queue_command(command, &block)
|
1773
1773
|
end
|
1774
1774
|
|
1775
|
+
# Gets the specified domain mapping.
|
1776
|
+
# @param [String] projects_id
|
1777
|
+
# Part of `name`. Name of the resource requested. Example: apps/myapp/
|
1778
|
+
# domainMappings/example.com.
|
1779
|
+
# @param [String] locations_id
|
1780
|
+
# Part of `name`. See documentation of `projectsId`.
|
1781
|
+
# @param [String] applications_id
|
1782
|
+
# Part of `name`. See documentation of `projectsId`.
|
1783
|
+
# @param [String] domain_mappings_id
|
1784
|
+
# Part of `name`. See documentation of `projectsId`.
|
1785
|
+
# @param [String] fields
|
1786
|
+
# Selector specifying which fields to include in a partial response.
|
1787
|
+
# @param [String] quota_user
|
1788
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1789
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1790
|
+
# @param [Google::Apis::RequestOptions] options
|
1791
|
+
# Request-specific options
|
1792
|
+
#
|
1793
|
+
# @yield [result, err] Result & error if block supplied
|
1794
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::DomainMapping] parsed result object
|
1795
|
+
# @yieldparam err [StandardError] error object if request failed
|
1796
|
+
#
|
1797
|
+
# @return [Google::Apis::AppengineV1beta::DomainMapping]
|
1798
|
+
#
|
1799
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1800
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1801
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1802
|
+
def get_project_location_application_domain_mapping(projects_id, locations_id, applications_id, domain_mappings_id, fields: nil, quota_user: nil, options: nil, &block)
|
1803
|
+
command = make_simple_command(:get, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/domainMappings/{domainMappingsId}', options)
|
1804
|
+
command.response_representation = Google::Apis::AppengineV1beta::DomainMapping::Representation
|
1805
|
+
command.response_class = Google::Apis::AppengineV1beta::DomainMapping
|
1806
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1807
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1808
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1809
|
+
command.params['domainMappingsId'] = domain_mappings_id unless domain_mappings_id.nil?
|
1810
|
+
command.query['fields'] = fields unless fields.nil?
|
1811
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1812
|
+
execute_or_queue_command(command, &block)
|
1813
|
+
end
|
1814
|
+
|
1775
1815
|
# Deletes the specified service and all enclosed versions.
|
1776
1816
|
# @param [String] projects_id
|
1777
1817
|
# Part of `name`. Name of the resource requested. Example: apps/myapp/services/
|
@@ -1812,6 +1852,66 @@ module Google
|
|
1812
1852
|
execute_or_queue_command(command, &block)
|
1813
1853
|
end
|
1814
1854
|
|
1855
|
+
# Updates the configuration of the specified service.
|
1856
|
+
# @param [String] projects_id
|
1857
|
+
# Part of `name`. Name of the resource to update. Example: apps/myapp/services/
|
1858
|
+
# default.
|
1859
|
+
# @param [String] locations_id
|
1860
|
+
# Part of `name`. See documentation of `projectsId`.
|
1861
|
+
# @param [String] applications_id
|
1862
|
+
# Part of `name`. See documentation of `projectsId`.
|
1863
|
+
# @param [String] services_id
|
1864
|
+
# Part of `name`. See documentation of `projectsId`.
|
1865
|
+
# @param [Google::Apis::AppengineV1beta::Service] service_object
|
1866
|
+
# @param [Boolean] migrate_traffic
|
1867
|
+
# Set to true to gradually shift traffic to one or more versions that you
|
1868
|
+
# specify. By default, traffic is shifted immediately. For gradual traffic
|
1869
|
+
# migration, the target versions must be located within instances that are
|
1870
|
+
# configured for both warmup requests (https://cloud.google.com/appengine/docs/
|
1871
|
+
# admin-api/reference/rest/v1beta/apps.services.versions#InboundServiceType) and
|
1872
|
+
# automatic scaling (https://cloud.google.com/appengine/docs/admin-api/reference/
|
1873
|
+
# rest/v1beta/apps.services.versions#AutomaticScaling). You must specify the
|
1874
|
+
# shardBy (https://cloud.google.com/appengine/docs/admin-api/reference/rest/
|
1875
|
+
# v1beta/apps.services#ShardBy) field in the Service resource. Gradual traffic
|
1876
|
+
# migration is not supported in the App Engine flexible environment. For
|
1877
|
+
# examples, see Migrating and Splitting Traffic (https://cloud.google.com/
|
1878
|
+
# appengine/docs/admin-api/migrating-splitting-traffic).
|
1879
|
+
# @param [String] update_mask
|
1880
|
+
# Required. Standard field mask for the set of fields to be updated.
|
1881
|
+
# @param [String] fields
|
1882
|
+
# Selector specifying which fields to include in a partial response.
|
1883
|
+
# @param [String] quota_user
|
1884
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1885
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1886
|
+
# @param [Google::Apis::RequestOptions] options
|
1887
|
+
# Request-specific options
|
1888
|
+
#
|
1889
|
+
# @yield [result, err] Result & error if block supplied
|
1890
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::Operation] parsed result object
|
1891
|
+
# @yieldparam err [StandardError] error object if request failed
|
1892
|
+
#
|
1893
|
+
# @return [Google::Apis::AppengineV1beta::Operation]
|
1894
|
+
#
|
1895
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1896
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1897
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1898
|
+
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)
|
1899
|
+
command = make_simple_command(:patch, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}', options)
|
1900
|
+
command.request_representation = Google::Apis::AppengineV1beta::Service::Representation
|
1901
|
+
command.request_object = service_object
|
1902
|
+
command.response_representation = Google::Apis::AppengineV1beta::Operation::Representation
|
1903
|
+
command.response_class = Google::Apis::AppengineV1beta::Operation
|
1904
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1905
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1906
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1907
|
+
command.params['servicesId'] = services_id unless services_id.nil?
|
1908
|
+
command.query['migrateTraffic'] = migrate_traffic unless migrate_traffic.nil?
|
1909
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
1910
|
+
command.query['fields'] = fields unless fields.nil?
|
1911
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1912
|
+
execute_or_queue_command(command, &block)
|
1913
|
+
end
|
1914
|
+
|
1815
1915
|
# Deletes an existing Version resource.
|
1816
1916
|
# @param [String] projects_id
|
1817
1917
|
# 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.54.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.54.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:
|