google-apis-appengine_v1beta 0.65.0 → 0.67.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: 3d353be3ce49455c0e727cdfd9467146a539fca3721baf5e7f9e92d77ffa499a
|
|
4
|
+
data.tar.gz: e08ca12919bb2a0afc725b559e49d1e95bad861cf32be3aa051b562c4cdd36c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 274b3e8d0a6d4bc6ceedf3425d8167aca73eb9f4a8c22879dd4997ac7cdd1bb8003864f56774c7a2c3396e25cfcdeeaa1016f5ccc295cf4b6d09366eab0d934a
|
|
7
|
+
data.tar.gz: ad21438c9b186999899d758a318d73c1cfefc3b7a719519e4f17ef8736943f064e156a524b00360538cb91ebddd6352ea7d07a725e4f0af073fbfe85a77c461b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-appengine_v1beta
|
|
2
2
|
|
|
3
|
+
### v0.67.0 (2026-02-22)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260220
|
|
6
|
+
|
|
7
|
+
### v0.66.0 (2026-02-08)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260202
|
|
10
|
+
|
|
3
11
|
### v0.65.0 (2026-02-01)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260126
|
|
@@ -3147,32 +3147,6 @@ module Google
|
|
|
3147
3147
|
end
|
|
3148
3148
|
end
|
|
3149
3149
|
|
|
3150
|
-
# Subnetwork key message.
|
|
3151
|
-
class SubnetworkKey
|
|
3152
|
-
include Google::Apis::Core::Hashable
|
|
3153
|
-
|
|
3154
|
-
# Project id (name not number) of the project that hosts the network
|
|
3155
|
-
# Corresponds to the JSON property `hostProjectId`
|
|
3156
|
-
# @return [String]
|
|
3157
|
-
attr_accessor :host_project_id
|
|
3158
|
-
|
|
3159
|
-
# Short name of the subnetwork. e.g. SUBNET instead of projects/`PROJECT_NAME`/
|
|
3160
|
-
# regions/`REGION`/subnetworks/`SUBNET`
|
|
3161
|
-
# Corresponds to the JSON property `subnet`
|
|
3162
|
-
# @return [String]
|
|
3163
|
-
attr_accessor :subnet
|
|
3164
|
-
|
|
3165
|
-
def initialize(**args)
|
|
3166
|
-
update!(**args)
|
|
3167
|
-
end
|
|
3168
|
-
|
|
3169
|
-
# Update properties of this object
|
|
3170
|
-
def update!(**args)
|
|
3171
|
-
@host_project_id = args[:host_project_id] if args.key?(:host_project_id)
|
|
3172
|
-
@subnet = args[:subnet] if args.key?(:subnet)
|
|
3173
|
-
end
|
|
3174
|
-
end
|
|
3175
|
-
|
|
3176
3150
|
# Traffic routing configuration for versions within a single service. Traffic
|
|
3177
3151
|
# splits define how traffic directed to the service is assigned to versions.
|
|
3178
3152
|
class TrafficSplit
|
|
@@ -3582,11 +3556,6 @@ module Google
|
|
|
3582
3556
|
# @return [Google::Apis::AppengineV1beta::VpcAccessConnector]
|
|
3583
3557
|
attr_accessor :vpc_access_connector
|
|
3584
3558
|
|
|
3585
|
-
# Deprecated: Use VpcAccess instead. Vpc Egress configuration.
|
|
3586
|
-
# Corresponds to the JSON property `vpcEgress`
|
|
3587
|
-
# @return [Google::Apis::AppengineV1beta::VpcEgress]
|
|
3588
|
-
attr_accessor :vpc_egress
|
|
3589
|
-
|
|
3590
3559
|
# The Google Compute Engine zones that are supported by this version in the App
|
|
3591
3560
|
# Engine flexible environment. Deprecated.
|
|
3592
3561
|
# Corresponds to the JSON property `zones`
|
|
@@ -3642,7 +3611,6 @@ module Google
|
|
|
3642
3611
|
@vm = args[:vm] if args.key?(:vm)
|
|
3643
3612
|
@vpc_access = args[:vpc_access] if args.key?(:vpc_access)
|
|
3644
3613
|
@vpc_access_connector = args[:vpc_access_connector] if args.key?(:vpc_access_connector)
|
|
3645
|
-
@vpc_egress = args[:vpc_egress] if args.key?(:vpc_egress)
|
|
3646
3614
|
@zones = args[:zones] if args.key?(:zones)
|
|
3647
3615
|
end
|
|
3648
3616
|
end
|
|
@@ -3733,38 +3701,6 @@ module Google
|
|
|
3733
3701
|
end
|
|
3734
3702
|
end
|
|
3735
3703
|
|
|
3736
|
-
# Deprecated: Use VpcAccess instead. Vpc Egress configuration.
|
|
3737
|
-
class VpcEgress
|
|
3738
|
-
include Google::Apis::Core::Hashable
|
|
3739
|
-
|
|
3740
|
-
# The egress setting for the subnetwork, controlling what traffic is diverted
|
|
3741
|
-
# through it.
|
|
3742
|
-
# Corresponds to the JSON property `egressSetting`
|
|
3743
|
-
# @return [String]
|
|
3744
|
-
attr_accessor :egress_setting
|
|
3745
|
-
|
|
3746
|
-
# The network tags to apply to the instance.
|
|
3747
|
-
# Corresponds to the JSON property `networkTags`
|
|
3748
|
-
# @return [Array<Google::Apis::AppengineV1beta::VpcNetworkTag>]
|
|
3749
|
-
attr_accessor :network_tags
|
|
3750
|
-
|
|
3751
|
-
# Subnetwork key message.
|
|
3752
|
-
# Corresponds to the JSON property `subnetworkKey`
|
|
3753
|
-
# @return [Google::Apis::AppengineV1beta::SubnetworkKey]
|
|
3754
|
-
attr_accessor :subnetwork_key
|
|
3755
|
-
|
|
3756
|
-
def initialize(**args)
|
|
3757
|
-
update!(**args)
|
|
3758
|
-
end
|
|
3759
|
-
|
|
3760
|
-
# Update properties of this object
|
|
3761
|
-
def update!(**args)
|
|
3762
|
-
@egress_setting = args[:egress_setting] if args.key?(:egress_setting)
|
|
3763
|
-
@network_tags = args[:network_tags] if args.key?(:network_tags)
|
|
3764
|
-
@subnetwork_key = args[:subnetwork_key] if args.key?(:subnetwork_key)
|
|
3765
|
-
end
|
|
3766
|
-
end
|
|
3767
|
-
|
|
3768
3704
|
# Network interface key message.
|
|
3769
3705
|
class VpcNetworkInterface
|
|
3770
3706
|
include Google::Apis::Core::Hashable
|
|
@@ -3807,25 +3743,6 @@ module Google
|
|
|
3807
3743
|
end
|
|
3808
3744
|
end
|
|
3809
3745
|
|
|
3810
|
-
# Network tag message.
|
|
3811
|
-
class VpcNetworkTag
|
|
3812
|
-
include Google::Apis::Core::Hashable
|
|
3813
|
-
|
|
3814
|
-
# value for the tag name
|
|
3815
|
-
# Corresponds to the JSON property `value`
|
|
3816
|
-
# @return [String]
|
|
3817
|
-
attr_accessor :value
|
|
3818
|
-
|
|
3819
|
-
def initialize(**args)
|
|
3820
|
-
update!(**args)
|
|
3821
|
-
end
|
|
3822
|
-
|
|
3823
|
-
# Update properties of this object
|
|
3824
|
-
def update!(**args)
|
|
3825
|
-
@value = args[:value] if args.key?(:value)
|
|
3826
|
-
end
|
|
3827
|
-
end
|
|
3828
|
-
|
|
3829
3746
|
# The zip file information for a zip deployment.
|
|
3830
3747
|
class ZipInfo
|
|
3831
3748
|
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.67.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 = "20260220"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -478,12 +478,6 @@ module Google
|
|
|
478
478
|
include Google::Apis::Core::JsonObjectSupport
|
|
479
479
|
end
|
|
480
480
|
|
|
481
|
-
class SubnetworkKey
|
|
482
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
483
|
-
|
|
484
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
485
|
-
end
|
|
486
|
-
|
|
487
481
|
class TrafficSplit
|
|
488
482
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
489
483
|
|
|
@@ -526,24 +520,12 @@ module Google
|
|
|
526
520
|
include Google::Apis::Core::JsonObjectSupport
|
|
527
521
|
end
|
|
528
522
|
|
|
529
|
-
class VpcEgress
|
|
530
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
531
|
-
|
|
532
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
533
|
-
end
|
|
534
|
-
|
|
535
523
|
class VpcNetworkInterface
|
|
536
524
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
537
525
|
|
|
538
526
|
include Google::Apis::Core::JsonObjectSupport
|
|
539
527
|
end
|
|
540
528
|
|
|
541
|
-
class VpcNetworkTag
|
|
542
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
543
|
-
|
|
544
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
545
|
-
end
|
|
546
|
-
|
|
547
529
|
class ZipInfo
|
|
548
530
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
549
531
|
|
|
@@ -1345,14 +1327,6 @@ module Google
|
|
|
1345
1327
|
end
|
|
1346
1328
|
end
|
|
1347
1329
|
|
|
1348
|
-
class SubnetworkKey
|
|
1349
|
-
# @private
|
|
1350
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1351
|
-
property :host_project_id, as: 'hostProjectId'
|
|
1352
|
-
property :subnet, as: 'subnet'
|
|
1353
|
-
end
|
|
1354
|
-
end
|
|
1355
|
-
|
|
1356
1330
|
class TrafficSplit
|
|
1357
1331
|
# @private
|
|
1358
1332
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1451,8 +1425,6 @@ module Google
|
|
|
1451
1425
|
|
|
1452
1426
|
property :vpc_access_connector, as: 'vpcAccessConnector', class: Google::Apis::AppengineV1beta::VpcAccessConnector, decorator: Google::Apis::AppengineV1beta::VpcAccessConnector::Representation
|
|
1453
1427
|
|
|
1454
|
-
property :vpc_egress, as: 'vpcEgress', class: Google::Apis::AppengineV1beta::VpcEgress, decorator: Google::Apis::AppengineV1beta::VpcEgress::Representation
|
|
1455
|
-
|
|
1456
1428
|
collection :zones, as: 'zones'
|
|
1457
1429
|
end
|
|
1458
1430
|
end
|
|
@@ -1483,17 +1455,6 @@ module Google
|
|
|
1483
1455
|
end
|
|
1484
1456
|
end
|
|
1485
1457
|
|
|
1486
|
-
class VpcEgress
|
|
1487
|
-
# @private
|
|
1488
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1489
|
-
property :egress_setting, as: 'egressSetting'
|
|
1490
|
-
collection :network_tags, as: 'networkTags', class: Google::Apis::AppengineV1beta::VpcNetworkTag, decorator: Google::Apis::AppengineV1beta::VpcNetworkTag::Representation
|
|
1491
|
-
|
|
1492
|
-
property :subnetwork_key, as: 'subnetworkKey', class: Google::Apis::AppengineV1beta::SubnetworkKey, decorator: Google::Apis::AppengineV1beta::SubnetworkKey::Representation
|
|
1493
|
-
|
|
1494
|
-
end
|
|
1495
|
-
end
|
|
1496
|
-
|
|
1497
1458
|
class VpcNetworkInterface
|
|
1498
1459
|
# @private
|
|
1499
1460
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1503,13 +1464,6 @@ module Google
|
|
|
1503
1464
|
end
|
|
1504
1465
|
end
|
|
1505
1466
|
|
|
1506
|
-
class VpcNetworkTag
|
|
1507
|
-
# @private
|
|
1508
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1509
|
-
property :value, as: 'value'
|
|
1510
|
-
end
|
|
1511
|
-
end
|
|
1512
|
-
|
|
1513
1467
|
class ZipInfo
|
|
1514
1468
|
# @private
|
|
1515
1469
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2520,6 +2520,61 @@ module Google
|
|
|
2520
2520
|
execute_or_queue_command(command, &block)
|
|
2521
2521
|
end
|
|
2522
2522
|
|
|
2523
|
+
# Stops a running instance.The instance might be automatically recreated based
|
|
2524
|
+
# on the scaling settings of the version. For more information, see "How
|
|
2525
|
+
# Instances are Managed" (standard environment (https://cloud.google.com/
|
|
2526
|
+
# appengine/docs/standard/python/how-instances-are-managed) | flexible
|
|
2527
|
+
# environment (https://cloud.google.com/appengine/docs/flexible/python/how-
|
|
2528
|
+
# instances-are-managed)).To ensure that instances are not re-created and avoid
|
|
2529
|
+
# getting billed, you can stop all instances within the target version by
|
|
2530
|
+
# changing the serving status of the version to STOPPED with the apps.services.
|
|
2531
|
+
# versions.patch (https://cloud.google.com/appengine/docs/admin-api/reference/
|
|
2532
|
+
# rest/v1/apps.services.versions/patch) method.
|
|
2533
|
+
# @param [String] projects_id
|
|
2534
|
+
# Part of `name`. Required. Name of the resource requested. Example: apps/myapp/
|
|
2535
|
+
# services/default/versions/v1/instances/instance-1.
|
|
2536
|
+
# @param [String] locations_id
|
|
2537
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2538
|
+
# @param [String] applications_id
|
|
2539
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2540
|
+
# @param [String] services_id
|
|
2541
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2542
|
+
# @param [String] versions_id
|
|
2543
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2544
|
+
# @param [String] instances_id
|
|
2545
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2546
|
+
# @param [String] fields
|
|
2547
|
+
# Selector specifying which fields to include in a partial response.
|
|
2548
|
+
# @param [String] quota_user
|
|
2549
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
2550
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
2551
|
+
# @param [Google::Apis::RequestOptions] options
|
|
2552
|
+
# Request-specific options
|
|
2553
|
+
#
|
|
2554
|
+
# @yield [result, err] Result & error if block supplied
|
|
2555
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::Operation] parsed result object
|
|
2556
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
2557
|
+
#
|
|
2558
|
+
# @return [Google::Apis::AppengineV1beta::Operation]
|
|
2559
|
+
#
|
|
2560
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2561
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2562
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2563
|
+
def delete_project_location_application_service_version_instance(projects_id, locations_id, applications_id, services_id, versions_id, instances_id, fields: nil, quota_user: nil, options: nil, &block)
|
|
2564
|
+
command = make_simple_command(:delete, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}/versions/{versionsId}/instances/{instancesId}', options)
|
|
2565
|
+
command.response_representation = Google::Apis::AppengineV1beta::Operation::Representation
|
|
2566
|
+
command.response_class = Google::Apis::AppengineV1beta::Operation
|
|
2567
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
|
2568
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
|
2569
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
|
2570
|
+
command.params['servicesId'] = services_id unless services_id.nil?
|
|
2571
|
+
command.params['versionsId'] = versions_id unless versions_id.nil?
|
|
2572
|
+
command.params['instancesId'] = instances_id unless instances_id.nil?
|
|
2573
|
+
command.query['fields'] = fields unless fields.nil?
|
|
2574
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2575
|
+
execute_or_queue_command(command, &block)
|
|
2576
|
+
end
|
|
2577
|
+
|
|
2523
2578
|
# Gets the latest state of a long-running operation. Clients can use this method
|
|
2524
2579
|
# to poll the operation result at intervals as recommended by the API service.
|
|
2525
2580
|
# @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.67.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.67.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:
|