google-apis-compute_beta 0.128.0 → 0.130.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: f98ad0829bdaec2ee7edcf50fbf4733ec25da43ff30290a9ccffd127f02ac020
|
|
4
|
+
data.tar.gz: bb223c8cc31fa09aad1752d3bab00a27b95193e9e3b43b5f3695fd9a2f1c1758
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f0b6a651b09563db5e721a1ba0e5ed6f1e1b6a442b918ce099db82f1d1f5c8e6471d44f00ed9c0cba096683c9f67503ee37a158f93ab55a48a34139768efc0e
|
|
7
|
+
data.tar.gz: 1176eb17d0285fd7f30555aca0ec90e5e330e4554db484e439f3c1236404c31c0c68cc46f0c924f70749a29787a3a6d11c8b58e9c8b7338f76520d19eaf5123b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-compute_beta
|
|
2
2
|
|
|
3
|
+
### v0.130.0 (2026-01-11)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251230
|
|
6
|
+
|
|
7
|
+
### v0.129.0 (2025-12-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251210
|
|
10
|
+
|
|
3
11
|
### v0.128.0 (2025-12-07)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251202
|
|
@@ -16340,17 +16340,19 @@ module Google
|
|
|
16340
16340
|
class GlobalVmExtensionPolicyRolloutOperationRolloutInput
|
|
16341
16341
|
include Google::Apis::Core::Hashable
|
|
16342
16342
|
|
|
16343
|
-
# Optional.
|
|
16344
|
-
#
|
|
16345
|
-
#
|
|
16346
|
-
#
|
|
16347
|
-
# the
|
|
16348
|
-
#
|
|
16349
|
-
#
|
|
16350
|
-
#
|
|
16351
|
-
#
|
|
16352
|
-
#
|
|
16353
|
-
#
|
|
16343
|
+
# Optional. Specifies the behavior of the rollout if a conflict is detected in a
|
|
16344
|
+
# project during a rollout. This only applies to `insert` and `update`
|
|
16345
|
+
# methods.
|
|
16346
|
+
# A conflict occurs in the following cases:
|
|
16347
|
+
# * `insert` method: If the zonal policy already exists when the insert
|
|
16348
|
+
# happens.
|
|
16349
|
+
# * `update` method: If the zonal policy was modified by a zonal API call
|
|
16350
|
+
# outside of this rollout.
|
|
16351
|
+
# Possible values are the following:
|
|
16352
|
+
# * `""` (empty string): If a conflict occurs, the local value is not
|
|
16353
|
+
# overwritten. This is the default behavior.
|
|
16354
|
+
# * `"overwrite"`: If a conflict occurs, the local value is overwritten
|
|
16355
|
+
# with the rollout value.
|
|
16354
16356
|
# Corresponds to the JSON property `conflictBehavior`
|
|
16355
16357
|
# @return [String]
|
|
16356
16358
|
attr_accessor :conflict_behavior
|
|
@@ -16367,10 +16369,16 @@ module Google
|
|
|
16367
16369
|
# @return [String]
|
|
16368
16370
|
attr_accessor :predefined_rollout_plan
|
|
16369
16371
|
|
|
16370
|
-
# Optional. The UUID
|
|
16371
|
-
#
|
|
16372
|
-
#
|
|
16373
|
-
#
|
|
16372
|
+
# Optional. The UUID that identifies a policy rollout retry attempt for update
|
|
16373
|
+
# and
|
|
16374
|
+
# delete operations. Set this field only when retrying a rollout for an
|
|
16375
|
+
# existing extension policy.
|
|
16376
|
+
# * `update` method: Lets you retry policy rollout without changes.
|
|
16377
|
+
# An error occurs if you set retry_uuid but the policy is modified.
|
|
16378
|
+
# * `delete` method: Lets you retry policy deletion rollout if the
|
|
16379
|
+
# previous deletion rollout is not finished and the policy is in the
|
|
16380
|
+
# DELETING state. If you set this field when the policy is not in the
|
|
16381
|
+
# DELETING state, an error occurs.
|
|
16374
16382
|
# Corresponds to the JSON property `retryUuid`
|
|
16375
16383
|
# @return [String]
|
|
16376
16384
|
attr_accessor :retry_uuid
|
|
@@ -32186,6 +32194,11 @@ module Google
|
|
|
32186
32194
|
attr_accessor :os_license
|
|
32187
32195
|
alias_method :os_license?, :os_license
|
|
32188
32196
|
|
|
32197
|
+
# Additional license params.
|
|
32198
|
+
# Corresponds to the JSON property `params`
|
|
32199
|
+
# @return [Google::Apis::ComputeBeta::LicenseParams]
|
|
32200
|
+
attr_accessor :params
|
|
32201
|
+
|
|
32189
32202
|
# If true, this license can be removed from a disk's set of licenses, with no
|
|
32190
32203
|
# replacement license needed.
|
|
32191
32204
|
# Corresponds to the JSON property `removableFromDisk`
|
|
@@ -32254,6 +32267,7 @@ module Google
|
|
|
32254
32267
|
@multi_tenant_only = args[:multi_tenant_only] if args.key?(:multi_tenant_only)
|
|
32255
32268
|
@name = args[:name] if args.key?(:name)
|
|
32256
32269
|
@os_license = args[:os_license] if args.key?(:os_license)
|
|
32270
|
+
@params = args[:params] if args.key?(:params)
|
|
32257
32271
|
@removable_from_disk = args[:removable_from_disk] if args.key?(:removable_from_disk)
|
|
32258
32272
|
@required_coattached_licenses = args[:required_coattached_licenses] if args.key?(:required_coattached_licenses)
|
|
32259
32273
|
@resource_requirements = args[:resource_requirements] if args.key?(:resource_requirements)
|
|
@@ -32372,6 +32386,32 @@ module Google
|
|
|
32372
32386
|
end
|
|
32373
32387
|
end
|
|
32374
32388
|
|
|
32389
|
+
# Additional license params.
|
|
32390
|
+
class LicenseParams
|
|
32391
|
+
include Google::Apis::Core::Hashable
|
|
32392
|
+
|
|
32393
|
+
# Input only. Resource manager tags to be bound to the license. Tag keys and
|
|
32394
|
+
# values
|
|
32395
|
+
# have the same definition as resource
|
|
32396
|
+
# manager tags. Keys and values can be either in numeric format,
|
|
32397
|
+
# such as `tagKeys/`tag_key_id`` and `tagValues/456` or in namespaced
|
|
32398
|
+
# format such as ``org_id|project_id`/`tag_key_short_name`` and
|
|
32399
|
+
# ``tag_value_short_name``. The field is ignored (both PUT &
|
|
32400
|
+
# PATCH) when empty.
|
|
32401
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
|
32402
|
+
# @return [Hash<String,String>]
|
|
32403
|
+
attr_accessor :resource_manager_tags
|
|
32404
|
+
|
|
32405
|
+
def initialize(**args)
|
|
32406
|
+
update!(**args)
|
|
32407
|
+
end
|
|
32408
|
+
|
|
32409
|
+
# Update properties of this object
|
|
32410
|
+
def update!(**args)
|
|
32411
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
|
32412
|
+
end
|
|
32413
|
+
end
|
|
32414
|
+
|
|
32375
32415
|
# Commitment for a particular license resource.
|
|
32376
32416
|
class LicenseResourceCommitment
|
|
32377
32417
|
include Google::Apis::Core::Hashable
|
|
@@ -34147,6 +34187,210 @@ module Google
|
|
|
34147
34187
|
end
|
|
34148
34188
|
end
|
|
34149
34189
|
|
|
34190
|
+
# Represents a Multi-MIG member resource.
|
|
34191
|
+
class MultiMigMember
|
|
34192
|
+
include Google::Apis::Core::Hashable
|
|
34193
|
+
|
|
34194
|
+
# Output only. [Output Only] Creation timestamp of this multi-MIG member
|
|
34195
|
+
# inRFC3339 text format.
|
|
34196
|
+
# Corresponds to the JSON property `creationTimestamp`
|
|
34197
|
+
# @return [String]
|
|
34198
|
+
attr_accessor :creation_timestamp
|
|
34199
|
+
|
|
34200
|
+
# Output only. [Output only] The unique identifier for this resource type. The
|
|
34201
|
+
# server
|
|
34202
|
+
# generates this identifier.
|
|
34203
|
+
# Corresponds to the JSON property `id`
|
|
34204
|
+
# @return [Fixnum]
|
|
34205
|
+
attr_accessor :id
|
|
34206
|
+
|
|
34207
|
+
# Output only. Type of the resource. Alwayscompute#multiMigMember for a list of
|
|
34208
|
+
# multi-MIG members.
|
|
34209
|
+
# Corresponds to the JSON property `kind`
|
|
34210
|
+
# @return [String]
|
|
34211
|
+
attr_accessor :kind
|
|
34212
|
+
|
|
34213
|
+
# Output only. [Output Only] Server-defined name for the multi-MIG member.
|
|
34214
|
+
# Corresponds to the JSON property `name`
|
|
34215
|
+
# @return [String]
|
|
34216
|
+
attr_accessor :name
|
|
34217
|
+
|
|
34218
|
+
# Output only. [Output Only] The URL of the region where the multi-MIG resides.
|
|
34219
|
+
# Corresponds to the JSON property `region`
|
|
34220
|
+
# @return [String]
|
|
34221
|
+
attr_accessor :region
|
|
34222
|
+
|
|
34223
|
+
# Output only. [Output Only] Server-defined fully-qualified URL for this
|
|
34224
|
+
# resource.
|
|
34225
|
+
# Corresponds to the JSON property `selfLink`
|
|
34226
|
+
# @return [String]
|
|
34227
|
+
attr_accessor :self_link
|
|
34228
|
+
|
|
34229
|
+
# Output only. [Output Only] The status of this multi-MIG member
|
|
34230
|
+
# Corresponds to the JSON property `status`
|
|
34231
|
+
# @return [Google::Apis::ComputeBeta::MultiMigMemberStatus]
|
|
34232
|
+
attr_accessor :status
|
|
34233
|
+
|
|
34234
|
+
def initialize(**args)
|
|
34235
|
+
update!(**args)
|
|
34236
|
+
end
|
|
34237
|
+
|
|
34238
|
+
# Update properties of this object
|
|
34239
|
+
def update!(**args)
|
|
34240
|
+
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
34241
|
+
@id = args[:id] if args.key?(:id)
|
|
34242
|
+
@kind = args[:kind] if args.key?(:kind)
|
|
34243
|
+
@name = args[:name] if args.key?(:name)
|
|
34244
|
+
@region = args[:region] if args.key?(:region)
|
|
34245
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
|
34246
|
+
@status = args[:status] if args.key?(:status)
|
|
34247
|
+
end
|
|
34248
|
+
end
|
|
34249
|
+
|
|
34250
|
+
#
|
|
34251
|
+
class MultiMigMemberList
|
|
34252
|
+
include Google::Apis::Core::Hashable
|
|
34253
|
+
|
|
34254
|
+
# Unique identifier for the resource; defined by the server.
|
|
34255
|
+
# Corresponds to the JSON property `id`
|
|
34256
|
+
# @return [String]
|
|
34257
|
+
attr_accessor :id
|
|
34258
|
+
|
|
34259
|
+
# A list of multi-MIG member resources.
|
|
34260
|
+
# Corresponds to the JSON property `items`
|
|
34261
|
+
# @return [Array<Google::Apis::ComputeBeta::MultiMigMember>]
|
|
34262
|
+
attr_accessor :items
|
|
34263
|
+
|
|
34264
|
+
# Output only. Type of the resource. Alwayscompute#multiMigMember for a list of
|
|
34265
|
+
# multi-MIG members.
|
|
34266
|
+
# Corresponds to the JSON property `kind`
|
|
34267
|
+
# @return [String]
|
|
34268
|
+
attr_accessor :kind
|
|
34269
|
+
|
|
34270
|
+
# This token allows you to get the next page of results for
|
|
34271
|
+
# list requests. If the number of results is larger thanmaxResults, use the
|
|
34272
|
+
# nextPageToken as a value for
|
|
34273
|
+
# the query parameter pageToken in the next list request.
|
|
34274
|
+
# Subsequent list requests will have their own nextPageToken to
|
|
34275
|
+
# continue paging through the results.
|
|
34276
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
34277
|
+
# @return [String]
|
|
34278
|
+
attr_accessor :next_page_token
|
|
34279
|
+
|
|
34280
|
+
# Output only. [Output only] Server-defined URL for this resource.
|
|
34281
|
+
# Corresponds to the JSON property `selfLink`
|
|
34282
|
+
# @return [String]
|
|
34283
|
+
attr_accessor :self_link
|
|
34284
|
+
|
|
34285
|
+
# Informational warning message.
|
|
34286
|
+
# Corresponds to the JSON property `warning`
|
|
34287
|
+
# @return [Google::Apis::ComputeBeta::MultiMigMemberList::Warning]
|
|
34288
|
+
attr_accessor :warning
|
|
34289
|
+
|
|
34290
|
+
def initialize(**args)
|
|
34291
|
+
update!(**args)
|
|
34292
|
+
end
|
|
34293
|
+
|
|
34294
|
+
# Update properties of this object
|
|
34295
|
+
def update!(**args)
|
|
34296
|
+
@id = args[:id] if args.key?(:id)
|
|
34297
|
+
@items = args[:items] if args.key?(:items)
|
|
34298
|
+
@kind = args[:kind] if args.key?(:kind)
|
|
34299
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
34300
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
|
34301
|
+
@warning = args[:warning] if args.key?(:warning)
|
|
34302
|
+
end
|
|
34303
|
+
|
|
34304
|
+
# Informational warning message.
|
|
34305
|
+
class Warning
|
|
34306
|
+
include Google::Apis::Core::Hashable
|
|
34307
|
+
|
|
34308
|
+
# [Output Only] A warning code, if applicable. For example, Compute
|
|
34309
|
+
# Engine returns NO_RESULTS_ON_PAGE if there
|
|
34310
|
+
# are no results in the response.
|
|
34311
|
+
# Corresponds to the JSON property `code`
|
|
34312
|
+
# @return [String]
|
|
34313
|
+
attr_accessor :code
|
|
34314
|
+
|
|
34315
|
+
# [Output Only] Metadata about this warning in key:
|
|
34316
|
+
# value format. For example:
|
|
34317
|
+
# "data": [
|
|
34318
|
+
# `
|
|
34319
|
+
# "key": "scope",
|
|
34320
|
+
# "value": "zones/us-east1-d"
|
|
34321
|
+
# `
|
|
34322
|
+
# Corresponds to the JSON property `data`
|
|
34323
|
+
# @return [Array<Google::Apis::ComputeBeta::MultiMigMemberList::Warning::Datum>]
|
|
34324
|
+
attr_accessor :data
|
|
34325
|
+
|
|
34326
|
+
# [Output Only] A human-readable description of the warning code.
|
|
34327
|
+
# Corresponds to the JSON property `message`
|
|
34328
|
+
# @return [String]
|
|
34329
|
+
attr_accessor :message
|
|
34330
|
+
|
|
34331
|
+
def initialize(**args)
|
|
34332
|
+
update!(**args)
|
|
34333
|
+
end
|
|
34334
|
+
|
|
34335
|
+
# Update properties of this object
|
|
34336
|
+
def update!(**args)
|
|
34337
|
+
@code = args[:code] if args.key?(:code)
|
|
34338
|
+
@data = args[:data] if args.key?(:data)
|
|
34339
|
+
@message = args[:message] if args.key?(:message)
|
|
34340
|
+
end
|
|
34341
|
+
|
|
34342
|
+
#
|
|
34343
|
+
class Datum
|
|
34344
|
+
include Google::Apis::Core::Hashable
|
|
34345
|
+
|
|
34346
|
+
# [Output Only] A key that provides more detail on the warning being
|
|
34347
|
+
# returned. For example, for warnings where there are no results in a list
|
|
34348
|
+
# request for a particular zone, this key might be scope and
|
|
34349
|
+
# the key value might be the zone name. Other examples might be a key
|
|
34350
|
+
# indicating a deprecated resource and a suggested replacement, or a
|
|
34351
|
+
# warning about invalid network settings (for example, if an instance
|
|
34352
|
+
# attempts to perform IP forwarding but is not enabled for IP forwarding).
|
|
34353
|
+
# Corresponds to the JSON property `key`
|
|
34354
|
+
# @return [String]
|
|
34355
|
+
attr_accessor :key
|
|
34356
|
+
|
|
34357
|
+
# [Output Only] A warning data value corresponding to the key.
|
|
34358
|
+
# Corresponds to the JSON property `value`
|
|
34359
|
+
# @return [String]
|
|
34360
|
+
attr_accessor :value
|
|
34361
|
+
|
|
34362
|
+
def initialize(**args)
|
|
34363
|
+
update!(**args)
|
|
34364
|
+
end
|
|
34365
|
+
|
|
34366
|
+
# Update properties of this object
|
|
34367
|
+
def update!(**args)
|
|
34368
|
+
@key = args[:key] if args.key?(:key)
|
|
34369
|
+
@value = args[:value] if args.key?(:value)
|
|
34370
|
+
end
|
|
34371
|
+
end
|
|
34372
|
+
end
|
|
34373
|
+
end
|
|
34374
|
+
|
|
34375
|
+
#
|
|
34376
|
+
class MultiMigMemberStatus
|
|
34377
|
+
include Google::Apis::Core::Hashable
|
|
34378
|
+
|
|
34379
|
+
# [Output Only] URL of member instance group manager
|
|
34380
|
+
# Corresponds to the JSON property `instanceGroupManager`
|
|
34381
|
+
# @return [String]
|
|
34382
|
+
attr_accessor :instance_group_manager
|
|
34383
|
+
|
|
34384
|
+
def initialize(**args)
|
|
34385
|
+
update!(**args)
|
|
34386
|
+
end
|
|
34387
|
+
|
|
34388
|
+
# Update properties of this object
|
|
34389
|
+
def update!(**args)
|
|
34390
|
+
@instance_group_manager = args[:instance_group_manager] if args.key?(:instance_group_manager)
|
|
34391
|
+
end
|
|
34392
|
+
end
|
|
34393
|
+
|
|
34150
34394
|
# Resource policies message for a multi-MIG. Specifies the workload policy
|
|
34151
34395
|
# configuration of the multi-MIG.
|
|
34152
34396
|
class MultiMigResourcePolicies
|
|
@@ -34185,6 +34429,13 @@ module Google
|
|
|
34185
34429
|
# @return [Array<Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopology>]
|
|
34186
34430
|
attr_accessor :applied_accelerator_topologies
|
|
34187
34431
|
|
|
34432
|
+
# Output only. [Output Only] The number of instance group manager members in
|
|
34433
|
+
# this
|
|
34434
|
+
# multi-MIG.
|
|
34435
|
+
# Corresponds to the JSON property `membersCount`
|
|
34436
|
+
# @return [Fixnum]
|
|
34437
|
+
attr_accessor :members_count
|
|
34438
|
+
|
|
34188
34439
|
def initialize(**args)
|
|
34189
34440
|
update!(**args)
|
|
34190
34441
|
end
|
|
@@ -34192,6 +34443,7 @@ module Google
|
|
|
34192
34443
|
# Update properties of this object
|
|
34193
34444
|
def update!(**args)
|
|
34194
34445
|
@applied_accelerator_topologies = args[:applied_accelerator_topologies] if args.key?(:applied_accelerator_topologies)
|
|
34446
|
+
@members_count = args[:members_count] if args.key?(:members_count)
|
|
34195
34447
|
end
|
|
34196
34448
|
end
|
|
34197
34449
|
|
|
@@ -37022,6 +37274,11 @@ module Google
|
|
|
37022
37274
|
# @return [String]
|
|
37023
37275
|
attr_accessor :kind
|
|
37024
37276
|
|
|
37277
|
+
# Output only. [Output Only] MAC address assigned to this network interface.
|
|
37278
|
+
# Corresponds to the JSON property `macAddress`
|
|
37279
|
+
# @return [String]
|
|
37280
|
+
attr_accessor :mac_address
|
|
37281
|
+
|
|
37025
37282
|
# [Output Only] The name of the network interface, which is generated by the
|
|
37026
37283
|
# server. For a VM, the network interface uses the nicN naming
|
|
37027
37284
|
# format. Where N is a value between 0 and7. The default interface value is nic0.
|
|
@@ -37126,6 +37383,7 @@ module Google
|
|
|
37126
37383
|
@ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
|
|
37127
37384
|
@ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
|
|
37128
37385
|
@kind = args[:kind] if args.key?(:kind)
|
|
37386
|
+
@mac_address = args[:mac_address] if args.key?(:mac_address)
|
|
37129
37387
|
@name = args[:name] if args.key?(:name)
|
|
37130
37388
|
@network = args[:network] if args.key?(:network)
|
|
37131
37389
|
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
|
@@ -38380,6 +38638,11 @@ module Google
|
|
|
38380
38638
|
# @return [Array<String>]
|
|
38381
38639
|
attr_accessor :address_purposes
|
|
38382
38640
|
|
|
38641
|
+
# Specifies whether address creation is allowed.
|
|
38642
|
+
# Corresponds to the JSON property `allowAddressCreation`
|
|
38643
|
+
# @return [String]
|
|
38644
|
+
attr_accessor :allow_address_creation
|
|
38645
|
+
|
|
38383
38646
|
# Specifies whether alias IP ranges (and secondary address ranges) are
|
|
38384
38647
|
# allowed.
|
|
38385
38648
|
# Corresponds to the JSON property `allowAliasIpRanges`
|
|
@@ -38442,6 +38705,11 @@ module Google
|
|
|
38442
38705
|
# @return [String]
|
|
38443
38706
|
attr_accessor :allow_multi_nic_in_same_network
|
|
38444
38707
|
|
|
38708
|
+
# Specifies whether multi-nic in the same subnetwork is allowed.
|
|
38709
|
+
# Corresponds to the JSON property `allowMultiNicInSameSubnetwork`
|
|
38710
|
+
# @return [String]
|
|
38711
|
+
attr_accessor :allow_multi_nic_in_same_subnetwork
|
|
38712
|
+
|
|
38445
38713
|
# Specifies whether multicast is allowed.
|
|
38446
38714
|
# Corresponds to the JSON property `allowMulticast`
|
|
38447
38715
|
# @return [String]
|
|
@@ -38487,6 +38755,16 @@ module Google
|
|
|
38487
38755
|
# @return [String]
|
|
38488
38756
|
attr_accessor :allow_sub_interfaces
|
|
38489
38757
|
|
|
38758
|
+
# Specifies whether subnetwork creation is allowed.
|
|
38759
|
+
# Corresponds to the JSON property `allowSubnetworkCreation`
|
|
38760
|
+
# @return [String]
|
|
38761
|
+
attr_accessor :allow_subnetwork_creation
|
|
38762
|
+
|
|
38763
|
+
# Specifies whether VPC firewall rules can be created under the network.
|
|
38764
|
+
# Corresponds to the JSON property `allowVpcFirewallRules`
|
|
38765
|
+
# @return [String]
|
|
38766
|
+
attr_accessor :allow_vpc_firewall_rules
|
|
38767
|
+
|
|
38490
38768
|
# Specifies whether VPC peering is allowed.
|
|
38491
38769
|
# Corresponds to the JSON property `allowVpcPeering`
|
|
38492
38770
|
# @return [String]
|
|
@@ -38513,6 +38791,16 @@ module Google
|
|
|
38513
38791
|
# @return [String]
|
|
38514
38792
|
attr_accessor :multicast
|
|
38515
38793
|
|
|
38794
|
+
# Specifies a predefined internal IPv6 range for the network.
|
|
38795
|
+
# Corresponds to the JSON property `predefinedNetworkInternalIpv6Range`
|
|
38796
|
+
# @return [String]
|
|
38797
|
+
attr_accessor :predefined_network_internal_ipv6_range
|
|
38798
|
+
|
|
38799
|
+
# Predefined subnetwork ranges for the network.
|
|
38800
|
+
# Corresponds to the JSON property `predefinedSubnetworkRanges`
|
|
38801
|
+
# @return [Array<Google::Apis::ComputeBeta::NetworkProfileNetworkFeaturesPredefinedSubnetworkRange>]
|
|
38802
|
+
attr_accessor :predefined_subnetwork_ranges
|
|
38803
|
+
|
|
38516
38804
|
# Specifies which subnetwork purposes are supported.
|
|
38517
38805
|
# Corresponds to the JSON property `subnetPurposes`
|
|
38518
38806
|
# @return [Array<String>]
|
|
@@ -38545,6 +38833,7 @@ module Google
|
|
|
38545
38833
|
# Update properties of this object
|
|
38546
38834
|
def update!(**args)
|
|
38547
38835
|
@address_purposes = args[:address_purposes] if args.key?(:address_purposes)
|
|
38836
|
+
@allow_address_creation = args[:allow_address_creation] if args.key?(:allow_address_creation)
|
|
38548
38837
|
@allow_alias_ip_ranges = args[:allow_alias_ip_ranges] if args.key?(:allow_alias_ip_ranges)
|
|
38549
38838
|
@allow_auto_mode_subnet = args[:allow_auto_mode_subnet] if args.key?(:allow_auto_mode_subnet)
|
|
38550
38839
|
@allow_class_d_firewalls = args[:allow_class_d_firewalls] if args.key?(:allow_class_d_firewalls)
|
|
@@ -38557,6 +38846,7 @@ module Google
|
|
|
38557
38846
|
@allow_ip_forwarding = args[:allow_ip_forwarding] if args.key?(:allow_ip_forwarding)
|
|
38558
38847
|
@allow_load_balancing = args[:allow_load_balancing] if args.key?(:allow_load_balancing)
|
|
38559
38848
|
@allow_multi_nic_in_same_network = args[:allow_multi_nic_in_same_network] if args.key?(:allow_multi_nic_in_same_network)
|
|
38849
|
+
@allow_multi_nic_in_same_subnetwork = args[:allow_multi_nic_in_same_subnetwork] if args.key?(:allow_multi_nic_in_same_subnetwork)
|
|
38560
38850
|
@allow_multicast = args[:allow_multicast] if args.key?(:allow_multicast)
|
|
38561
38851
|
@allow_ncc = args[:allow_ncc] if args.key?(:allow_ncc)
|
|
38562
38852
|
@allow_network_migration = args[:allow_network_migration] if args.key?(:allow_network_migration)
|
|
@@ -38566,11 +38856,15 @@ module Google
|
|
|
38566
38856
|
@allow_same_network_unicast = args[:allow_same_network_unicast] if args.key?(:allow_same_network_unicast)
|
|
38567
38857
|
@allow_static_routes = args[:allow_static_routes] if args.key?(:allow_static_routes)
|
|
38568
38858
|
@allow_sub_interfaces = args[:allow_sub_interfaces] if args.key?(:allow_sub_interfaces)
|
|
38859
|
+
@allow_subnetwork_creation = args[:allow_subnetwork_creation] if args.key?(:allow_subnetwork_creation)
|
|
38860
|
+
@allow_vpc_firewall_rules = args[:allow_vpc_firewall_rules] if args.key?(:allow_vpc_firewall_rules)
|
|
38569
38861
|
@allow_vpc_peering = args[:allow_vpc_peering] if args.key?(:allow_vpc_peering)
|
|
38570
38862
|
@allow_vpn = args[:allow_vpn] if args.key?(:allow_vpn)
|
|
38571
38863
|
@firewall_policy_types = args[:firewall_policy_types] if args.key?(:firewall_policy_types)
|
|
38572
38864
|
@interface_types = args[:interface_types] if args.key?(:interface_types)
|
|
38573
38865
|
@multicast = args[:multicast] if args.key?(:multicast)
|
|
38866
|
+
@predefined_network_internal_ipv6_range = args[:predefined_network_internal_ipv6_range] if args.key?(:predefined_network_internal_ipv6_range)
|
|
38867
|
+
@predefined_subnetwork_ranges = args[:predefined_subnetwork_ranges] if args.key?(:predefined_subnetwork_ranges)
|
|
38574
38868
|
@subnet_purposes = args[:subnet_purposes] if args.key?(:subnet_purposes)
|
|
38575
38869
|
@subnet_stack_types = args[:subnet_stack_types] if args.key?(:subnet_stack_types)
|
|
38576
38870
|
@subnetwork_purposes = args[:subnetwork_purposes] if args.key?(:subnetwork_purposes)
|
|
@@ -38579,6 +38873,31 @@ module Google
|
|
|
38579
38873
|
end
|
|
38580
38874
|
end
|
|
38581
38875
|
|
|
38876
|
+
#
|
|
38877
|
+
class NetworkProfileNetworkFeaturesPredefinedSubnetworkRange
|
|
38878
|
+
include Google::Apis::Core::Hashable
|
|
38879
|
+
|
|
38880
|
+
# The IPv6 range of the predefined subnetwork.
|
|
38881
|
+
# Corresponds to the JSON property `ipv6Range`
|
|
38882
|
+
# @return [String]
|
|
38883
|
+
attr_accessor :ipv6_range
|
|
38884
|
+
|
|
38885
|
+
# The naming prefix of the predefined subnetwork.
|
|
38886
|
+
# Corresponds to the JSON property `namePrefix`
|
|
38887
|
+
# @return [String]
|
|
38888
|
+
attr_accessor :name_prefix
|
|
38889
|
+
|
|
38890
|
+
def initialize(**args)
|
|
38891
|
+
update!(**args)
|
|
38892
|
+
end
|
|
38893
|
+
|
|
38894
|
+
# Update properties of this object
|
|
38895
|
+
def update!(**args)
|
|
38896
|
+
@ipv6_range = args[:ipv6_range] if args.key?(:ipv6_range)
|
|
38897
|
+
@name_prefix = args[:name_prefix] if args.key?(:name_prefix)
|
|
38898
|
+
end
|
|
38899
|
+
end
|
|
38900
|
+
|
|
38582
38901
|
#
|
|
38583
38902
|
class NetworkProfileProfileType
|
|
38584
38903
|
include Google::Apis::Core::Hashable
|
|
@@ -59846,6 +60165,11 @@ module Google
|
|
|
59846
60165
|
# @return [String]
|
|
59847
60166
|
attr_accessor :description
|
|
59848
60167
|
|
|
60168
|
+
# Exapool provisioned capacities for each SKU type
|
|
60169
|
+
# Corresponds to the JSON property `exapoolProvisionedCapacityGb`
|
|
60170
|
+
# @return [Google::Apis::ComputeBeta::StoragePoolExapoolProvisionedCapacityGb]
|
|
60171
|
+
attr_accessor :exapool_provisioned_capacity_gb
|
|
60172
|
+
|
|
59849
60173
|
# Output only. [Output Only] The unique identifier for the resource. This
|
|
59850
60174
|
# identifier is
|
|
59851
60175
|
# defined by the server.
|
|
@@ -59889,6 +60213,11 @@ module Google
|
|
|
59889
60213
|
# @return [String]
|
|
59890
60214
|
attr_accessor :name
|
|
59891
60215
|
|
|
60216
|
+
# Additional storage pool params.
|
|
60217
|
+
# Corresponds to the JSON property `params`
|
|
60218
|
+
# @return [Google::Apis::ComputeBeta::StoragePoolParams]
|
|
60219
|
+
attr_accessor :params
|
|
60220
|
+
|
|
59892
60221
|
# Provisioning type of the performance-related parameters of the pool,
|
|
59893
60222
|
# such as throughput and IOPS.
|
|
59894
60223
|
# Corresponds to the JSON property `performanceProvisioningType`
|
|
@@ -59967,11 +60296,13 @@ module Google
|
|
|
59967
60296
|
@capacity_provisioning_type = args[:capacity_provisioning_type] if args.key?(:capacity_provisioning_type)
|
|
59968
60297
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
59969
60298
|
@description = args[:description] if args.key?(:description)
|
|
60299
|
+
@exapool_provisioned_capacity_gb = args[:exapool_provisioned_capacity_gb] if args.key?(:exapool_provisioned_capacity_gb)
|
|
59970
60300
|
@id = args[:id] if args.key?(:id)
|
|
59971
60301
|
@kind = args[:kind] if args.key?(:kind)
|
|
59972
60302
|
@label_fingerprint = args[:label_fingerprint] if args.key?(:label_fingerprint)
|
|
59973
60303
|
@labels = args[:labels] if args.key?(:labels)
|
|
59974
60304
|
@name = args[:name] if args.key?(:name)
|
|
60305
|
+
@params = args[:params] if args.key?(:params)
|
|
59975
60306
|
@performance_provisioning_type = args[:performance_provisioning_type] if args.key?(:performance_provisioning_type)
|
|
59976
60307
|
@pool_provisioned_capacity_gb = args[:pool_provisioned_capacity_gb] if args.key?(:pool_provisioned_capacity_gb)
|
|
59977
60308
|
@pool_provisioned_iops = args[:pool_provisioned_iops] if args.key?(:pool_provisioned_iops)
|
|
@@ -60206,6 +60537,40 @@ module Google
|
|
|
60206
60537
|
end
|
|
60207
60538
|
end
|
|
60208
60539
|
|
|
60540
|
+
# Exapool provisioned capacities for each SKU type
|
|
60541
|
+
class StoragePoolExapoolProvisionedCapacityGb
|
|
60542
|
+
include Google::Apis::Core::Hashable
|
|
60543
|
+
|
|
60544
|
+
# Output only. Size, in GiB, of provisioned capacity-optimized capacity for this
|
|
60545
|
+
# Exapool
|
|
60546
|
+
# Corresponds to the JSON property `capacityOptimized`
|
|
60547
|
+
# @return [Fixnum]
|
|
60548
|
+
attr_accessor :capacity_optimized
|
|
60549
|
+
|
|
60550
|
+
# Output only. Size, in GiB, of provisioned read-optimized capacity for this
|
|
60551
|
+
# Exapool
|
|
60552
|
+
# Corresponds to the JSON property `readOptimized`
|
|
60553
|
+
# @return [Fixnum]
|
|
60554
|
+
attr_accessor :read_optimized
|
|
60555
|
+
|
|
60556
|
+
# Output only. Size, in GiB, of provisioned write-optimized capacity for this
|
|
60557
|
+
# Exapool
|
|
60558
|
+
# Corresponds to the JSON property `writeOptimized`
|
|
60559
|
+
# @return [Fixnum]
|
|
60560
|
+
attr_accessor :write_optimized
|
|
60561
|
+
|
|
60562
|
+
def initialize(**args)
|
|
60563
|
+
update!(**args)
|
|
60564
|
+
end
|
|
60565
|
+
|
|
60566
|
+
# Update properties of this object
|
|
60567
|
+
def update!(**args)
|
|
60568
|
+
@capacity_optimized = args[:capacity_optimized] if args.key?(:capacity_optimized)
|
|
60569
|
+
@read_optimized = args[:read_optimized] if args.key?(:read_optimized)
|
|
60570
|
+
@write_optimized = args[:write_optimized] if args.key?(:write_optimized)
|
|
60571
|
+
end
|
|
60572
|
+
end
|
|
60573
|
+
|
|
60209
60574
|
# A list of StoragePool resources.
|
|
60210
60575
|
class StoragePoolList
|
|
60211
60576
|
include Google::Apis::Core::Hashable
|
|
@@ -60485,6 +60850,32 @@ module Google
|
|
|
60485
60850
|
end
|
|
60486
60851
|
end
|
|
60487
60852
|
|
|
60853
|
+
# Additional storage pool params.
|
|
60854
|
+
class StoragePoolParams
|
|
60855
|
+
include Google::Apis::Core::Hashable
|
|
60856
|
+
|
|
60857
|
+
# Input only. Resource manager tags to be bound to the storage pool. Tag keys
|
|
60858
|
+
# and values
|
|
60859
|
+
# have the same definition as resource
|
|
60860
|
+
# manager tags. Keys and values can be either in numeric format,
|
|
60861
|
+
# such as `tagKeys/`tag_key_id`` and `tagValues/456` or in namespaced
|
|
60862
|
+
# format such as ``org_id|project_id`/`tag_key_short_name`` and
|
|
60863
|
+
# ``tag_value_short_name``. The field is ignored (both PUT &
|
|
60864
|
+
# PATCH) when empty.
|
|
60865
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
|
60866
|
+
# @return [Hash<String,String>]
|
|
60867
|
+
attr_accessor :resource_manager_tags
|
|
60868
|
+
|
|
60869
|
+
def initialize(**args)
|
|
60870
|
+
update!(**args)
|
|
60871
|
+
end
|
|
60872
|
+
|
|
60873
|
+
# Update properties of this object
|
|
60874
|
+
def update!(**args)
|
|
60875
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
|
60876
|
+
end
|
|
60877
|
+
end
|
|
60878
|
+
|
|
60488
60879
|
# [Output Only] Contains output only fields.
|
|
60489
60880
|
class StoragePoolResourceStatus
|
|
60490
60881
|
include Google::Apis::Core::Hashable
|
|
@@ -60494,6 +60885,28 @@ module Google
|
|
|
60494
60885
|
# @return [Fixnum]
|
|
60495
60886
|
attr_accessor :disk_count
|
|
60496
60887
|
|
|
60888
|
+
# Output only. [Output Only] Maximum allowed read IOPS for this Exapool.
|
|
60889
|
+
# Corresponds to the JSON property `exapoolMaxReadIops`
|
|
60890
|
+
# @return [Fixnum]
|
|
60891
|
+
attr_accessor :exapool_max_read_iops
|
|
60892
|
+
|
|
60893
|
+
# Output only. [Output Only] Maximum allowed read throughput in MiB/s for
|
|
60894
|
+
# this Exapool.
|
|
60895
|
+
# Corresponds to the JSON property `exapoolMaxReadThroughput`
|
|
60896
|
+
# @return [Fixnum]
|
|
60897
|
+
attr_accessor :exapool_max_read_throughput
|
|
60898
|
+
|
|
60899
|
+
# Output only. [Output Only] Maximum allowed write IOPS for this Exapool.
|
|
60900
|
+
# Corresponds to the JSON property `exapoolMaxWriteIops`
|
|
60901
|
+
# @return [Fixnum]
|
|
60902
|
+
attr_accessor :exapool_max_write_iops
|
|
60903
|
+
|
|
60904
|
+
# Output only. [Output Only] Maximum allowed write throughput in MiB/s
|
|
60905
|
+
# for this Exapool.
|
|
60906
|
+
# Corresponds to the JSON property `exapoolMaxWriteThroughput`
|
|
60907
|
+
# @return [Fixnum]
|
|
60908
|
+
attr_accessor :exapool_max_write_throughput
|
|
60909
|
+
|
|
60497
60910
|
# Output only. [Output Only] Timestamp of the last successful resize inRFC3339
|
|
60498
60911
|
# text format.
|
|
60499
60912
|
# Corresponds to the JSON property `lastResizeTimestamp`
|
|
@@ -60557,6 +60970,10 @@ module Google
|
|
|
60557
60970
|
# Update properties of this object
|
|
60558
60971
|
def update!(**args)
|
|
60559
60972
|
@disk_count = args[:disk_count] if args.key?(:disk_count)
|
|
60973
|
+
@exapool_max_read_iops = args[:exapool_max_read_iops] if args.key?(:exapool_max_read_iops)
|
|
60974
|
+
@exapool_max_read_throughput = args[:exapool_max_read_throughput] if args.key?(:exapool_max_read_throughput)
|
|
60975
|
+
@exapool_max_write_iops = args[:exapool_max_write_iops] if args.key?(:exapool_max_write_iops)
|
|
60976
|
+
@exapool_max_write_throughput = args[:exapool_max_write_throughput] if args.key?(:exapool_max_write_throughput)
|
|
60560
60977
|
@last_resize_timestamp = args[:last_resize_timestamp] if args.key?(:last_resize_timestamp)
|
|
60561
60978
|
@max_total_provisioned_disk_capacity_gb = args[:max_total_provisioned_disk_capacity_gb] if args.key?(:max_total_provisioned_disk_capacity_gb)
|
|
60562
60979
|
@pool_used_capacity_bytes = args[:pool_used_capacity_bytes] if args.key?(:pool_used_capacity_bytes)
|
|
@@ -61199,7 +61616,8 @@ module Google
|
|
|
61199
61616
|
# explicitly set, it will not appear in get listings. If not set
|
|
61200
61617
|
# the default behavior is determined by the org policy, if there is no org
|
|
61201
61618
|
# policy specified, then it will default to disabled. This field isn't
|
|
61202
|
-
# supported if the subnet purpose field is set toREGIONAL_MANAGED_PROXY.
|
|
61619
|
+
# supported if the subnet purpose field is set toREGIONAL_MANAGED_PROXY. It is
|
|
61620
|
+
# recommended to uselogConfig.enable field instead.
|
|
61203
61621
|
# Corresponds to the JSON property `enableFlowLogs`
|
|
61204
61622
|
# @return [Boolean]
|
|
61205
61623
|
attr_accessor :enable_flow_logs
|
|
@@ -69029,6 +69447,12 @@ module Google
|
|
|
69029
69447
|
class VpnTunnel
|
|
69030
69448
|
include Google::Apis::Core::Hashable
|
|
69031
69449
|
|
|
69450
|
+
# Capacity tier of the VPN tunnel. This is used for IPsec over Interconnect
|
|
69451
|
+
# tunnels to indicate different bandwidth limits.
|
|
69452
|
+
# Corresponds to the JSON property `capacityTier`
|
|
69453
|
+
# @return [String]
|
|
69454
|
+
attr_accessor :capacity_tier
|
|
69455
|
+
|
|
69032
69456
|
# User specified list of ciphers to use for the phase 1 and phase 2 of the
|
|
69033
69457
|
# IKE protocol.
|
|
69034
69458
|
# Corresponds to the JSON property `cipherSuite`
|
|
@@ -69244,6 +69668,7 @@ module Google
|
|
|
69244
69668
|
|
|
69245
69669
|
# Update properties of this object
|
|
69246
69670
|
def update!(**args)
|
|
69671
|
+
@capacity_tier = args[:capacity_tier] if args.key?(:capacity_tier)
|
|
69247
69672
|
@cipher_suite = args[:cipher_suite] if args.key?(:cipher_suite)
|
|
69248
69673
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
69249
69674
|
@description = args[:description] if args.key?(:description)
|
|
@@ -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.130.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 = "20251230"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -3814,6 +3814,12 @@ module Google
|
|
|
3814
3814
|
include Google::Apis::Core::JsonObjectSupport
|
|
3815
3815
|
end
|
|
3816
3816
|
|
|
3817
|
+
class LicenseParams
|
|
3818
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3819
|
+
|
|
3820
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3821
|
+
end
|
|
3822
|
+
|
|
3817
3823
|
class LicenseResourceCommitment
|
|
3818
3824
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3819
3825
|
|
|
@@ -4054,6 +4060,36 @@ module Google
|
|
|
4054
4060
|
include Google::Apis::Core::JsonObjectSupport
|
|
4055
4061
|
end
|
|
4056
4062
|
|
|
4063
|
+
class MultiMigMember
|
|
4064
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4065
|
+
|
|
4066
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
4067
|
+
end
|
|
4068
|
+
|
|
4069
|
+
class MultiMigMemberList
|
|
4070
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4071
|
+
|
|
4072
|
+
class Warning
|
|
4073
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4074
|
+
|
|
4075
|
+
class Datum
|
|
4076
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4077
|
+
|
|
4078
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
4079
|
+
end
|
|
4080
|
+
|
|
4081
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
4082
|
+
end
|
|
4083
|
+
|
|
4084
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
4085
|
+
end
|
|
4086
|
+
|
|
4087
|
+
class MultiMigMemberStatus
|
|
4088
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4089
|
+
|
|
4090
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
4091
|
+
end
|
|
4092
|
+
|
|
4057
4093
|
class MultiMigResourcePolicies
|
|
4058
4094
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4059
4095
|
|
|
@@ -4594,6 +4630,12 @@ module Google
|
|
|
4594
4630
|
include Google::Apis::Core::JsonObjectSupport
|
|
4595
4631
|
end
|
|
4596
4632
|
|
|
4633
|
+
class NetworkProfileNetworkFeaturesPredefinedSubnetworkRange
|
|
4634
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4635
|
+
|
|
4636
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
4637
|
+
end
|
|
4638
|
+
|
|
4597
4639
|
class NetworkProfileProfileType
|
|
4598
4640
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4599
4641
|
|
|
@@ -7420,6 +7462,12 @@ module Google
|
|
|
7420
7462
|
include Google::Apis::Core::JsonObjectSupport
|
|
7421
7463
|
end
|
|
7422
7464
|
|
|
7465
|
+
class StoragePoolExapoolProvisionedCapacityGb
|
|
7466
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
7467
|
+
|
|
7468
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
7469
|
+
end
|
|
7470
|
+
|
|
7423
7471
|
class StoragePoolList
|
|
7424
7472
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
7425
7473
|
|
|
@@ -7456,6 +7504,12 @@ module Google
|
|
|
7456
7504
|
include Google::Apis::Core::JsonObjectSupport
|
|
7457
7505
|
end
|
|
7458
7506
|
|
|
7507
|
+
class StoragePoolParams
|
|
7508
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
7509
|
+
|
|
7510
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
7511
|
+
end
|
|
7512
|
+
|
|
7459
7513
|
class StoragePoolResourceStatus
|
|
7460
7514
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
7461
7515
|
|
|
@@ -15938,6 +15992,8 @@ module Google
|
|
|
15938
15992
|
property :multi_tenant_only, as: 'multiTenantOnly'
|
|
15939
15993
|
property :name, as: 'name'
|
|
15940
15994
|
property :os_license, as: 'osLicense'
|
|
15995
|
+
property :params, as: 'params', class: Google::Apis::ComputeBeta::LicenseParams, decorator: Google::Apis::ComputeBeta::LicenseParams::Representation
|
|
15996
|
+
|
|
15941
15997
|
property :removable_from_disk, as: 'removableFromDisk'
|
|
15942
15998
|
collection :required_coattached_licenses, as: 'requiredCoattachedLicenses'
|
|
15943
15999
|
property :resource_requirements, as: 'resourceRequirements', class: Google::Apis::ComputeBeta::LicenseResourceRequirements, decorator: Google::Apis::ComputeBeta::LicenseResourceRequirements::Representation
|
|
@@ -15974,6 +16030,13 @@ module Google
|
|
|
15974
16030
|
end
|
|
15975
16031
|
end
|
|
15976
16032
|
|
|
16033
|
+
class LicenseParams
|
|
16034
|
+
# @private
|
|
16035
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
16036
|
+
hash :resource_manager_tags, as: 'resourceManagerTags'
|
|
16037
|
+
end
|
|
16038
|
+
end
|
|
16039
|
+
|
|
15977
16040
|
class LicenseResourceCommitment
|
|
15978
16041
|
# @private
|
|
15979
16042
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -16415,6 +16478,59 @@ module Google
|
|
|
16415
16478
|
end
|
|
16416
16479
|
end
|
|
16417
16480
|
|
|
16481
|
+
class MultiMigMember
|
|
16482
|
+
# @private
|
|
16483
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
16484
|
+
property :creation_timestamp, as: 'creationTimestamp'
|
|
16485
|
+
property :id, :numeric_string => true, as: 'id'
|
|
16486
|
+
property :kind, as: 'kind'
|
|
16487
|
+
property :name, as: 'name'
|
|
16488
|
+
property :region, as: 'region'
|
|
16489
|
+
property :self_link, as: 'selfLink'
|
|
16490
|
+
property :status, as: 'status', class: Google::Apis::ComputeBeta::MultiMigMemberStatus, decorator: Google::Apis::ComputeBeta::MultiMigMemberStatus::Representation
|
|
16491
|
+
|
|
16492
|
+
end
|
|
16493
|
+
end
|
|
16494
|
+
|
|
16495
|
+
class MultiMigMemberList
|
|
16496
|
+
# @private
|
|
16497
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
16498
|
+
property :id, as: 'id'
|
|
16499
|
+
collection :items, as: 'items', class: Google::Apis::ComputeBeta::MultiMigMember, decorator: Google::Apis::ComputeBeta::MultiMigMember::Representation
|
|
16500
|
+
|
|
16501
|
+
property :kind, as: 'kind'
|
|
16502
|
+
property :next_page_token, as: 'nextPageToken'
|
|
16503
|
+
property :self_link, as: 'selfLink'
|
|
16504
|
+
property :warning, as: 'warning', class: Google::Apis::ComputeBeta::MultiMigMemberList::Warning, decorator: Google::Apis::ComputeBeta::MultiMigMemberList::Warning::Representation
|
|
16505
|
+
|
|
16506
|
+
end
|
|
16507
|
+
|
|
16508
|
+
class Warning
|
|
16509
|
+
# @private
|
|
16510
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
16511
|
+
property :code, as: 'code'
|
|
16512
|
+
collection :data, as: 'data', class: Google::Apis::ComputeBeta::MultiMigMemberList::Warning::Datum, decorator: Google::Apis::ComputeBeta::MultiMigMemberList::Warning::Datum::Representation
|
|
16513
|
+
|
|
16514
|
+
property :message, as: 'message'
|
|
16515
|
+
end
|
|
16516
|
+
|
|
16517
|
+
class Datum
|
|
16518
|
+
# @private
|
|
16519
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
16520
|
+
property :key, as: 'key'
|
|
16521
|
+
property :value, as: 'value'
|
|
16522
|
+
end
|
|
16523
|
+
end
|
|
16524
|
+
end
|
|
16525
|
+
end
|
|
16526
|
+
|
|
16527
|
+
class MultiMigMemberStatus
|
|
16528
|
+
# @private
|
|
16529
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
16530
|
+
property :instance_group_manager, as: 'instanceGroupManager'
|
|
16531
|
+
end
|
|
16532
|
+
end
|
|
16533
|
+
|
|
16418
16534
|
class MultiMigResourcePolicies
|
|
16419
16535
|
# @private
|
|
16420
16536
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -16427,6 +16543,7 @@ module Google
|
|
|
16427
16543
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
16428
16544
|
collection :applied_accelerator_topologies, as: 'appliedAcceleratorTopologies', class: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopology, decorator: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopology::Representation
|
|
16429
16545
|
|
|
16546
|
+
property :members_count, as: 'membersCount'
|
|
16430
16547
|
end
|
|
16431
16548
|
end
|
|
16432
16549
|
|
|
@@ -17099,6 +17216,7 @@ module Google
|
|
|
17099
17216
|
property :ipv6_access_type, as: 'ipv6AccessType'
|
|
17100
17217
|
property :ipv6_address, as: 'ipv6Address'
|
|
17101
17218
|
property :kind, as: 'kind'
|
|
17219
|
+
property :mac_address, as: 'macAddress'
|
|
17102
17220
|
property :name, as: 'name'
|
|
17103
17221
|
property :network, as: 'network'
|
|
17104
17222
|
property :network_attachment, as: 'networkAttachment'
|
|
@@ -17414,6 +17532,7 @@ module Google
|
|
|
17414
17532
|
# @private
|
|
17415
17533
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
17416
17534
|
collection :address_purposes, as: 'addressPurposes'
|
|
17535
|
+
property :allow_address_creation, as: 'allowAddressCreation'
|
|
17417
17536
|
property :allow_alias_ip_ranges, as: 'allowAliasIpRanges'
|
|
17418
17537
|
property :allow_auto_mode_subnet, as: 'allowAutoModeSubnet'
|
|
17419
17538
|
property :allow_class_d_firewalls, as: 'allowClassDFirewalls'
|
|
@@ -17426,6 +17545,7 @@ module Google
|
|
|
17426
17545
|
property :allow_ip_forwarding, as: 'allowIpForwarding'
|
|
17427
17546
|
property :allow_load_balancing, as: 'allowLoadBalancing'
|
|
17428
17547
|
property :allow_multi_nic_in_same_network, as: 'allowMultiNicInSameNetwork'
|
|
17548
|
+
property :allow_multi_nic_in_same_subnetwork, as: 'allowMultiNicInSameSubnetwork'
|
|
17429
17549
|
property :allow_multicast, as: 'allowMulticast'
|
|
17430
17550
|
property :allow_ncc, as: 'allowNcc'
|
|
17431
17551
|
property :allow_network_migration, as: 'allowNetworkMigration'
|
|
@@ -17435,11 +17555,16 @@ module Google
|
|
|
17435
17555
|
property :allow_same_network_unicast, as: 'allowSameNetworkUnicast'
|
|
17436
17556
|
property :allow_static_routes, as: 'allowStaticRoutes'
|
|
17437
17557
|
property :allow_sub_interfaces, as: 'allowSubInterfaces'
|
|
17558
|
+
property :allow_subnetwork_creation, as: 'allowSubnetworkCreation'
|
|
17559
|
+
property :allow_vpc_firewall_rules, as: 'allowVpcFirewallRules'
|
|
17438
17560
|
property :allow_vpc_peering, as: 'allowVpcPeering'
|
|
17439
17561
|
property :allow_vpn, as: 'allowVpn'
|
|
17440
17562
|
collection :firewall_policy_types, as: 'firewallPolicyTypes'
|
|
17441
17563
|
collection :interface_types, as: 'interfaceTypes'
|
|
17442
17564
|
property :multicast, as: 'multicast'
|
|
17565
|
+
property :predefined_network_internal_ipv6_range, as: 'predefinedNetworkInternalIpv6Range'
|
|
17566
|
+
collection :predefined_subnetwork_ranges, as: 'predefinedSubnetworkRanges', class: Google::Apis::ComputeBeta::NetworkProfileNetworkFeaturesPredefinedSubnetworkRange, decorator: Google::Apis::ComputeBeta::NetworkProfileNetworkFeaturesPredefinedSubnetworkRange::Representation
|
|
17567
|
+
|
|
17443
17568
|
collection :subnet_purposes, as: 'subnetPurposes'
|
|
17444
17569
|
collection :subnet_stack_types, as: 'subnetStackTypes'
|
|
17445
17570
|
collection :subnetwork_purposes, as: 'subnetworkPurposes'
|
|
@@ -17448,6 +17573,14 @@ module Google
|
|
|
17448
17573
|
end
|
|
17449
17574
|
end
|
|
17450
17575
|
|
|
17576
|
+
class NetworkProfileNetworkFeaturesPredefinedSubnetworkRange
|
|
17577
|
+
# @private
|
|
17578
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
17579
|
+
property :ipv6_range, as: 'ipv6Range'
|
|
17580
|
+
property :name_prefix, as: 'namePrefix'
|
|
17581
|
+
end
|
|
17582
|
+
end
|
|
17583
|
+
|
|
17451
17584
|
class NetworkProfileProfileType
|
|
17452
17585
|
# @private
|
|
17453
17586
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -22585,11 +22718,15 @@ module Google
|
|
|
22585
22718
|
property :capacity_provisioning_type, as: 'capacityProvisioningType'
|
|
22586
22719
|
property :creation_timestamp, as: 'creationTimestamp'
|
|
22587
22720
|
property :description, as: 'description'
|
|
22721
|
+
property :exapool_provisioned_capacity_gb, as: 'exapoolProvisionedCapacityGb', class: Google::Apis::ComputeBeta::StoragePoolExapoolProvisionedCapacityGb, decorator: Google::Apis::ComputeBeta::StoragePoolExapoolProvisionedCapacityGb::Representation
|
|
22722
|
+
|
|
22588
22723
|
property :id, :numeric_string => true, as: 'id'
|
|
22589
22724
|
property :kind, as: 'kind'
|
|
22590
22725
|
property :label_fingerprint, :base64 => true, as: 'labelFingerprint'
|
|
22591
22726
|
hash :labels, as: 'labels'
|
|
22592
22727
|
property :name, as: 'name'
|
|
22728
|
+
property :params, as: 'params', class: Google::Apis::ComputeBeta::StoragePoolParams, decorator: Google::Apis::ComputeBeta::StoragePoolParams::Representation
|
|
22729
|
+
|
|
22593
22730
|
property :performance_provisioning_type, as: 'performanceProvisioningType'
|
|
22594
22731
|
property :pool_provisioned_capacity_gb, :numeric_string => true, as: 'poolProvisionedCapacityGb'
|
|
22595
22732
|
property :pool_provisioned_iops, :numeric_string => true, as: 'poolProvisionedIops'
|
|
@@ -22657,6 +22794,15 @@ module Google
|
|
|
22657
22794
|
end
|
|
22658
22795
|
end
|
|
22659
22796
|
|
|
22797
|
+
class StoragePoolExapoolProvisionedCapacityGb
|
|
22798
|
+
# @private
|
|
22799
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
22800
|
+
property :capacity_optimized, :numeric_string => true, as: 'capacityOptimized'
|
|
22801
|
+
property :read_optimized, :numeric_string => true, as: 'readOptimized'
|
|
22802
|
+
property :write_optimized, :numeric_string => true, as: 'writeOptimized'
|
|
22803
|
+
end
|
|
22804
|
+
end
|
|
22805
|
+
|
|
22660
22806
|
class StoragePoolList
|
|
22661
22807
|
# @private
|
|
22662
22808
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -22725,10 +22871,21 @@ module Google
|
|
|
22725
22871
|
end
|
|
22726
22872
|
end
|
|
22727
22873
|
|
|
22874
|
+
class StoragePoolParams
|
|
22875
|
+
# @private
|
|
22876
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
22877
|
+
hash :resource_manager_tags, as: 'resourceManagerTags'
|
|
22878
|
+
end
|
|
22879
|
+
end
|
|
22880
|
+
|
|
22728
22881
|
class StoragePoolResourceStatus
|
|
22729
22882
|
# @private
|
|
22730
22883
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
22731
22884
|
property :disk_count, :numeric_string => true, as: 'diskCount'
|
|
22885
|
+
property :exapool_max_read_iops, :numeric_string => true, as: 'exapoolMaxReadIops'
|
|
22886
|
+
property :exapool_max_read_throughput, :numeric_string => true, as: 'exapoolMaxReadThroughput'
|
|
22887
|
+
property :exapool_max_write_iops, :numeric_string => true, as: 'exapoolMaxWriteIops'
|
|
22888
|
+
property :exapool_max_write_throughput, :numeric_string => true, as: 'exapoolMaxWriteThroughput'
|
|
22732
22889
|
property :last_resize_timestamp, as: 'lastResizeTimestamp'
|
|
22733
22890
|
property :max_total_provisioned_disk_capacity_gb, :numeric_string => true, as: 'maxTotalProvisionedDiskCapacityGb'
|
|
22734
22891
|
property :pool_used_capacity_bytes, :numeric_string => true, as: 'poolUsedCapacityBytes'
|
|
@@ -24727,6 +24884,7 @@ module Google
|
|
|
24727
24884
|
class VpnTunnel
|
|
24728
24885
|
# @private
|
|
24729
24886
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
24887
|
+
property :capacity_tier, as: 'capacityTier'
|
|
24730
24888
|
property :cipher_suite, as: 'cipherSuite', class: Google::Apis::ComputeBeta::VpnTunnelCipherSuite, decorator: Google::Apis::ComputeBeta::VpnTunnelCipherSuite::Representation
|
|
24731
24889
|
|
|
24732
24890
|
property :creation_timestamp, as: 'creationTimestamp'
|
|
@@ -41935,6 +41935,171 @@ module Google
|
|
|
41935
41935
|
execute_or_queue_command(command, &block)
|
|
41936
41936
|
end
|
|
41937
41937
|
|
|
41938
|
+
# Retrieves information about the specified multi-MIG member.
|
|
41939
|
+
# @param [String] project
|
|
41940
|
+
# Project ID for this request.
|
|
41941
|
+
# @param [String] region
|
|
41942
|
+
# Name of the region for this request. Region name should conform to RFC1035.
|
|
41943
|
+
# @param [String] multi_mig
|
|
41944
|
+
# The name of the multi-MIG.
|
|
41945
|
+
# Name should conform to RFC1035 or be a resource ID.
|
|
41946
|
+
# @param [String] multi_mig_member
|
|
41947
|
+
# The name of the multi-MIG member.
|
|
41948
|
+
# Name should conform to RFC1035 or be a resource ID.
|
|
41949
|
+
# @param [String] fields
|
|
41950
|
+
# Selector specifying which fields to include in a partial response.
|
|
41951
|
+
# @param [String] quota_user
|
|
41952
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
41953
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
41954
|
+
# @param [String] user_ip
|
|
41955
|
+
# Legacy name for parameter that has been superseded by `quotaUser`.
|
|
41956
|
+
# @param [Google::Apis::RequestOptions] options
|
|
41957
|
+
# Request-specific options
|
|
41958
|
+
#
|
|
41959
|
+
# @yield [result, err] Result & error if block supplied
|
|
41960
|
+
# @yieldparam result [Google::Apis::ComputeBeta::MultiMigMember] parsed result object
|
|
41961
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
41962
|
+
#
|
|
41963
|
+
# @return [Google::Apis::ComputeBeta::MultiMigMember]
|
|
41964
|
+
#
|
|
41965
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
41966
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
41967
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
41968
|
+
def get_region_multi_mig_member(project, region, multi_mig, multi_mig_member, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
|
41969
|
+
command = make_simple_command(:get, 'projects/{project}/regions/{region}/multiMigs/{multiMig}/multiMigMembers/{multiMigMember}', options)
|
|
41970
|
+
command.response_representation = Google::Apis::ComputeBeta::MultiMigMember::Representation
|
|
41971
|
+
command.response_class = Google::Apis::ComputeBeta::MultiMigMember
|
|
41972
|
+
command.params['project'] = project unless project.nil?
|
|
41973
|
+
command.params['region'] = region unless region.nil?
|
|
41974
|
+
command.params['multiMig'] = multi_mig unless multi_mig.nil?
|
|
41975
|
+
command.params['multiMigMember'] = multi_mig_member unless multi_mig_member.nil?
|
|
41976
|
+
command.query['fields'] = fields unless fields.nil?
|
|
41977
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
41978
|
+
command.query['userIp'] = user_ip unless user_ip.nil?
|
|
41979
|
+
execute_or_queue_command(command, &block)
|
|
41980
|
+
end
|
|
41981
|
+
|
|
41982
|
+
# Retrieves a list of members of a specific multi-MIG.
|
|
41983
|
+
# @param [String] project
|
|
41984
|
+
# Project ID for this request.
|
|
41985
|
+
# @param [String] region
|
|
41986
|
+
# Name of the region for this request. Region name should conform to RFC1035.
|
|
41987
|
+
# @param [String] multi_mig
|
|
41988
|
+
# The name of the multi-MIG.
|
|
41989
|
+
# Name should conform to RFC1035 or be a resource ID.
|
|
41990
|
+
# @param [String] filter
|
|
41991
|
+
# A filter expression that filters resources listed in the response. Most
|
|
41992
|
+
# Compute resources support two types of filter expressions:
|
|
41993
|
+
# expressions that support regular expressions and expressions that follow
|
|
41994
|
+
# API improvement proposal AIP-160.
|
|
41995
|
+
# These two types of filter expressions cannot be mixed in one request.
|
|
41996
|
+
# If you want to use AIP-160, your expression must specify the field name, an
|
|
41997
|
+
# operator, and the value that you want to use for filtering. The value
|
|
41998
|
+
# must be a string, a number, or a boolean. The operator
|
|
41999
|
+
# must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
|
|
42000
|
+
# For example, if you are filtering Compute Engine instances, you can
|
|
42001
|
+
# exclude instances named `example-instance` by specifying
|
|
42002
|
+
# `name != example-instance`.
|
|
42003
|
+
# The `:*` comparison can be used to test whether a key has been defined.
|
|
42004
|
+
# For example, to find all objects with `owner` label use:
|
|
42005
|
+
# ```
|
|
42006
|
+
# labels.owner:*
|
|
42007
|
+
# ```
|
|
42008
|
+
# You can also filter nested fields. For example, you could specify
|
|
42009
|
+
# `scheduling.automaticRestart = false` to include instances only
|
|
42010
|
+
# if they are not scheduled for automatic restarts. You can use filtering
|
|
42011
|
+
# on nested fields to filter based onresource labels.
|
|
42012
|
+
# To filter on multiple expressions, provide each separate expression within
|
|
42013
|
+
# parentheses. For example:
|
|
42014
|
+
# ```
|
|
42015
|
+
# (scheduling.automaticRestart = true)
|
|
42016
|
+
# (cpuPlatform = "Intel Skylake")
|
|
42017
|
+
# ```
|
|
42018
|
+
# By default, each expression is an `AND` expression. However, you
|
|
42019
|
+
# can include `AND` and `OR` expressions explicitly.
|
|
42020
|
+
# For example:
|
|
42021
|
+
# ```
|
|
42022
|
+
# (cpuPlatform = "Intel Skylake") OR
|
|
42023
|
+
# (cpuPlatform = "Intel Broadwell") AND
|
|
42024
|
+
# (scheduling.automaticRestart = true)
|
|
42025
|
+
# ```
|
|
42026
|
+
# If you want to use a regular expression, use the `eq` (equal) or `ne`
|
|
42027
|
+
# (not equal) operator against a single un-parenthesized expression with or
|
|
42028
|
+
# without quotes or against multiple parenthesized expressions. Examples:
|
|
42029
|
+
# `fieldname eq unquoted literal`
|
|
42030
|
+
# `fieldname eq 'single quoted literal'`
|
|
42031
|
+
# `fieldname eq "double quoted literal"`
|
|
42032
|
+
# `(fieldname1 eq literal) (fieldname2 ne "literal")`
|
|
42033
|
+
# The literal value is interpreted as a regular expression using GoogleRE2
|
|
42034
|
+
# library syntax.
|
|
42035
|
+
# The literal value must match the entire field.
|
|
42036
|
+
# For example, to filter for instances that do not end with name "instance",
|
|
42037
|
+
# you would use `name ne .*instance`.
|
|
42038
|
+
# You cannot combine constraints on multiple fields using regular
|
|
42039
|
+
# expressions.
|
|
42040
|
+
# @param [Fixnum] max_results
|
|
42041
|
+
# The maximum number of results per page that should be returned.
|
|
42042
|
+
# If the number of available results is larger than `maxResults`,
|
|
42043
|
+
# Compute Engine returns a `nextPageToken` that can be used to get
|
|
42044
|
+
# the next page of results in subsequent list requests. Acceptable values are
|
|
42045
|
+
# `0` to `500`, inclusive. (Default: `500`)
|
|
42046
|
+
# @param [String] order_by
|
|
42047
|
+
# Sorts list results by a certain order. By default, results
|
|
42048
|
+
# are returned in alphanumerical order based on the resource name.
|
|
42049
|
+
# You can also sort results in descending order based on the creation
|
|
42050
|
+
# timestamp using `orderBy="creationTimestamp desc"`. This sorts
|
|
42051
|
+
# results based on the `creationTimestamp` field in
|
|
42052
|
+
# reverse chronological order (newest result first). Use this to sort
|
|
42053
|
+
# resources like operations so that the newest operation is returned first.
|
|
42054
|
+
# Currently, only sorting by `name` or
|
|
42055
|
+
# `creationTimestamp desc` is supported.
|
|
42056
|
+
# @param [String] page_token
|
|
42057
|
+
# Specifies a page token to use. Set `pageToken` to the
|
|
42058
|
+
# `nextPageToken` returned by a previous list request to get
|
|
42059
|
+
# the next page of results.
|
|
42060
|
+
# @param [Boolean] return_partial_success
|
|
42061
|
+
# Opt-in for partial success behavior which provides partial results in case
|
|
42062
|
+
# of failure. The default value is false.
|
|
42063
|
+
# For example, when partial success behavior is enabled, aggregatedList for a
|
|
42064
|
+
# single zone scope either returns all resources in the zone or no resources,
|
|
42065
|
+
# with an error code.
|
|
42066
|
+
# @param [String] fields
|
|
42067
|
+
# Selector specifying which fields to include in a partial response.
|
|
42068
|
+
# @param [String] quota_user
|
|
42069
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
42070
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
42071
|
+
# @param [String] user_ip
|
|
42072
|
+
# Legacy name for parameter that has been superseded by `quotaUser`.
|
|
42073
|
+
# @param [Google::Apis::RequestOptions] options
|
|
42074
|
+
# Request-specific options
|
|
42075
|
+
#
|
|
42076
|
+
# @yield [result, err] Result & error if block supplied
|
|
42077
|
+
# @yieldparam result [Google::Apis::ComputeBeta::MultiMigMemberList] parsed result object
|
|
42078
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
42079
|
+
#
|
|
42080
|
+
# @return [Google::Apis::ComputeBeta::MultiMigMemberList]
|
|
42081
|
+
#
|
|
42082
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
42083
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
42084
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
42085
|
+
def list_region_multi_mig_members(project, region, multi_mig, filter: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
|
42086
|
+
command = make_simple_command(:get, 'projects/{project}/regions/{region}/multiMigs/{multiMig}/multiMigMembers', options)
|
|
42087
|
+
command.response_representation = Google::Apis::ComputeBeta::MultiMigMemberList::Representation
|
|
42088
|
+
command.response_class = Google::Apis::ComputeBeta::MultiMigMemberList
|
|
42089
|
+
command.params['project'] = project unless project.nil?
|
|
42090
|
+
command.params['region'] = region unless region.nil?
|
|
42091
|
+
command.params['multiMig'] = multi_mig unless multi_mig.nil?
|
|
42092
|
+
command.query['filter'] = filter unless filter.nil?
|
|
42093
|
+
command.query['maxResults'] = max_results unless max_results.nil?
|
|
42094
|
+
command.query['orderBy'] = order_by unless order_by.nil?
|
|
42095
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
|
42096
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
42097
|
+
command.query['fields'] = fields unless fields.nil?
|
|
42098
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
42099
|
+
command.query['userIp'] = user_ip unless user_ip.nil?
|
|
42100
|
+
execute_or_queue_command(command, &block)
|
|
42101
|
+
end
|
|
42102
|
+
|
|
41938
42103
|
# Deletes a multi-MIG in the specified project.
|
|
41939
42104
|
# @param [String] project
|
|
41940
42105
|
# Project ID for this request.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.130.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-compute_beta/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.130.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|