google-apis-appengine_v1beta 0.61.0 → 0.62.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: 59a4b017778d9a4152d5e945d14ec35cb0bed84d4fbd6a8dfc5634f4575659c0
|
|
4
|
+
data.tar.gz: e454caa034aa917b0663257a961d4e85e9f065d15bc82c21bb804d3390cbc66c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c7e060a78ab0477da2db390cb2455bbcba5eaff6440ccb08b4377ac6c2b36b35ed9b3b5163476a00d73d00825ba9d711776fc367c54a64709556b074c3c00f24
|
|
7
|
+
data.tar.gz: 2e62687b2d50db3f5d15ede5423369c0212fcc3ca9d1708738373958166842797b76310a6fc962582c1fce1dbbe9f954c28caa408b6495f41c4e374bb19f6644
|
data/CHANGELOG.md
CHANGED
|
@@ -1105,6 +1105,36 @@ 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
|
+
# Optional. Optional: A service account to use for authenticating to Artifact
|
|
1122
|
+
# Registry.
|
|
1123
|
+
# Corresponds to the JSON property `serviceAccount`
|
|
1124
|
+
# @return [String]
|
|
1125
|
+
attr_accessor :service_account
|
|
1126
|
+
|
|
1127
|
+
def initialize(**args)
|
|
1128
|
+
update!(**args)
|
|
1129
|
+
end
|
|
1130
|
+
|
|
1131
|
+
# Update properties of this object
|
|
1132
|
+
def update!(**args)
|
|
1133
|
+
@destination_repository = args[:destination_repository] if args.key?(:destination_repository)
|
|
1134
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
|
1135
|
+
end
|
|
1136
|
+
end
|
|
1137
|
+
|
|
1108
1138
|
# The feature specific settings to be used in the application. These define
|
|
1109
1139
|
# behaviors that are user configurable.
|
|
1110
1140
|
class FeatureSettings
|
|
@@ -1727,8 +1757,8 @@ module Google
|
|
|
1727
1757
|
attr_accessor :operations
|
|
1728
1758
|
|
|
1729
1759
|
# Unordered list. Unreachable resources. Populated when the request sets
|
|
1730
|
-
# ListOperationsRequest.return_partial_success and reads across collections
|
|
1731
|
-
# when attempting to list all resources across all supported locations.
|
|
1760
|
+
# ListOperationsRequest.return_partial_success and reads across collections. For
|
|
1761
|
+
# example, when attempting to list all resources across all supported locations.
|
|
1732
1762
|
# Corresponds to the JSON property `unreachable`
|
|
1733
1763
|
# @return [Array<String>]
|
|
1734
1764
|
attr_accessor :unreachable
|
|
@@ -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.62.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 = "20251210"
|
|
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
|
|
|
@@ -824,6 +830,14 @@ module Google
|
|
|
824
830
|
end
|
|
825
831
|
end
|
|
826
832
|
|
|
833
|
+
class ExportAppImageRequest
|
|
834
|
+
# @private
|
|
835
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
836
|
+
property :destination_repository, as: 'destinationRepository'
|
|
837
|
+
property :service_account, as: 'serviceAccount'
|
|
838
|
+
end
|
|
839
|
+
end
|
|
840
|
+
|
|
827
841
|
class FeatureSettings
|
|
828
842
|
# @private
|
|
829
843
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -999,10 +999,11 @@ module Google
|
|
|
999
999
|
# @param [Boolean] return_partial_success
|
|
1000
1000
|
# When set to true, operations that are reachable are returned as normal, and
|
|
1001
1001
|
# those that are unreachable are returned in the ListOperationsResponse.
|
|
1002
|
-
# unreachable field.This can only be true when reading across collections
|
|
1003
|
-
# when parent is set to "projects/example/locations/-".This field is
|
|
1004
|
-
#
|
|
1005
|
-
# explicitly documented otherwise in service or product specific
|
|
1002
|
+
# unreachable field.This can only be true when reading across collections. For
|
|
1003
|
+
# example, when parent is set to "projects/example/locations/-".This field is
|
|
1004
|
+
# not supported by default and will result in an UNIMPLEMENTED error if set
|
|
1005
|
+
# unless explicitly documented otherwise in service or product specific
|
|
1006
|
+
# documentation.
|
|
1006
1007
|
# @param [String] fields
|
|
1007
1008
|
# Selector specifying which fields to include in a partial response.
|
|
1008
1009
|
# @param [String] quota_user
|
|
@@ -1270,6 +1271,46 @@ module Google
|
|
|
1270
1271
|
execute_or_queue_command(command, &block)
|
|
1271
1272
|
end
|
|
1272
1273
|
|
|
1274
|
+
# Exports a user image to Artifact Registry.
|
|
1275
|
+
# @param [String] apps_id
|
|
1276
|
+
# Part of `name`. Required. Name of the App Engine version resource. Format:
|
|
1277
|
+
# apps/`app`/services/`service`/versions/`version`
|
|
1278
|
+
# @param [String] services_id
|
|
1279
|
+
# Part of `name`. See documentation of `appsId`.
|
|
1280
|
+
# @param [String] versions_id
|
|
1281
|
+
# Part of `name`. See documentation of `appsId`.
|
|
1282
|
+
# @param [Google::Apis::AppengineV1beta::ExportAppImageRequest] export_app_image_request_object
|
|
1283
|
+
# @param [String] fields
|
|
1284
|
+
# Selector specifying which fields to include in a partial response.
|
|
1285
|
+
# @param [String] quota_user
|
|
1286
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
1287
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1288
|
+
# @param [Google::Apis::RequestOptions] options
|
|
1289
|
+
# Request-specific options
|
|
1290
|
+
#
|
|
1291
|
+
# @yield [result, err] Result & error if block supplied
|
|
1292
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::Operation] parsed result object
|
|
1293
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
1294
|
+
#
|
|
1295
|
+
# @return [Google::Apis::AppengineV1beta::Operation]
|
|
1296
|
+
#
|
|
1297
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1298
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1299
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1300
|
+
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)
|
|
1301
|
+
command = make_simple_command(:post, 'v1beta/apps/{appsId}/services/{servicesId}/versions/{versionsId}:exportAppImage', options)
|
|
1302
|
+
command.request_representation = Google::Apis::AppengineV1beta::ExportAppImageRequest::Representation
|
|
1303
|
+
command.request_object = export_app_image_request_object
|
|
1304
|
+
command.response_representation = Google::Apis::AppengineV1beta::Operation::Representation
|
|
1305
|
+
command.response_class = Google::Apis::AppengineV1beta::Operation
|
|
1306
|
+
command.params['appsId'] = apps_id unless apps_id.nil?
|
|
1307
|
+
command.params['servicesId'] = services_id unless services_id.nil?
|
|
1308
|
+
command.params['versionsId'] = versions_id unless versions_id.nil?
|
|
1309
|
+
command.query['fields'] = fields unless fields.nil?
|
|
1310
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1311
|
+
execute_or_queue_command(command, &block)
|
|
1312
|
+
end
|
|
1313
|
+
|
|
1273
1314
|
# Gets the specified Version resource. By default, only a BASIC_VIEW will be
|
|
1274
1315
|
# returned. Specify the FULL_VIEW parameter to get the full resource.
|
|
1275
1316
|
# @param [String] apps_id
|
|
@@ -2370,6 +2411,52 @@ module Google
|
|
|
2370
2411
|
execute_or_queue_command(command, &block)
|
|
2371
2412
|
end
|
|
2372
2413
|
|
|
2414
|
+
# Exports a user image to Artifact Registry.
|
|
2415
|
+
# @param [String] projects_id
|
|
2416
|
+
# Part of `name`. Required. Name of the App Engine version resource. Format:
|
|
2417
|
+
# apps/`app`/services/`service`/versions/`version`
|
|
2418
|
+
# @param [String] locations_id
|
|
2419
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2420
|
+
# @param [String] applications_id
|
|
2421
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2422
|
+
# @param [String] services_id
|
|
2423
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2424
|
+
# @param [String] versions_id
|
|
2425
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2426
|
+
# @param [Google::Apis::AppengineV1beta::ExportAppImageRequest] export_app_image_request_object
|
|
2427
|
+
# @param [String] fields
|
|
2428
|
+
# Selector specifying which fields to include in a partial response.
|
|
2429
|
+
# @param [String] quota_user
|
|
2430
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
2431
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
2432
|
+
# @param [Google::Apis::RequestOptions] options
|
|
2433
|
+
# Request-specific options
|
|
2434
|
+
#
|
|
2435
|
+
# @yield [result, err] Result & error if block supplied
|
|
2436
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::Operation] parsed result object
|
|
2437
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
2438
|
+
#
|
|
2439
|
+
# @return [Google::Apis::AppengineV1beta::Operation]
|
|
2440
|
+
#
|
|
2441
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2442
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2443
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2444
|
+
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)
|
|
2445
|
+
command = make_simple_command(:post, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}/versions/{versionsId}:exportAppImage', options)
|
|
2446
|
+
command.request_representation = Google::Apis::AppengineV1beta::ExportAppImageRequest::Representation
|
|
2447
|
+
command.request_object = export_app_image_request_object
|
|
2448
|
+
command.response_representation = Google::Apis::AppengineV1beta::Operation::Representation
|
|
2449
|
+
command.response_class = Google::Apis::AppengineV1beta::Operation
|
|
2450
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
|
2451
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
|
2452
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
|
2453
|
+
command.params['servicesId'] = services_id unless services_id.nil?
|
|
2454
|
+
command.params['versionsId'] = versions_id unless versions_id.nil?
|
|
2455
|
+
command.query['fields'] = fields unless fields.nil?
|
|
2456
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2457
|
+
execute_or_queue_command(command, &block)
|
|
2458
|
+
end
|
|
2459
|
+
|
|
2373
2460
|
# Updates the specified Version resource. You can specify the following fields
|
|
2374
2461
|
# depending on the App Engine environment and type of scaling that the version
|
|
2375
2462
|
# resource uses:Standard environment instance_class (https://cloud.google.com/
|
|
@@ -2509,10 +2596,11 @@ module Google
|
|
|
2509
2596
|
# @param [Boolean] return_partial_success
|
|
2510
2597
|
# When set to true, operations that are reachable are returned as normal, and
|
|
2511
2598
|
# those that are unreachable are returned in the ListOperationsResponse.
|
|
2512
|
-
# unreachable field.This can only be true when reading across collections
|
|
2513
|
-
# when parent is set to "projects/example/locations/-".This field is
|
|
2514
|
-
#
|
|
2515
|
-
# explicitly documented otherwise in service or product specific
|
|
2599
|
+
# unreachable field.This can only be true when reading across collections. For
|
|
2600
|
+
# example, when parent is set to "projects/example/locations/-".This field is
|
|
2601
|
+
# not supported by default and will result in an UNIMPLEMENTED error if set
|
|
2602
|
+
# unless explicitly documented otherwise in service or product specific
|
|
2603
|
+
# documentation.
|
|
2516
2604
|
# @param [String] fields
|
|
2517
2605
|
# Selector specifying which fields to include in a partial response.
|
|
2518
2606
|
# @param [String] quota_user
|
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.62.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.62.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:
|