google-apis-appengine_v1beta 0.29.0 → 0.31.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: 26848e71e0dba149274661762961a7a25b6585f2a0a2874e2b4def73878cdcc6
|
|
4
|
+
data.tar.gz: 99043e699a5e4cdb3c6106daa8f20328b2a112913b51f9745cd2b82c88bd3e83
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d2eb7f0bfee1d3bacc3bb3bdd9696da243beae68ae9e055145915c541b59f8eb1c9f20bd1939d061f4ea1c36a5769fab363c1927c82115999df51464e30ec29b
|
|
7
|
+
data.tar.gz: cde1abdf1d6b72ec2143dd6cc42b2600e13e50e389daab4bf3c778194c2796bd9447103d17ee00a42fd04f20066bcc84eb6ad3d42aacd9315a89bffb86bcbf31
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-appengine_v1beta
|
|
2
2
|
|
|
3
|
+
### v0.31.0 (2023-02-26)
|
|
4
|
+
|
|
5
|
+
* Regenerated using generator version 0.12.0
|
|
6
|
+
|
|
7
|
+
### v0.30.0 (2023-01-22)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20230114
|
|
10
|
+
* Regenerated using generator version 0.11.1
|
|
11
|
+
|
|
3
12
|
### v0.29.0 (2022-12-07)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20221205
|
|
@@ -1119,6 +1119,31 @@ module Google
|
|
|
1119
1119
|
end
|
|
1120
1120
|
end
|
|
1121
1121
|
|
|
1122
|
+
# Runtime settings for the App Engine flexible environment.
|
|
1123
|
+
class FlexibleRuntimeSettings
|
|
1124
|
+
include Google::Apis::Core::Hashable
|
|
1125
|
+
|
|
1126
|
+
# The operating system of the application runtime.
|
|
1127
|
+
# Corresponds to the JSON property `operatingSystem`
|
|
1128
|
+
# @return [String]
|
|
1129
|
+
attr_accessor :operating_system
|
|
1130
|
+
|
|
1131
|
+
# The runtime version of an App Engine flexible application.
|
|
1132
|
+
# Corresponds to the JSON property `runtimeVersion`
|
|
1133
|
+
# @return [String]
|
|
1134
|
+
attr_accessor :runtime_version
|
|
1135
|
+
|
|
1136
|
+
def initialize(**args)
|
|
1137
|
+
update!(**args)
|
|
1138
|
+
end
|
|
1139
|
+
|
|
1140
|
+
# Update properties of this object
|
|
1141
|
+
def update!(**args)
|
|
1142
|
+
@operating_system = args[:operating_system] if args.key?(:operating_system)
|
|
1143
|
+
@runtime_version = args[:runtime_version] if args.key?(:runtime_version)
|
|
1144
|
+
end
|
|
1145
|
+
end
|
|
1146
|
+
|
|
1122
1147
|
# Metadata for the given google.cloud.location.Location.
|
|
1123
1148
|
class GoogleAppengineV1betaLocationMetadata
|
|
1124
1149
|
include Google::Apis::Core::Hashable
|
|
@@ -3088,6 +3113,11 @@ module Google
|
|
|
3088
3113
|
# @return [Array<Google::Apis::AppengineV1beta::ErrorHandler>]
|
|
3089
3114
|
attr_accessor :error_handlers
|
|
3090
3115
|
|
|
3116
|
+
# Runtime settings for the App Engine flexible environment.
|
|
3117
|
+
# Corresponds to the JSON property `flexibleRuntimeSettings`
|
|
3118
|
+
# @return [Google::Apis::AppengineV1beta::FlexibleRuntimeSettings]
|
|
3119
|
+
attr_accessor :flexible_runtime_settings
|
|
3120
|
+
|
|
3091
3121
|
# An ordered list of URL-matching patterns that should be applied to incoming
|
|
3092
3122
|
# requests. The first matching URL handles the request and other request
|
|
3093
3123
|
# handlers are not attempted.Only returned in GET requests if view=FULL is set.
|
|
@@ -3257,6 +3287,7 @@ module Google
|
|
|
3257
3287
|
@env = args[:env] if args.key?(:env)
|
|
3258
3288
|
@env_variables = args[:env_variables] if args.key?(:env_variables)
|
|
3259
3289
|
@error_handlers = args[:error_handlers] if args.key?(:error_handlers)
|
|
3290
|
+
@flexible_runtime_settings = args[:flexible_runtime_settings] if args.key?(:flexible_runtime_settings)
|
|
3260
3291
|
@handlers = args[:handlers] if args.key?(:handlers)
|
|
3261
3292
|
@health_check = args[:health_check] if args.key?(:health_check)
|
|
3262
3293
|
@id = args[:id] if args.key?(:id)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AppengineV1beta
|
|
18
18
|
# Version of the google-apis-appengine_v1beta gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.31.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.12.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230114"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -196,6 +196,12 @@ module Google
|
|
|
196
196
|
include Google::Apis::Core::JsonObjectSupport
|
|
197
197
|
end
|
|
198
198
|
|
|
199
|
+
class FlexibleRuntimeSettings
|
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
201
|
+
|
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
203
|
+
end
|
|
204
|
+
|
|
199
205
|
class GoogleAppengineV1betaLocationMetadata
|
|
200
206
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
201
207
|
|
|
@@ -775,6 +781,14 @@ module Google
|
|
|
775
781
|
end
|
|
776
782
|
end
|
|
777
783
|
|
|
784
|
+
class FlexibleRuntimeSettings
|
|
785
|
+
# @private
|
|
786
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
787
|
+
property :operating_system, as: 'operatingSystem'
|
|
788
|
+
property :runtime_version, as: 'runtimeVersion'
|
|
789
|
+
end
|
|
790
|
+
end
|
|
791
|
+
|
|
778
792
|
class GoogleAppengineV1betaLocationMetadata
|
|
779
793
|
# @private
|
|
780
794
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1269,6 +1283,8 @@ module Google
|
|
|
1269
1283
|
hash :env_variables, as: 'envVariables'
|
|
1270
1284
|
collection :error_handlers, as: 'errorHandlers', class: Google::Apis::AppengineV1beta::ErrorHandler, decorator: Google::Apis::AppengineV1beta::ErrorHandler::Representation
|
|
1271
1285
|
|
|
1286
|
+
property :flexible_runtime_settings, as: 'flexibleRuntimeSettings', class: Google::Apis::AppengineV1beta::FlexibleRuntimeSettings, decorator: Google::Apis::AppengineV1beta::FlexibleRuntimeSettings::Representation
|
|
1287
|
+
|
|
1272
1288
|
collection :handlers, as: 'handlers', class: Google::Apis::AppengineV1beta::UrlMap, decorator: Google::Apis::AppengineV1beta::UrlMap::Representation
|
|
1273
1289
|
|
|
1274
1290
|
property :health_check, as: 'healthCheck', class: Google::Apis::AppengineV1beta::HealthCheck, decorator: Google::Apis::AppengineV1beta::HealthCheck::Representation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-appengine_v1beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.31.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:
|
|
11
|
+
date: 2023-02-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -16,7 +16,7 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.11.0
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: 2.a
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.
|
|
29
|
+
version: 0.11.0
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 2.a
|
|
@@ -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_v1beta/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.31.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1beta
|
|
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.
|
|
78
|
+
rubygems_version: 3.4.2
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for App Engine Admin API V1beta
|