google-apis-appengine_v1beta 0.29.0 → 0.30.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ba29cae0503c76b6e2f8706c7d3d58e38a3bcf46ef685f953ab4e7e36237ef99
4
- data.tar.gz: e7ac8ffa6baff11790a87ef8fa2f857c175eb93dd3a8ba682d2230ca196770b8
3
+ metadata.gz: f4d429ddcd507b8a699583bc9deea7b197886f705052ad3e91ad8c82a210886a
4
+ data.tar.gz: a9d4fa79d533dd4950940bbdcd66eed8bb6f3141ac0c8744906af7dad8ffe8be
5
5
  SHA512:
6
- metadata.gz: 5206f837afda042c55ea0d540da56bbf5fb0ba71f17168b1b8c3f1a8b93a8535afc73498e5deb1f58e2f4811a4229488fdd67493acba0300aa0c9d8fd0548b6b
7
- data.tar.gz: e637b25c0d6f32e236bc860a79b03e9eab2ef239cb182ddc262c756c8950a3fda6ac8915b2674beedab1dd90209a12b96564791b0cdb8c6deef736a74ce68ea5
6
+ metadata.gz: 133cab49951e6098464a359a2df541c1b32c3e6be8792f198494b6910b79994bfcdbb2ac0c461d3e36a3046624818a2f6af806778b9b934cf6149f2db3bde671
7
+ data.tar.gz: 4e965b9cbcfabc77fff3ef800d621cb74eec25c786be9faef14137c4e70387c92762d847ac99094d29d76a930aa6e6f4f65ad414c13ed5ed83941874e4b39cf5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-appengine_v1beta
2
2
 
3
+ ### v0.30.0 (2023-01-22)
4
+
5
+ * Regenerated from discovery document revision 20230114
6
+ * Regenerated using generator version 0.11.1
7
+
3
8
  ### v0.29.0 (2022-12-07)
4
9
 
5
10
  * 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.29.0"
19
+ GEM_VERSION = "0.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221205"
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.29.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: 2022-12-12 00:00:00.000000000 Z
11
+ date: 2023-01-22 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_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.30.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.3.14
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