google-apis-appengine_v1beta 0.39.0 → 0.41.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: 70724ab189da4837a18cc6234c3f0f5b6b4f55c9aae0c57afd871bc83db2c23a
4
- data.tar.gz: 8511b8e901772a90d65b62da564689adada6b339ac4941bbc31f34da1a757b03
3
+ metadata.gz: 5d19833eaf0a1362a830a21cf9706dbaf3523bdecb0a715e18dd0bf29b12e35d
4
+ data.tar.gz: 1b303b642ded298bdd1b69be7dfe4343ce35292fb80b159a65f1d917bef3b109
5
5
  SHA512:
6
- metadata.gz: bab74767984240ef9dbbd983a5129b12c078cfc009ade953120693ab2902994db917caae1e0daf844d907699b41bc5ea77f73386a2fcb40b6554f87e2c6be220
7
- data.tar.gz: 23d28a687537c60daffa623374576192bf4f89c4186e4515457447735bf2ae9372458ba6221693d2337e8d008aee0b3f06c582ae4e7be95218f9252649cdfdd5
6
+ metadata.gz: afa0ab777fcd61524207c463a0a76b8fb4317748f2c579b56d63564931f6408b97aba3578251793a345ab611cf8564eebf41cc042142b714d30bd3b8974b966c
7
+ data.tar.gz: 72fedfebd3edbcd546b5d48b95d8a46f09a8b84e7c67b5ce4526b7b81a447cbc2c953f4acc634c1a8db0a94c2de4d2294e3215d3bac8f77761218d87ce5e2ab9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-appengine_v1beta
2
2
 
3
+ ### v0.41.0 (2023-10-15)
4
+
5
+ * Regenerated from discovery document revision 20231004
6
+
7
+ ### v0.40.0 (2023-09-17)
8
+
9
+ * Regenerated from discovery document revision 20230909
10
+
3
11
  ### v0.39.0 (2023-09-10)
4
12
 
5
13
  * Regenerated from discovery document revision 20230831
@@ -609,6 +609,49 @@ module Google
609
609
  end
610
610
  end
611
611
 
612
+ # ContainerState contains the externally-visible container state that is used to
613
+ # communicate the state and reasoning for that state to the CLH. This data is
614
+ # not persisted by CCFE, but is instead derived from CCFE's internal
615
+ # representation of the container state.
616
+ class ContainerState
617
+ include Google::Apis::Core::Hashable
618
+
619
+ # Containers transition between and within states based on reasons sent from
620
+ # various systems. CCFE will provide the CLH with reasons for the current state
621
+ # per system.The current systems that CCFE supports are: Service Management (
622
+ # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
623
+ # Billing API)
624
+ # Corresponds to the JSON property `currentReasons`
625
+ # @return [Google::Apis::AppengineV1beta::Reasons]
626
+ attr_accessor :current_reasons
627
+
628
+ # Containers transition between and within states based on reasons sent from
629
+ # various systems. CCFE will provide the CLH with reasons for the current state
630
+ # per system.The current systems that CCFE supports are: Service Management (
631
+ # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
632
+ # Billing API)
633
+ # Corresponds to the JSON property `previousReasons`
634
+ # @return [Google::Apis::AppengineV1beta::Reasons]
635
+ attr_accessor :previous_reasons
636
+
637
+ # The current state of the container. This state is the culmination of all of
638
+ # the opinions from external systems that CCFE knows about of the container.
639
+ # Corresponds to the JSON property `state`
640
+ # @return [String]
641
+ attr_accessor :state
642
+
643
+ def initialize(**args)
644
+ update!(**args)
645
+ end
646
+
647
+ # Update properties of this object
648
+ def update!(**args)
649
+ @current_reasons = args[:current_reasons] if args.key?(:current_reasons)
650
+ @previous_reasons = args[:previous_reasons] if args.key?(:previous_reasons)
651
+ @state = args[:state] if args.key?(:state)
652
+ end
653
+ end
654
+
612
655
  # Target scaling by CPU usage.
613
656
  class CpuUtilization
614
657
  include Google::Apis::Core::Hashable
@@ -2326,12 +2369,12 @@ module Google
2326
2369
  # @return [Google::Apis::AppengineV1beta::ProjectsMetadata]
2327
2370
  attr_accessor :project_metadata
2328
2371
 
2329
- # ProjectState contains the externally-visible project state that is used to
2372
+ # ContainerState contains the externally-visible container state that is used to
2330
2373
  # communicate the state and reasoning for that state to the CLH. This data is
