google-apis-appengine_v1beta 0.62.0 → 0.63.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: 53e1e35a842ecb61ea374531b53192212170d1c1711aef31bbcee8f320b85930
|
|
4
|
+
data.tar.gz: be8fec497a4dabec857a63164ec6a0e8093995527c54c42790d890475defa15b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cbcd1ef8364302be4ddd38406874de021179d32192fab893bc2d1950a982dda7b46ec29ec4deee4d39fd8e9463e1388043d8c7ceaff83fe18af71488a6c6c334
|
|
7
|
+
data.tar.gz: dddb20ab323a72c8884b6590b2b3cb7ef482bd59be531493a1355235e454e98b6f44e06efcb2385a54d2b4c97aa1de2d3233d4e56cf0aa6248bfcac25dd5298d
|
data/CHANGELOG.md
CHANGED
|
@@ -1105,36 +1105,6 @@ 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
|
-
|
|
1138
1108
|
# The feature specific settings to be used in the application. These define
|
|
1139
1109
|
# behaviors that are user configurable.
|
|
1140
1110
|
class FeatureSettings
|
|
@@ -3592,12 +3562,17 @@ module Google
|
|
|
3592
3562
|
attr_accessor :vm
|
|
3593
3563
|
alias_method :vm?, :vm
|
|
3594
3564
|
|
|
3565
|
+
# VPC Access settings
|
|
3566
|
+
# Corresponds to the JSON property `vpcAccess`
|
|
3567
|
+
# @return [Google::Apis::AppengineV1beta::VpcAccess]
|
|
3568
|
+
attr_accessor :vpc_access
|
|
3569
|
+
|
|
3595
3570
|
# VPC access connector specification.
|
|
3596
3571
|
# Corresponds to the JSON property `vpcAccessConnector`
|
|
3597
3572
|
# @return [Google::Apis::AppengineV1beta::VpcAccessConnector]
|
|
3598
3573
|
attr_accessor :vpc_access_connector
|
|
3599
3574
|
|
|
3600
|
-
# Vpc Egress configuration.
|
|
3575
|
+
# Deprecated: Use VpcAccess instead. Vpc Egress configuration.
|
|
3601
3576
|
# Corresponds to the JSON property `vpcEgress`
|
|
3602
3577
|
# @return [Google::Apis::AppengineV1beta::VpcEgress]
|
|
3603
3578
|
attr_accessor :vpc_egress
|
|
@@ -3655,6 +3630,7 @@ module Google
|
|
|
3655
3630
|
@threadsafe = args[:threadsafe] if args.key?(:threadsafe)
|
|
3656
3631
|
@version_url = args[:version_url] if args.key?(:version_url)
|
|
3657
3632
|
@vm = args[:vm] if args.key?(:vm)
|
|
3633
|
+
@vpc_access = args[:vpc_access] if args.key?(:vpc_access)
|
|
3658
3634
|
@vpc_access_connector = args[:vpc_access_connector] if args.key?(:vpc_access_connector)
|
|
3659
3635
|
@vpc_egress = args[:vpc_egress] if args.key?(:vpc_egress)
|
|
3660
3636
|
@zones = args[:zones] if args.key?(:zones)
|
|
@@ -3693,6 +3669,33 @@ module Google
|
|
|
3693
3669
|
end
|
|
3694
3670
|
end
|
|
3695
3671
|
|
|
3672
|
+
# VPC Access settings
|
|
3673
|
+
class VpcAccess
|
|
3674
|
+
include Google::Apis::Core::Hashable
|
|
3675
|
+
|
|
3676
|
+
# The Direct VPC configuration. Currently only single network interface is
|
|
3677
|
+
# supported.
|
|
3678
|
+
# Corresponds to the JSON property `networkInterfaces`
|
|
3679
|
+
# @return [Array<Google::Apis::AppengineV1beta::VpcNetworkInterface>]
|
|
3680
|
+
attr_accessor :network_interfaces
|
|
3681
|
+
|
|
3682
|
+
# The traffic egress setting for the VPC network interface, controlling what
|
|
3683
|
+
# traffic is diverted through it.
|
|
3684
|
+
# Corresponds to the JSON property `vpcEgress`
|
|
3685
|
+
# @return [String]
|
|
3686
|
+
attr_accessor :vpc_egress
|
|
3687
|
+
|
|
3688
|
+
def initialize(**args)
|
|
3689
|
+
update!(**args)
|
|
3690
|
+
end
|
|
3691
|
+
|
|
3692
|
+
# Update properties of this object
|
|
3693
|
+
def update!(**args)
|
|
3694
|
+
@network_interfaces = args[:network_interfaces] if args.key?(:network_interfaces)
|
|
3695
|
+
@vpc_egress = args[:vpc_egress] if args.key?(:vpc_egress)
|
|
3696
|
+
end
|
|
3697
|
+
end
|
|
3698
|
+
|
|
3696
3699
|
# VPC access connector specification.
|
|
3697
3700
|
class VpcAccessConnector
|
|
3698
3701
|
include Google::Apis::Core::Hashable
|
|
@@ -3720,7 +3723,7 @@ module Google
|
|
|
3720
3723
|
end
|
|
3721
3724
|
end
|
|
3722
3725
|
|
|
3723
|
-
# Vpc Egress configuration.
|
|
3726
|
+
# Deprecated: Use VpcAccess instead. Vpc Egress configuration.
|
|
3724
3727
|
class VpcEgress
|
|
3725
3728
|
include Google::Apis::Core::Hashable
|
|
3726
3729
|
|
|
@@ -3752,6 +3755,48 @@ module Google
|
|
|
3752
3755
|
end
|
|
3753
3756
|
end
|
|
3754
3757
|
|
|
3758
|
+
# Network interface key message.
|
|
3759
|
+
class VpcNetworkInterface
|
|
3760
|
+
include Google::Apis::Core::Hashable
|
|
3761
|
+
|
|
3762
|
+
# Optional. The VPC network that the App Engine resource will be able to send
|
|
3763
|
+
# traffic to. At least one of network or subnetwork must be specified. If both
|
|
3764
|
+
# network and subnetwork are specified, the given VPC subnetwork must belong to
|
|
3765
|
+
# the given VPC network. If network is not specified, it will be looked up from
|
|
3766
|
+
# the subnetwork. Could be either a short name or a full path. e.g. `VPC_NETWORK`
|
|
3767
|
+
# or projects/`HOST_PROJECT_ID`/global/networks/`VPC_NETWORK`
|
|
3768
|
+
# Corresponds to the JSON property `network`
|
|
3769
|
+
# @return [String]
|
|
3770
|
+
attr_accessor :network
|
|
3771
|
+
|
|
3772
|
+
# Optional. The VPC subnetwork that the App Engine resource will get IPs from.
|
|
3773
|
+
# At least one of network or subnetwork must be specified. If both network and
|
|
3774
|
+
# subnetwork are specified, the given VPC subnetwork must belong to the given
|
|
3775
|
+
# VPC network. If subnetwork is not specified, the subnetwork with the same name
|
|
3776
|
+
# with the network will be used. Could be either a short name or a full path. e.
|
|
3777
|
+
# g. `SUBNET_NAME` or projects/`HOST_PROJECT_ID`/regions/`REGION`/subnetworks/`
|
|
3778
|
+
# SUBNET_NAME`
|
|
3779
|
+
# Corresponds to the JSON property `subnet`
|
|
3780
|
+
# @return [String]
|
|
3781
|
+
attr_accessor :subnet
|
|
3782
|
+
|
|
3783
|
+
# Optional. The network tags that will be applied to this App Engine resource.
|
|
3784
|
+
# Corresponds to the JSON property `tags`
|
|
3785
|
+
# @return [Array<String>]
|
|
3786
|
+
attr_accessor :tags
|
|
3787
|
+
|
|
3788
|
+
def initialize(**args)
|
|
3789
|
+
update!(**args)
|
|
3790
|
+
end
|
|
3791
|
+
|
|
3792
|
+
# Update properties of this object
|
|
3793
|
+
def update!(**args)
|
|
3794
|
+
@network = args[:network] if args.key?(:network)
|
|
3795
|
+
@subnet = args[:subnet] if args.key?(:subnet)
|
|
3796
|
+
@tags = args[:tags] if args.key?(:tags)
|
|
3797
|
+
end
|
|
3798
|
+
end
|
|
3799
|
+
|
|
3755
3800
|
# Network tag message.
|
|
3756
3801
|
class VpcNetworkTag
|
|
3757
3802
|
include Google::Apis::Core::Hashable
|
|
@@ -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.63.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 = "20260113"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -190,12 +190,6 @@ 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
|
-
|
|
199
193
|
class FeatureSettings
|
|
200
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
201
195
|
|
|
@@ -520,6 +514,12 @@ module Google
|
|
|
520
514
|
include Google::Apis::Core::JsonObjectSupport
|
|
521
515
|
end
|
|
522
516
|
|
|
517
|
+
class VpcAccess
|
|
518
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
519
|
+
|
|
520
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
521
|
+
end
|
|
522
|
+
|
|
523
523
|
class VpcAccessConnector
|
|
524
524
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
525
525
|
|
|
@@ -532,6 +532,12 @@ module Google
|
|
|
532
532
|
include Google::Apis::Core::JsonObjectSupport
|
|
533
533
|
end
|
|
534
534
|
|
|
535
|
+
class VpcNetworkInterface
|
|
536
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
537
|
+
|
|
538
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
539
|
+
end
|
|
540
|
+
|
|
535
541
|
class VpcNetworkTag
|
|
536
542
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
537
543
|
|
|
@@ -830,14 +836,6 @@ module Google
|
|
|
830
836
|
end
|
|
831
837
|
end
|
|
832
838
|
|
|
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
|
-
|
|
841
839
|
class FeatureSettings
|
|
842
840
|
# @private
|
|
843
841
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1448,6 +1446,8 @@ module Google
|
|
|
1448
1446
|
property :threadsafe, as: 'threadsafe'
|
|
1449
1447
|
property :version_url, as: 'versionUrl'
|
|
1450
1448
|
property :vm, as: 'vm'
|
|
1449
|
+
property :vpc_access, as: 'vpcAccess', class: Google::Apis::AppengineV1beta::VpcAccess, decorator: Google::Apis::AppengineV1beta::VpcAccess::Representation
|
|
1450
|
+
|
|
1451
1451
|
property :vpc_access_connector, as: 'vpcAccessConnector', class: Google::Apis::AppengineV1beta::VpcAccessConnector, decorator: Google::Apis::AppengineV1beta::VpcAccessConnector::Representation
|
|
1452
1452
|
|
|
1453
1453
|
property :vpc_egress, as: 'vpcEgress', class: Google::Apis::AppengineV1beta::VpcEgress, decorator: Google::Apis::AppengineV1beta::VpcEgress::Representation
|
|
@@ -1465,6 +1465,15 @@ module Google
|
|
|
1465
1465
|
end
|
|
1466
1466
|
end
|
|
1467
1467
|
|
|
1468
|
+
class VpcAccess
|
|
1469
|
+
# @private
|
|
1470
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1471
|
+
collection :network_interfaces, as: 'networkInterfaces', class: Google::Apis::AppengineV1beta::VpcNetworkInterface, decorator: Google::Apis::AppengineV1beta::VpcNetworkInterface::Representation
|
|
1472
|
+
|
|
1473
|
+
property :vpc_egress, as: 'vpcEgress'
|
|
1474
|
+
end
|
|
1475
|
+
end
|
|
1476
|
+
|
|
1468
1477
|
class VpcAccessConnector
|
|
1469
1478
|
# @private
|
|
1470
1479
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1484,6 +1493,15 @@ module Google
|
|
|
1484
1493
|
end
|
|
1485
1494
|
end
|
|
1486
1495
|
|
|
1496
|
+
class VpcNetworkInterface
|
|
1497
|
+
# @private
|
|
1498
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1499
|
+
property :network, as: 'network'
|
|
1500
|
+
property :subnet, as: 'subnet'
|
|
1501
|
+
collection :tags, as: 'tags'
|
|
1502
|
+
end
|
|
1503
|
+
end
|
|
1504
|
+
|
|
1487
1505
|
class VpcNetworkTag
|
|
1488
1506
|
# @private
|
|
1489
1507
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1271,46 +1271,6 @@ module Google
|
|
|
1271
1271
|
execute_or_queue_command(command, &block)
|
|
1272
1272
|
end
|
|
1273
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
|
-
|
|
1314
1274
|
# Gets the specified Version resource. By default, only a BASIC_VIEW will be
|
|
1315
1275
|
# returned. Specify the FULL_VIEW parameter to get the full resource.
|
|
1316
1276
|
# @param [String] apps_id
|
|
@@ -2411,52 +2371,6 @@ module Google
|
|
|
2411
2371
|
execute_or_queue_command(command, &block)
|
|
2412
2372
|
end
|
|
2413
2373
|
|
|
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
|
-
|
|
2460
2374
|
# Updates the specified Version resource. You can specify the following fields
|
|
2461
2375
|
# depending on the App Engine environment and type of scaling that the version
|
|
2462
2376
|
# resource uses:Standard environment instance_class (https://cloud.google.com/
|
|
@@ -2544,6 +2458,60 @@ module Google
|
|
|
2544
2458
|
execute_or_queue_command(command, &block)
|
|
2545
2459
|
end
|
|
2546
2460
|
|
|
2461
|
+
# Enables debugging on a VM instance. This allows you to use the SSH command to
|
|
2462
|
+
# connect to the virtual machine where the instance lives. While in "debug mode",
|
|
2463
|
+
# the instance continues to serve live traffic. You should delete the instance
|
|
2464
|
+
# when you are done debugging and then allow the system to take over and
|
|
2465
|
+
# determine if another instance should be started.Only applicable for instances
|
|
2466
|
+
# in App Engine flexible environment.
|
|
2467
|
+
# @param [String] projects_id
|
|
2468
|
+
# Part of `name`. Required. Name of the resource requested. Example: apps/myapp/
|
|
2469
|
+
# services/default/versions/v1/instances/instance-1.
|
|
2470
|
+
# @param [String] locations_id
|
|
2471
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2472
|
+
# @param [String] applications_id
|
|
2473
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2474
|
+
# @param [String] services_id
|
|
2475
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2476
|
+
# @param [String] versions_id
|
|
2477
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2478
|
+
# @param [String] instances_id
|
|
2479
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2480
|
+
# @param [Google::Apis::AppengineV1beta::DebugInstanceRequest] debug_instance_request_object
|
|
2481
|
+
# @param [String] fields
|
|
2482
|
+
# Selector specifying which fields to include in a partial response.
|
|
2483
|
+
# @param [String] quota_user
|
|
2484
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
2485
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
2486
|
+
# @param [Google::Apis::RequestOptions] options
|
|
2487
|
+
# Request-specific options
|
|
2488
|
+
#
|
|
2489
|
+
# @yield [result, err] Result & error if block supplied
|
|
2490
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::Operation] parsed result object
|
|
2491
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
2492
|
+
#
|
|
2493
|
+
# @return [Google::Apis::AppengineV1beta::Operation]
|
|
2494
|
+
#
|
|
2495
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2496
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2497
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2498
|
+
def debug_project_location_application_service_version_instance(projects_id, locations_id, applications_id, services_id, versions_id, instances_id, debug_instance_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2499
|
+
command = make_simple_command(:post, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}/versions/{versionsId}/instances/{instancesId}:debug', options)
|
|
2500
|
+
command.request_representation = Google::Apis::AppengineV1beta::DebugInstanceRequest::Representation
|
|
2501
|
+
command.request_object = debug_instance_request_object
|
|
2502
|
+
command.response_representation = Google::Apis::AppengineV1beta::Operation::Representation
|
|
2503
|
+
command.response_class = Google::Apis::AppengineV1beta::Operation
|
|
2504
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
|
2505
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
|
2506
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
|
2507
|
+
command.params['servicesId'] = services_id unless services_id.nil?
|
|
2508
|
+
command.params['versionsId'] = versions_id unless versions_id.nil?
|
|
2509
|
+
command.params['instancesId'] = instances_id unless instances_id.nil?
|
|
2510
|
+
command.query['fields'] = fields unless fields.nil?
|
|
2511
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2512
|
+
execute_or_queue_command(command, &block)
|
|
2513
|
+
end
|
|
2514
|
+
|
|
2547
2515
|
# Gets the latest state of a long-running operation. Clients can use this method
|
|
2548
2516
|
# to poll the operation result at intervals as recommended by the API service.
|
|
2549
2517
|
# @param [String] projects_id
|
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.63.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.63.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:
|