google-apis-appengine_v1 0.35.0 → 0.37.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/appengine_v1/gem_version.rb +2 -2
- data/lib/google/apis/appengine_v1/service.rb +130 -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: fc9fd92d7aaf0e8811b399eccfee57ac47282d251da4e95e1fa032969882be30
|
4
|
+
data.tar.gz: b5042422af5151bf9d4feb55b4cc66a8d7ba07cfc3e635e9614d158b980894fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19168d3b731db73b5fc48447deb9fa56669ed6967d752c38a83b0a2877f5078d1a5aed4bbb563ab63cc6d7c614ee6b0c8ddcf56198b61127fb10757032384d46
|
7
|
+
data.tar.gz: 14cd4cf5500e10b8d6bfac5c2a6333f73da2d50a9bf427115e68dc8f043e34bc50f15b1d853623cb9c73d91d1092223f2bd6332cae06658423f74278c778646f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-appengine_v1
|
2
2
|
|
3
|
+
### v0.37.0 (2023-06-11)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230601
|
6
|
+
|
7
|
+
### v0.36.0 (2023-06-04)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230529
|
10
|
+
|
3
11
|
### v0.35.0 (2023-04-30)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230424
|
@@ -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.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 = "20230601"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1636,6 +1636,136 @@ module Google
|
|
1636
1636
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1637
1637
|
execute_or_queue_command(command, &block)
|
1638
1638
|
end
|
1639
|
+
|
1640
|
+
# Recreates the required App Engine features for the specified App Engine
|
1641
|
+
# application, for example a Cloud Storage bucket or App Engine service account.
|
1642
|
+
# Use this method if you receive an error message about a missing feature, for
|
1643
|
+
# example, Error retrieving the App Engine service account. If you have deleted
|
1644
|
+
# your App Engine service account, this will not be able to recreate it. Instead,
|
1645
|
+
# you should attempt to use the IAM undelete API if possible at https://cloud.
|
1646
|
+
# google.com/iam/reference/rest/v1/projects.serviceAccounts/undelete?apix_params=
|
1647
|
+
# %7B"name"%3A"projects%2F-%2FserviceAccounts%2Funique_id"%2C"resource"%3A%7B%7D%
|
1648
|
+
# 7D . If the deletion was recent, the numeric ID can be found in the Cloud
|
1649
|
+
# Console Activity Log.
|
1650
|
+
# @param [String] projects_id
|
1651
|
+
# Part of `name`. Name of the application to repair. Example: apps/myapp
|
1652
|
+
# @param [String] locations_id
|
1653
|
+
# Part of `name`. See documentation of `projectsId`.
|
1654
|
+
# @param [String] applications_id
|
1655
|
+
# Part of `name`. See documentation of `projectsId`.
|
1656
|
+
# @param [Google::Apis::AppengineV1::RepairApplicationRequest] repair_application_request_object
|
1657
|
+
# @param [String] fields
|
1658
|
+
# Selector specifying which fields to include in a partial response.
|
1659
|
+
# @param [String] quota_user
|
1660
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1661
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1662
|
+
# @param [Google::Apis::RequestOptions] options
|
1663
|
+
# Request-specific options
|
1664
|
+
#
|
1665
|
+
# @yield [result, err] Result & error if block supplied
|
1666
|
+
# @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
|
1667
|
+
# @yieldparam err [StandardError] error object if request failed
|
1668
|
+
#
|
1669
|
+
# @return [Google::Apis::AppengineV1::Operation]
|
1670
|
+
#
|
1671
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1672
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1673
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1674
|
+
def repair_project_location_application(projects_id, locations_id, applications_id, repair_application_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1675
|
+
command = make_simple_command(:post, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}:repair', options)
|
1676
|
+
command.request_representation = Google::Apis::AppengineV1::RepairApplicationRequest::Representation
|
1677
|
+
command.request_object = repair_application_request_object
|
1678
|
+
command.response_representation = Google::Apis::AppengineV1::Operation::Representation
|
1679
|
+
command.response_class = Google::Apis::AppengineV1::Operation
|
1680
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1681
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1682
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1683
|
+
command.query['fields'] = fields unless fields.nil?
|
1684
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1685
|
+
execute_or_queue_command(command, &block)
|
1686
|
+
end
|
1687
|
+
|
1688
|
+
# Gets the current configuration of the specified service.
|
1689
|
+
# @param [String] projects_id
|
1690
|
+
# Part of `name`. Name of the resource requested. Example: apps/myapp/services/
|
1691
|
+
# default.
|
1692
|
+
# @param [String] locations_id
|
1693
|
+
# Part of `name`. See documentation of `projectsId`.
|
1694
|
+
# @param [String] applications_id
|
1695
|
+
# Part of `name`. See documentation of `projectsId`.
|
1696
|
+
# @param [String] services_id
|
1697
|
+
# Part of `name`. See documentation of `projectsId`.
|
1698
|
+
# @param [String] fields
|
1699
|
+
# Selector specifying which fields to include in a partial response.
|
1700
|
+
# @param [String] quota_user
|
1701
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1702
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1703
|
+
# @param [Google::Apis::RequestOptions] options
|
1704
|
+
# Request-specific options
|
1705
|
+
#
|
1706
|
+
# @yield [result, err] Result & error if block supplied
|
1707
|
+
# @yieldparam result [Google::Apis::AppengineV1::Service] parsed result object
|
1708
|
+
# @yieldparam err [StandardError] error object if request failed
|
1709
|
+
#
|
1710
|
+
# @return [Google::Apis::AppengineV1::Service]
|
1711
|
+
#
|
1712
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1713
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1714
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1715
|
+
def get_project_location_application_service(projects_id, locations_id, applications_id, services_id, fields: nil, quota_user: nil, options: nil, &block)
|
1716
|
+
command = make_simple_command(:get, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}', options)
|
1717
|
+
command.response_representation = Google::Apis::AppengineV1::Service::Representation
|
1718
|
+
command.response_class = Google::Apis::AppengineV1::Service
|
1719
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1720
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1721
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1722
|
+
command.params['servicesId'] = services_id unless services_id.nil?
|
1723
|
+
command.query['fields'] = fields unless fields.nil?
|
1724
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1725
|
+
execute_or_queue_command(command, &block)
|
1726
|
+
end
|
1727
|
+
|
1728
|
+
# Lists all the services in the application.
|
1729
|
+
# @param [String] projects_id
|
1730
|
+
# Part of `parent`. Name of the parent Application resource. Example: apps/myapp.
|
1731
|
+
# @param [String] locations_id
|
1732
|
+
# Part of `parent`. See documentation of `projectsId`.
|
1733
|
+
# @param [String] applications_id
|
1734
|
+
# Part of `parent`. See documentation of `projectsId`.
|
1735
|
+
# @param [Fixnum] page_size
|
1736
|
+
# Maximum results to return per page.
|
1737
|
+
# @param [String] page_token
|
1738
|
+
# Continuation token for fetching the next page of results.
|
1739
|
+
# @param [String] fields
|
1740
|
+
# Selector specifying which fields to include in a partial response.
|
1741
|
+
# @param [String] quota_user
|
1742
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1743
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1744
|
+
# @param [Google::Apis::RequestOptions] options
|
1745
|
+
# Request-specific options
|
1746
|
+
#
|
1747
|
+
# @yield [result, err] Result & error if block supplied
|
1748
|
+
# @yieldparam result [Google::Apis::AppengineV1::ListServicesResponse] parsed result object
|
1749
|
+
# @yieldparam err [StandardError] error object if request failed
|
1750
|
+
#
|
1751
|
+
# @return [Google::Apis::AppengineV1::ListServicesResponse]
|
1752
|
+
#
|
1753
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1754
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1755
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1756
|
+
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)
|
1757
|
+
command = make_simple_command(:get, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services', options)
|
1758
|
+
command.response_representation = Google::Apis::AppengineV1::ListServicesResponse::Representation
|
1759
|
+
command.response_class = Google::Apis::AppengineV1::ListServicesResponse
|
1760
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1761
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1762
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1763
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
1764
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
1765
|
+
command.query['fields'] = fields unless fields.nil?
|
1766
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1767
|
+
execute_or_queue_command(command, &block)
|
1768
|
+
end
|
1639
1769
|
|
1640
1770
|
protected
|
1641
1771
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.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-06-11 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.37.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|