google-apis-appengine_v1beta 0.35.0 → 0.37.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: 8cfb03f3c787e199c488f603c5bfec0064ed3a7f7c9bdd0bab0b90e077dc560c
|
4
|
+
data.tar.gz: b2b922bed95c18d88ae8bd4cefc2c5af0e90184e7d11406fd60846694485551f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a5f9c36b7508cd1905aa7aa8e27230fcbf76703fd83b4e2443f91ea1668a77d011acb2f5846af0bde5509f77be8ce730a40718cb702d8951f3235dcf0999dee8
|
7
|
+
data.tar.gz: 71920894a4cd48283485d2506736f27c529b5c14913ac66bd32698c0a3d7ca91fb3e485bb86e38508fb6a05c2a7c7ef026141765921dbd5bec0d992bc05fc2be
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-appengine_v1beta
|
2
2
|
|
3
|
+
### v0.37.0 (2023-08-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230807
|
6
|
+
|
7
|
+
### v0.36.0 (2023-07-09)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230706
|
10
|
+
|
3
11
|
### v0.35.0 (2023-06-11)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230601
|
@@ -1608,6 +1608,31 @@ module Google
|
|
1608
1608
|
end
|
1609
1609
|
end
|
1610
1610
|
|
1611
|
+
# Response message for Applications.ListRuntimes.
|
1612
|
+
class ListRuntimesResponse
|
1613
|
+
include Google::Apis::Core::Hashable
|
1614
|
+
|
1615
|
+
# Continuation token for fetching the next page of results.
|
1616
|
+
# Corresponds to the JSON property `nextPageToken`
|
1617
|
+
# @return [String]
|
1618
|
+
attr_accessor :next_page_token
|
1619
|
+
|
1620
|
+
# The runtimes available to the requested application.
|
1621
|
+
# Corresponds to the JSON property `runtimes`
|
1622
|
+
# @return [Array<Google::Apis::AppengineV1beta::Runtime>]
|
1623
|
+
attr_accessor :runtimes
|
1624
|
+
|
1625
|
+
def initialize(**args)
|
1626
|
+
update!(**args)
|
1627
|
+
end
|
1628
|
+
|
1629
|
+
# Update properties of this object
|
1630
|
+
def update!(**args)
|
1631
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1632
|
+
@runtimes = args[:runtimes] if args.key?(:runtimes)
|
1633
|
+
end
|
1634
|
+
end
|
1635
|
+
|
1611
1636
|
# Response message for Services.ListServices.
|
1612
1637
|
class ListServicesResponse
|
1613
1638
|
include Google::Apis::Core::Hashable
|
@@ -2011,12 +2036,12 @@ module Google
|
|
2011
2036
|
# @return [String]
|
2012
2037
|
attr_accessor :name
|
2013
2038
|
|
2014
|
-
# The normal response of the operation
|
2015
|
-
#
|
2016
|
-
#
|
2017
|
-
#
|
2018
|
-
#
|
2019
|
-
#
|
2039
|
+
# The normal, successful response of the operation. If the original method
|
2040
|
+
# returns no data on success, such as Delete, the response is google.protobuf.
|
2041
|
+
# Empty. If the original method is standard Get/Create/Update, the response
|
2042
|
+
# should be the resource. For other methods, the response should have the type
|
2043
|
+
# XxxResponse, where Xxx is the original method name. For example, if the
|
2044
|
+
# original method name is TakeSnapshot(), the inferred response type is
|
2020
2045
|
# TakeSnapshotResponse.
|
2021
2046
|
# Corresponds to the JSON property `response`
|
2022
2047
|
# @return [Hash<String,Object>]
|
@@ -2598,6 +2623,43 @@ module Google
|
|
2598
2623
|
end
|
2599
2624
|
end
|
2600
2625
|
|
2626
|
+
# Runtime versions for App Engine.
|
2627
|
+
class Runtime
|
2628
|
+
include Google::Apis::Core::Hashable
|
2629
|
+
|
2630
|
+
# The environment of the runtime.
|
2631
|
+
# Corresponds to the JSON property `environment`
|
2632
|
+
# @return [String]
|
2633
|
+
attr_accessor :environment
|
2634
|
+
|
2635
|
+
# The name of the runtime, e.g., 'go113', 'nodejs12', etc.
|
2636
|
+
# Corresponds to the JSON property `name`
|
2637
|
+
# @return [String]
|
2638
|
+
attr_accessor :name
|
2639
|
+
|
2640
|
+
# The stage of life this runtime is in, e.g., BETA, GA, etc.
|
2641
|
+
# Corresponds to the JSON property `stage`
|
2642
|
+
# @return [String]
|
2643
|
+
attr_accessor :stage
|
2644
|
+
|
2645
|
+
# Warning messages, e.g., a deprecation warning.
|
2646
|
+
# Corresponds to the JSON property `warnings`
|
2647
|
+
# @return [Array<String>]
|
2648
|
+
attr_accessor :warnings
|
2649
|
+
|
2650
|
+
def initialize(**args)
|
2651
|
+
update!(**args)
|
2652
|
+
end
|
2653
|
+
|
2654
|
+
# Update properties of this object
|
2655
|
+
def update!(**args)
|
2656
|
+
@environment = args[:environment] if args.key?(:environment)
|
2657
|
+
@name = args[:name] if args.key?(:name)
|
2658
|
+
@stage = args[:stage] if args.key?(:stage)
|
2659
|
+
@warnings = args[:warnings] if args.key?(:warnings)
|
2660
|
+
end
|
2661
|
+
end
|
2662
|
+
|
2601
2663
|
# Executes a script to handle the request that matches the URL pattern.
|
2602
2664
|
class ScriptHandler
|
2603
2665
|
include Google::Apis::Core::Hashable
|
@@ -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.37.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 = "20230807"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -274,6 +274,12 @@ module Google
|
|
274
274
|
include Google::Apis::Core::JsonObjectSupport
|
275
275
|
end
|
276
276
|
|
277
|
+
class ListRuntimesResponse
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
277
283
|
class ListServicesResponse
|
278
284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
285
|
|
@@ -412,6 +418,12 @@ module Google
|
|
412
418
|
include Google::Apis::Core::JsonObjectSupport
|
413
419
|
end
|
414
420
|
|
421
|
+
class Runtime
|
422
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
|
+
|
424
|
+
include Google::Apis::Core::JsonObjectSupport
|
425
|
+
end
|
426
|
+
|
415
427
|
class ScriptHandler
|
416
428
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
429
|
|
@@ -915,6 +927,15 @@ module Google
|
|
915
927
|
end
|
916
928
|
end
|
917
929
|
|
930
|
+
class ListRuntimesResponse
|
931
|
+
# @private
|
932
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
933
|
+
property :next_page_token, as: 'nextPageToken'
|
934
|
+
collection :runtimes, as: 'runtimes', class: Google::Apis::AppengineV1beta::Runtime, decorator: Google::Apis::AppengineV1beta::Runtime::Representation
|
935
|
+
|
936
|
+
end
|
937
|
+
end
|
938
|
+
|
918
939
|
class ListServicesResponse
|
919
940
|
# @private
|
920
941
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1162,6 +1183,16 @@ module Google
|
|
1162
1183
|
end
|
1163
1184
|
end
|
1164
1185
|
|
1186
|
+
class Runtime
|
1187
|
+
# @private
|
1188
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1189
|
+
property :environment, as: 'environment'
|
1190
|
+
property :name, as: 'name'
|
1191
|
+
property :stage, as: 'stage'
|
1192
|
+
collection :warnings, as: 'warnings'
|
1193
|
+
end
|
1194
|
+
end
|
1195
|
+
|
1165
1196
|
class ScriptHandler
|
1166
1197
|
# @private
|
1167
1198
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -56,9 +56,6 @@ module Google
|
|
56
56
|
# applications, see Managing Projects, Applications, and Billing (https://cloud.
|
57
57
|
# google.com/appengine/docs/standard/python/console/).
|
58
58
|
# @param [Google::Apis::AppengineV1beta::Application] application_object
|
59
|
-
# @param [String] parent
|
60
|
-
# The project and location in which the application should be created, specified
|
61
|
-
# in the format projects/*/locations/*
|
62
59
|
# @param [String] fields
|
63
60
|
# Selector specifying which fields to include in a partial response.
|
64
61
|
# @param [String] quota_user
|
@@ -76,13 +73,12 @@ module Google
|
|
76
73
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
77
74
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
78
75
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
79
|
-
def create_app(application_object = nil,
|
76
|
+
def create_app(application_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
80
77
|
command = make_simple_command(:post, 'v1beta/apps', options)
|
81
78
|
command.request_representation = Google::Apis::AppengineV1beta::Application::Representation
|
82
79
|
command.request_object = application_object
|
83
80
|
command.response_representation = Google::Apis::AppengineV1beta::Operation::Representation
|
84
81
|
command.response_class = Google::Apis::AppengineV1beta::Operation
|
85
|
-
command.query['parent'] = parent unless parent.nil?
|
86
82
|
command.query['fields'] = fields unless fields.nil?
|
87
83
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
88
84
|
execute_or_queue_command(command, &block)
|
@@ -980,6 +976,46 @@ module Google
|
|
980
976
|
execute_or_queue_command(command, &block)
|
981
977
|
end
|
982
978
|
|
979
|
+
# Lists all the available runtimes for the application.
|
980
|
+
# @param [String] apps_id
|
981
|
+
# Part of `parent`. Required. Name of the parent Application resource. Example:
|
982
|
+
# apps/myapp.
|
983
|
+
# @param [String] environment
|
984
|
+
# Optional. The environment of the Application.
|
985
|
+
# @param [Fixnum] page_size
|
986
|
+
# Optional. Maximum results to return per page.
|
987
|
+
# @param [String] page_token
|
988
|
+
# Optional. Continuation token for fetching the next page of results.
|
989
|
+
# @param [String] fields
|
990
|
+
# Selector specifying which fields to include in a partial response.
|
991
|
+
# @param [String] quota_user
|
992
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
993
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
994
|
+
# @param [Google::Apis::RequestOptions] options
|
995
|
+
# Request-specific options
|
996
|
+
#
|
997
|
+
# @yield [result, err] Result & error if block supplied
|
998
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::ListRuntimesResponse] parsed result object
|
999
|
+
# @yieldparam err [StandardError] error object if request failed
|
1000
|
+
#
|
1001
|
+
# @return [Google::Apis::AppengineV1beta::ListRuntimesResponse]
|
1002
|
+
#
|
1003
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1004
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1005
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1006
|
+
def list_app_runtimes(apps_id, environment: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1007
|
+
command = make_simple_command(:get, 'v1beta/apps/{appsId}/runtimes', options)
|
1008
|
+
command.response_representation = Google::Apis::AppengineV1beta::ListRuntimesResponse::Representation
|
1009
|
+
command.response_class = Google::Apis::AppengineV1beta::ListRuntimesResponse
|
1010
|
+
command.params['appsId'] = apps_id unless apps_id.nil?
|
1011
|
+
command.query['environment'] = environment unless environment.nil?
|
1012
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
1013
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
1014
|
+
command.query['fields'] = fields unless fields.nil?
|
1015
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1016
|
+
execute_or_queue_command(command, &block)
|
1017
|
+
end
|
1018
|
+
|
983
1019
|
# Deletes the specified service and all enclosed versions.
|
984
1020
|
# @param [String] apps_id
|
985
1021
|
# Part of `name`. Name of the resource requested. Example: apps/myapp/services/
|
@@ -1635,214 +1671,6 @@ module Google
|
|
1635
1671
|
execute_or_queue_command(command, &block)
|
1636
1672
|
end
|
1637
1673
|
|
1638
|
-
# Creates an App Engine application for a Google Cloud Platform project.
|
1639
|
-
# Required fields: id - The ID of the target Cloud Platform project. location -
|
1640
|
-
# The region (https://cloud.google.com/appengine/docs/locations) where you want
|
1641
|
-
# the App Engine application located.For more information about App Engine
|
1642
|
-
# applications, see Managing Projects, Applications, and Billing (https://cloud.
|
1643
|
-
# google.com/appengine/docs/standard/python/console/).
|
1644
|
-
# @param [String] projects_id
|
1645
|
-
# Part of `parent`. The project and location in which the application should be
|
1646
|
-
# created, specified in the format projects/*/locations/*
|
1647
|
-
# @param [String] locations_id
|
1648
|
-
# Part of `parent`. See documentation of `projectsId`.
|
1649
|
-
# @param [Google::Apis::AppengineV1beta::Application] application_object
|
1650
|
-
# @param [String] fields
|
1651
|
-
# Selector specifying which fields to include in a partial response.
|
1652
|
-
# @param [String] quota_user
|
1653
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1654
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1655
|
-
# @param [Google::Apis::RequestOptions] options
|
1656
|
-
# Request-specific options
|
1657
|
-
#
|
1658
|
-
# @yield [result, err] Result & error if block supplied
|
1659
|
-
# @yieldparam result [Google::Apis::AppengineV1beta::Operation] parsed result object
|
1660
|
-
# @yieldparam err [StandardError] error object if request failed
|
1661
|
-
#
|
1662
|
-
# @return [Google::Apis::AppengineV1beta::Operation]
|
1663
|
-
#
|
1664
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1665
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1666
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1667
|
-
def create_project_location_application(projects_id, locations_id, application_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1668
|
-
command = make_simple_command(:post, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications', options)
|
1669
|
-
command.request_representation = Google::Apis::AppengineV1beta::Application::Representation
|
1670
|
-
command.request_object = application_object
|
1671
|
-
command.response_representation = Google::Apis::AppengineV1beta::Operation::Representation
|
1672
|
-
command.response_class = Google::Apis::AppengineV1beta::Operation
|
1673
|
-
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1674
|
-
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1675
|
-
command.query['fields'] = fields unless fields.nil?
|
1676
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1677
|
-
execute_or_queue_command(command, &block)
|
1678
|
-
end
|
1679
|
-
|
1680
|
-
# Gets information about an application.
|
1681
|
-
# @param [String] projects_id
|
1682
|
-
# Part of `name`. Name of the Application resource to get. Example: apps/myapp.
|
1683
|
-
# @param [String] locations_id
|
1684
|
-
# Part of `name`. See documentation of `projectsId`.
|
1685
|
-
# @param [String] applications_id
|
1686
|
-
# Part of `name`. See documentation of `projectsId`.
|
1687
|
-
# @param [String] fields
|
1688
|
-
# Selector specifying which fields to include in a partial response.
|
1689
|
-
# @param [String] quota_user
|
1690
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1691
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1692
|
-
# @param [Google::Apis::RequestOptions] options
|
1693
|
-
# Request-specific options
|
1694
|
-
#
|
1695
|
-
# @yield [result, err] Result & error if block supplied
|
1696
|
-
# @yieldparam result [Google::Apis::AppengineV1beta::Application] parsed result object
|
1697
|
-
# @yieldparam err [StandardError] error object if request failed
|
1698
|
-
#
|
1699
|
-
# @return [Google::Apis::AppengineV1beta::Application]
|
1700
|
-
#
|
1701
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1702
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1703
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1704
|
-
def get_project_location_application(projects_id, locations_id, applications_id, fields: nil, quota_user: nil, options: nil, &block)
|
1705
|
-
command = make_simple_command(:get, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}', options)
|
1706
|
-
command.response_representation = Google::Apis::AppengineV1beta::Application::Representation
|
1707
|
-
command.response_class = Google::Apis::AppengineV1beta::Application
|
1708
|
-
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1709
|
-
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1710
|
-
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1711
|
-
command.query['fields'] = fields unless fields.nil?
|
1712
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1713
|
-
execute_or_queue_command(command, &block)
|
1714
|
-
end
|
1715
|
-
|
1716
|
-
# Recreates the required App Engine features for the specified App Engine
|
1717
|
-
# application, for example a Cloud Storage bucket or App Engine service account.
|
1718
|
-
# Use this method if you receive an error message about a missing feature, for
|
1719
|
-
# example, Error retrieving the App Engine service account. If you have deleted
|
1720
|
-
# your App Engine service account, this will not be able to recreate it. Instead,
|
1721
|
-
# you should attempt to use the IAM undelete API if possible at https://cloud.
|
1722
|
-
# google.com/iam/reference/rest/v1/projects.serviceAccounts/undelete?apix_params=
|
1723
|
-
# %7B"name"%3A"projects%2F-%2FserviceAccounts%2Funique_id"%2C"resource"%3A%7B%7D%
|
1724
|
-
# 7D . If the deletion was recent, the numeric ID can be found in the Cloud
|
1725
|
-
# Console Activity Log.
|
1726
|
-
# @param [String] projects_id
|
1727
|
-
# Part of `name`. Name of the application to repair. Example: apps/myapp
|
1728
|
-
# @param [String] locations_id
|
1729
|
-
# Part of `name`. See documentation of `projectsId`.
|
1730
|
-
# @param [String] applications_id
|
1731
|
-
# Part of `name`. See documentation of `projectsId`.
|
1732
|
-
# @param [Google::Apis::AppengineV1beta::RepairApplicationRequest] repair_application_request_object
|
1733
|
-
# @param [String] fields
|
1734
|
-
# Selector specifying which fields to include in a partial response.
|
1735
|
-
# @param [String] quota_user
|
1736
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1737
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1738
|
-
# @param [Google::Apis::RequestOptions] options
|
1739
|
-
# Request-specific options
|
1740
|
-
#
|
1741
|
-
# @yield [result, err] Result & error if block supplied
|
1742
|
-
# @yieldparam result [Google::Apis::AppengineV1beta::Operation] parsed result object
|
1743
|
-
# @yieldparam err [StandardError] error object if request failed
|
1744
|
-
#
|
1745
|
-
# @return [Google::Apis::AppengineV1beta::Operation]
|
1746
|
-
#
|
1747
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1748
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1749
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1750
|
-
def repair_project_location_application(projects_id, locations_id, applications_id, repair_application_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1751
|
-
command = make_simple_command(:post, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}:repair', options)
|
1752
|
-
command.request_representation = Google::Apis::AppengineV1beta::RepairApplicationRequest::Representation
|
1753
|
-
command.request_object = repair_application_request_object
|
1754
|
-
command.response_representation = Google::Apis::AppengineV1beta::Operation::Representation
|
1755
|
-
command.response_class = Google::Apis::AppengineV1beta::Operation
|
1756
|
-
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1757
|
-
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1758
|
-
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1759
|
-
command.query['fields'] = fields unless fields.nil?
|
1760
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1761
|
-
execute_or_queue_command(command, &block)
|
1762
|
-
end
|
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
|
-
|
1846
1674
|
# Gets the latest state of a long-running operation. Clients can use this method
|
1847
1675
|
# to poll the operation result at intervals as recommended by the API service.
|
1848
1676
|
# @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.37.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-08-20 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.37.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: []
|