google-apis-appengine_v1 0.28.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: af5ea220a4d5c84d53ddbe5cbcd19b1744f9c81efb19728335c5f0b14a073c76
4
- data.tar.gz: e985326a77a158b850bf40019ba877741e283f2efd2f1709f0aaf786013adc2c
3
+ metadata.gz: 783d6bca44baddd2d5d5236af856efe46911cd9f4e728d98e1091fab863dc795
4
+ data.tar.gz: ab216280ef5734ba6aad1ff50af9e4e89d8751a84849b77f3e7337082d17dc4c
5
5
  SHA512:
6
- metadata.gz: e516f9d751a6f6fb76b3348fa32e27d776b5e4ec7c666cae9ae6a1c416c9aa29eee00b01f709ca447a9ec5dd7ad928334551e56dd2309bb3b1e75ba058042091
7
- data.tar.gz: 3f5193918daa232bfcb4524ebb8b71abb24de0e36b1e51f0d8fef8d087ba3b9ff5e736c9b16e933a5e4ad94c6bb68d6d6d5473c09a4c1a983009ee482b6b6747
6
+ metadata.gz: 3add16fe85baa21445342fbe56f05d300641ce1746868f4713f46dd8204cb2b44f22a767687ea08702fe3712e24c34a7187deb727954d31eca68d0c07bbe1c00
7
+ data.tar.gz: f406aaf5bbad0694ff89681ecafcf248dee8d76c85e29564441fd4de5b925d883cd3677984199a23d048453a2f9133510a156ed2073a0282e3c102572ea8041c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-appengine_v1
2
2
 
3
+ ### v0.30.0 (2023-02-12)
4
+
5
+ * Regenerated from discovery document revision 20230206
6
+
7
+ ### v0.29.0 (2023-01-15)
8
+
9
+ * Regenerated from discovery document revision 20230109
10
+ * Regenerated using generator version 0.11.1
11
+
3
12
  ### v0.28.0 (2022-12-07)
4
13
 
5
14
  * Regenerated from discovery document revision 20221205
@@ -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.28.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 = "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
@@ -1560,6 +1560,42 @@ module Google
1560
1560
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1561
1561
  execute_or_queue_command(command, &block)
1562
1562
  end
1563
+
1564
+ # Gets information about an application.
1565
+ # @param [String] projects_id
1566
+ # Part of `name`. Name of the Application resource to get. Example: apps/myapp.
1567
+ # @param [String] locations_id
1568
+ # Part of `name`. See documentation of `projectsId`.
1569
+ # @param [String] applications_id
1570
+ # Part of `name`. See documentation of `projectsId`.
1571
+ # @param [String] fields
1572
+ # Selector specifying which fields to include in a partial response.
1573
+ # @param [String] quota_user
1574
+ # Available to use for quota purposes for server-side applications. Can be any
1575
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1576
+ # @param [Google::Apis::RequestOptions] options
1577
+ # Request-specific options
1578
+ #
1579
+ # @yield [result, err] Result & error if block supplied
1580
+ # @yieldparam result [Google::Apis::AppengineV1::Application] parsed result object
1581
+ # @yieldparam err [StandardError] error object if request failed
1582
+ #
1583
+ # @return [Google::Apis::AppengineV1::Application]
1584
+ #
1585
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1586
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1587
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1588
+ def get_project_location_application(projects_id, locations_id, applications_id, fields: nil, quota_user: nil, options: nil, &block)
1589
+ command = make_simple_command(:get, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}', options)
1590
+ command.response_representation = Google::Apis::AppengineV1::Application::Representation
1591
+ command.response_class = Google::Apis::AppengineV1::Application
1592
+ command.params['projectsId'] = projects_id unless projects_id.nil?
1593
+ command.params['locationsId'] = locations_id unless locations_id.nil?
1594
+ command.params['applicationsId'] = applications_id unless applications_id.nil?
1595
+ command.query['fields'] = fields unless fields.nil?
1596
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1597
+ execute_or_queue_command(command, &block)
1598
+ end
1563
1599
 
1564
1600
  protected
1565
1601
 
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.28.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-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.28.0
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: []
@@ -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 V1