google-apis-appengine_v1 0.37.0 → 0.39.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: 50213bfab35b355e4a292fdfdf71d1dff226bb10af2754a228a569673787d588
|
4
|
+
data.tar.gz: b3f677b8deb52d87043f1bf70837bb02dfc6c1f9d25747885dc5c2a53efe1665
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: edb42ca36ef7994972f79c8551938e73f094ef499974dace6c2510b8f89f375a4ae5743f4d5efd2d98ae17265263719b0ff80183189b63620b5aba4704493ed8
|
7
|
+
data.tar.gz: 0b54624bf263f6df42fe7dc1cbeba5ecc37aa5c0e80d93004bb5aa1c4ad0bafbdf03a55ae69c566661f2c66f94a62622cf183f9a567a9a4a14b1f39caeb9391a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-appengine_v1
|
2
2
|
|
3
|
+
### v0.39.0 (2023-08-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230807
|
6
|
+
|
7
|
+
### v0.38.0 (2023-07-09)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230706
|
10
|
+
|
3
11
|
### v0.37.0 (2023-06-11)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230601
|
@@ -1932,12 +1932,12 @@ module Google
|
|
1932
1932
|
# @return [String]
|
1933
1933
|
attr_accessor :name
|
1934
1934
|
|
1935
|
-
# The normal response of the operation
|
1936
|
-
#
|
1937
|
-
#
|
1938
|
-
#
|
1939
|
-
#
|
1940
|
-
#
|
1935
|
+
# The normal, successful response of the operation. If the original method
|
1936
|
+
# returns no data on success, such as Delete, the response is google.protobuf.
|
1937
|
+
# Empty. If the original method is standard Get/Create/Update, the response
|
1938
|
+
# should be the resource. For other methods, the response should have the type
|
1939
|
+
# XxxResponse, where Xxx is the original method name. For example, if the
|
1940
|
+
# original method name is TakeSnapshot(), the inferred response type is
|
1941
1941
|
# TakeSnapshotResponse.
|
1942
1942
|
# Corresponds to the JSON property `response`
|
1943
1943
|
# @return [Hash<String,Object>]
|
@@ -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.39.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
|
@@ -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,214 +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
|
-
|
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
|
1769
1557
|
|
1770
1558
|
protected
|
1771
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.39.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-13 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.39.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: []
|