google-apis-appengine_v1 0.36.0 → 0.38.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 +1 -131
- 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: f6f0b04fabf6b8a6c7599d81f60ff67f05a9c0d826289812b03ac4bab4e2a03a
|
4
|
+
data.tar.gz: 57f311176b73c3fad24c8c5b23fd58c89d51dd3e9d7e44540d942265f6f53fe6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f3fdadf9faeb7fa25bc4d993337507b3a5e23d24600a6e4aed9647228b2c0335c4d36df3a6d4c30dc25c0b26d533cf02d1a065406aa828676643958e18f4613
|
7
|
+
data.tar.gz: d6bbb888d8daf4a3837d1695547dce9ef1915e95cbd084f07c0903d586589c827ea331d66911c25226b334178f98c3e0b9a6b7ba8543ccd2168bda64c3179a35
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-appengine_v1
|
2
2
|
|
3
|
+
### v0.38.0 (2023-07-09)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230706
|
6
|
+
|
7
|
+
### v0.37.0 (2023-06-11)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230601
|
10
|
+
|
3
11
|
### v0.36.0 (2023-06-04)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230529
|
@@ -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.38.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 = "20230706"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -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::AppengineV1::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, 'v1/apps', options)
|
81
78
|
command.request_representation = Google::Apis::AppengineV1::Application::Representation
|
82
79
|
command.request_object = application_object
|
83
80
|
command.response_representation = Google::Apis::AppengineV1::Operation::Representation
|
84
81
|
command.response_class = Google::Apis::AppengineV1::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)
|
@@ -1558,132 +1554,6 @@ module Google
|
|
1558
1554
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1559
1555
|
execute_or_queue_command(command, &block)
|
1560
1556
|
end
|
1561
|
-
|
1562
|
-
# Creates an App Engine application for a Google Cloud Platform project.
|
1563
|
-
# Required fields: id - The ID of the target Cloud Platform project. location -
|
1564
|
-
# The region (https://cloud.google.com/appengine/docs/locations) where you want
|
1565
|
-
# the App Engine application located.For more information about App Engine
|
1566
|
-
# applications, see Managing Projects, Applications, and Billing (https://cloud.
|
1567
|
-
# google.com/appengine/docs/standard/python/console/).
|
1568
|
-
# @param [String] projects_id
|
1569
|
-
# Part of `parent`. The project and location in which the application should be
|
1570
|
-
# created, specified in the format projects/*/locations/*
|
1571
|
-
# @param [String] locations_id
|
1572
|
-
# Part of `parent`. See documentation of `projectsId`.
|
1573
|
-
# @param [Google::Apis::AppengineV1::Application] application_object
|
1574
|
-
# @param [String] fields
|
1575
|
-
# Selector specifying which fields to include in a partial response.
|
1576
|
-
# @param [String] quota_user
|
1577
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1578
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1579
|
-
# @param [Google::Apis::RequestOptions] options
|
1580
|
-
# Request-specific options
|
1581
|
-
#
|
1582
|
-
# @yield [result, err] Result & error if block supplied
|
1583
|
-
# @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
|
1584
|
-
# @yieldparam err [StandardError] error object if request failed
|
1585
|
-
#
|
1586
|
-
# @return [Google::Apis::AppengineV1::Operation]
|
1587
|
-
#
|
1588
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1589
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1590
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1591
|
-
def create_project_location_application(projects_id, locations_id, application_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1592
|
-
command = make_simple_command(:post, 'v1/projects/{projectsId}/locations/{locationsId}/applications', options)
|
1593
|
-
command.request_representation = Google::Apis::AppengineV1::Application::Representation
|
1594
|
-
command.request_object = application_object
|
1595
|
-
command.response_representation = Google::Apis::AppengineV1::Operation::Representation
|
1596
|
-
command.response_class = Google::Apis::AppengineV1::Operation
|
1597
|
-
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1598
|
-
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1599
|
-
command.query['fields'] = fields unless fields.nil?
|
1600
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1601
|
-
execute_or_queue_command(command, &block)
|
1602
|
-
end
|
1603
|
-
|
1604
|
-
# Gets information about an application.
|
1605
|
-
# @param [String] projects_id
|
1606
|
-
# Part of `name`. Name of the Application resource to get. Example: apps/myapp.
|
1607
|
-
# @param [String] locations_id
|
1608
|
-
# Part of `name`. See documentation of `projectsId`.
|
1609
|
-
# @param [String] applications_id
|
1610
|
-
# Part of `name`. See documentation of `projectsId`.
|
1611
|
-
# @param [String] fields
|
1612
|
-
# Selector specifying which fields to include in a partial response.
|
1613
|
-
# @param [String] quota_user
|
1614
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1615
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1616
|
-
# @param [Google::Apis::RequestOptions] options
|
1617
|
-
# Request-specific options
|
1618
|
-
#
|
1619
|
-
# @yield [result, err] Result & error if block supplied
|
1620
|
-
# @yieldparam result [Google::Apis::AppengineV1::Application] parsed result object
|
1621
|
-
# @yieldparam err [StandardError] error object if request failed
|
1622
|
-
#
|
1623
|
-
# @return [Google::Apis::AppengineV1::Application]
|
1624
|
-
#
|
1625
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1626
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1627
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1628
|
-
def get_project_location_application(projects_id, locations_id, applications_id, fields: nil, quota_user: nil, options: nil, &block)
|
1629
|
-
command = make_simple_command(:get, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}', options)
|
1630
|
-
command.response_representation = Google::Apis::AppengineV1::Application::Representation
|
1631
|
-
command.response_class = Google::Apis::AppengineV1::Application
|
1632
|
-
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1633
|
-
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1634
|
-
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1635
|
-
command.query['fields'] = fields unless fields.nil?
|
1636
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1637
|
-
execute_or_queue_command(command, &block)
|
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
1557
|
|
1688
1558
|
protected
|
1689
1559
|
|
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.38.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-07-09 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.38.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: []
|