2331
2374
  # not persisted by CCFE, but is instead derived from CCFE's internal
2332
- # representation of the project state.
2375
+ # representation of the container state.
2333
2376
  # Corresponds to the JSON property `state`
2334
- # @return [Google::Apis::AppengineV1beta::ProjectState]
2377
+ # @return [Google::Apis::AppengineV1beta::ContainerState]
2335
2378
  attr_accessor :state
2336
2379
 
2337
2380
  def initialize(**args)
@@ -2347,49 +2390,6 @@ module Google
2347
2390
  end
2348
2391
  end
2349
2392
 
2350
- # ProjectState contains the externally-visible project state that is used to
2351
- # communicate the state and reasoning for that state to the CLH. This data is
2352
- # not persisted by CCFE, but is instead derived from CCFE's internal
2353
- # representation of the project state.
2354
- class ProjectState
2355
- include Google::Apis::Core::Hashable
2356
-
2357
- # Projects transition between and within states based on reasons sent from
2358
- # various systems. CCFE will provide the CLH with reasons for the current state
2359
- # per system.The current systems that CCFE supports are: Service Management (
2360
- # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
2361
- # Billing API)
2362
- # Corresponds to the JSON property `currentReasons`
2363
- # @return [Google::Apis::AppengineV1beta::Reasons]
2364
- attr_accessor :current_reasons
2365
-
2366
- # Projects transition between and within states based on reasons sent from
2367
- # various systems. CCFE will provide the CLH with reasons for the current state
2368
- # per system.The current systems that CCFE supports are: Service Management (
2369
- # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
2370
- # Billing API)
2371
- # Corresponds to the JSON property `previousReasons`
2372
- # @return [Google::Apis::AppengineV1beta::Reasons]
2373
- attr_accessor :previous_reasons
2374
-
2375
- # The current state of the project. This state is the culmination of all of the
2376
- # opinions from external systems that CCFE knows about of the project.
2377
- # Corresponds to the JSON property `state`
2378
- # @return [String]
2379
- attr_accessor :state
2380
-
2381
- def initialize(**args)
2382
- update!(**args)
2383
- end
2384
-
2385
- # Update properties of this object
2386
- def update!(**args)
2387
- @current_reasons = args[:current_reasons] if args.key?(:current_reasons)
2388
- @previous_reasons = args[:previous_reasons] if args.key?(:previous_reasons)
2389
- @state = args[:state] if args.key?(:state)
2390
- end
2391
- end
2392
-
2393
2393
  # ProjectsMetadata is the metadata CCFE stores about the all the relevant
2394
2394
  # projects (tenant, consumer, producer).
2395
2395
  class ProjectsMetadata
@@ -2515,7 +2515,7 @@ module Google
2515
2515
  end
2516
2516
  end
2517
2517
 
2518
- # Projects transition between and within states based on reasons sent from
2518
+ # Containers transition between and within states based on reasons sent from
2519
2519
  # various systems. CCFE will provide the CLH with reasons for the current state
2520
2520
  # per system.The current systems that CCFE supports are: Service Management (
2521
2521
  # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
@@ -2776,6 +2776,13 @@ module Google
2776
2776
  class Service
2777
2777
  include Google::Apis::Core::Hashable
2778
2778
 
2779
+ # Additional Google Generated Customer Metadata, this field won't be provided by
2780
+ # default and can be requested by setting the IncludeExtraData field in
2781
+ # GetServiceRequest
2782
+ # Corresponds to the JSON property `generatedCustomerMetadata`
2783
+ # @return [Hash<String,Object>]
2784
+ attr_accessor :generated_customer_metadata
2785
+
2779
2786
  # Relative name of the service within the application. Example: default.@
2780
2787
  # OutputOnly
2781
2788
  # Corresponds to the JSON property `id`
@@ -2820,6 +2827,7 @@ module Google
2820
2827
 
2821
2828
  # Update properties of this object
2822
2829
  def update!(**args)
2830
+ @generated_customer_metadata = args[:generated_customer_metadata] if args.key?(:generated_customer_metadata)
2823
2831
  @id = args[:id] if args.key?(:id)
2824
2832
  @labels = args[:labels] if args.key?(:labels)
2825
2833
  @name = args[:name] if args.key?(:name)
@@ -3268,6 +3276,13 @@ module Google
3268
3276
  # @return [Google::Apis::AppengineV1beta::FlexibleRuntimeSettings]
