google-apis-appengine_v1 0.39.0 → 0.40.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 +4 -1
- 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: 4b5fae34c2b02bab53b097a3a007be520a0a74bb862955771322ec7a7e16bd07
|
|
4
|
+
data.tar.gz: da18aba50361c7c7bdabefb25f8862e84e76e33b910ec74a095cd22c8f1ccdd3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2d05cbe012116ceec96cb56965c9f9b00b66adf9e34d7be1376631aa1fb6c1da471de9a6b792f1927868c081db061e4a07843f3b80a56d376c8658c32bf4dde6
|
|
7
|
+
data.tar.gz: 8974b84435d89ae592cf51882119892c912cba331a05015ce15b2c656952c06195f2c747ed4f48c8ff4ae90d8a164ce4dbf3279bb5ad4f1f074690ec15777393
|
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.40.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 = "20230821"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -87,6 +87,8 @@ module Google
|
|
|
87
87
|
# Gets information about an application.
|
|
88
88
|
# @param [String] apps_id
|
|
89
89
|
# Part of `name`. Name of the Application resource to get. Example: apps/myapp.
|
|
90
|
+
# @param [String] include_extra_data
|
|
91
|
+
# Options to include extra data
|
|
90
92
|
# @param [String] fields
|
|
91
93
|
# Selector specifying which fields to include in a partial response.
|
|
92
94
|
# @param [String] quota_user
|
|
@@ -104,11 +106,12 @@ module Google
|
|
|
104
106
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
105
107
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
106
108
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
107
|
-
def get_app(apps_id, fields: nil, quota_user: nil, options: nil, &block)
|
|
109
|
+
def get_app(apps_id, include_extra_data: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
108
110
|
command = make_simple_command(:get, 'v1/apps/{appsId}', options)
|
|
109
111
|
command.response_representation = Google::Apis::AppengineV1::Application::Representation
|
|
110
112
|
command.response_class = Google::Apis::AppengineV1::Application
|
|
111
113
|
command.params['appsId'] = apps_id unless apps_id.nil?
|
|
114
|
+
command.query['includeExtraData'] = include_extra_data unless include_extra_data.nil?
|
|
112
115
|
command.query['fields'] = fields unless fields.nil?
|
|
113
116
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
114
117
|
execute_or_queue_command(command, &block)
|
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.40.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-08-
|
|
11
|
+
date: 2023-08-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.40.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.4.
|
|
78
|
+
rubygems_version: 3.4.19
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for App Engine Admin API V1
|