google-apis-compute_beta 0.83.0 → 0.84.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: 571ca86e0c413f6d69ba3ca39187efd4a71666f73b1457499c72819d081f3655
|
4
|
+
data.tar.gz: 2b313399d1e75f1a8f7ec1dcc11fb33d8678a94e646d53c3d0187e7e7080f373
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a3d67bf27e63432d2026fa1bf944a59bca8022bf14c6d0719bcc2106cba0fe2483c791cc1392a1d78b1c55023ad22418f4312028a6cc54024c301deda5e59f81
|
7
|
+
data.tar.gz: 805bf4c3a7dd7f301feefc8ad90c597865a91805b75bcfdf8e4b568f88253ba86925d26bf565926bea0fa3a4874eeeb77465e1fc4e763c7f7e4b8581c01ba60b
|
data/CHANGELOG.md
CHANGED
@@ -3561,23 +3561,23 @@ module Google
|
|
3561
3561
|
# @return [Fixnum]
|
3562
3562
|
attr_accessor :id
|
3563
3563
|
|
3564
|
-
# Specifies preference
|
3565
|
-
# client for proxyless gRPC). The possible values are: -
|
3566
|
-
# IPv4 traffic to the backends of the
|
3567
|
-
# Instance Group, Network Endpoint Group) regardless of
|
3568
|
-
# to the proxy. Only IPv4 health
|
3569
|
-
# backends. This is the default setting. - PREFER_IPV6:
|
3570
|
-
# connection to the
|
3571
|
-
# is a healthy IPv6 address). - IPV6_ONLY: Only send IPv6
|
3572
|
-
# backends of the
|
3573
|
-
# Network Endpoint Group) regardless of traffic from the client
|
3574
|
-
# Only IPv6 health
|
3575
|
-
# field is applicable to either: - Advanced Global External HTTPS
|
3576
|
-
# (load balancing scheme EXTERNAL_MANAGED), - Regional External
|
3577
|
-
# Balancing, - Internal TCP Proxy (load balancing scheme
|
3578
|
-
# Regional Internal HTTPS Load Balancing (load balancing
|
3579
|
-
# , - Traffic Director with Envoy proxies and proxyless
|
3580
|
-
# scheme INTERNAL_SELF_MANAGED).
|
3564
|
+
# Specifies a preference for traffic sent from the proxy to the backend (or from
|
3565
|
+
# the client to the backend for proxyless gRPC). The possible values are: -
|
3566
|
+
# IPV4_ONLY: Only send IPv4 traffic to the backends of the backend service (
|
3567
|
+
# Instance Group, Managed Instance Group, Network Endpoint Group), regardless of
|
3568
|
+
# traffic from the client to the proxy. Only IPv4 health checks are used to
|
3569
|
+
# check the health of the backends. This is the default setting. - PREFER_IPV6:
|
3570
|
+
# Prioritize the connection to the endpoint's IPv6 address over its IPv4 address
|
3571
|
+
# (provided there is a healthy IPv6 address). - IPV6_ONLY: Only send IPv6
|
3572
|
+
# traffic to the backends of the backend service (Instance Group, Managed
|
3573
|
+
# Instance Group, Network Endpoint Group), regardless of traffic from the client
|
3574
|
+
# to the proxy. Only IPv6 health checks are used to check the health of the
|
3575
|
+
# backends. This field is applicable to either: - Advanced Global External HTTPS
|
3576
|
+
# Load Balancing (load balancing scheme EXTERNAL_MANAGED), - Regional External
|
3577
|
+
# HTTPS Load Balancing, - Internal TCP Proxy (load balancing scheme
|
3578
|
+
# INTERNAL_MANAGED), - Regional Internal HTTPS Load Balancing (load balancing
|
3579
|
+
# scheme INTERNAL_MANAGED), - Traffic Director with Envoy proxies and proxyless
|
3580
|
+
# gRPC (load balancing scheme INTERNAL_SELF_MANAGED).
|
3581
3581
|
# Corresponds to the JSON property `ipAddressSelectionPolicy`
|
3582
3582
|
# @return [String]
|
3583
3583
|
attr_accessor :ip_address_selection_policy
|
@@ -31315,6 +31315,11 @@ module Google
|
|
31315
31315
|
class PublicAdvertisedPrefix
|
31316
31316
|
include Google::Apis::Core::Hashable
|
31317
31317
|
|
31318
|
+
# [Output Only] The version of BYOIP API.
|
31319
|
+
# Corresponds to the JSON property `byoipApiVersion`
|
31320
|
+
# @return [String]
|
31321
|
+
attr_accessor :byoip_api_version
|
31322
|
+
|
31318
31323
|
# [Output Only] Creation timestamp in RFC3339 text format.
|
31319
31324
|
# Corresponds to the JSON property `creationTimestamp`
|
31320
31325
|
# @return [String]
|
@@ -31370,6 +31375,16 @@ module Google
|
|
31370
31375
|
# @return [String]
|
31371
31376
|
attr_accessor :name
|
31372
31377
|
|
31378
|
+
# Specifies how child public delegated prefix will be scoped. It could be one of
|
31379
|
+
# following values: - `REGIONAL`: The public delegated prefix is regional only.
|
31380
|
+
# The provisioning will take a few minutes. - `GLOBAL`: The public delegated
|
31381
|
+
# prefix is global only. The provisioning will take ~4 weeks. - `
|
31382
|
+
# GLOBAL_AND_REGIONAL` [output only]: The public delegated prefixes is BYOIP V1
|
31383
|
+
# legacy prefix. This is output only value and no longer supported in BYOIP V2.
|
31384
|
+
# Corresponds to the JSON property `pdpScope`
|
31385
|
+
# @return [String]
|
31386
|
+
attr_accessor :pdp_scope
|
31387
|
+
|
31373
31388
|
# [Output Only] The list of public delegated prefixes that exist for this public
|
31374
31389
|
# advertised prefix.
|
31375
31390
|
# Corresponds to the JSON property `publicDelegatedPrefixs`
|
@@ -31403,6 +31418,7 @@ module Google
|
|
31403
31418
|
|
31404
31419
|
# Update properties of this object
|
31405
31420
|
def update!(**args)
|
31421
|
+
@byoip_api_version = args[:byoip_api_version] if args.key?(:byoip_api_version)
|
31406
31422
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
31407
31423
|
@description = args[:description] if args.key?(:description)
|
31408
31424
|
@dns_verification_ip = args[:dns_verification_ip] if args.key?(:dns_verification_ip)
|
@@ -31411,6 +31427,7 @@ module Google
|
|
31411
31427
|
@ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
|
31412
31428
|
@kind = args[:kind] if args.key?(:kind)
|
31413
31429
|
@name = args[:name] if args.key?(:name)
|
31430
|
+
@pdp_scope = args[:pdp_scope] if args.key?(:pdp_scope)
|
31414
31431
|
@public_delegated_prefixs = args[:public_delegated_prefixs] if args.key?(:public_delegated_prefixs)
|
31415
31432
|
@self_link = args[:self_link] if args.key?(:self_link)
|
31416
31433
|
@shared_secret = args[:shared_secret] if args.key?(:shared_secret)
|
@@ -31590,6 +31607,11 @@ module Google
|
|
31590
31607
|
class PublicDelegatedPrefix
|
31591
31608
|
include Google::Apis::Core::Hashable
|
31592
31609
|
|
31610
|
+
# [Output Only] The version of BYOIP API.
|
31611
|
+
# Corresponds to the JSON property `byoipApiVersion`
|
31612
|
+
# @return [String]
|
31613
|
+
attr_accessor :byoip_api_version
|
31614
|
+
|
31593
31615
|
# [Output Only] Creation timestamp in RFC3339 text format.
|
31594
31616
|
# Corresponds to the JSON property `creationTimestamp`
|
31595
31617
|
# @return [String]
|
@@ -31687,6 +31709,7 @@ module Google
|
|
31687
31709
|
|
31688
31710
|
# Update properties of this object
|
31689
31711
|
def update!(**args)
|
31712
|
+
@byoip_api_version = args[:byoip_api_version] if args.key?(:byoip_api_version)
|
31690
31713
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
31691
31714
|
@description = args[:description] if args.key?(:description)
|
31692
31715
|
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
@@ -41063,6 +41086,11 @@ module Google
|
|
41063
41086
|
# @return [Google::Apis::ComputeBeta::CustomerEncryptionKey]
|
41064
41087
|
attr_accessor :source_disk_encryption_key
|
41065
41088
|
|
41089
|
+
# The source disk whose recovery checkpoint will be used to create this snapshot.
|
41090
|
+
# Corresponds to the JSON property `sourceDiskForRecoveryCheckpoint`
|
41091
|
+
# @return [String]
|
41092
|
+
attr_accessor :source_disk_for_recovery_checkpoint
|
41093
|
+
|
41066
41094
|
# [Output Only] The ID value of the disk used to create this snapshot. This
|
41067
41095
|
# value may be used to determine whether the snapshot was taken from the current
|
41068
41096
|
# or a previous instance of a given disk name.
|
@@ -41167,6 +41195,7 @@ module Google
|
|
41167
41195
|
@snapshot_type = args[:snapshot_type] if args.key?(:snapshot_type)
|
41168
41196
|
@source_disk = args[:source_disk] if args.key?(:source_disk)
|
41169
41197
|
@source_disk_encryption_key = args[:source_disk_encryption_key] if args.key?(:source_disk_encryption_key)
|
41198
|
+
@source_disk_for_recovery_checkpoint = args[:source_disk_for_recovery_checkpoint] if args.key?(:source_disk_for_recovery_checkpoint)
|
41170
41199
|
@source_disk_id = args[:source_disk_id] if args.key?(:source_disk_id)
|
41171
41200
|
@source_instant_snapshot = args[:source_instant_snapshot] if args.key?(:source_instant_snapshot)
|
41172
41201
|
@source_instant_snapshot_encryption_key = args[:source_instant_snapshot_encryption_key] if args.key?(:source_instant_snapshot_encryption_key)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeBeta
|
18
18
|
# Version of the google-apis-compute_beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.84.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231017"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -14240,6 +14240,7 @@ module Google
|
|
14240
14240
|
class PublicAdvertisedPrefix
|
14241
14241
|
# @private
|
14242
14242
|
class Representation < Google::Apis::Core::JsonRepresentation
|
14243
|
+
property :byoip_api_version, as: 'byoipApiVersion'
|
14243
14244
|
property :creation_timestamp, as: 'creationTimestamp'
|
14244
14245
|
property :description, as: 'description'
|
14245
14246
|
property :dns_verification_ip, as: 'dnsVerificationIp'
|
@@ -14248,6 +14249,7 @@ module Google
|
|
14248
14249
|
property :ip_cidr_range, as: 'ipCidrRange'
|
14249
14250
|
property :kind, as: 'kind'
|
14250
14251
|
property :name, as: 'name'
|
14252
|
+
property :pdp_scope, as: 'pdpScope'
|
14251
14253
|
collection :public_delegated_prefixs, as: 'publicDelegatedPrefixs', class: Google::Apis::ComputeBeta::PublicAdvertisedPrefixPublicDelegatedPrefix, decorator: Google::Apis::ComputeBeta::PublicAdvertisedPrefixPublicDelegatedPrefix::Representation
|
14252
14254
|
|
14253
14255
|
property :self_link, as: 'selfLink'
|
@@ -14302,6 +14304,7 @@ module Google
|
|
14302
14304
|
class PublicDelegatedPrefix
|
14303
14305
|
# @private
|
14304
14306
|
class Representation < Google::Apis::Core::JsonRepresentation
|
14307
|
+
property :byoip_api_version, as: 'byoipApiVersion'
|
14305
14308
|
property :creation_timestamp, as: 'creationTimestamp'
|
14306
14309
|
property :description, as: 'description'
|
14307
14310
|
property :fingerprint, :base64 => true, as: 'fingerprint'
|
@@ -16728,6 +16731,7 @@ module Google
|
|
16728
16731
|
property :source_disk, as: 'sourceDisk'
|
16729
16732
|
property :source_disk_encryption_key, as: 'sourceDiskEncryptionKey', class: Google::Apis::ComputeBeta::CustomerEncryptionKey, decorator: Google::Apis::ComputeBeta::CustomerEncryptionKey::Representation
|
16730
16733
|
|
16734
|
+
property :source_disk_for_recovery_checkpoint, as: 'sourceDiskForRecoveryCheckpoint'
|
16731
16735
|
property :source_disk_id, as: 'sourceDiskId'
|
16732
16736
|
property :source_instant_snapshot, as: 'sourceInstantSnapshot'
|
16733
16737
|
property :source_instant_snapshot_encryption_key, as: 'sourceInstantSnapshotEncryptionKey', class: Google::Apis::ComputeBeta::CustomerEncryptionKey, decorator: Google::Apis::ComputeBeta::CustomerEncryptionKey::Representation
|
@@ -25112,6 +25112,53 @@ module Google
|
|
25112
25112
|
execute_or_queue_command(command, &block)
|
25113
25113
|
end
|
25114
25114
|
|
25115
|
+
# Announces the specified PublicAdvertisedPrefix
|
25116
|
+
# @param [String] project
|
25117
|
+
# Project ID for this request.
|
25118
|
+
# @param [String] public_advertised_prefix
|
25119
|
+
# The name of the public advertised prefix. It should comply with RFC1035.
|
25120
|
+
# @param [String] request_id
|
25121
|
+
# An optional request ID to identify requests. Specify a unique request ID so
|
25122
|
+
# that if you must retry your request, the server will know to ignore the
|
25123
|
+
# request if it has already been completed. For example, consider a situation
|
25124
|
+
# where you make an initial request and the request times out. If you make the
|
25125
|
+
# request again with the same request ID, the server can check if original
|
25126
|
+
# operation with the same request ID was received, and if so, will ignore the
|
25127
|
+
# second request. This prevents clients from accidentally creating duplicate
|
25128
|
+
# commitments. The request ID must be a valid UUID with the exception that zero
|
25129
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
25130
|
+
# @param [String] fields
|
25131
|
+
# Selector specifying which fields to include in a partial response.
|
25132
|
+
# @param [String] quota_user
|
25133
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
25134
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
25135
|
+
# @param [String] user_ip
|
25136
|
+
# Legacy name for parameter that has been superseded by `quotaUser`.
|
25137
|
+
# @param [Google::Apis::RequestOptions] options
|
25138
|
+
# Request-specific options
|
25139
|
+
#
|
25140
|
+
# @yield [result, err] Result & error if block supplied
|
25141
|
+
# @yieldparam result [Google::Apis::ComputeBeta::Operation] parsed result object
|
25142
|
+
# @yieldparam err [StandardError] error object if request failed
|
25143
|
+
#
|
25144
|
+
# @return [Google::Apis::ComputeBeta::Operation]
|
25145
|
+
#
|
25146
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
25147
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
25148
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
25149
|
+
def announce_public_advertised_prefix(project, public_advertised_prefix, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
25150
|
+
command = make_simple_command(:post, 'projects/{project}/global/publicAdvertisedPrefixes/{publicAdvertisedPrefix}/announce', options)
|
25151
|
+
command.response_representation = Google::Apis::ComputeBeta::Operation::Representation
|
25152
|
+
command.response_class = Google::Apis::ComputeBeta::Operation
|
25153
|
+
command.params['project'] = project unless project.nil?
|
25154
|
+
command.params['publicAdvertisedPrefix'] = public_advertised_prefix unless public_advertised_prefix.nil?
|
25155
|
+
command.query['requestId'] = request_id unless request_id.nil?
|
25156
|
+
command.query['fields'] = fields unless fields.nil?
|
25157
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
25158
|
+
command.query['userIp'] = user_ip unless user_ip.nil?
|
25159
|
+
execute_or_queue_command(command, &block)
|
25160
|
+
end
|
25161
|
+
|
25115
25162
|
# Deletes the specified PublicAdvertisedPrefix
|
25116
25163
|
# @param [String] project
|
25117
25164
|
# Project ID for this request.
|
@@ -25384,6 +25431,53 @@ module Google
|
|
25384
25431
|
execute_or_queue_command(command, &block)
|
25385
25432
|
end
|
25386
25433
|
|
25434
|
+
# Withdraws the specified PublicAdvertisedPrefix
|
25435
|
+
# @param [String] project
|
25436
|
+
# Project ID for this request.
|
25437
|
+
# @param [String] public_advertised_prefix
|
25438
|
+
# The name of the public advertised prefix. It should comply with RFC1035.
|
25439
|
+
# @param [String] request_id
|
25440
|
+
# An optional request ID to identify requests. Specify a unique request ID so
|
25441
|
+
# that if you must retry your request, the server will know to ignore the
|
25442
|
+
# request if it has already been completed. For example, consider a situation
|
25443
|
+
# where you make an initial request and the request times out. If you make the
|
25444
|
+
# request again with the same request ID, the server can check if original
|
25445
|
+
# operation with the same request ID was received, and if so, will ignore the
|
25446
|
+
# second request. This prevents clients from accidentally creating duplicate
|
25447
|
+
# commitments. The request ID must be a valid UUID with the exception that zero
|
25448
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
25449
|
+
# @param [String] fields
|
25450
|
+
# Selector specifying which fields to include in a partial response.
|
25451
|
+
# @param [String] quota_user
|
25452
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
25453
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
25454
|
+
# @param [String] user_ip
|
25455
|
+
# Legacy name for parameter that has been superseded by `quotaUser`.
|
25456
|
+
# @param [Google::Apis::RequestOptions] options
|
25457
|
+
# Request-specific options
|
25458
|
+
#
|
25459
|
+
# @yield [result, err] Result & error if block supplied
|
25460
|
+
# @yieldparam result [Google::Apis::ComputeBeta::Operation] parsed result object
|
25461
|
+
# @yieldparam err [StandardError] error object if request failed
|
25462
|
+
#
|
25463
|
+
# @return [Google::Apis::ComputeBeta::Operation]
|
25464
|
+
#
|
25465
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
25466
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
25467
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
25468
|
+
def withdraw_public_advertised_prefix(project, public_advertised_prefix, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
25469
|
+
command = make_simple_command(:post, 'projects/{project}/global/publicAdvertisedPrefixes/{publicAdvertisedPrefix}/withdraw', options)
|
25470
|
+
command.response_representation = Google::Apis::ComputeBeta::Operation::Representation
|
25471
|
+
command.response_class = Google::Apis::ComputeBeta::Operation
|
25472
|
+
command.params['project'] = project unless project.nil?
|
25473
|
+
command.params['publicAdvertisedPrefix'] = public_advertised_prefix unless public_advertised_prefix.nil?
|
25474
|
+
command.query['requestId'] = request_id unless request_id.nil?
|
25475
|
+
command.query['fields'] = fields unless fields.nil?
|
25476
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
25477
|
+
command.query['userIp'] = user_ip unless user_ip.nil?
|
25478
|
+
execute_or_queue_command(command, &block)
|
25479
|
+
end
|
25480
|
+
|
25387
25481
|
# Lists all PublicDelegatedPrefix resources owned by the specific project across
|
25388
25482
|
# all scopes.
|
25389
25483
|
# @param [String] project
|
@@ -25484,6 +25578,57 @@ module Google
|
|
25484
25578
|
execute_or_queue_command(command, &block)
|
25485
25579
|
end
|
25486
25580
|
|
25581
|
+
# Announces the specified PublicDelegatedPrefix in the given region.
|
25582
|
+
# @param [String] project
|
25583
|
+
# Project ID for this request.
|
25584
|
+
# @param [String] region
|
25585
|
+
# The name of the region where the public delegated prefix is located. It should
|
25586
|
+
# comply with RFC1035.
|
25587
|
+
# @param [String] public_delegated_prefix
|
25588
|
+
# The name of the public delegated prefix. It should comply with RFC1035.
|
25589
|
+
# @param [String] request_id
|
25590
|
+
# An optional request ID to identify requests. Specify a unique request ID so
|
25591
|
+
# that if you must retry your request, the server will know to ignore the
|
25592
|
+
# request if it has already been completed. For example, consider a situation
|
25593
|
+
# where you make an initial request and the request times out. If you make the
|
25594
|
+
# request again with the same request ID, the server can check if original
|
25595
|
+
# operation with the same request ID was received, and if so, will ignore the
|
25596
|
+
# second request. This prevents clients from accidentally creating duplicate
|
25597
|
+
# commitments. The request ID must be a valid UUID with the exception that zero
|
25598
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
25599
|
+
# @param [String] fields
|
25600
|
+
# Selector specifying which fields to include in a partial response.
|
25601
|
+
# @param [String] quota_user
|
25602
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
25603
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
25604
|
+
# @param [String] user_ip
|
25605
|
+
# Legacy name for parameter that has been superseded by `quotaUser`.
|
25606
|
+
# @param [Google::Apis::RequestOptions] options
|
25607
|
+
# Request-specific options
|
25608
|
+
#
|
25609
|
+
# @yield [result, err] Result & error if block supplied
|
25610
|
+
# @yieldparam result [Google::Apis::ComputeBeta::Operation] parsed result object
|
25611
|
+
# @yieldparam err [StandardError] error object if request failed
|
25612
|
+
#
|
25613
|
+
# @return [Google::Apis::ComputeBeta::Operation]
|
25614
|
+
#
|
25615
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
25616
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
25617
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
25618
|
+
def announce_public_delegated_prefix(project, region, public_delegated_prefix, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
25619
|
+
command = make_simple_command(:post, 'projects/{project}/regions/{region}/publicDelegatedPrefixes/{publicDelegatedPrefix}/announce', options)
|
25620
|
+
command.response_representation = Google::Apis::ComputeBeta::Operation::Representation
|
25621
|
+
command.response_class = Google::Apis::ComputeBeta::Operation
|
25622
|
+
command.params['project'] = project unless project.nil?
|
25623
|
+
command.params['region'] = region unless region.nil?
|
25624
|
+
command.params['publicDelegatedPrefix'] = public_delegated_prefix unless public_delegated_prefix.nil?
|
25625
|
+
command.query['requestId'] = request_id unless request_id.nil?
|
25626
|
+
command.query['fields'] = fields unless fields.nil?
|
25627
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
25628
|
+
command.query['userIp'] = user_ip unless user_ip.nil?
|
25629
|
+
execute_or_queue_command(command, &block)
|
25630
|
+
end
|
25631
|
+
|
25487
25632
|
# Deletes the specified PublicDelegatedPrefix in the given region.
|
25488
25633
|
# @param [String] project
|
25489
25634
|
# Project ID for this request.
|
@@ -25771,6 +25916,57 @@ module Google
|
|
25771
25916
|
execute_or_queue_command(command, &block)
|
25772
25917
|
end
|
25773
25918
|
|
25919
|
+
# Withdraws the specified PublicDelegatedPrefix in the given region.
|
25920
|
+
# @param [String] project
|
25921
|
+
# Project ID for this request.
|
25922
|
+
# @param [String] region
|
25923
|
+
# The name of the region where the public delegated prefix is located. It should
|
25924
|
+
# comply with RFC1035.
|
25925
|
+
# @param [String] public_delegated_prefix
|
25926
|
+
# The name of the public delegated prefix. It should comply with RFC1035.
|
25927
|
+
# @param [String] request_id
|
25928
|
+
# An optional request ID to identify requests. Specify a unique request ID so
|
25929
|
+
# that if you must retry your request, the server will know to ignore the
|
25930
|
+
# request if it has already been completed. For example, consider a situation
|
25931
|
+
# where you make an initial request and the request times out. If you make the
|
25932
|
+
# request again with the same request ID, the server can check if original
|
25933
|
+
# operation with the same request ID was received, and if so, will ignore the
|
25934
|
+
# second request. This prevents clients from accidentally creating duplicate
|
25935
|
+
# commitments. The request ID must be a valid UUID with the exception that zero
|
25936
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
25937
|
+
# @param [String] fields
|
25938
|
+
# Selector specifying which fields to include in a partial response.
|
25939
|
+
# @param [String] quota_user
|
25940
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
25941
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
25942
|
+
# @param [String] user_ip
|
25943
|
+
# Legacy name for parameter that has been superseded by `quotaUser`.
|
25944
|
+
# @param [Google::Apis::RequestOptions] options
|
25945
|
+
# Request-specific options
|
25946
|
+
#
|
25947
|
+
# @yield [result, err] Result & error if block supplied
|
25948
|
+
# @yieldparam result [Google::Apis::ComputeBeta::Operation] parsed result object
|
25949
|
+
# @yieldparam err [StandardError] error object if request failed
|
25950
|
+
#
|
25951
|
+
# @return [Google::Apis::ComputeBeta::Operation]
|
25952
|
+
#
|
25953
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
25954
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
25955
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
25956
|
+
def withdraw_public_delegated_prefix(project, region, public_delegated_prefix, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
25957
|
+
command = make_simple_command(:post, 'projects/{project}/regions/{region}/publicDelegatedPrefixes/{publicDelegatedPrefix}/withdraw', options)
|
25958
|
+
command.response_representation = Google::Apis::ComputeBeta::Operation::Representation
|
25959
|
+
command.response_class = Google::Apis::ComputeBeta::Operation
|
25960
|
+
command.params['project'] = project unless project.nil?
|
25961
|
+
command.params['region'] = region unless region.nil?
|
25962
|
+
command.params['publicDelegatedPrefix'] = public_delegated_prefix unless public_delegated_prefix.nil?
|
25963
|
+
command.query['requestId'] = request_id unless request_id.nil?
|
25964
|
+
command.query['fields'] = fields unless fields.nil?
|
25965
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
25966
|
+
command.query['userIp'] = user_ip unless user_ip.nil?
|
25967
|
+
execute_or_queue_command(command, &block)
|
25968
|
+
end
|
25969
|
+
|
25774
25970
|
# Deletes the specified autoscaler.
|
25775
25971
|
# @param [String] project
|
25776
25972
|
# Project ID for this request.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-compute_beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.84.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-10-
|
11
|
+
date: 2023-10-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.84.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|