google-apis-appengine_v1 0.53.0 → 0.54.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 +43 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7059be97d883401509a81a895697d854d609d19e1df2a1d4237e2e6ed1415a10
|
4
|
+
data.tar.gz: 0f0ed08a1f61561f6e2b4b733c851cb0a475ed8b883adeec2f26aa41362b8ac8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 072e3ea29c63a9673656e54d638bb69cfe24fe60d91fe700222f4e1f1d142770c261dd47ce27cf549b9bce86730a5cf24fd241cc4737b7b45bf4b7ef61bc0461
|
7
|
+
data.tar.gz: 771f3fa645efd7fe7f779c716ebb009a159b33e4a972e564e8e7b4f1cf4a173027982a505a3b3346eb314b12c8ac9406ffaf97a95b29d05dab0ecd9b7e9c7421
|
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.54.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241007"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1635,6 +1635,49 @@ module Google
|
|
1635
1635
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1636
1636
|
execute_or_queue_command(command, &block)
|
1637
1637
|
end
|
1638
|
+
|
1639
|
+
# Deletes an existing Version resource.
|
1640
|
+
# @param [String] projects_id
|
1641
|
+
# Part of `name`. Name of the resource requested. Example: apps/myapp/services/
|
1642
|
+
# default/versions/v1.
|
1643
|
+
# @param [String] locations_id
|
1644
|
+
# Part of `name`. See documentation of `projectsId`.
|
1645
|
+
# @param [String] applications_id
|
1646
|
+
# Part of `name`. See documentation of `projectsId`.
|
1647
|
+
# @param [String] services_id
|
1648
|
+
# Part of `name`. See documentation of `projectsId`.
|
1649
|
+
# @param [String] versions_id
|
1650
|
+
# Part of `name`. See documentation of `projectsId`.
|
1651
|
+
# @param [String] fields
|
1652
|
+
# Selector specifying which fields to include in a partial response.
|
1653
|
+
# @param [String] quota_user
|
1654
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1655
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1656
|
+
# @param [Google::Apis::RequestOptions] options
|
1657
|
+
# Request-specific options
|
1658
|
+
#
|
1659
|
+
# @yield [result, err] Result & error if block supplied
|
1660
|
+
# @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
|
1661
|
+
# @yieldparam err [StandardError] error object if request failed
|
1662
|
+
#
|
1663
|
+
# @return [Google::Apis::AppengineV1::Operation]
|
1664
|
+
#
|
1665
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1666
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1667
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1668
|
+
def delete_project_location_application_service_version(projects_id, locations_id, applications_id, services_id, versions_id, fields: nil, quota_user: nil, options: nil, &block)
|
1669
|
+
command = make_simple_command(:delete, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}/versions/{versionsId}', options)
|
1670
|
+
command.response_representation = Google::Apis::AppengineV1::Operation::Representation
|
1671
|
+
command.response_class = Google::Apis::AppengineV1::Operation
|
1672
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1673
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1674
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1675
|
+
command.params['servicesId'] = services_id unless services_id.nil?
|
1676
|
+
command.params['versionsId'] = versions_id unless versions_id.nil?
|
1677
|
+
command.query['fields'] = fields unless fields.nil?
|
1678
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1679
|
+
execute_or_queue_command(command, &block)
|
1680
|
+
end
|
1638
1681
|
|
1639
1682
|
protected
|
1640
1683
|
|
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.54.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: 2024-
|
11
|
+
date: 2024-10-27 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.54.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.21
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for App Engine Admin API V1
|