google-apis-appengine_v1 0.29.0 → 0.30.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: 783d6bca44baddd2d5d5236af856efe46911cd9f4e728d98e1091fab863dc795
|
4
|
+
data.tar.gz: ab216280ef5734ba6aad1ff50af9e4e89d8751a84849b77f3e7337082d17dc4c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3add16fe85baa21445342fbe56f05d300641ce1746868f4713f46dd8204cb2b44f22a767687ea08702fe3712e24c34a7187deb727954d31eca68d0c07bbe1c00
|
7
|
+
data.tar.gz: f406aaf5bbad0694ff89681ecafcf248dee8d76c85e29564441fd4de5b925d883cd3677984199a23d048453a2f9133510a156ed2073a0282e3c102572ea8041c
|
data/CHANGELOG.md
CHANGED
@@ -1039,6 +1039,31 @@ module Google
|
|
1039
1039
|
end
|
1040
1040
|
end
|
1041
1041
|
|
1042
|
+
# Runtime settings for the App Engine flexible environment.
|
1043
|
+
class FlexibleRuntimeSettings
|
1044
|
+
include Google::Apis::Core::Hashable
|
1045
|
+
|
1046
|
+
# The operating system of the application runtime.
|
1047
|
+
# Corresponds to the JSON property `operatingSystem`
|
1048
|
+
# @return [String]
|
1049
|
+
attr_accessor :operating_system
|
1050
|
+
|
1051
|
+
# The runtime version of an App Engine flexible application.
|
1052
|
+
# Corresponds to the JSON property `runtimeVersion`
|
1053
|
+
# @return [String]
|
1054
|
+
attr_accessor :runtime_version
|
1055
|
+
|
1056
|
+
def initialize(**args)
|
1057
|
+
update!(**args)
|
1058
|
+
end
|
1059
|
+
|
1060
|
+
# Update properties of this object
|
1061
|
+
def update!(**args)
|
1062
|
+
@operating_system = args[:operating_system] if args.key?(:operating_system)
|
1063
|
+
@runtime_version = args[:runtime_version] if args.key?(:runtime_version)
|
1064
|
+
end
|
1065
|
+
end
|
1066
|
+
|
1042
1067
|
# Metadata for the given google.cloud.location.Location.
|
1043
1068
|
class GoogleAppengineV1betaLocationMetadata
|
1044
1069
|
include Google::Apis::Core::Hashable
|
@@ -3008,6 +3033,11 @@ module Google
|
|
3008
3033
|
# @return [Array<Google::Apis::AppengineV1::ErrorHandler>]
|
3009
3034
|
attr_accessor :error_handlers
|
3010
3035
|
|
3036
|
+
# Runtime settings for the App Engine flexible environment.
|
3037
|
+
# Corresponds to the JSON property `flexibleRuntimeSettings`
|
3038
|
+
# @return [Google::Apis::AppengineV1::FlexibleRuntimeSettings]
|
3039
|
+
attr_accessor :flexible_runtime_settings
|
3040
|
+
|
3011
3041
|
# An ordered list of URL-matching patterns that should be applied to incoming
|
3012
3042
|
# requests. The first matching URL handles the request and other request
|
3013
3043
|
# handlers are not attempted.Only returned in GET requests if view=FULL is set.
|
@@ -3177,6 +3207,7 @@ module Google
|
|
3177
3207
|
@env = args[:env] if args.key?(:env)
|
3178
3208
|
@env_variables = args[:env_variables] if args.key?(:env_variables)
|
3179
3209
|
@error_handlers = args[:error_handlers] if args.key?(:error_handlers)
|
3210
|
+
@flexible_runtime_settings = args[:flexible_runtime_settings] if args.key?(:flexible_runtime_settings)
|
3180
3211
|
@handlers = args[:handlers] if args.key?(:handlers)
|
3181
3212
|
@health_check = args[:health_check] if args.key?(:health_check)
|
3182
3213
|
@id = args[:id] if args.key?(:id)
|
@@ -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.30.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230206"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -184,6 +184,12 @@ module Google
|
|
184
184
|
include Google::Apis::Core::JsonObjectSupport
|
185
185
|
end
|
186
186
|
|
187
|
+
class FlexibleRuntimeSettings
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
187
193
|
class GoogleAppengineV1betaLocationMetadata
|
188
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
195
|
|
@@ -741,6 +747,14 @@ module Google
|
|
741
747
|
end
|
742
748
|
end
|
743
749
|
|
750
|
+
class FlexibleRuntimeSettings
|
751
|
+
# @private
|
752
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
753
|
+
property :operating_system, as: 'operatingSystem'
|
754
|
+
property :runtime_version, as: 'runtimeVersion'
|
755
|
+
end
|
756
|
+
end
|
757
|
+
|
744
758
|
class GoogleAppengineV1betaLocationMetadata
|
745
759
|
# @private
|
746
760
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1235,6 +1249,8 @@ module Google
|
|
1235
1249
|
hash :env_variables, as: 'envVariables'
|
1236
1250
|
collection :error_handlers, as: 'errorHandlers', class: Google::Apis::AppengineV1::ErrorHandler, decorator: Google::Apis::AppengineV1::ErrorHandler::Representation
|
1237
1251
|
|
1252
|
+
property :flexible_runtime_settings, as: 'flexibleRuntimeSettings', class: Google::Apis::AppengineV1::FlexibleRuntimeSettings, decorator: Google::Apis::AppengineV1::FlexibleRuntimeSettings::Representation
|
1253
|
+
|
1238
1254
|
collection :handlers, as: 'handlers', class: Google::Apis::AppengineV1::UrlMap, decorator: Google::Apis::AppengineV1::UrlMap::Representation
|
1239
1255
|
|
1240
1256
|
property :health_check, as: 'healthCheck', class: Google::Apis::AppengineV1::HealthCheck, decorator: Google::Apis::AppengineV1::HealthCheck::Representation
|
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.30.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-
|
11
|
+
date: 2023-02-12 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.30.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: []
|