google-apis-appengine_v1 0.72.0 → 0.73.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: 0e407aca1d939a4cf934249f425857555b5341714324b5376975c6888ae278e6
|
|
4
|
+
data.tar.gz: 216c61ee73e75f7dd8add07619a5dd7bbf8536fa8e54fc32e2ccc665b469ed25
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d435970f8236fc59b4d85561a5e10e957a20ab9aaae6bdede82819e739b0472a32a5fe684e65832df23e4b6604fa185e1e5c64f1dbbb1f03cc0d961dbf7f32d7
|
|
7
|
+
data.tar.gz: 7d79aeb31293480d61af60f30079532555af8991e0c5844548929f9d4f97f015932d4398b68be1fd59d023870ffd20e7d8628b5d024166d7c1c2f23461d49ec1
|
data/CHANGELOG.md
CHANGED
|
@@ -1026,6 +1026,29 @@ module Google
|
|
|
1026
1026
|
end
|
|
1027
1027
|
end
|
|
1028
1028
|
|
|
1029
|
+
# Request message for Versions.ExportAppImage.
|
|
1030
|
+
class ExportAppImageRequest
|
|
1031
|
+
include Google::Apis::Core::Hashable
|
|
1032
|
+
|
|
1033
|
+
# Optional. The full resource name of the AR repository to export to. Format:
|
|
1034
|
+
# projects/`project`/locations/`location`/repositories/`repository` If not
|
|
1035
|
+
# specified, defaults to projects/`project`/locations/`location`/repositories/
|
|
1036
|
+
# gae-standard in the same region as the app. The default repository will be
|
|
1037
|
+
# created if it does not exist.
|
|
1038
|
+
# Corresponds to the JSON property `destinationRepository`
|
|
1039
|
+
# @return [String]
|
|
1040
|
+
attr_accessor :destination_repository
|
|
1041
|
+
|
|
1042
|
+
def initialize(**args)
|
|
1043
|
+
update!(**args)
|
|
1044
|
+
end
|
|
1045
|
+
|
|
1046
|
+
# Update properties of this object
|
|
1047
|
+
def update!(**args)
|
|
1048
|
+
@destination_repository = args[:destination_repository] if args.key?(:destination_repository)
|
|
1049
|
+
end
|
|
1050
|
+
end
|
|
1051
|
+
|
|
1029
1052
|
# The feature specific settings to be used in the application. These define
|
|
1030
1053
|
# behaviors that are user configurable.
|
|
1031
1054
|
class FeatureSettings
|
|
@@ -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.73.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260316"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -178,6 +178,12 @@ module Google
|
|
|
178
178
|
include Google::Apis::Core::JsonObjectSupport
|
|
179
179
|
end
|
|
180
180
|
|
|
181
|
+
class ExportAppImageRequest
|
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
183
|
+
|
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
185
|
+
end
|
|
186
|
+
|
|
181
187
|
class FeatureSettings
|
|
182
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
183
189
|
|
|
@@ -772,6 +778,13 @@ module Google
|
|
|
772
778
|
end
|
|
773
779
|
end
|
|
774
780
|
|
|
781
|
+
class ExportAppImageRequest
|
|
782
|
+
# @private
|
|
783
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
784
|
+
property :destination_repository, as: 'destinationRepository'
|
|
785
|
+
end
|
|
786
|
+
end
|
|
787
|
+
|
|
775
788
|
class FeatureSettings
|
|
776
789
|
# @private
|
|
777
790
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1272,6 +1272,46 @@ module Google
|
|
|
1272
1272
|
execute_or_queue_command(command, &block)
|
|
1273
1273
|
end
|
|
1274
1274
|
|
|
1275
|
+
# Exports a user image to Artifact Registry.
|
|
1276
|
+
# @param [String] apps_id
|
|
1277
|
+
# Part of `name`. Required. Name of the App Engine version resource. Format:
|
|
1278
|
+
# apps/`app`/services/`service`/versions/`version`
|
|
1279
|
+
# @param [String] services_id
|
|
1280
|
+
# Part of `name`. See documentation of `appsId`.
|
|
1281
|
+
# @param [String] versions_id
|
|
1282
|
+
# Part of `name`. See documentation of `appsId`.
|
|
1283
|
+
# @param [Google::Apis::AppengineV1::ExportAppImageRequest] export_app_image_request_object
|
|
1284
|
+
# @param [String] fields
|
|
1285
|
+
# Selector specifying which fields to include in a partial response.
|
|
1286
|
+
# @param [String] quota_user
|
|
1287
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
1288
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1289
|
+
# @param [Google::Apis::RequestOptions] options
|
|
1290
|
+
# Request-specific options
|
|
1291
|
+
#
|
|
1292
|
+
# @yield [result, err] Result & error if block supplied
|
|
1293
|
+
# @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
|
|
1294
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
1295
|
+
#
|
|
1296
|
+
# @return [Google::Apis::AppengineV1::Operation]
|
|
1297
|
+
#
|
|
1298
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1299
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1300
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1301
|
+
def export_app_service_version_app_image(apps_id, services_id, versions_id, export_app_image_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1302
|
+
command = make_simple_command(:post, 'v1/apps/{appsId}/services/{servicesId}/versions/{versionsId}:exportAppImage', options)
|
|
1303
|
+
command.request_representation = Google::Apis::AppengineV1::ExportAppImageRequest::Representation
|
|
1304
|
+
command.request_object = export_app_image_request_object
|
|
1305
|
+
command.response_representation = Google::Apis::AppengineV1::Operation::Representation
|
|
1306
|
+
command.response_class = Google::Apis::AppengineV1::Operation
|
|
1307
|
+
command.params['appsId'] = apps_id unless apps_id.nil?
|
|
1308
|
+
command.params['servicesId'] = services_id unless services_id.nil?
|
|
1309
|
+
command.params['versionsId'] = versions_id unless versions_id.nil?
|
|
1310
|
+
command.query['fields'] = fields unless fields.nil?
|
|
1311
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1312
|
+
execute_or_queue_command(command, &block)
|
|
1313
|
+
end
|
|
1314
|
+
|
|
1275
1315
|
# Gets the specified Version resource. By default, only a BASIC_VIEW will be
|
|
1276
1316
|
# returned. Specify the FULL_VIEW parameter to get the full resource.
|
|
1277
1317
|
# @param [String] apps_id
|
|
@@ -2289,6 +2329,52 @@ module Google
|
|
|
2289
2329
|
execute_or_queue_command(command, &block)
|
|
2290
2330
|
end
|
|
2291
2331
|
|
|
2332
|
+
# Exports a user image to Artifact Registry.
|
|
2333
|
+
# @param [String] projects_id
|
|
2334
|
+
# Part of `name`. Required. Name of the App Engine version resource. Format:
|
|
2335
|
+
# apps/`app`/services/`service`/versions/`version`
|
|
2336
|
+
# @param [String] locations_id
|
|
2337
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2338
|
+
# @param [String] applications_id
|
|
2339
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2340
|
+
# @param [String] services_id
|
|
2341
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2342
|
+
# @param [String] versions_id
|
|
2343
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2344
|
+
# @param [Google::Apis::AppengineV1::ExportAppImageRequest] export_app_image_request_object
|
|
2345
|
+
# @param [String] fields
|
|
2346
|
+
# Selector specifying which fields to include in a partial response.
|
|
2347
|
+
# @param [String] quota_user
|
|
2348
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
2349
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
2350
|
+
# @param [Google::Apis::RequestOptions] options
|
|
2351
|
+
# Request-specific options
|
|
2352
|
+
#
|
|
2353
|
+
# @yield [result, err] Result & error if block supplied
|
|
2354
|
+
# @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
|
|
2355
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
2356
|
+
#
|
|
2357
|
+
# @return [Google::Apis::AppengineV1::Operation]
|
|
2358
|
+
#
|
|
2359
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2360
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2361
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2362
|
+
def export_project_location_application_service_version_app_image(projects_id, locations_id, applications_id, services_id, versions_id, export_app_image_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2363
|
+
command = make_simple_command(:post, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}/versions/{versionsId}:exportAppImage', options)
|
|
2364
|
+
command.request_representation = Google::Apis::AppengineV1::ExportAppImageRequest::Representation
|
|
2365
|
+
command.request_object = export_app_image_request_object
|
|
2366
|
+
command.response_representation = Google::Apis::AppengineV1::Operation::Representation
|
|
2367
|
+
command.response_class = Google::Apis::AppengineV1::Operation
|
|
2368
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
|
2369
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
|
2370
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
|
2371
|
+
command.params['servicesId'] = services_id unless services_id.nil?
|
|
2372
|
+
command.params['versionsId'] = versions_id unless versions_id.nil?
|
|
2373
|
+
command.query['fields'] = fields unless fields.nil?
|
|
2374
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2375
|
+
execute_or_queue_command(command, &block)
|
|
2376
|
+
end
|
|
2377
|
+
|
|
2292
2378
|
# Updates the specified Version resource. You can specify the following fields
|
|
2293
2379
|
# depending on the App Engine environment and type of scaling that the version
|
|
2294
2380
|
# resource uses:Standard environment instance_class (https://cloud.google.com/
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.73.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.73.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|