3269
3277
  attr_accessor :flexible_runtime_settings
3270
3278
 
3279
+ # Additional Google Generated Customer Metadata, this field won't be provided by
3280
+ # default and can be requested by setting the IncludeExtraData field in
3281
+ # GetVersionRequest
3282
+ # Corresponds to the JSON property `generatedCustomerMetadata`
3283
+ # @return [Hash<String,Object>]
3284
+ attr_accessor :generated_customer_metadata
3285
+
3271
3286
  # An ordered list of URL-matching patterns that should be applied to incoming
3272
3287
  # requests. The first matching URL handles the request and other request
3273
3288
  # handlers are not attempted.Only returned in GET requests if view=FULL is set.
@@ -3438,6 +3453,7 @@ module Google
3438
3453
  @env_variables = args[:env_variables] if args.key?(:env_variables)
3439
3454
  @error_handlers = args[:error_handlers] if args.key?(:error_handlers)
3440
3455
  @flexible_runtime_settings = args[:flexible_runtime_settings] if args.key?(:flexible_runtime_settings)
3456
+ @generated_customer_metadata = args[:generated_customer_metadata] if args.key?(:generated_customer_metadata)
3441
3457
  @handlers = args[:handlers] if args.key?(:handlers)
3442
3458
  @health_check = args[:health_check] if args.key?(:health_check)
3443
3459
  @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.39.0"
19
+ GEM_VERSION = "0.41.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 = "20230831"
25
+ REVISION = "20231004"
26
26
  end
27
27
  end
28
28
  end
@@ -100,6 +100,12 @@ module Google
100
100
  include Google::Apis::Core::JsonObjectSupport
101
101
  end
102
102
 
103
+ class ContainerState
104
+ class Representation < Google::Apis::Core::JsonRepresentation; end
105
+
106
+ include Google::Apis::Core::JsonObjectSupport
107
+ end
108
+
103
109
  class CpuUtilization
104
110
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
111
 
@@ -376,12 +382,6 @@ module Google
376
382
  include Google::Apis::Core::JsonObjectSupport
377
383
  end
378
384
 
379
- class ProjectState
380
- class Representation < Google::Apis::Core::JsonRepresentation; end
381
-
382
- include Google::Apis::Core::JsonObjectSupport
383
- end
384
-
385
385
  class ProjectsMetadata
386
386
  class Representation < Google::Apis::Core::JsonRepresentation; end
387
387
 
@@ -656,6 +656,17 @@ module Google
656
656
  end
657
657
  end
658
658
 
659
+ class ContainerState
660
+ # @private
661
+ class Representation < Google::Apis::Core::JsonRepresentation
662
+ property :current_reasons, as: 'currentReasons', class: Google::Apis::AppengineV1beta::Reasons, decorator: Google::Apis::AppengineV1beta::Reasons::Representation
663
+
664
+ property :previous_reasons, as: 'previousReasons', class: Google::Apis::AppengineV1beta::Reasons, decorator: Google::Apis::AppengineV1beta::Reasons::Representation
665
+
666
+ property :state, as: 'state'
667
+ end
668
+ end
669
+
659
670
  class CpuUtilization
660
671
  # @private
661
672
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1111,19 +1122,8 @@ module Google
1111
1122
  property :phase, as: 'phase'
1112
1123
  property :project_metadata, as: 'projectMetadata', class: Google::Apis::AppengineV1beta::ProjectsMetadata, decorator: Google::Apis::AppengineV1beta::ProjectsMetadata::Representation
1113
1124
 
1114
- property :state, as: 'state', class: Google::Apis::AppengineV1beta::ProjectState, decorator: Google::Apis::AppengineV1beta::ProjectState::Representation
1115
-
1116
- end
1117
- end
1118
-
1119
- class ProjectState
1120
- # @private
1121
- class Representation < Google::Apis::Core::JsonRepresentation
1122
- property :current_reasons, as: 'currentReasons', class: Google::Apis::AppengineV1beta::Reasons, decorator: Google::Apis::AppengineV1beta::Reasons::Representation
1123
-
1124
- property :previous_reasons, as: 'previousReasons', class: Google::Apis::AppengineV1beta::Reasons, decorator: Google::Apis::AppengineV1beta::Reasons::Representation
1125
+ property :state, as: 'state', class: Google::Apis::AppengineV1beta::ContainerState, decorator: Google::Apis::AppengineV1beta::ContainerState::Representation
1125
1126
 
