google-apis-appengine_v1 0.38.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f6f0b04fabf6b8a6c7599d81f60ff67f05a9c0d826289812b03ac4bab4e2a03a
4
- data.tar.gz: 57f311176b73c3fad24c8c5b23fd58c89d51dd3e9d7e44540d942265f6f53fe6
3
+ metadata.gz: 4b5fae34c2b02bab53b097a3a007be520a0a74bb862955771322ec7a7e16bd07
4
+ data.tar.gz: da18aba50361c7c7bdabefb25f8862e84e76e33b910ec74a095cd22c8f1ccdd3
5
5
  SHA512:
6
- metadata.gz: 0f3fdadf9faeb7fa25bc4d993337507b3a5e23d24600a6e4aed9647228b2c0335c4d36df3a6d4c30dc25c0b26d533cf02d1a065406aa828676643958e18f4613
7
- data.tar.gz: d6bbb888d8daf4a3837d1695547dce9ef1915e95cbd084f07c0903d586589c827ea331d66911c25226b334178f98c3e0b9a6b7ba8543ccd2168bda64c3179a35
6
+ metadata.gz: 2d05cbe012116ceec96cb56965c9f9b00b66adf9e34d7be1376631aa1fb6c1da471de9a6b792f1927868c081db061e4a07843f3b80a56d376c8658c32bf4dde6
7
+ data.tar.gz: 8974b84435d89ae592cf51882119892c912cba331a05015ce15b2c656952c06195f2c747ed4f48c8ff4ae90d8a164ce4dbf3279bb5ad4f1f074690ec15777393
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-appengine_v1
2
2
 
3
+ ### v0.40.0 (2023-08-27)
4
+
5
+ * Regenerated from discovery document revision 20230821
6
+
7
+ ### v0.39.0 (2023-08-13)
8
+
9
+ * Regenerated from discovery document revision 20230807
10
+
3
11
  ### v0.38.0 (2023-07-09)
4
12
 
5
13
  * Regenerated from discovery document revision 20230706
@@ -1932,12 +1932,12 @@ module Google
1932
1932
  # @return [String]
1933
1933
  attr_accessor :name
1934
1934
 
1935
- # The normal response of the operation in case of success. If the original
1936
- # method returns no data on success, such as Delete, the response is google.
1937
- # protobuf.Empty. If the original method is standard Get/Create/Update, the
1938
- # response should be the resource. For other methods, the response should have
1939
- # the type XxxResponse, where Xxx is the original method name. For example, if
1940
- # the original method name is TakeSnapshot(), the inferred response type is
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.38.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 = "20230706"
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.38.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-07-09 00:00:00.000000000 Z
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.38.0
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.2
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