google-apis-appengine_v1beta 0.67.0 → 0.68.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: bba77dd2b10b7837420225b67444c685dc3b8aa8cde2766e76be6567c2e5dc30
|
|
4
|
+
data.tar.gz: 59dd64defb8fed21cd2749129058e7999420f368fe82de8c62d2a6bcc928a15e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aed18fb98e2dae53c9793f3737c994b0e2f267cffa7ea3d12ad6f34b8f4369492203674ae43c436527104c7bda6e2d5f93dfc03bd24930af959c8bb07d0b964f
|
|
7
|
+
data.tar.gz: 0d8889d2e28f36449c3d1c8117577eb94568ac1346261498beea2cfbd46b561d491fb47a473eb5f5355f492ea184020e1e7e59a9caf448f50ff6c20da6e9cd45
|
data/CHANGELOG.md
CHANGED
|
@@ -1105,6 +1105,29 @@ module Google
|
|
|
1105
1105
|
end
|
|
1106
1106
|
end
|
|
1107
1107
|
|
|
1108
|
+
# Request message for Versions.ExportAppImage.
|
|
1109
|
+
class ExportAppImageRequest
|
|
1110
|
+
include Google::Apis::Core::Hashable
|
|
1111
|
+
|
|
1112
|
+
# Optional. The full resource name of the AR repository to export to. Format:
|
|
1113
|
+
# projects/`project`/locations/`location`/repositories/`repository` If not
|
|
1114
|
+
# specified, defaults to projects/`project`/locations/`location`/repositories/
|
|
1115
|
+
# gae-standard in the same region as the app. The default repository will be
|
|
1116
|
+
# created if it does not exist.
|
|
1117
|
+
# Corresponds to the JSON property `destinationRepository`
|
|
1118
|
+
# @return [String]
|
|
1119
|
+
attr_accessor :destination_repository
|
|
1120
|
+
|
|
1121
|
+
def initialize(**args)
|
|
1122
|
+
update!(**args)
|
|
1123
|
+
end
|
|
1124
|
+
|
|
1125
|
+
# Update properties of this object
|
|
1126
|
+
def update!(**args)
|
|
1127
|
+
@destination_repository = args[:destination_repository] if args.key?(:destination_repository)
|
|
1128
|
+
end
|
|
1129
|
+
end
|
|
1130
|
+
|
|
1108
1131
|
# The feature specific settings to be used in the application. These define
|
|
1109
1132
|
# behaviors that are user configurable.
|
|
1110
1133
|
class FeatureSettings
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.68.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
|
|
@@ -190,6 +190,12 @@ module Google
|
|
|
190
190
|
include Google::Apis::Core::JsonObjectSupport
|
|
191
191
|
end
|
|
192
192
|
|
|
193
|
+
class ExportAppImageRequest
|
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
195
|
+
|
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
197
|
+
end
|
|
198
|
+
|
|
193
199
|
class FeatureSettings
|
|
194
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
195
201
|
|
|
@@ -818,6 +824,13 @@ module Google
|
|
|
818
824
|
end
|
|
819
825
|
end
|
|
820
826
|
|
|
827
|
+
class ExportAppImageRequest
|
|
828
|
+
# @private
|
|
829
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
830
|
+
property :destination_repository, as: 'destinationRepository'
|
|
831
|
+
end
|
|
832
|
+
end
|
|
833
|
+
|
|
821
834
|
class FeatureSettings
|
|
822
835
|
# @private
|
|
823
836
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1275,6 +1275,46 @@ module Google
|
|
|
1275
1275
|
execute_or_queue_command(command, &block)
|
|
1276
1276
|
end
|
|
1277
1277
|
|
|
1278
|
+
# Exports a user image to Artifact Registry.
|
|
1279
|
+
# @param [String] apps_id
|
|
1280
|
+
# Part of `name`. Required. Name of the App Engine version resource. Format:
|
|
1281
|
+
# apps/`app`/services/`service`/versions/`version`
|
|
1282
|
+
# @param [String] services_id
|
|
1283
|
+
# Part of `name`. See documentation of `appsId`.
|
|
1284
|
+
# @param [String] versions_id
|
|
1285
|
+
# Part of `name`. See documentation of `appsId`.
|
|
1286
|
+
# @param [Google::Apis::AppengineV1beta::ExportAppImageRequest] export_app_image_request_object
|
|
1287
|
+
# @param [String] fields
|
|
1288
|
+
# Selector specifying which fields to include in a partial response.
|
|
1289
|
+
# @param [String] quota_user
|
|
1290
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
1291
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1292
|
+
# @param [Google::Apis::RequestOptions] options
|
|
1293
|
+
# Request-specific options
|
|
1294
|
+
#
|
|
1295
|
+
# @yield [result, err] Result & error if block supplied
|
|
1296
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::Operation] parsed result object
|
|
1297
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
1298
|
+
#
|
|
1299
|
+
# @return [Google::Apis::AppengineV1beta::Operation]
|
|
1300
|
+
#
|
|
1301
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1302
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1303
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1304
|
+
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)
|
|
1305
|
+
command = make_simple_command(:post, 'v1beta/apps/{appsId}/services/{servicesId}/versions/{versionsId}:exportAppImage', options)
|
|
1306
|
+
command.request_representation = Google::Apis::AppengineV1beta::ExportAppImageRequest::Representation
|
|
1307
|
+
command.request_object = export_app_image_request_object
|
|
1308
|
+
command.response_representation = Google::Apis::AppengineV1beta::Operation::Representation
|
|
1309
|
+
command.response_class = Google::Apis::AppengineV1beta::Operation
|
|
1310
|
+
command.params['appsId'] = apps_id unless apps_id.nil?
|
|
1311
|
+
command.params['servicesId'] = services_id unless services_id.nil?
|
|
1312
|
+
command.params['versionsId'] = versions_id unless versions_id.nil?
|
|
1313
|
+
command.query['fields'] = fields unless fields.nil?
|
|
1314
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1315
|
+
execute_or_queue_command(command, &block)
|
|
1316
|
+
end
|
|
1317
|
+
|
|
1278
1318
|
# Gets the specified Version resource. By default, only a BASIC_VIEW will be
|
|
1279
1319
|
# returned. Specify the FULL_VIEW parameter to get the full resource.
|
|
1280
1320
|
# @param [String] apps_id
|
|
@@ -2379,6 +2419,52 @@ module Google
|
|
|
2379
2419
|
execute_or_queue_command(command, &block)
|
|
2380
2420
|
end
|
|
2381
2421
|
|
|
2422
|
+
# Exports a user image to Artifact Registry.
|
|
2423
|
+
# @param [String] projects_id
|
|
2424
|
+
# Part of `name`. Required. Name of the App Engine version resource. Format:
|
|
2425
|
+
# apps/`app`/services/`service`/versions/`version`
|
|
2426
|
+
# @param [String] locations_id
|
|
2427
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2428
|
+
# @param [String] applications_id
|
|
2429
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2430
|
+
# @param [String] services_id
|
|
2431
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2432
|
+
# @param [String] versions_id
|
|
2433
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2434
|
+
# @param [Google::Apis::AppengineV1beta::ExportAppImageRequest] export_app_image_request_object
|
|
2435
|
+
# @param [String] fields
|
|
2436
|
+
# Selector specifying which fields to include in a partial response.
|
|
2437
|
+
# @param [String] quota_user
|
|
2438
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
2439
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
2440
|
+
# @param [Google::Apis::RequestOptions] options
|
|
2441
|
+
# Request-specific options
|
|
2442
|
+
#
|
|
2443
|
+
# @yield [result, err] Result & error if block supplied
|
|
2444
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::Operation] parsed result object
|
|
2445
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
2446
|
+
#
|
|
2447
|
+
# @return [Google::Apis::AppengineV1beta::Operation]
|
|
2448
|
+
#
|
|
2449
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2450
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2451
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2452
|
+
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)
|
|
2453
|
+
command = make_simple_command(:post, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}/versions/{versionsId}:exportAppImage', options)
|
|
2454
|
+
command.request_representation = Google::Apis::AppengineV1beta::ExportAppImageRequest::Representation
|
|
2455
|
+
command.request_object = export_app_image_request_object
|
|
2456
|
+
command.response_representation = Google::Apis::AppengineV1beta::Operation::Representation
|
|
2457
|
+
command.response_class = Google::Apis::AppengineV1beta::Operation
|
|
2458
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
|
2459
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
|
2460
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
|
2461
|
+
command.params['servicesId'] = services_id unless services_id.nil?
|
|
2462
|
+
command.params['versionsId'] = versions_id unless versions_id.nil?
|
|
2463
|
+
command.query['fields'] = fields unless fields.nil?
|
|
2464
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2465
|
+
execute_or_queue_command(command, &block)
|
|
2466
|
+
end
|
|
2467
|
+
|
|
2382
2468
|
# Updates the specified Version resource. You can specify the following fields
|
|
2383
2469
|
# depending on the App Engine environment and type of scaling that the version
|
|
2384
2470
|
# 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_v1beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.68.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_v1beta/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.68.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1beta
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|