1126
- property :state, as: 'state'
1127
1127
  end
1128
1128
  end
1129
1129
 
@@ -1225,6 +1225,7 @@ module Google
1225
1225
  class Service
1226
1226
  # @private
1227
1227
  class Representation < Google::Apis::Core::JsonRepresentation
1228
+ hash :generated_customer_metadata, as: 'generatedCustomerMetadata'
1228
1229
  property :id, as: 'id'
1229
1230
  hash :labels, as: 'labels'
1230
1231
  property :name, as: 'name'
@@ -1338,6 +1339,7 @@ module Google
1338
1339
 
1339
1340
  property :flexible_runtime_settings, as: 'flexibleRuntimeSettings', class: Google::Apis::AppengineV1beta::FlexibleRuntimeSettings, decorator: Google::Apis::AppengineV1beta::FlexibleRuntimeSettings::Representation
1340
1341
 
1342
+ hash :generated_customer_metadata, as: 'generatedCustomerMetadata'
1341
1343
  collection :handlers, as: 'handlers', class: Google::Apis::AppengineV1beta::UrlMap, decorator: Google::Apis::AppengineV1beta::UrlMap::Representation
1342
1344
 
1343
1345
  property :health_check, as: 'healthCheck', class: Google::Apis::AppengineV1beta::HealthCheck, decorator: Google::Apis::AppengineV1beta::HealthCheck::Representation
@@ -117,6 +117,40 @@ module Google
117
117
  execute_or_queue_command(command, &block)
118
118
  end
119
119
 
120
+ # Lists all the available runtimes for the application.
121
+ # @param [String] apps_id
122
+ # Part of `parent`. Required. Name of the parent Application resource. Example:
123
+ # apps/myapp.
124
+ # @param [String] environment
125
+ # Optional. The environment of the Application.
126
+ # @param [String] fields
127
+ # Selector specifying which fields to include in a partial response.
128
+ # @param [String] quota_user
129
+ # Available to use for quota purposes for server-side applications. Can be any
130
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
131
+ # @param [Google::Apis::RequestOptions] options
132
+ # Request-specific options
133
+ #
134
+ # @yield [result, err] Result & error if block supplied
135
+ # @yieldparam result [Google::Apis::AppengineV1beta::ListRuntimesResponse] parsed result object
136
+ # @yieldparam err [StandardError] error object if request failed
137
+ #
138
+ # @return [Google::Apis::AppengineV1beta::ListRuntimesResponse]
139
+ #
140
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
141
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
142
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
143
+ def list_app_runtimes(apps_id, environment: nil, fields: nil, quota_user: nil, options: nil, &block)
144
+ command = make_simple_command(:get, 'v1beta/apps/{appsId}:listRuntimes', options)
145
+ command.response_representation = Google::Apis::AppengineV1beta::ListRuntimesResponse::Representation
146
+ command.response_class = Google::Apis::AppengineV1beta::ListRuntimesResponse
147
+ command.params['appsId'] = apps_id unless apps_id.nil?
148
+ command.query['environment'] = environment unless environment.nil?
149
+ command.query['fields'] = fields unless fields.nil?
150
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
151
+ execute_or_queue_command(command, &block)
152
+ end
153
+
120
154
  # Updates the specified Application resource. You can update the following
121
155
  # fields: auth_domain - Google authentication domain for controlling user access
122
156
  # to the application. default_cookie_expiration - Cookie expiration policy for
@@ -979,40 +1013,6 @@ module Google
979
1013
  execute_or_queue_command(command, &block)
980
1014
  end
981
1015
 
