google-apis-appengine_v1beta 0.57.0 → 0.59.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: c61e2610f5abc1d27ea27cf23f9d1599c6af50a26b1acd07f27a97d40d975c02
|
|
4
|
+
data.tar.gz: 7c9bb668a92a678c961d838c7bf58015a4f1decad766d92024a39ca246014efe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 385b2d6eba753d5ea602214da9bcc67d81fd782a0774bad155fe1c1182c2b937ff32dc0a136e7efcc66c691c5dc551a63d64c4992af7690a343381457d9a9ad4
|
|
7
|
+
data.tar.gz: 90cd1893831d2df2e94654778ac7dc4f7d3bca280ae62f6da3d40905da09a267d9378365aeeed36d36d235f4fec76e775e091b36fd0a5cc75b6d65d0d8d0c756
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-appengine_v1beta
|
|
2
2
|
|
|
3
|
+
### v0.59.0 (2025-10-12)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251005
|
|
6
|
+
|
|
7
|
+
### v0.58.0 (2025-10-05)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250930
|
|
10
|
+
|
|
3
11
|
### v0.57.0 (2025-08-24)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250816
|
|
@@ -1724,6 +1724,13 @@ module Google
|
|
|
1724
1724
|
# @return [Array<Google::Apis::AppengineV1beta::Operation>]
|
|
1725
1725
|
attr_accessor :operations
|
|
1726
1726
|
|
|
1727
|
+
# Unordered list. Unreachable resources. Populated when the request sets
|
|
1728
|
+
# ListOperationsRequest.return_partial_success and reads across collections e.g.
|
|
1729
|
+
# when attempting to list all resources across all supported locations.
|
|
1730
|
+
# Corresponds to the JSON property `unreachable`
|
|
1731
|
+
# @return [Array<String>]
|
|
1732
|
+
attr_accessor :unreachable
|
|
1733
|
+
|
|
1727
1734
|
def initialize(**args)
|
|
1728
1735
|
update!(**args)
|
|
1729
1736
|
end
|
|
@@ -1732,6 +1739,7 @@ module Google
|
|
|
1732
1739
|
def update!(**args)
|
|
1733
1740
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
1734
1741
|
@operations = args[:operations] if args.key?(:operations)
|
|
1742
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
1735
1743
|
end
|
|
1736
1744
|
end
|
|
1737
1745
|
|
|
@@ -3127,6 +3135,32 @@ module Google
|
|
|
3127
3135
|
end
|
|
3128
3136
|
end
|
|
3129
3137
|
|
|
3138
|
+
# Subnetwork key message.
|
|
3139
|
+
class SubnetworkKey
|
|
3140
|
+
include Google::Apis::Core::Hashable
|
|
3141
|
+
|
|
3142
|
+
# Project id (name not number) of the project that hosts the network
|
|
3143
|
+
# Corresponds to the JSON property `hostProjectId`
|
|
3144
|
+
# @return [String]
|
|
3145
|
+
attr_accessor :host_project_id
|
|
3146
|
+
|
|
3147
|
+
# Short name of the subnetwork. e.g. SUBNET instead of projects/`PROJECT_NAME`/
|
|
3148
|
+
# regions/`REGION`/subnetworks/`SUBNET`
|
|
3149
|
+
# Corresponds to the JSON property `subnet`
|
|
3150
|
+
# @return [String]
|
|
3151
|
+
attr_accessor :subnet
|
|
3152
|
+
|
|
3153
|
+
def initialize(**args)
|
|
3154
|
+
update!(**args)
|
|
3155
|
+
end
|
|
3156
|
+
|
|
3157
|
+
# Update properties of this object
|
|
3158
|
+
def update!(**args)
|
|
3159
|
+
@host_project_id = args[:host_project_id] if args.key?(:host_project_id)
|
|
3160
|
+
@subnet = args[:subnet] if args.key?(:subnet)
|
|
3161
|
+
end
|
|
3162
|
+
end
|
|
3163
|
+
|
|
3130
3164
|
# Traffic routing configuration for versions within a single service. Traffic
|
|
3131
3165
|
# splits define how traffic directed to the service is assigned to versions.
|
|
3132
3166
|
class TrafficSplit
|
|
@@ -3526,6 +3560,11 @@ module Google
|
|
|
3526
3560
|
# @return [Google::Apis::AppengineV1beta::VpcAccessConnector]
|
|
3527
3561
|
attr_accessor :vpc_access_connector
|
|
3528
3562
|
|
|
3563
|
+
# Vpc Egress configuration.
|
|
3564
|
+
# Corresponds to the JSON property `vpcEgress`
|
|
3565
|
+
# @return [Google::Apis::AppengineV1beta::VpcEgress]
|
|
3566
|
+
attr_accessor :vpc_egress
|
|
3567
|
+
|
|
3529
3568
|
# The Google Compute Engine zones that are supported by this version in the App
|
|
3530
3569
|
# Engine flexible environment. Deprecated.
|
|
3531
3570
|
# Corresponds to the JSON property `zones`
|
|
@@ -3579,6 +3618,7 @@ module Google
|
|
|
3579
3618
|
@version_url = args[:version_url] if args.key?(:version_url)
|
|
3580
3619
|
@vm = args[:vm] if args.key?(:vm)
|
|
3581
3620
|
@vpc_access_connector = args[:vpc_access_connector] if args.key?(:vpc_access_connector)
|
|
3621
|
+
@vpc_egress = args[:vpc_egress] if args.key?(:vpc_egress)
|
|
3582
3622
|
@zones = args[:zones] if args.key?(:zones)
|
|
3583
3623
|
end
|
|
3584
3624
|
end
|
|
@@ -3642,6 +3682,57 @@ module Google
|
|
|
3642
3682
|
end
|
|
3643
3683
|
end
|
|
3644
3684
|
|
|
3685
|
+
# Vpc Egress configuration.
|
|
3686
|
+
class VpcEgress
|
|
3687
|
+
include Google::Apis::Core::Hashable
|
|
3688
|
+
|
|
3689
|
+
# The egress setting for the subnetwork, controlling what traffic is diverted
|
|
3690
|
+
# through it.
|
|
3691
|
+
# Corresponds to the JSON property `egressSetting`
|
|
3692
|
+
# @return [String]
|
|
3693
|
+
attr_accessor :egress_setting
|
|
3694
|
+
|
|
3695
|
+
# The network tags to apply to the instance.
|
|
3696
|
+
# Corresponds to the JSON property `networkTags`
|
|
3697
|
+
# @return [Array<Google::Apis::AppengineV1beta::VpcNetworkTag>]
|
|
3698
|
+
attr_accessor :network_tags
|
|
3699
|
+
|
|
3700
|
+
# Subnetwork key message.
|
|
3701
|
+
# Corresponds to the JSON property `subnetworkKey`
|
|
3702
|
+
# @return [Google::Apis::AppengineV1beta::SubnetworkKey]
|
|
3703
|
+
attr_accessor :subnetwork_key
|
|
3704
|
+
|
|
3705
|
+
def initialize(**args)
|
|
3706
|
+
update!(**args)
|
|
3707
|
+
end
|
|
3708
|
+
|
|
3709
|
+
# Update properties of this object
|
|
3710
|
+
def update!(**args)
|
|
3711
|
+
@egress_setting = args[:egress_setting] if args.key?(:egress_setting)
|
|
3712
|
+
@network_tags = args[:network_tags] if args.key?(:network_tags)
|
|
3713
|
+
@subnetwork_key = args[:subnetwork_key] if args.key?(:subnetwork_key)
|
|
3714
|
+
end
|
|
3715
|
+
end
|
|
3716
|
+
|
|
3717
|
+
# Network tag message.
|
|
3718
|
+
class VpcNetworkTag
|
|
3719
|
+
include Google::Apis::Core::Hashable
|
|
3720
|
+
|
|
3721
|
+
# value for the tag name
|
|
3722
|
+
# Corresponds to the JSON property `value`
|
|
3723
|
+
# @return [String]
|
|
3724
|
+
attr_accessor :value
|
|
3725
|
+
|
|
3726
|
+
def initialize(**args)
|
|
3727
|
+
update!(**args)
|
|
3728
|
+
end
|
|
3729
|
+
|
|
3730
|
+
# Update properties of this object
|
|
3731
|
+
def update!(**args)
|
|
3732
|
+
@value = args[:value] if args.key?(:value)
|
|
3733
|
+
end
|
|
3734
|
+
end
|
|
3735
|
+
|
|
3645
3736
|
# The zip file information for a zip deployment.
|
|
3646
3737
|
class ZipInfo
|
|
3647
3738
|
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.59.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 = "20251005"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -478,6 +478,12 @@ 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
|
+
|
|
481
487
|
class TrafficSplit
|
|
482
488
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
483
489
|
|
|
@@ -514,6 +520,18 @@ module Google
|
|
|
514
520
|
include Google::Apis::Core::JsonObjectSupport
|
|
515
521
|
end
|
|
516
522
|
|
|
523
|
+
class VpcEgress
|
|
524
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
525
|
+
|
|
526
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
527
|
+
end
|
|
528
|
+
|
|
529
|
+
class VpcNetworkTag
|
|
530
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
531
|
+
|
|
532
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
533
|
+
end
|
|
534
|
+
|
|
517
535
|
class ZipInfo
|
|
518
536
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
519
537
|
|
|
@@ -972,6 +990,7 @@ module Google
|
|
|
972
990
|
property :next_page_token, as: 'nextPageToken'
|
|
973
991
|
collection :operations, as: 'operations', class: Google::Apis::AppengineV1beta::Operation, decorator: Google::Apis::AppengineV1beta::Operation::Representation
|
|
974
992
|
|
|
993
|
+
collection :unreachable, as: 'unreachable'
|
|
975
994
|
end
|
|
976
995
|
end
|
|
977
996
|
|
|
@@ -1313,6 +1332,14 @@ module Google
|
|
|
1313
1332
|
end
|
|
1314
1333
|
end
|
|
1315
1334
|
|
|
1335
|
+
class SubnetworkKey
|
|
1336
|
+
# @private
|
|
1337
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1338
|
+
property :host_project_id, as: 'hostProjectId'
|
|
1339
|
+
property :subnet, as: 'subnet'
|
|
1340
|
+
end
|
|
1341
|
+
end
|
|
1342
|
+
|
|
1316
1343
|
class TrafficSplit
|
|
1317
1344
|
# @private
|
|
1318
1345
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1408,6 +1435,8 @@ module Google
|
|
|
1408
1435
|
property :vm, as: 'vm'
|
|
1409
1436
|
property :vpc_access_connector, as: 'vpcAccessConnector', class: Google::Apis::AppengineV1beta::VpcAccessConnector, decorator: Google::Apis::AppengineV1beta::VpcAccessConnector::Representation
|
|
1410
1437
|
|
|
1438
|
+
property :vpc_egress, as: 'vpcEgress', class: Google::Apis::AppengineV1beta::VpcEgress, decorator: Google::Apis::AppengineV1beta::VpcEgress::Representation
|
|
1439
|
+
|
|
1411
1440
|
collection :zones, as: 'zones'
|
|
1412
1441
|
end
|
|
1413
1442
|
end
|
|
@@ -1429,6 +1458,24 @@ module Google
|
|
|
1429
1458
|
end
|
|
1430
1459
|
end
|
|
1431
1460
|
|
|
1461
|
+
class VpcEgress
|
|
1462
|
+
# @private
|
|
1463
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1464
|
+
property :egress_setting, as: 'egressSetting'
|
|
1465
|
+
collection :network_tags, as: 'networkTags', class: Google::Apis::AppengineV1beta::VpcNetworkTag, decorator: Google::Apis::AppengineV1beta::VpcNetworkTag::Representation
|
|
1466
|
+
|
|
1467
|
+
property :subnetwork_key, as: 'subnetworkKey', class: Google::Apis::AppengineV1beta::SubnetworkKey, decorator: Google::Apis::AppengineV1beta::SubnetworkKey::Representation
|
|
1468
|
+
|
|
1469
|
+
end
|
|
1470
|
+
end
|
|
1471
|
+
|
|
1472
|
+
class VpcNetworkTag
|
|
1473
|
+
# @private
|
|
1474
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1475
|
+
property :value, as: 'value'
|
|
1476
|
+
end
|
|
1477
|
+
end
|
|
1478
|
+
|
|
1432
1479
|
class ZipInfo
|
|
1433
1480
|
# @private
|
|
1434
1481
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -909,8 +909,8 @@ module Google
|
|
|
909
909
|
# @param [String] apps_id
|
|
910
910
|
# Part of `name`. The resource that owns the locations collection, if applicable.
|
|
911
911
|
# @param [Array<String>, String] extra_location_types
|
|
912
|
-
# Optional.
|
|
913
|
-
#
|
|
912
|
+
# Optional. Unless explicitly documented otherwise, don't use this unsupported
|
|
913
|
+
# field which is primarily intended for internal usage.
|
|
914
914
|
# @param [String] filter
|
|
915
915
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
916
916
|
# accepts strings like "displayName=tokyo", and is documented in more detail in
|
|
@@ -996,6 +996,13 @@ module Google
|
|
|
996
996
|
# The standard list page size.
|
|
997
997
|
# @param [String] page_token
|
|
998
998
|
# The standard list page token.
|
|
999
|
+
# @param [Boolean] return_partial_success
|
|
1000
|
+
# When set to true, operations that are reachable are returned as normal, and
|
|
1001
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
1002
|
+
# unreachable field.This can only be true when reading across collections e.g.
|
|
1003
|
+
# when parent is set to "projects/example/locations/-".This field is not by
|
|
1004
|
+
# default supported and will result in an UNIMPLEMENTED error if set unless
|
|
1005
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
999
1006
|
# @param [String] fields
|
|
1000
1007
|
# Selector specifying which fields to include in a partial response.
|
|
1001
1008
|
# @param [String] quota_user
|
|
@@ -1013,7 +1020,7 @@ module Google
|
|
|
1013
1020
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1014
1021
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1015
1022
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1016
|
-
def list_app_operations(apps_id, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1023
|
+
def list_app_operations(apps_id, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1017
1024
|
command = make_simple_command(:get, 'v1beta/apps/{appsId}/operations', options)
|
|
1018
1025
|
command.response_representation = Google::Apis::AppengineV1beta::ListOperationsResponse::Representation
|
|
1019
1026
|
command.response_class = Google::Apis::AppengineV1beta::ListOperationsResponse
|
|
@@ -1021,6 +1028,7 @@ module Google
|
|
|
1021
1028
|
command.query['filter'] = filter unless filter.nil?
|
|
1022
1029
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
1023
1030
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
1031
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
1024
1032
|
command.query['fields'] = fields unless fields.nil?
|
|
1025
1033
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1026
1034
|
execute_or_queue_command(command, &block)
|
|
@@ -1649,8 +1657,8 @@ module Google
|
|
|
1649
1657
|
# @param [String] projects_id
|
|
1650
1658
|
# Part of `name`. The resource that owns the locations collection, if applicable.
|
|
1651
1659
|
# @param [Array<String>, String] extra_location_types
|
|
1652
|
-
# Optional.
|
|
1653
|
-
#
|
|
1660
|
+
# Optional. Unless explicitly documented otherwise, don't use this unsupported
|
|
1661
|
+
# field which is primarily intended for internal usage.
|
|
1654
1662
|
# @param [String] filter
|
|
1655
1663
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
1656
1664
|
# accepts strings like "displayName=tokyo", and is documented in more detail in
|
|
@@ -2046,6 +2054,47 @@ module Google
|
|
|
2046
2054
|
execute_or_queue_command(command, &block)
|
|
2047
2055
|
end
|
|
2048
2056
|
|
|
2057
|
+
# Deletes the specified domain mapping. A user must be authorized to administer
|
|
2058
|
+
# the associated domain in order to delete a DomainMapping resource.
|
|
2059
|
+
# @param [String] projects_id
|
|
2060
|
+
# Part of `name`. Required. Name of the resource to delete. Example: apps/myapp/
|
|
2061
|
+
# domainMappings/example.com.
|
|
2062
|
+
# @param [String] locations_id
|
|
2063
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2064
|
+
# @param [String] applications_id
|
|
2065
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2066
|
+
# @param [String] domain_mappings_id
|
|
2067
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2068
|
+
# @param [String] fields
|
|
2069
|
+
# Selector specifying which fields to include in a partial response.
|
|
2070
|
+
# @param [String] quota_user
|
|
2071
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
2072
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
2073
|
+
# @param [Google::Apis::RequestOptions] options
|
|
2074
|
+
# Request-specific options
|
|
2075
|
+
#
|
|
2076
|
+
# @yield [result, err] Result & error if block supplied
|
|
2077
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::Operation] parsed result object
|
|
2078
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
2079
|
+
#
|
|
2080
|
+
# @return [Google::Apis::AppengineV1beta::Operation]
|
|
2081
|
+
#
|
|
2082
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2083
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2084
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2085
|
+
def delete_project_location_application_domain_mapping(projects_id, locations_id, applications_id, domain_mappings_id, fields: nil, quota_user: nil, options: nil, &block)
|
|
2086
|
+
command = make_simple_command(:delete, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/domainMappings/{domainMappingsId}', options)
|
|
2087
|
+
command.response_representation = Google::Apis::AppengineV1beta::Operation::Representation
|
|
2088
|
+
command.response_class = Google::Apis::AppengineV1beta::Operation
|
|
2089
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
|
2090
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
|
2091
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
|
2092
|
+
command.params['domainMappingsId'] = domain_mappings_id unless domain_mappings_id.nil?
|
|
2093
|
+
command.query['fields'] = fields unless fields.nil?
|
|
2094
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2095
|
+
execute_or_queue_command(command, &block)
|
|
2096
|
+
end
|
|
2097
|
+
|
|
2049
2098
|
# Gets the specified domain mapping.
|
|
2050
2099
|
# @param [String] projects_id
|
|
2051
2100
|
# Part of `name`. Required. Name of the resource requested. Example: apps/myapp/
|
|
@@ -2086,6 +2135,55 @@ module Google
|
|
|
2086
2135
|
execute_or_queue_command(command, &block)
|
|
2087
2136
|
end
|
|
2088
2137
|
|
|
2138
|
+
# Updates the specified domain mapping. To map an SSL certificate to a domain
|
|
2139
|
+
# mapping, update certificate_id to point to an AuthorizedCertificate resource.
|
|
2140
|
+
# A user must be authorized to administer the associated domain in order to
|
|
2141
|
+
# update a DomainMapping resource.
|
|
2142
|
+
# @param [String] projects_id
|
|
2143
|
+
# Part of `name`. Required. Name of the resource to update. Example: apps/myapp/
|
|
2144
|
+
# domainMappings/example.com.
|
|
2145
|
+
# @param [String] locations_id
|
|
2146
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2147
|
+
# @param [String] applications_id
|
|
2148
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2149
|
+
# @param [String] domain_mappings_id
|
|
2150
|
+
# Part of `name`. See documentation of `projectsId`.
|
|
2151
|
+
# @param [Google::Apis::AppengineV1beta::DomainMapping] domain_mapping_object
|
|
2152
|
+
# @param [String] update_mask
|
|
2153
|
+
# Required. Standard field mask for the set of fields to be updated.
|
|
2154
|
+
# @param [String] fields
|
|
2155
|
+
# Selector specifying which fields to include in a partial response.
|
|
2156
|
+
# @param [String] quota_user
|
|
2157
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
2158
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
2159
|
+
# @param [Google::Apis::RequestOptions] options
|
|
2160
|
+
# Request-specific options
|
|
2161
|
+
#
|
|
2162
|
+
# @yield [result, err] Result & error if block supplied
|
|
2163
|
+
# @yieldparam result [Google::Apis::AppengineV1beta::Operation] parsed result object
|
|
2164
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
2165
|
+
#
|
|
2166
|
+
# @return [Google::Apis::AppengineV1beta::Operation]
|
|
2167
|
+
#
|
|
2168
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2169
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2170
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2171
|
+
def patch_project_location_application_domain_mapping(projects_id, locations_id, applications_id, domain_mappings_id, domain_mapping_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2172
|
+
command = make_simple_command(:patch, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/domainMappings/{domainMappingsId}', options)
|
|
2173
|
+
command.request_representation = Google::Apis::AppengineV1beta::DomainMapping::Representation
|
|
2174
|
+
command.request_object = domain_mapping_object
|
|
2175
|
+
command.response_representation = Google::Apis::AppengineV1beta::Operation::Representation
|
|
2176
|
+
command.response_class = Google::Apis::AppengineV1beta::Operation
|
|
2177
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
|
2178
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
|
2179
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
|
2180
|
+
command.params['domainMappingsId'] = domain_mappings_id unless domain_mappings_id.nil?
|
|
2181
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
|
2182
|
+
command.query['fields'] = fields unless fields.nil?
|
|
2183
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2184
|
+
execute_or_queue_command(command, &block)
|
|
2185
|
+
end
|
|
2186
|
+
|
|
2089
2187
|
# Deletes the specified service and all enclosed versions.
|
|
2090
2188
|
# @param [String] projects_id
|
|
2091
2189
|
# Part of `name`. Required. Name of the resource requested. Example: apps/myapp/
|
|
@@ -2365,6 +2463,13 @@ module Google
|
|
|
2365
2463
|
# The standard list page size.
|
|
2366
2464
|
# @param [String] page_token
|
|
2367
2465
|
# The standard list page token.
|
|
2466
|
+
# @param [Boolean] return_partial_success
|
|
2467
|
+
# When set to true, operations that are reachable are returned as normal, and
|
|
2468
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
2469
|
+
# unreachable field.This can only be true when reading across collections e.g.
|
|
2470
|
+
# when parent is set to "projects/example/locations/-".This field is not by
|
|
2471
|
+
# default supported and will result in an UNIMPLEMENTED error if set unless
|
|
2472
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
2368
2473
|
# @param [String] fields
|
|
2369
2474
|
# Selector specifying which fields to include in a partial response.
|
|
2370
2475
|
# @param [String] quota_user
|
|
@@ -2382,7 +2487,7 @@ module Google
|
|
|
2382
2487
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2383
2488
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2384
2489
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2385
|
-
def list_project_location_operations(projects_id, locations_id, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2490
|
+
def list_project_location_operations(projects_id, locations_id, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2386
2491
|
command = make_simple_command(:get, 'v1beta/projects/{projectsId}/locations/{locationsId}/operations', options)
|
|
2387
2492
|
command.response_representation = Google::Apis::AppengineV1beta::ListOperationsResponse::Representation
|
|
2388
2493
|
command.response_class = Google::Apis::AppengineV1beta::ListOperationsResponse
|
|
@@ -2391,6 +2496,7 @@ module Google
|
|
|
2391
2496
|
command.query['filter'] = filter unless filter.nil?
|
|
2392
2497
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
2393
2498
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
2499
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
2394
2500
|
command.query['fields'] = fields unless fields.nil?
|
|
2395
2501
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2396
2502
|
execute_or_queue_command(command, &block)
|
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.59.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.59.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:
|