google-apis-appengine_v1 0.60.0 → 0.61.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_v1/gem_version.rb +2 -2
- data/lib/google/apis/appengine_v1/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: 356645955927f6659caec015c178644715347edd9696bdbbe484f86144762285
|
4
|
+
data.tar.gz: 73d7390d2a264ec1dd7c291fda819c7840e1915d613038e68fa3fb441b2b45db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b537d2d09e83961c6f8ffbf4f0a9acc57e7347ba913c7e421c6bd09be54aa8d13eb59e68a8554cf7c5ce58b9c7acd1e27fcb37eb8e5e5b520f90f27c8390910
|
7
|
+
data.tar.gz: 3bb840b801987346d694bdc65d3d309f58d2e1a1678db29dcca53d5be46d1471fa59fd52d59f698e0b895e9a58c8be2c5fd9adff1358319e2e35638bc468b4cf
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
19
|
+
GEM_VERSION = "0.61.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
|
@@ -1686,6 +1686,46 @@ module Google
|
|
1686
1686
|
execute_or_queue_command(command, &block)
|
1687
1687
|
end
|
1688
1688
|
|
1689
|
+
# Gets the specified domain mapping.
|
1690
|
+
# @param [String] projects_id
|
1691
|
+
# Part of `name`. Name of the resource requested. Example: apps/myapp/
|
1692
|
+
# domainMappings/example.com.
|
1693
|
+
# @param [String] locations_id
|
1694
|
+
# Part of `name`. See documentation of `projectsId`.
|
1695
|
+
# @param [String] applications_id
|
1696
|
+
# Part of `name`. See documentation of `projectsId`.
|
1697
|
+
# @param [String] domain_mappings_id
|
1698
|
+
# Part of `name`. See documentation of `projectsId`.
|
1699
|
+
# @param [String] fields
|
1700
|
+
# Selector specifying which fields to include in a partial response.
|
1701
|
+
# @param [String] quota_user
|
1702
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1703
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1704
|
+
# @param [Google::Apis::RequestOptions] options
|
1705
|
+
# Request-specific options
|
1706
|
+
#
|
1707
|
+
# @yield [result, err] Result & error if block supplied
|
1708
|
+
# @yieldparam result [Google::Apis::AppengineV1::DomainMapping] parsed result object
|
1709
|
+
# @yieldparam err [StandardError] error object if request failed
|
1710
|
+
#
|
1711
|
+
# @return [Google::Apis::AppengineV1::DomainMapping]
|
1712
|
+
#
|
1713
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1714
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1715
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1716
|
+
def get_project_location_application_domain_mapping(projects_id, locations_id, applications_id, domain_mappings_id, fields: nil, quota_user: nil, options: nil, &block)
|
1717
|
+
command = make_simple_command(:get, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/domainMappings/{domainMappingsId}', options)
|
1718
|
+
command.response_representation = Google::Apis::AppengineV1::DomainMapping::Representation
|
1719
|
+
command.response_class = Google::Apis::AppengineV1::DomainMapping
|
1720
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1721
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1722
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1723
|
+
command.params['domainMappingsId'] = domain_mappings_id unless domain_mappings_id.nil?
|
1724
|
+
command.query['fields'] = fields unless fields.nil?
|
1725
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1726
|
+
execute_or_queue_command(command, &block)
|
1727
|
+
end
|
1728
|
+
|
1689
1729
|
# Deletes the specified service and all enclosed versions.
|
1690
1730
|
# @param [String] projects_id
|
1691
1731
|
# Part of `name`. Name of the resource requested. Example: apps/myapp/services/
|
@@ -1726,6 +1766,66 @@ module Google
|
|
1726
1766
|
execute_or_queue_command(command, &block)
|
1727
1767
|
end
|
1728
1768
|
|
1769
|
+
# Updates the configuration of the specified service.
|
1770
|
+
# @param [String] projects_id
|
1771
|
+
# Part of `name`. Name of the resource to update. Example: apps/myapp/services/
|
1772
|
+
# default.
|
1773
|
+
# @param [String] locations_id
|
1774
|
+
# Part of `name`. See documentation of `projectsId`.
|
1775
|
+
# @param [String] applications_id
|
1776
|
+
# Part of `name`. See documentation of `projectsId`.
|
1777
|
+
# @param [String] services_id
|
1778
|
+
# Part of `name`. See documentation of `projectsId`.
|
1779
|
+
# @param [Google::Apis::AppengineV1::Service] service_object
|
1780
|
+
# @param [Boolean] migrate_traffic
|
1781
|
+
# Set to true to gradually shift traffic to one or more versions that you
|
1782
|
+
# specify. By default, traffic is shifted immediately. For gradual traffic
|
1783
|
+
# migration, the target versions must be located within instances that are
|
1784
|
+
# configured for both warmup requests (https://cloud.google.com/appengine/docs/
|
1785
|
+
# admin-api/reference/rest/v1/apps.services.versions#InboundServiceType) and
|
1786
|
+
# automatic scaling (https://cloud.google.com/appengine/docs/admin-api/reference/
|
1787
|
+
# rest/v1/apps.services.versions#AutomaticScaling). You must specify the shardBy
|
1788
|
+
# (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.
|
1789
|
+
# services#ShardBy) field in the Service resource. Gradual traffic migration is
|
1790
|
+
# not supported in the App Engine flexible environment. For examples, see
|
1791
|
+
# Migrating and Splitting Traffic (https://cloud.google.com/appengine/docs/admin-
|
1792
|
+
# api/migrating-splitting-traffic).
|
1793
|
+
# @param [String] update_mask
|
1794
|
+
# Required. Standard field mask for the set of fields to be updated.
|
1795
|
+
# @param [String] fields
|
1796
|
+
# Selector specifying which fields to include in a partial response.
|
1797
|
+
# @param [String] quota_user
|
1798
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1799
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1800
|
+
# @param [Google::Apis::RequestOptions] options
|
1801
|
+
# Request-specific options
|
1802
|
+
#
|
1803
|
+
# @yield [result, err] Result & error if block supplied
|
1804
|
+
# @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
|
1805
|
+
# @yieldparam err [StandardError] error object if request failed
|
1806
|
+
#
|
1807
|
+
# @return [Google::Apis::AppengineV1::Operation]
|
1808
|
+
#
|
1809
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1810
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1811
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1812
|
+
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)
|
1813
|
+
command = make_simple_command(:patch, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}', options)
|
1814
|
+
command.request_representation = Google::Apis::AppengineV1::Service::Representation
|
1815
|
+
command.request_object = service_object
|
1816
|
+
command.response_representation = Google::Apis::AppengineV1::Operation::Representation
|
1817
|
+
command.response_class = Google::Apis::AppengineV1::Operation
|
1818
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1819
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1820
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1821
|
+
command.params['servicesId'] = services_id unless services_id.nil?
|
1822
|
+
command.query['migrateTraffic'] = migrate_traffic unless migrate_traffic.nil?
|
1823
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
1824
|
+
command.query['fields'] = fields unless fields.nil?
|
1825
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1826
|
+
execute_or_queue_command(command, &block)
|
1827
|
+
end
|
1828
|
+
|
1729
1829
|
# Deletes an existing Version resource.
|
1730
1830
|
# @param [String] projects_id
|
1731
1831
|
# 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_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.61.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_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.61.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|