google-apis-appengine_v1beta 0.61.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
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-appengine_v1beta
|
|
2
2
|
|
|
3
|
+
### v0.63.0 (2026-01-18)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260113
|
|
6
|
+
|
|
7
|
+
### v0.62.0 (2025-12-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251210
|
|
10
|
+
|
|
3
11
|
### v0.61.0 (2025-11-16)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251110
|
|
@@ -1727,8 +1727,8 @@ module Google
|
|
|
1727
1727
|
attr_accessor :operations
|
|
1728
1728
|
|
|
1729
1729
|
# 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.
|
|
1730
|
+
# ListOperationsRequest.return_partial_success and reads across collections. For
|
|
1731
|
+
# example, when attempting to list all resources across all supported locations.
|
|
1732
1732
|
# Corresponds to the JSON property `unreachable`
|
|
1733
1733
|
# @return [Array<String>]
|
|
1734
1734
|
attr_accessor :unreachable
|
|
@@ -3562,12 +3562,17 @@ module Google
|
|
|
3562
3562
|
attr_accessor :vm
|
|
3563
3563
|
alias_method :vm?, :vm
|
|
3564
3564
|
|
|
3565
|
+
# VPC Access settings
|
|
3566
|
+
# Corresponds to the JSON property `vpcAccess`
|
|
3567
|
+
# @return [Google::Apis::AppengineV1beta::VpcAccess]
|
|
3568
|
+
attr_accessor :vpc_access
|
|
3569
|
+
|
|
3565
3570
|
# VPC access connector specification.
|
|
3566
3571
|
# Corresponds to the JSON property `vpcAccessConnector`
|
|
3567
3572
|
# @return [Google::Apis::AppengineV1beta::VpcAccessConnector]
|
|
3568
3573
|
attr_accessor :vpc_access_connector
|
|
3569
3574
|
|
|
3570
|
-
# Vpc Egress configuration.
|
|
3575
|
+
# Deprecated: Use VpcAccess instead. Vpc Egress configuration.
|
|
3571
3576
|
# Corresponds to the JSON property `vpcEgress`
|
|
3572
3577
|
# @return [Google::Apis::AppengineV1beta::VpcEgress]
|
|
3573
3578
|
attr_accessor :vpc_egress
|
|
@@ -3625,6 +3630,7 @@ module Google
|
|
|
3625
3630
|
@threadsafe = args[:threadsafe] if args.key?(:threadsafe)
|
|
3626
3631
|
@version_url = args[:version_url] if args.key?(:version_url)
|
|
3627
3632
|
@vm = args[:vm] if args.key?(:vm)
|
|
3633
|
+
@vpc_access = args[:vpc_access] if args.key?(:vpc_access)
|
|
3628
3634
|
@vpc_access_connector = args[:vpc_access_connector] if args.key?(:vpc_access_connector)
|
|
3629
3635
|
@vpc_egress = args[:vpc_egress] if args.key?(:vpc_egress)
|
|
3630
3636
|
@zones = args[:zones] if args.key?(:zones)
|
|
@@ -3663,6 +3669,33 @@ module Google
|
|
|
3663
3669
|
end
|
|
3664
3670
|
end
|
|
3665
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
|
+
|
|
3666
3699
|
# VPC access connector specification.
|
|
3667
3700
|
class VpcAccessConnector
|
|
3668
3701
|
include Google::Apis::Core::Hashable
|
|
@@ -3690,7 +3723,7 @@ module Google
|
|
|
3690
3723
|
end
|
|
3691
3724
|
end
|
|
3692
3725
|
|
|
3693
|
-
# Vpc Egress configuration.
|
|
3726
|
+
# Deprecated: Use VpcAccess instead. Vpc Egress configuration.
|
|
3694
3727
|
class VpcEgress
|
|
3695
3728
|
include Google::Apis::Core::Hashable
|
|
3696
3729
|
|
|
@@ -3722,6 +3755,48 @@ module Google
|
|
|
3722
3755
|
end
|
|
3723
3756
|
end
|
|
3724
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
|
+
|
|
3725
3800
|
# Network tag message.
|
|
3726
3801
|
class VpcNetworkTag
|
|
3727
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
|
|
@@ -514,6 +514,12 @@ module Google
|
|
|
514
514
|
include Google::Apis::Core::JsonObjectSupport
|
|
515
515
|
end
|
|
516
516
|
|
|
517
|
+
class VpcAccess
|
|
518
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
519
|
+
|
|
520
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
521
|
+
end
|
|
522
|
+
|
|
517
523
|
class VpcAccessConnector
|
|
518
524
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
519
525
|
|
|
@@ -526,6 +532,12 @@ module Google
|
|
|
526
532
|
include Google::Apis::Core::JsonObjectSupport
|
|
527
533
|
end
|
|
528
534
|
|
|
535
|
+
class VpcNetworkInterface
|
|
536
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
537
|
+
|
|
538
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
539
|
+
end
|
|
540
|
+
|
|
529
541
|
class VpcNetworkTag
|
|
530
542
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
531
543
|
|
|
@@ -1434,6 +1446,8 @@ module Google
|
|
|
1434
1446
|
property :threadsafe, as: 'threadsafe'
|
|
1435
1447
|
property :version_url, as: 'versionUrl'
|
|
1436
1448
|
property :vm, as: 'vm'
|
|
1449
|
+
property :vpc_access, as: 'vpcAccess', class: Google::Apis::AppengineV1beta::VpcAccess, decorator: Google::Apis::AppengineV1beta::VpcAccess::Representation
|
|
1450
|
+
|
|
1437
1451
|
property :vpc_access_connector, as: 'vpcAccessConnector', class: Google::Apis::AppengineV1beta::VpcAccessConnector, decorator: Google::Apis::AppengineV1beta::VpcAccessConnector::Representation
|
|
1438
1452
|
|
|
1439
1453
|
property :vpc_egress, as: 'vpcEgress', class: Google::Apis::AppengineV1beta::VpcEgress, decorator: Google::Apis::AppengineV1beta::VpcEgress::Representation
|
|
@@ -1451,6 +1465,15 @@ module Google
|
|
|
1451
1465
|
end
|
|
1452
1466
|
end
|
|
1453
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
|
+
|
|
1454
1477
|
class VpcAccessConnector
|
|
1455
1478
|
# @private
|
|
1456
1479
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1470,6 +1493,15 @@ module Google
|
|
|
1470
1493
|
end
|
|
1471
1494
|
end
|
|
1472
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
|
+
|
|
1473
1505
|
class VpcNetworkTag
|
|
1474
1506
|
# @private
|
|
1475
1507
|
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
|
|
@@ -2457,6 +2458,60 @@ module Google
|
|
|
2457
2458
|
execute_or_queue_command(command, &block)
|
|
2458
2459
|
end
|
|
2459
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
|
+
|
|
2460
2515
|
# Gets the latest state of a long-running operation. Clients can use this method
|
|
2461
2516
|
# to poll the operation result at intervals as recommended by the API service.
|
|
2462
2517
|
# @param [String] projects_id
|
|
@@ -2509,10 +2564,11 @@ module Google
|
|
|
2509
2564
|
# @param [Boolean] return_partial_success
|
|
2510
2565
|
# When set to true, operations that are reachable are returned as normal, and
|
|
2511
2566
|
# 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
|
|
2567
|
+
# unreachable field.This can only be true when reading across collections. For
|
|
2568
|
+
# example, when parent is set to "projects/example/locations/-".This field is
|
|
2569
|
+
# not supported by default and will result in an UNIMPLEMENTED error if set
|
|
2570
|
+
# unless explicitly documented otherwise in service or product specific
|
|
2571
|
+
# documentation.
|
|
2516
2572
|
# @param [String] fields
|
|
2517
2573
|
# Selector specifying which fields to include in a partial response.
|
|
2518
2574
|
# @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.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:
|