982
- # Lists all the available runtimes for the application.
983
- # @param [String] apps_id
984
- # Part of `parent`. Required. Name of the parent Application resource. Example:
985
- # apps/myapp.
986
- # @param [String] environment
987
- # Optional. The environment of the Application.
988
- # @param [String] fields
989
- # Selector specifying which fields to include in a partial response.
990
- # @param [String] quota_user
991
- # Available to use for quota purposes for server-side applications. Can be any
992
- # arbitrary string assigned to a user, but should not exceed 40 characters.
993
- # @param [Google::Apis::RequestOptions] options
994
- # Request-specific options
995
- #
996
- # @yield [result, err] Result & error if block supplied
997
- # @yieldparam result [Google::Apis::AppengineV1beta::ListRuntimesResponse] parsed result object
998
- # @yieldparam err [StandardError] error object if request failed
999
- #
1000
- # @return [Google::Apis::AppengineV1beta::ListRuntimesResponse]
1001
- #
1002
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1003
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1004
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1005
- def list_app_runtimes(apps_id, environment: nil, fields: nil, quota_user: nil, options: nil, &block)
1006
- command = make_simple_command(:get, 'v1beta/apps/{appsId}/runtimes', options)
1007
- command.response_representation = Google::Apis::AppengineV1beta::ListRuntimesResponse::Representation
1008
- command.response_class = Google::Apis::AppengineV1beta::ListRuntimesResponse
1009
- command.params['appsId'] = apps_id unless apps_id.nil?
1010
- command.query['environment'] = environment unless environment.nil?
1011
- command.query['fields'] = fields unless fields.nil?
1012
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1013
- execute_or_queue_command(command, &block)
1014
- end
1015
-
1016
1016
  # Deletes the specified service and all enclosed versions.
1017
1017
  # @param [String] apps_id
1018
1018
  # Part of `name`. Name of the resource requested. Example: apps/myapp/services/
@@ -1053,6 +1053,8 @@ module Google
1053
1053
  # default.
1054
1054
  # @param [String] services_id
1055
1055
  # Part of `name`. See documentation of `appsId`.
1056
+ # @param [String] include_extra_data
1057
+ # Optional. Options to include extra data
1056
1058
  # @param [String] fields
1057
1059
  # Selector specifying which fields to include in a partial response.
1058
1060
  # @param [String] quota_user
@@ -1070,12 +1072,13 @@ module Google
1070
1072
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1071
1073
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1072
1074
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1073
- def get_app_service(apps_id, services_id, fields: nil, quota_user: nil, options: nil, &block)
1075
+ def get_app_service(apps_id, services_id, include_extra_data: nil, fields: nil, quota_user: nil, options: nil, &block)
1074
1076
  command = make_simple_command(:get, 'v1beta/apps/{appsId}/services/{servicesId}', options)
1075
1077
  command.response_representation = Google::Apis::AppengineV1beta::Service::Representation
1076
1078
  command.response_class = Google::Apis::AppengineV1beta::Service
1077
1079
  command.params['appsId'] = apps_id unless apps_id.nil?
1078
1080
  command.params['servicesId'] = services_id unless services_id.nil?
1081
+ command.query['includeExtraData'] = include_extra_data unless include_extra_data.nil?
1079
1082
  command.query['fields'] = fields unless fields.nil?
1080
1083
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1081
1084
  execute_or_queue_command(command, &block)
@@ -1254,6 +1257,8 @@ module Google
1254
1257
  # Part of `name`. See documentation of `appsId`.
1255
1258
  # @param [String] versions_id
1256
1259
  # Part of `name`. See documentation of `appsId`.
1260
+ # @param [String] include_extra_data
1261
+ # Optional. Options to include extra data
1257
1262
  # @param [String] view
1258
1263
  # Controls the set of fields returned in the Get response.
1259
1264
  # @param [String] fields
@@ -1273,13 +1278,14 @@ module Google
1273
1278
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1274
1279
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1275
1280
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1276
- def get_app_service_version(apps_id, services_id, versions_id, view: nil, fields: nil, quota_user: nil, options: nil, &block)
1281
+ def get_app_service_version(apps_id, services_id, versions_id, include_extra_data: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
1277
1282
  command = make_simple_command(:get, 'v1beta/apps/{appsId}/services/{servicesId}/versions/{versionsId}', options)
1278
1283
  command.response_representation = Google::Apis::AppengineV1beta::Version::Representation
1279
1284
  command.response_class = Google::Apis::AppengineV1beta::Version
1280
1285
  command.params['appsId'] = apps_id unless apps_id.nil?
1281
1286
  command.params['servicesId'] = services_id unless services_id.nil?
1282
1287
  command.params['versionsId'] = versions_id unless versions_id.nil?
1288
+ command.query['includeExtraData'] = include_extra_data unless include_extra_data.nil?
1283
1289
  command.query['view'] = view unless view.nil?
1284
1290
  command.query['fields'] = fields unless fields.nil?
1285
1291
  command.query['quotaUser'] = quota_user unless quota_user.nil?
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.39.0
4
+ version: 0.41.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-09-10 00:00:00.000000000 Z
11
+ date: 2023-10-15 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.39.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.41.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: []