google-apis-appengine_v1 0.55.0 → 0.56.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 +40 -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: 9150c291c7289f53048a5efac234a0fa27c870522a181f67d197c28e77550df4
|
4
|
+
data.tar.gz: aef5ba00525fd33b05e522ae30fb26ee45fe3e41aadf577d1ff1ac50aa084a98
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bbc7e90bd4291a1cabd9fd7fca7e9a32fa359ed922df38f2a55263a4fd10fe37fdb75e2a8e9917ff0b5d6c965f3e9a33e1e195c77f97c6a6eb6a4e0129f78afc
|
7
|
+
data.tar.gz: dd8b3d3a164c4d4241ad783b40fb88018e384aae040629585e7654ab29a649d651b7edac21fb571f28d280cdae3cfef82ab0dce04511f1d695427a6ff8751056
|
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.56.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 = "20241205"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1636,6 +1636,46 @@ module Google
|
|
1636
1636
|
execute_or_queue_command(command, &block)
|
1637
1637
|
end
|
1638
1638
|
|
1639
|
+
# Deletes the specified service and all enclosed versions.
|
1640
|
+
# @param [String] projects_id
|
1641
|
+
# Part of `name`. Name of the resource requested. Example: apps/myapp/services/
|
1642
|
+
# default.
|
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] fields
|
1650
|
+
# Selector specifying which fields to include in a partial response.
|
1651
|
+
# @param [String] quota_user
|
1652
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1653
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1654
|
+
# @param [Google::Apis::RequestOptions] options
|
1655
|
+
# Request-specific options
|
1656
|
+
#
|
1657
|
+
# @yield [result, err] Result & error if block supplied
|
1658
|
+
# @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
|
1659
|
+
# @yieldparam err [StandardError] error object if request failed
|
1660
|
+
#
|
1661
|
+
# @return [Google::Apis::AppengineV1::Operation]
|
1662
|
+
#
|
1663
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1664
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1665
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1666
|
+
def delete_project_location_application_service(projects_id, locations_id, applications_id, services_id, fields: nil, quota_user: nil, options: nil, &block)
|
1667
|
+
command = make_simple_command(:delete, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}', options)
|
1668
|
+
command.response_representation = Google::Apis::AppengineV1::Operation::Representation
|
1669
|
+
command.response_class = Google::Apis::AppengineV1::Operation
|
1670
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1671
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1672
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1673
|
+
command.params['servicesId'] = services_id unless services_id.nil?
|
1674
|
+
command.query['fields'] = fields unless fields.nil?
|
1675
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1676
|
+
execute_or_queue_command(command, &block)
|
1677
|
+
end
|
1678
|
+
|
1639
1679
|
# Deletes an existing Version resource.
|
1640
1680
|
# @param [String] projects_id
|
1641
1681
|
# Part of `name`. Name of the resource requested. Example: apps/myapp/services/
|
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.56.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-12-
|
11
|
+
date: 2024-12-15 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.56.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.23
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for App Engine Admin API V1
|