google-apis-compute_beta 0.129.0 → 0.131.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: e4371ddd742479b30c6c542ba60418f65e534d3aaeaafdbc803e6dde8b88e2d1
|
|
4
|
+
data.tar.gz: 8306da7b52dc2466a6014a96ace2b1a7ec329f8f5ca7832a526cbbd3748d74df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 676bac7cee183a7f59bdb7a1e3aa196b4e1e405dd016f7cfedac1ec60b5de7f50843df3eb17499552c91fbdaabbb63b3eeef0470344fe852b614ce0899f05d3b
|
|
7
|
+
data.tar.gz: e7449062ae6c744c5f782b0e3bd8ccea56a7f2b346669b97f5a3e3f4b02a0f2167196787b875689f33ededb0b341d361c03016ba5cd73a8237d02332cbd6c2a8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-compute_beta
|
|
2
2
|
|
|
3
|
+
### v0.131.0 (2026-01-18)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260106
|
|
6
|
+
|
|
7
|
+
### v0.130.0 (2026-01-11)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251230
|
|
10
|
+
|
|
3
11
|
### v0.129.0 (2025-12-14)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251210
|
|
@@ -7168,6 +7168,11 @@ module Google
|
|
|
7168
7168
|
# @return [Fixnum]
|
|
7169
7169
|
attr_accessor :count
|
|
7170
7170
|
|
|
7171
|
+
# A flexible specification of machine types for instances to create.
|
|
7172
|
+
# Corresponds to the JSON property `instanceFlexibilityPolicy`
|
|
7173
|
+
# @return [Google::Apis::ComputeBeta::InstanceFlexibilityPolicy]
|
|
7174
|
+
attr_accessor :instance_flexibility_policy
|
|
7175
|
+
|
|
7171
7176
|
# The instance properties defining the VM instances to be created. Required
|
|
7172
7177
|
# if sourceInstanceTemplate is not provided.
|
|
7173
7178
|
# Corresponds to the JSON property `instanceProperties`
|
|
@@ -7238,6 +7243,7 @@ module Google
|
|
|
7238
7243
|
# Update properties of this object
|
|
7239
7244
|
def update!(**args)
|
|
7240
7245
|
@count = args[:count] if args.key?(:count)
|
|
7246
|
+
@instance_flexibility_policy = args[:instance_flexibility_policy] if args.key?(:instance_flexibility_policy)
|
|
7241
7247
|
@instance_properties = args[:instance_properties] if args.key?(:instance_properties)
|
|
7242
7248
|
@location_policy = args[:location_policy] if args.key?(:location_policy)
|
|
7243
7249
|
@min_count = args[:min_count] if args.key?(:min_count)
|
|
@@ -21617,6 +21623,76 @@ module Google
|
|
|
21617
21623
|
end
|
|
21618
21624
|
end
|
|
21619
21625
|
|
|
21626
|
+
# A flexible specification of machine types for instances to create.
|
|
21627
|
+
class InstanceFlexibilityPolicy
|
|
21628
|
+
include Google::Apis::Core::Hashable
|
|
21629
|
+
|
|
21630
|
+
# Specification of alternative, flexible instance subsets.
|
|
21631
|
+
# One of them will be selected to create the instances
|
|
21632
|
+
# based on various criteria, like:
|
|
21633
|
+
# - ranks,
|
|
21634
|
+
# - location policy,
|
|
21635
|
+
# - current capacity,
|
|
21636
|
+
# - available reservations (you can specify affinity in
|
|
21637
|
+
# InstanceProperties),
|
|
21638
|
+
# - SWAN/GOOSE limitations.
|
|
21639
|
+
# Key is an arbitrary, unique RFC1035 string that identifies the instance
|
|
21640
|
+
# selection.
|
|
21641
|
+
# Corresponds to the JSON property `instanceSelections`
|
|
21642
|
+
# @return [Hash<String,Google::Apis::ComputeBeta::InstanceFlexibilityPolicyInstanceSelection>]
|
|
21643
|
+
attr_accessor :instance_selections
|
|
21644
|
+
|
|
21645
|
+
def initialize(**args)
|
|
21646
|
+
update!(**args)
|
|
21647
|
+
end
|
|
21648
|
+
|
|
21649
|
+
# Update properties of this object
|
|
21650
|
+
def update!(**args)
|
|
21651
|
+
@instance_selections = args[:instance_selections] if args.key?(:instance_selections)
|
|
21652
|
+
end
|
|
21653
|
+
end
|
|
21654
|
+
|
|
21655
|
+
# Specification of machine type to use. Every position inside this message
|
|
21656
|
+
# is an alternative.
|
|
21657
|
+
# The count specified in the shape flexibility must not exceed the number
|
|
21658
|
+
# of entries in per_instance_properties or the capacity of the
|
|
21659
|
+
# name_pattern, if used.
|
|
21660
|
+
class InstanceFlexibilityPolicyInstanceSelection
|
|
21661
|
+
include Google::Apis::Core::Hashable
|
|
21662
|
+
|
|
21663
|
+
# Disks to be attached to the instances created from in this selection.
|
|
21664
|
+
# They override the disks specified in the instance properties.
|
|
21665
|
+
# Corresponds to the JSON property `disks`
|
|
21666
|
+
# @return [Array<Google::Apis::ComputeBeta::AttachedDisk>]
|
|
21667
|
+
attr_accessor :disks
|
|
21668
|
+
|
|
21669
|
+
# Alternative machine types to use for instances that are created from
|
|
21670
|
+
# these properties. This field only accepts a machine type names, for
|
|
21671
|
+
# example `n2-standard-4` and not URLs or partial URLs.
|
|
21672
|
+
# Corresponds to the JSON property `machineTypes`
|
|
21673
|
+
# @return [Array<String>]
|
|
21674
|
+
attr_accessor :machine_types
|
|
21675
|
+
|
|
21676
|
+
# Rank when prioritizing the shape flexibilities.
|
|
21677
|
+
# The instance selections with rank are considered
|
|
21678
|
+
# first, in the ascending order of the rank.
|
|
21679
|
+
# If not set, defaults to 0.
|
|
21680
|
+
# Corresponds to the JSON property `rank`
|
|
21681
|
+
# @return [Fixnum]
|
|
21682
|
+
attr_accessor :rank
|
|
21683
|
+
|
|
21684
|
+
def initialize(**args)
|
|
21685
|
+
update!(**args)
|
|
21686
|
+
end
|
|
21687
|
+
|
|
21688
|
+
# Update properties of this object
|
|
21689
|
+
def update!(**args)
|
|
21690
|
+
@disks = args[:disks] if args.key?(:disks)
|
|
21691
|
+
@machine_types = args[:machine_types] if args.key?(:machine_types)
|
|
21692
|
+
@rank = args[:rank] if args.key?(:rank)
|
|
21693
|
+
end
|
|
21694
|
+
end
|
|
21695
|
+
|
|
21620
21696
|
# Represents an Instance Group resource.
|
|
21621
21697
|
# Instance Groups can be used to configure a target forload
|
|
21622
21698
|
# balancing.
|
|
@@ -28041,6 +28117,7 @@ module Google
|
|
|
28041
28117
|
# - BPS_20G: 20 Gbit/s
|
|
28042
28118
|
# - BPS_50G: 50 Gbit/s
|
|
28043
28119
|
# - BPS_100G: 100 Gbit/s
|
|
28120
|
+
# - BPS_400G: 400 Gbit/s
|
|
28044
28121
|
# Corresponds to the JSON property `bandwidth`
|
|
28045
28122
|
# @return [String]
|
|
28046
28123
|
attr_accessor :bandwidth
|
|
@@ -32194,6 +32271,11 @@ module Google
|
|
|
32194
32271
|
attr_accessor :os_license
|
|
32195
32272
|
alias_method :os_license?, :os_license
|
|
32196
32273
|
|
|
32274
|
+
# Additional license params.
|
|
32275
|
+
# Corresponds to the JSON property `params`
|
|
32276
|
+
# @return [Google::Apis::ComputeBeta::LicenseParams]
|
|
32277
|
+
attr_accessor :params
|
|
32278
|
+
|
|
32197
32279
|
# If true, this license can be removed from a disk's set of licenses, with no
|
|
32198
32280
|
# replacement license needed.
|
|
32199
32281
|
# Corresponds to the JSON property `removableFromDisk`
|
|
@@ -32262,6 +32344,7 @@ module Google
|
|
|
32262
32344
|
@multi_tenant_only = args[:multi_tenant_only] if args.key?(:multi_tenant_only)
|
|
32263
32345
|
@name = args[:name] if args.key?(:name)
|
|
32264
32346
|
@os_license = args[:os_license] if args.key?(:os_license)
|
|
32347
|
+
@params = args[:params] if args.key?(:params)
|
|
32265
32348
|
@removable_from_disk = args[:removable_from_disk] if args.key?(:removable_from_disk)
|
|
32266
32349
|
@required_coattached_licenses = args[:required_coattached_licenses] if args.key?(:required_coattached_licenses)
|
|
32267
32350
|
@resource_requirements = args[:resource_requirements] if args.key?(:resource_requirements)
|
|
@@ -32380,6 +32463,32 @@ module Google
|
|
|
32380
32463
|
end
|
|
32381
32464
|
end
|
|
32382
32465
|
|
|
32466
|
+
# Additional license params.
|
|
32467
|
+
class LicenseParams
|
|
32468
|
+
include Google::Apis::Core::Hashable
|
|
32469
|
+
|
|
32470
|
+
# Input only. Resource manager tags to be bound to the license. Tag keys and
|
|
32471
|
+
# values
|
|
32472
|
+
# have the same definition as resource
|
|
32473
|
+
# manager tags. Keys and values can be either in numeric format,
|
|
32474
|
+
# such as `tagKeys/`tag_key_id`` and `tagValues/456` or in namespaced
|
|
32475
|
+
# format such as ``org_id|project_id`/`tag_key_short_name`` and
|
|
32476
|
+
# ``tag_value_short_name``. The field is ignored (both PUT &
|
|
32477
|
+
# PATCH) when empty.
|
|
32478
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
|
32479
|
+
# @return [Hash<String,String>]
|
|
32480
|
+
attr_accessor :resource_manager_tags
|
|
32481
|
+
|
|
32482
|
+
def initialize(**args)
|
|
32483
|
+
update!(**args)
|
|
32484
|
+
end
|
|
32485
|
+
|
|
32486
|
+
# Update properties of this object
|
|
32487
|
+
def update!(**args)
|
|
32488
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
|
32489
|
+
end
|
|
32490
|
+
end
|
|
32491
|
+
|
|
32383
32492
|
# Commitment for a particular license resource.
|
|
32384
32493
|
class LicenseResourceCommitment
|
|
32385
32494
|
include Google::Apis::Core::Hashable
|
|
@@ -34155,6 +34264,210 @@ module Google
|
|
|
34155
34264
|
end
|
|
34156
34265
|
end
|
|
34157
34266
|
|
|
34267
|
+
# Represents a Multi-MIG member resource.
|
|
34268
|
+
class MultiMigMember
|
|
34269
|
+
include Google::Apis::Core::Hashable
|
|
34270
|
+
|
|
34271
|
+
# Output only. [Output Only] Creation timestamp of this multi-MIG member
|
|
34272
|
+
# inRFC3339 text format.
|
|
34273
|
+
# Corresponds to the JSON property `creationTimestamp`
|
|
34274
|
+
# @return [String]
|
|
34275
|
+
attr_accessor :creation_timestamp
|
|
34276
|
+
|
|
34277
|
+
# Output only. [Output only] The unique identifier for this resource type. The
|
|
34278
|
+
# server
|
|
34279
|
+
# generates this identifier.
|
|
34280
|
+
# Corresponds to the JSON property `id`
|
|
34281
|
+
# @return [Fixnum]
|
|
34282
|
+
attr_accessor :id
|
|
34283
|
+
|
|
34284
|
+
# Output only. Type of the resource. Alwayscompute#multiMigMember for a list of
|
|
34285
|
+
# multi-MIG members.
|
|
34286
|
+
# Corresponds to the JSON property `kind`
|
|
34287
|
+
# @return [String]
|
|
34288
|
+
attr_accessor :kind
|
|
34289
|
+
|
|
34290
|
+
# Output only. [Output Only] Server-defined name for the multi-MIG member.
|
|
34291
|
+
# Corresponds to the JSON property `name`
|
|
34292
|
+
# @return [String]
|
|
34293
|
+
attr_accessor :name
|
|
34294
|
+
|
|
34295
|
+
# Output only. [Output Only] The URL of the region where the multi-MIG resides.
|
|
34296
|
+
# Corresponds to the JSON property `region`
|
|
34297
|
+
# @return [String]
|
|
34298
|
+
attr_accessor :region
|
|
34299
|
+
|
|
34300
|
+
# Output only. [Output Only] Server-defined fully-qualified URL for this
|
|
34301
|
+
# resource.
|
|
34302
|
+
# Corresponds to the JSON property `selfLink`
|
|
34303
|
+
# @return [String]
|
|
34304
|
+
attr_accessor :self_link
|
|
34305
|
+
|
|
34306
|
+
# Output only. [Output Only] The status of this multi-MIG member
|
|
34307
|
+
# Corresponds to the JSON property `status`
|
|
34308
|
+
# @return [Google::Apis::ComputeBeta::MultiMigMemberStatus]
|
|
34309
|
+
attr_accessor :status
|
|
34310
|
+
|
|
34311
|
+
def initialize(**args)
|
|
34312
|
+
update!(**args)
|
|
34313
|
+
end
|
|
34314
|
+
|
|
34315
|
+
# Update properties of this object
|
|
34316
|
+
def update!(**args)
|
|
34317
|
+
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
34318
|
+
@id = args[:id] if args.key?(:id)
|
|
34319
|
+
@kind = args[:kind] if args.key?(:kind)
|
|
34320
|
+
@name = args[:name] if args.key?(:name)
|
|
34321
|
+
@region = args[:region] if args.key?(:region)
|
|
34322
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
|
34323
|
+
@status = args[:status] if args.key?(:status)
|
|
34324
|
+
end
|
|
34325
|
+
end
|
|
34326
|
+
|
|
34327
|
+
#
|
|
34328
|
+
class MultiMigMemberList
|
|
34329
|
+
include Google::Apis::Core::Hashable
|
|
34330
|
+
|
|
34331
|
+
# Unique identifier for the resource; defined by the server.
|
|
34332
|
+
# Corresponds to the JSON property `id`
|
|
34333
|
+
# @return [String]
|
|
34334
|
+
attr_accessor :id
|
|
34335
|
+
|
|
34336
|
+
# A list of multi-MIG member resources.
|
|
34337
|
+
# Corresponds to the JSON property `items`
|
|
34338
|
+
# @return [Array<Google::Apis::ComputeBeta::MultiMigMember>]
|
|
34339
|
+
attr_accessor :items
|
|
34340
|
+
|
|
34341
|
+
# Output only. Type of the resource. Alwayscompute#multiMigMember for a list of
|
|
34342
|
+
# multi-MIG members.
|
|
34343
|
+
# Corresponds to the JSON property `kind`
|
|
34344
|
+
# @return [String]
|
|
34345
|
+
attr_accessor :kind
|
|
34346
|
+
|
|
34347
|
+
# This token allows you to get the next page of results for
|
|
34348
|
+
# list requests. If the number of results is larger thanmaxResults, use the
|
|
34349
|
+
# nextPageToken as a value for
|
|
34350
|
+
# the query parameter pageToken in the next list request.
|
|
34351
|
+
# Subsequent list requests will have their own nextPageToken to
|
|
34352
|
+
# continue paging through the results.
|
|
34353
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
34354
|
+
# @return [String]
|
|
34355
|
+
attr_accessor :next_page_token
|
|
34356
|
+
|
|
34357
|
+
# Output only. [Output only] Server-defined URL for this resource.
|
|
34358
|
+
# Corresponds to the JSON property `selfLink`
|
|
34359
|
+
# @return [String]
|
|
34360
|
+
attr_accessor :self_link
|
|
34361
|
+
|
|
34362
|
+
# Informational warning message.
|
|
34363
|
+
# Corresponds to the JSON property `warning`
|
|
34364
|
+
# @return [Google::Apis::ComputeBeta::MultiMigMemberList::Warning]
|
|
34365
|
+
attr_accessor :warning
|
|
34366
|
+
|
|
34367
|
+
def initialize(**args)
|
|
34368
|
+
update!(**args)
|
|
34369
|
+
end
|
|
34370
|
+
|
|
34371
|
+
# Update properties of this object
|
|
34372
|
+
def update!(**args)
|
|
34373
|
+
@id = args[:id] if args.key?(:id)
|
|
34374
|
+
@items = args[:items] if args.key?(:items)
|
|
34375
|
+
@kind = args[:kind] if args.key?(:kind)
|
|
34376
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
34377
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
|
34378
|
+
@warning = args[:warning] if args.key?(:warning)
|
|
34379
|
+
end
|
|
34380
|
+
|
|
34381
|
+
# Informational warning message.
|
|
34382
|
+
class Warning
|
|
34383
|
+
include Google::Apis::Core::Hashable
|
|
34384
|
+
|
|
34385
|
+
# [Output Only] A warning code, if applicable. For example, Compute
|
|
34386
|
+
# Engine returns NO_RESULTS_ON_PAGE if there
|
|
34387
|
+
# are no results in the response.
|
|
34388
|
+
# Corresponds to the JSON property `code`
|
|
34389
|
+
# @return [String]
|
|
34390
|
+
attr_accessor :code
|
|
34391
|
+
|
|
34392
|
+
# [Output Only] Metadata about this warning in key:
|
|
34393
|
+
# value format. For example:
|
|
34394
|
+
# "data": [
|
|
34395
|
+
# `
|
|
34396
|
+
# "key": "scope",
|
|
34397
|
+
# "value": "zones/us-east1-d"
|
|
34398
|
+
# `
|
|
34399
|
+
# Corresponds to the JSON property `data`
|
|
34400
|
+
# @return [Array<Google::Apis::ComputeBeta::MultiMigMemberList::Warning::Datum>]
|
|
34401
|
+
attr_accessor :data
|
|
34402
|
+
|
|
34403
|
+
# [Output Only] A human-readable description of the warning code.
|
|
34404
|
+
# Corresponds to the JSON property `message`
|
|
34405
|
+
# @return [String]
|
|
34406
|
+
attr_accessor :message
|
|
34407
|
+
|
|
34408
|
+
def initialize(**args)
|
|
34409
|
+
update!(**args)
|
|
34410
|
+
end
|
|
34411
|
+
|
|
34412
|
+
# Update properties of this object
|
|
34413
|
+
def update!(**args)
|
|
34414
|
+
@code = args[:code] if args.key?(:code)
|
|
34415
|
+
@data = args[:data] if args.key?(:data)
|
|
34416
|
+
@message = args[:message] if args.key?(:message)
|
|
34417
|
+
end
|
|
34418
|
+
|
|
34419
|
+
#
|
|
34420
|
+
class Datum
|
|
34421
|
+
include Google::Apis::Core::Hashable
|
|
34422
|
+
|
|
34423
|
+
# [Output Only] A key that provides more detail on the warning being
|
|
34424
|
+
# returned. For example, for warnings where there are no results in a list
|
|
34425
|
+
# request for a particular zone, this key might be scope and
|
|
34426
|
+
# the key value might be the zone name. Other examples might be a key
|
|
34427
|
+
# indicating a deprecated resource and a suggested replacement, or a
|
|
34428
|
+
# warning about invalid network settings (for example, if an instance
|
|
34429
|
+
# attempts to perform IP forwarding but is not enabled for IP forwarding).
|
|
34430
|
+
# Corresponds to the JSON property `key`
|
|
34431
|
+
# @return [String]
|
|
34432
|
+
attr_accessor :key
|
|
34433
|
+
|
|
34434
|
+
# [Output Only] A warning data value corresponding to the key.
|
|
34435
|
+
# Corresponds to the JSON property `value`
|
|
34436
|
+
# @return [String]
|
|
34437
|
+
attr_accessor :value
|
|
34438
|
+
|
|
34439
|
+
def initialize(**args)
|
|
34440
|
+
update!(**args)
|
|
34441
|
+
end
|
|
34442
|
+
|
|
34443
|
+
# Update properties of this object
|
|
34444
|
+
def update!(**args)
|
|
34445
|
+
@key = args[:key] if args.key?(:key)
|
|
34446
|
+
@value = args[:value] if args.key?(:value)
|
|
34447
|
+
end
|
|
34448
|
+
end
|
|
34449
|
+
end
|
|
34450
|
+
end
|
|
34451
|
+
|
|
34452
|
+
#
|
|
34453
|
+
class MultiMigMemberStatus
|
|
34454
|
+
include Google::Apis::Core::Hashable
|
|
34455
|
+
|
|
34456
|
+
# [Output Only] URL of member instance group manager
|
|
34457
|
+
# Corresponds to the JSON property `instanceGroupManager`
|
|
34458
|
+
# @return [String]
|
|
34459
|
+
attr_accessor :instance_group_manager
|
|
34460
|
+
|
|
34461
|
+
def initialize(**args)
|
|
34462
|
+
update!(**args)
|
|
34463
|
+
end
|
|
34464
|
+
|
|
34465
|
+
# Update properties of this object
|
|
34466
|
+
def update!(**args)
|
|
34467
|
+
@instance_group_manager = args[:instance_group_manager] if args.key?(:instance_group_manager)
|
|
34468
|
+
end
|
|
34469
|
+
end
|
|
34470
|
+
|
|
34158
34471
|
# Resource policies message for a multi-MIG. Specifies the workload policy
|
|
34159
34472
|
# configuration of the multi-MIG.
|
|
34160
34473
|
class MultiMigResourcePolicies
|
|
@@ -34193,6 +34506,13 @@ module Google
|
|
|
34193
34506
|
# @return [Array<Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopology>]
|
|
34194
34507
|
attr_accessor :applied_accelerator_topologies
|
|
34195
34508
|
|
|
34509
|
+
# Output only. [Output Only] The number of instance group manager members in
|
|
34510
|
+
# this
|
|
34511
|
+
# multi-MIG.
|
|
34512
|
+
# Corresponds to the JSON property `membersCount`
|
|
34513
|
+
# @return [Fixnum]
|
|
34514
|
+
attr_accessor :members_count
|
|
34515
|
+
|
|
34196
34516
|
def initialize(**args)
|
|
34197
34517
|
update!(**args)
|
|
34198
34518
|
end
|
|
@@ -34200,6 +34520,7 @@ module Google
|
|
|
34200
34520
|
# Update properties of this object
|
|
34201
34521
|
def update!(**args)
|
|
34202
34522
|
@applied_accelerator_topologies = args[:applied_accelerator_topologies] if args.key?(:applied_accelerator_topologies)
|
|
34523
|
+
@members_count = args[:members_count] if args.key?(:members_count)
|
|
34203
34524
|
end
|
|
34204
34525
|
end
|
|
34205
34526
|
|
|
@@ -37030,6 +37351,11 @@ module Google
|
|
|
37030
37351
|
# @return [String]
|
|
37031
37352
|
attr_accessor :kind
|
|
37032
37353
|
|
|
37354
|
+
# Output only. [Output Only] MAC address assigned to this network interface.
|
|
37355
|
+
# Corresponds to the JSON property `macAddress`
|
|
37356
|
+
# @return [String]
|
|
37357
|
+
attr_accessor :mac_address
|
|
37358
|
+
|
|
37033
37359
|
# [Output Only] The name of the network interface, which is generated by the
|
|
37034
37360
|
# server. For a VM, the network interface uses the nicN naming
|
|
37035
37361
|
# format. Where N is a value between 0 and7. The default interface value is nic0.
|
|
@@ -37134,6 +37460,7 @@ module Google
|
|
|
37134
37460
|
@ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
|
|
37135
37461
|
@ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
|
|
37136
37462
|
@kind = args[:kind] if args.key?(:kind)
|
|
37463
|
+
@mac_address = args[:mac_address] if args.key?(:mac_address)
|
|
37137
37464
|
@name = args[:name] if args.key?(:name)
|
|
37138
37465
|
@network = args[:network] if args.key?(:network)
|
|
37139
37466
|
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
|
@@ -38388,6 +38715,11 @@ module Google
|
|
|
38388
38715
|
# @return [Array<String>]
|
|
38389
38716
|
attr_accessor :address_purposes
|
|
38390
38717
|
|
|
38718
|
+
# Specifies whether address creation is allowed.
|
|
38719
|
+
# Corresponds to the JSON property `allowAddressCreation`
|
|
38720
|
+
# @return [String]
|
|
38721
|
+
attr_accessor :allow_address_creation
|
|
38722
|
+
|
|
38391
38723
|
# Specifies whether alias IP ranges (and secondary address ranges) are
|
|
38392
38724
|
# allowed.
|
|
38393
38725
|
# Corresponds to the JSON property `allowAliasIpRanges`
|
|
@@ -38450,6 +38782,11 @@ module Google
|
|
|
38450
38782
|
# @return [String]
|
|
38451
38783
|
attr_accessor :allow_multi_nic_in_same_network
|
|
38452
38784
|
|
|
38785
|
+
# Specifies whether multi-nic in the same subnetwork is allowed.
|
|
38786
|
+
# Corresponds to the JSON property `allowMultiNicInSameSubnetwork`
|
|
38787
|
+
# @return [String]
|
|
38788
|
+
attr_accessor :allow_multi_nic_in_same_subnetwork
|
|
38789
|
+
|
|
38453
38790
|
# Specifies whether multicast is allowed.
|
|
38454
38791
|
# Corresponds to the JSON property `allowMulticast`
|
|
38455
38792
|
# @return [String]
|
|
@@ -38495,6 +38832,16 @@ module Google
|
|
|
38495
38832
|
# @return [String]
|
|
38496
38833
|
attr_accessor :allow_sub_interfaces
|
|
38497
38834
|
|
|
38835
|
+
# Specifies whether subnetwork creation is allowed.
|
|
38836
|
+
# Corresponds to the JSON property `allowSubnetworkCreation`
|
|
38837
|
+
# @return [String]
|
|
38838
|
+
attr_accessor :allow_subnetwork_creation
|
|
38839
|
+
|
|
38840
|
+
# Specifies whether VPC firewall rules can be created under the network.
|
|
38841
|
+
# Corresponds to the JSON property `allowVpcFirewallRules`
|
|
38842
|
+
# @return [String]
|
|
38843
|
+
attr_accessor :allow_vpc_firewall_rules
|
|
38844
|
+
|
|
38498
38845
|
# Specifies whether VPC peering is allowed.
|
|
38499
38846
|
# Corresponds to the JSON property `allowVpcPeering`
|
|
38500
38847
|
# @return [String]
|
|
@@ -38521,6 +38868,16 @@ module Google
|
|
|
38521
38868
|
# @return [String]
|
|
38522
38869
|
attr_accessor :multicast
|
|
38523
38870
|
|
|
38871
|
+
# Specifies a predefined internal IPv6 range for the network.
|
|
38872
|
+
# Corresponds to the JSON property `predefinedNetworkInternalIpv6Range`
|
|
38873
|
+
# @return [String]
|
|
38874
|
+
attr_accessor :predefined_network_internal_ipv6_range
|
|
38875
|
+
|
|
38876
|
+
# Predefined subnetwork ranges for the network.
|
|
38877
|
+
# Corresponds to the JSON property `predefinedSubnetworkRanges`
|
|
38878
|
+
# @return [Array<Google::Apis::ComputeBeta::NetworkProfileNetworkFeaturesPredefinedSubnetworkRange>]
|
|
38879
|
+
attr_accessor :predefined_subnetwork_ranges
|
|
38880
|
+
|
|
38524
38881
|
# Specifies which subnetwork purposes are supported.
|
|
38525
38882
|
# Corresponds to the JSON property `subnetPurposes`
|
|
38526
38883
|
# @return [Array<String>]
|
|
@@ -38553,6 +38910,7 @@ module Google
|
|
|
38553
38910
|
# Update properties of this object
|
|
38554
38911
|
def update!(**args)
|
|
38555
38912
|
@address_purposes = args[:address_purposes] if args.key?(:address_purposes)
|
|
38913
|
+
@allow_address_creation = args[:allow_address_creation] if args.key?(:allow_address_creation)
|
|
38556
38914
|
@allow_alias_ip_ranges = args[:allow_alias_ip_ranges] if args.key?(:allow_alias_ip_ranges)
|
|
38557
38915
|
@allow_auto_mode_subnet = args[:allow_auto_mode_subnet] if args.key?(:allow_auto_mode_subnet)
|
|
38558
38916
|
@allow_class_d_firewalls = args[:allow_class_d_firewalls] if args.key?(:allow_class_d_firewalls)
|
|
@@ -38565,6 +38923,7 @@ module Google
|
|
|
38565
38923
|
@allow_ip_forwarding = args[:allow_ip_forwarding] if args.key?(:allow_ip_forwarding)
|
|
38566
38924
|
@allow_load_balancing = args[:allow_load_balancing] if args.key?(:allow_load_balancing)
|
|
38567
38925
|
@allow_multi_nic_in_same_network = args[:allow_multi_nic_in_same_network] if args.key?(:allow_multi_nic_in_same_network)
|
|
38926
|
+
@allow_multi_nic_in_same_subnetwork = args[:allow_multi_nic_in_same_subnetwork] if args.key?(:allow_multi_nic_in_same_subnetwork)
|
|
38568
38927
|
@allow_multicast = args[:allow_multicast] if args.key?(:allow_multicast)
|
|
38569
38928
|
@allow_ncc = args[:allow_ncc] if args.key?(:allow_ncc)
|
|
38570
38929
|
@allow_network_migration = args[:allow_network_migration] if args.key?(:allow_network_migration)
|
|
@@ -38574,11 +38933,15 @@ module Google
|
|
|
38574
38933
|
@allow_same_network_unicast = args[:allow_same_network_unicast] if args.key?(:allow_same_network_unicast)
|
|
38575
38934
|
@allow_static_routes = args[:allow_static_routes] if args.key?(:allow_static_routes)
|
|
38576
38935
|
@allow_sub_interfaces = args[:allow_sub_interfaces] if args.key?(:allow_sub_interfaces)
|
|
38936
|
+
@allow_subnetwork_creation = args[:allow_subnetwork_creation] if args.key?(:allow_subnetwork_creation)
|
|
38937
|
+
@allow_vpc_firewall_rules = args[:allow_vpc_firewall_rules] if args.key?(:allow_vpc_firewall_rules)
|
|
38577
38938
|
@allow_vpc_peering = args[:allow_vpc_peering] if args.key?(:allow_vpc_peering)
|
|
38578
38939
|
@allow_vpn = args[:allow_vpn] if args.key?(:allow_vpn)
|
|
38579
38940
|
@firewall_policy_types = args[:firewall_policy_types] if args.key?(:firewall_policy_types)
|
|
38580
38941
|
@interface_types = args[:interface_types] if args.key?(:interface_types)
|
|
38581
38942
|
@multicast = args[:multicast] if args.key?(:multicast)
|
|
38943
|
+
@predefined_network_internal_ipv6_range = args[:predefined_network_internal_ipv6_range] if args.key?(:predefined_network_internal_ipv6_range)
|
|
38944
|
+
@predefined_subnetwork_ranges = args[:predefined_subnetwork_ranges] if args.key?(:predefined_subnetwork_ranges)
|
|
38582
38945
|
@subnet_purposes = args[:subnet_purposes] if args.key?(:subnet_purposes)
|
|
38583
38946
|
@subnet_stack_types = args[:subnet_stack_types] if args.key?(:subnet_stack_types)
|
|
38584
38947
|
@subnetwork_purposes = args[:subnetwork_purposes] if args.key?(:subnetwork_purposes)
|
|
@@ -38587,6 +38950,31 @@ module Google
|
|
|
38587
38950
|
end
|
|
38588
38951
|
end
|
|
38589
38952
|
|
|
38953
|
+
#
|
|
38954
|
+
class NetworkProfileNetworkFeaturesPredefinedSubnetworkRange
|
|
38955
|
+
include Google::Apis::Core::Hashable
|
|
38956
|
+
|
|
38957
|
+
# The IPv6 range of the predefined subnetwork.
|
|
38958
|
+
# Corresponds to the JSON property `ipv6Range`
|
|
38959
|
+
# @return [String]
|
|
38960
|
+
attr_accessor :ipv6_range
|
|
38961
|
+
|
|
38962
|
+
# The naming prefix of the predefined subnetwork.
|
|
38963
|
+
# Corresponds to the JSON property `namePrefix`
|
|
38964
|
+
# @return [String]
|
|
38965
|
+
attr_accessor :name_prefix
|
|
38966
|
+
|
|
38967
|
+
def initialize(**args)
|
|
38968
|
+
update!(**args)
|
|
38969
|
+
end
|
|
38970
|
+
|
|
38971
|
+
# Update properties of this object
|
|
38972
|
+
def update!(**args)
|
|
38973
|
+
@ipv6_range = args[:ipv6_range] if args.key?(:ipv6_range)
|
|
38974
|
+
@name_prefix = args[:name_prefix] if args.key?(:name_prefix)
|
|
38975
|
+
end
|
|
38976
|
+
end
|
|
38977
|
+
|
|
38590
38978
|
#
|
|
38591
38979
|
class NetworkProfileProfileType
|
|
38592
38980
|
include Google::Apis::Core::Hashable
|
|
@@ -59902,6 +60290,11 @@ module Google
|
|
|
59902
60290
|
# @return [String]
|
|
59903
60291
|
attr_accessor :name
|
|
59904
60292
|
|
|
60293
|
+
# Additional storage pool params.
|
|
60294
|
+
# Corresponds to the JSON property `params`
|
|
60295
|
+
# @return [Google::Apis::ComputeBeta::StoragePoolParams]
|
|
60296
|
+
attr_accessor :params
|
|
60297
|
+
|
|
59905
60298
|
# Provisioning type of the performance-related parameters of the pool,
|
|
59906
60299
|
# such as throughput and IOPS.
|
|
59907
60300
|
# Corresponds to the JSON property `performanceProvisioningType`
|
|
@@ -59986,6 +60379,7 @@ module Google
|
|
|
59986
60379
|
@label_fingerprint = args[:label_fingerprint] if args.key?(:label_fingerprint)
|
|
59987
60380
|
@labels = args[:labels] if args.key?(:labels)
|
|
59988
60381
|
@name = args[:name] if args.key?(:name)
|
|
60382
|
+
@params = args[:params] if args.key?(:params)
|
|
59989
60383
|
@performance_provisioning_type = args[:performance_provisioning_type] if args.key?(:performance_provisioning_type)
|
|
59990
60384
|
@pool_provisioned_capacity_gb = args[:pool_provisioned_capacity_gb] if args.key?(:pool_provisioned_capacity_gb)
|
|
59991
60385
|
@pool_provisioned_iops = args[:pool_provisioned_iops] if args.key?(:pool_provisioned_iops)
|
|
@@ -60533,6 +60927,32 @@ module Google
|
|
|
60533
60927
|
end
|
|
60534
60928
|
end
|
|
60535
60929
|
|
|
60930
|
+
# Additional storage pool params.
|
|
60931
|
+
class StoragePoolParams
|
|
60932
|
+
include Google::Apis::Core::Hashable
|
|
60933
|
+
|
|
60934
|
+
# Input only. Resource manager tags to be bound to the storage pool. Tag keys
|
|
60935
|
+
# and values
|
|
60936
|
+
# have the same definition as resource
|
|
60937
|
+
# manager tags. Keys and values can be either in numeric format,
|
|
60938
|
+
# such as `tagKeys/`tag_key_id`` and `tagValues/456` or in namespaced
|
|
60939
|
+
# format such as ``org_id|project_id`/`tag_key_short_name`` and
|
|
60940
|
+
# ``tag_value_short_name``. The field is ignored (both PUT &
|
|
60941
|
+
# PATCH) when empty.
|
|
60942
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
|
60943
|
+
# @return [Hash<String,String>]
|
|
60944
|
+
attr_accessor :resource_manager_tags
|
|
60945
|
+
|
|
60946
|
+
def initialize(**args)
|
|
60947
|
+
update!(**args)
|
|
60948
|
+
end
|
|
60949
|
+
|
|
60950
|
+
# Update properties of this object
|
|
60951
|
+
def update!(**args)
|
|
60952
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
|
60953
|
+
end
|
|
60954
|
+
end
|
|
60955
|
+
|
|
60536
60956
|
# [Output Only] Contains output only fields.
|
|
60537
60957
|
class StoragePoolResourceStatus
|
|
60538
60958
|
include Google::Apis::Core::Hashable
|
|
@@ -69104,6 +69524,12 @@ module Google
|
|
|
69104
69524
|
class VpnTunnel
|
|
69105
69525
|
include Google::Apis::Core::Hashable
|
|
69106
69526
|
|
|
69527
|
+
# Capacity tier of the VPN tunnel. This is used for IPsec over Interconnect
|
|
69528
|
+
# tunnels to indicate different bandwidth limits.
|
|
69529
|
+
# Corresponds to the JSON property `capacityTier`
|
|
69530
|
+
# @return [String]
|
|
69531
|
+
attr_accessor :capacity_tier
|
|
69532
|
+
|
|
69107
69533
|
# User specified list of ciphers to use for the phase 1 and phase 2 of the
|
|
69108
69534
|
# IKE protocol.
|
|
69109
69535
|
# Corresponds to the JSON property `cipherSuite`
|
|
@@ -69319,6 +69745,7 @@ module Google
|
|
|
69319
69745
|
|
|
69320
69746
|
# Update properties of this object
|
|
69321
69747
|
def update!(**args)
|
|
69748
|
+
@capacity_tier = args[:capacity_tier] if args.key?(:capacity_tier)
|
|
69322
69749
|
@cipher_suite = args[:cipher_suite] if args.key?(:cipher_suite)
|
|
69323
69750
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
69324
69751
|
@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.131.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 = "20260106"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2380,6 +2380,18 @@ module Google
|
|
|
2380
2380
|
include Google::Apis::Core::JsonObjectSupport
|
|
2381
2381
|
end
|
|
2382
2382
|
|
|
2383
|
+
class InstanceFlexibilityPolicy
|
|
2384
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2385
|
+
|
|
2386
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2387
|
+
end
|
|
2388
|
+
|
|
2389
|
+
class InstanceFlexibilityPolicyInstanceSelection
|
|
2390
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2391
|
+
|
|
2392
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2393
|
+
end
|
|
2394
|
+
|
|
2383
2395
|
class InstanceGroup
|
|
2384
2396
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2385
2397
|
|
|
@@ -3814,6 +3826,12 @@ module Google
|
|
|
3814
3826
|
include Google::Apis::Core::JsonObjectSupport
|
|
3815
3827
|
end
|
|
3816
3828
|
|
|
3829
|
+
class LicenseParams
|
|
3830
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3831
|
+
|
|
3832
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3833
|
+
end
|
|
3834
|
+
|
|
3817
3835
|
class LicenseResourceCommitment
|
|
3818
3836
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3819
3837
|
|
|
@@ -4054,6 +4072,36 @@ module Google
|
|
|
4054
4072
|
include Google::Apis::Core::JsonObjectSupport
|
|
4055
4073
|
end
|
|
4056
4074
|
|
|
4075
|
+
class MultiMigMember
|
|
4076
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4077
|
+
|
|
4078
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
4079
|
+
end
|
|
4080
|
+
|
|
4081
|
+
class MultiMigMemberList
|
|
4082
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4083
|
+
|
|
4084
|
+
class Warning
|
|
4085
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4086
|
+
|
|
4087
|
+
class Datum
|
|
4088
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4089
|
+
|
|
4090
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
4091
|
+
end
|
|
4092
|
+
|
|
4093
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
4094
|
+
end
|
|
4095
|
+
|
|
4096
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
4097
|
+
end
|
|
4098
|
+
|
|
4099
|
+
class MultiMigMemberStatus
|
|
4100
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4101
|
+
|
|
4102
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
4103
|
+
end
|
|
4104
|
+
|
|
4057
4105
|
class MultiMigResourcePolicies
|
|
4058
4106
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4059
4107
|
|
|
@@ -4594,6 +4642,12 @@ module Google
|
|
|
4594
4642
|
include Google::Apis::Core::JsonObjectSupport
|
|
4595
4643
|
end
|
|
4596
4644
|
|
|
4645
|
+
class NetworkProfileNetworkFeaturesPredefinedSubnetworkRange
|
|
4646
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4647
|
+
|
|
4648
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
4649
|
+
end
|
|
4650
|
+
|
|
4597
4651
|
class NetworkProfileProfileType
|
|
4598
4652
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4599
4653
|
|
|
@@ -7462,6 +7516,12 @@ module Google
|
|
|
7462
7516
|
include Google::Apis::Core::JsonObjectSupport
|
|
7463
7517
|
end
|
|
7464
7518
|
|
|
7519
|
+
class StoragePoolParams
|
|
7520
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
7521
|
+
|
|
7522
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
7523
|
+
end
|
|
7524
|
+
|
|
7465
7525
|
class StoragePoolResourceStatus
|
|
7466
7526
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
7467
7527
|
|
|
@@ -10278,6 +10338,8 @@ module Google
|
|
|
10278
10338
|
# @private
|
|
10279
10339
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10280
10340
|
property :count, :numeric_string => true, as: 'count'
|
|
10341
|
+
property :instance_flexibility_policy, as: 'instanceFlexibilityPolicy', class: Google::Apis::ComputeBeta::InstanceFlexibilityPolicy, decorator: Google::Apis::ComputeBeta::InstanceFlexibilityPolicy::Representation
|
|
10342
|
+
|
|
10281
10343
|
property :instance_properties, as: 'instanceProperties', class: Google::Apis::ComputeBeta::InstanceProperties, decorator: Google::Apis::ComputeBeta::InstanceProperties::Representation
|
|
10282
10344
|
|
|
10283
10345
|
property :location_policy, as: 'locationPolicy', class: Google::Apis::ComputeBeta::LocationPolicy, decorator: Google::Apis::ComputeBeta::LocationPolicy::Representation
|
|
@@ -13381,6 +13443,24 @@ module Google
|
|
|
13381
13443
|
end
|
|
13382
13444
|
end
|
|
13383
13445
|
|
|
13446
|
+
class InstanceFlexibilityPolicy
|
|
13447
|
+
# @private
|
|
13448
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
13449
|
+
hash :instance_selections, as: 'instanceSelections', class: Google::Apis::ComputeBeta::InstanceFlexibilityPolicyInstanceSelection, decorator: Google::Apis::ComputeBeta::InstanceFlexibilityPolicyInstanceSelection::Representation
|
|
13450
|
+
|
|
13451
|
+
end
|
|
13452
|
+
end
|
|
13453
|
+
|
|
13454
|
+
class InstanceFlexibilityPolicyInstanceSelection
|
|
13455
|
+
# @private
|
|
13456
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
13457
|
+
collection :disks, as: 'disks', class: Google::Apis::ComputeBeta::AttachedDisk, decorator: Google::Apis::ComputeBeta::AttachedDisk::Representation
|
|
13458
|
+
|
|
13459
|
+
collection :machine_types, as: 'machineTypes'
|
|
13460
|
+
property :rank, :numeric_string => true, as: 'rank'
|
|
13461
|
+
end
|
|
13462
|
+
end
|
|
13463
|
+
|
|
13384
13464
|
class InstanceGroup
|
|
13385
13465
|
# @private
|
|
13386
13466
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -15944,6 +16024,8 @@ module Google
|
|
|
15944
16024
|
property :multi_tenant_only, as: 'multiTenantOnly'
|
|
15945
16025
|
property :name, as: 'name'
|
|
15946
16026
|
property :os_license, as: 'osLicense'
|
|
16027
|
+
property :params, as: 'params', class: Google::Apis::ComputeBeta::LicenseParams, decorator: Google::Apis::ComputeBeta::LicenseParams::Representation
|
|
16028
|
+
|
|
15947
16029
|
property :removable_from_disk, as: 'removableFromDisk'
|
|
15948
16030
|
collection :required_coattached_licenses, as: 'requiredCoattachedLicenses'
|
|
15949
16031
|
property :resource_requirements, as: 'resourceRequirements', class: Google::Apis::ComputeBeta::LicenseResourceRequirements, decorator: Google::Apis::ComputeBeta::LicenseResourceRequirements::Representation
|
|
@@ -15980,6 +16062,13 @@ module Google
|
|
|
15980
16062
|
end
|
|
15981
16063
|
end
|
|
15982
16064
|
|
|
16065
|
+
class LicenseParams
|
|
16066
|
+
# @private
|
|
16067
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
16068
|
+
hash :resource_manager_tags, as: 'resourceManagerTags'
|
|
16069
|
+
end
|
|
16070
|
+
end
|
|
16071
|
+
|
|
15983
16072
|
class LicenseResourceCommitment
|
|
15984
16073
|
# @private
|
|
15985
16074
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -16421,6 +16510,59 @@ module Google
|
|
|
16421
16510
|
end
|
|
16422
16511
|
end
|
|
16423
16512
|
|
|
16513
|
+
class MultiMigMember
|
|
16514
|
+
# @private
|
|
16515
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
16516
|
+
property :creation_timestamp, as: 'creationTimestamp'
|
|
16517
|
+
property :id, :numeric_string => true, as: 'id'
|
|
16518
|
+
property :kind, as: 'kind'
|
|
16519
|
+
property :name, as: 'name'
|
|
16520
|
+
property :region, as: 'region'
|
|
16521
|
+
property :self_link, as: 'selfLink'
|
|
16522
|
+
property :status, as: 'status', class: Google::Apis::ComputeBeta::MultiMigMemberStatus, decorator: Google::Apis::ComputeBeta::MultiMigMemberStatus::Representation
|
|
16523
|
+
|
|
16524
|
+
end
|
|
16525
|
+
end
|
|
16526
|
+
|
|
16527
|
+
class MultiMigMemberList
|
|
16528
|
+
# @private
|
|
16529
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
16530
|
+
property :id, as: 'id'
|
|
16531
|
+
collection :items, as: 'items', class: Google::Apis::ComputeBeta::MultiMigMember, decorator: Google::Apis::ComputeBeta::MultiMigMember::Representation
|
|
16532
|
+
|
|
16533
|
+
property :kind, as: 'kind'
|
|
16534
|
+
property :next_page_token, as: 'nextPageToken'
|
|
16535
|
+
property :self_link, as: 'selfLink'
|
|
16536
|
+
property :warning, as: 'warning', class: Google::Apis::ComputeBeta::MultiMigMemberList::Warning, decorator: Google::Apis::ComputeBeta::MultiMigMemberList::Warning::Representation
|
|
16537
|
+
|
|
16538
|
+
end
|
|
16539
|
+
|
|
16540
|
+
class Warning
|
|
16541
|
+
# @private
|
|
16542
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
16543
|
+
property :code, as: 'code'
|
|
16544
|
+
collection :data, as: 'data', class: Google::Apis::ComputeBeta::MultiMigMemberList::Warning::Datum, decorator: Google::Apis::ComputeBeta::MultiMigMemberList::Warning::Datum::Representation
|
|
16545
|
+
|
|
16546
|
+
property :message, as: 'message'
|
|
16547
|
+
end
|
|
16548
|
+
|
|
16549
|
+
class Datum
|
|
16550
|
+
# @private
|
|
16551
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
16552
|
+
property :key, as: 'key'
|
|
16553
|
+
property :value, as: 'value'
|
|
16554
|
+
end
|
|
16555
|
+
end
|
|
16556
|
+
end
|
|
16557
|
+
end
|
|
16558
|
+
|
|
16559
|
+
class MultiMigMemberStatus
|
|
16560
|
+
# @private
|
|
16561
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
16562
|
+
property :instance_group_manager, as: 'instanceGroupManager'
|
|
16563
|
+
end
|
|
16564
|
+
end
|
|
16565
|
+
|
|
16424
16566
|
class MultiMigResourcePolicies
|
|
16425
16567
|
# @private
|
|
16426
16568
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -16433,6 +16575,7 @@ module Google
|
|
|
16433
16575
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
16434
16576
|
collection :applied_accelerator_topologies, as: 'appliedAcceleratorTopologies', class: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopology, decorator: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopology::Representation
|
|
16435
16577
|
|
|
16578
|
+
property :members_count, as: 'membersCount'
|
|
16436
16579
|
end
|
|
16437
16580
|
end
|
|
16438
16581
|
|
|
@@ -17105,6 +17248,7 @@ module Google
|
|
|
17105
17248
|
property :ipv6_access_type, as: 'ipv6AccessType'
|
|
17106
17249
|
property :ipv6_address, as: 'ipv6Address'
|
|
17107
17250
|
property :kind, as: 'kind'
|
|
17251
|
+
property :mac_address, as: 'macAddress'
|
|
17108
17252
|
property :name, as: 'name'
|
|
17109
17253
|
property :network, as: 'network'
|
|
17110
17254
|
property :network_attachment, as: 'networkAttachment'
|
|
@@ -17420,6 +17564,7 @@ module Google
|
|
|
17420
17564
|
# @private
|
|
17421
17565
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
17422
17566
|
collection :address_purposes, as: 'addressPurposes'
|
|
17567
|
+
property :allow_address_creation, as: 'allowAddressCreation'
|
|
17423
17568
|
property :allow_alias_ip_ranges, as: 'allowAliasIpRanges'
|
|
17424
17569
|
property :allow_auto_mode_subnet, as: 'allowAutoModeSubnet'
|
|
17425
17570
|
property :allow_class_d_firewalls, as: 'allowClassDFirewalls'
|
|
@@ -17432,6 +17577,7 @@ module Google
|
|
|
17432
17577
|
property :allow_ip_forwarding, as: 'allowIpForwarding'
|
|
17433
17578
|
property :allow_load_balancing, as: 'allowLoadBalancing'
|
|
17434
17579
|
property :allow_multi_nic_in_same_network, as: 'allowMultiNicInSameNetwork'
|
|
17580
|
+
property :allow_multi_nic_in_same_subnetwork, as: 'allowMultiNicInSameSubnetwork'
|
|
17435
17581
|
property :allow_multicast, as: 'allowMulticast'
|
|
17436
17582
|
property :allow_ncc, as: 'allowNcc'
|
|
17437
17583
|
property :allow_network_migration, as: 'allowNetworkMigration'
|
|
@@ -17441,11 +17587,16 @@ module Google
|
|
|
17441
17587
|
property :allow_same_network_unicast, as: 'allowSameNetworkUnicast'
|
|
17442
17588
|
property :allow_static_routes, as: 'allowStaticRoutes'
|
|
17443
17589
|
property :allow_sub_interfaces, as: 'allowSubInterfaces'
|
|
17590
|
+
property :allow_subnetwork_creation, as: 'allowSubnetworkCreation'
|
|
17591
|
+
property :allow_vpc_firewall_rules, as: 'allowVpcFirewallRules'
|
|
17444
17592
|
property :allow_vpc_peering, as: 'allowVpcPeering'
|
|
17445
17593
|
property :allow_vpn, as: 'allowVpn'
|
|
17446
17594
|
collection :firewall_policy_types, as: 'firewallPolicyTypes'
|
|
17447
17595
|
collection :interface_types, as: 'interfaceTypes'
|
|
17448
17596
|
property :multicast, as: 'multicast'
|
|
17597
|
+
property :predefined_network_internal_ipv6_range, as: 'predefinedNetworkInternalIpv6Range'
|
|
17598
|
+
collection :predefined_subnetwork_ranges, as: 'predefinedSubnetworkRanges', class: Google::Apis::ComputeBeta::NetworkProfileNetworkFeaturesPredefinedSubnetworkRange, decorator: Google::Apis::ComputeBeta::NetworkProfileNetworkFeaturesPredefinedSubnetworkRange::Representation
|
|
17599
|
+
|
|
17449
17600
|
collection :subnet_purposes, as: 'subnetPurposes'
|
|
17450
17601
|
collection :subnet_stack_types, as: 'subnetStackTypes'
|
|
17451
17602
|
collection :subnetwork_purposes, as: 'subnetworkPurposes'
|
|
@@ -17454,6 +17605,14 @@ module Google
|
|
|
17454
17605
|
end
|
|
17455
17606
|
end
|
|
17456
17607
|
|
|
17608
|
+
class NetworkProfileNetworkFeaturesPredefinedSubnetworkRange
|
|
17609
|
+
# @private
|
|
17610
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
17611
|
+
property :ipv6_range, as: 'ipv6Range'
|
|
17612
|
+
property :name_prefix, as: 'namePrefix'
|
|
17613
|
+
end
|
|
17614
|
+
end
|
|
17615
|
+
|
|
17457
17616
|
class NetworkProfileProfileType
|
|
17458
17617
|
# @private
|
|
17459
17618
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -22598,6 +22757,8 @@ module Google
|
|
|
22598
22757
|
property :label_fingerprint, :base64 => true, as: 'labelFingerprint'
|
|
22599
22758
|
hash :labels, as: 'labels'
|
|
22600
22759
|
property :name, as: 'name'
|
|
22760
|
+
property :params, as: 'params', class: Google::Apis::ComputeBeta::StoragePoolParams, decorator: Google::Apis::ComputeBeta::StoragePoolParams::Representation
|
|
22761
|
+
|
|
22601
22762
|
property :performance_provisioning_type, as: 'performanceProvisioningType'
|
|
22602
22763
|
property :pool_provisioned_capacity_gb, :numeric_string => true, as: 'poolProvisionedCapacityGb'
|
|
22603
22764
|
property :pool_provisioned_iops, :numeric_string => true, as: 'poolProvisionedIops'
|
|
@@ -22742,6 +22903,13 @@ module Google
|
|
|
22742
22903
|
end
|
|
22743
22904
|
end
|
|
22744
22905
|
|
|
22906
|
+
class StoragePoolParams
|
|
22907
|
+
# @private
|
|
22908
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
22909
|
+
hash :resource_manager_tags, as: 'resourceManagerTags'
|
|
22910
|
+
end
|
|
22911
|
+
end
|
|
22912
|
+
|
|
22745
22913
|
class StoragePoolResourceStatus
|
|
22746
22914
|
# @private
|
|
22747
22915
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -24748,6 +24916,7 @@ module Google
|
|
|
24748
24916
|
class VpnTunnel
|
|
24749
24917
|
# @private
|
|
24750
24918
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
24919
|
+
property :capacity_tier, as: 'capacityTier'
|
|
24751
24920
|
property :cipher_suite, as: 'cipherSuite', class: Google::Apis::ComputeBeta::VpnTunnelCipherSuite, decorator: Google::Apis::ComputeBeta::VpnTunnelCipherSuite::Representation
|
|
24752
24921
|
|
|
24753
24922
|
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.131.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.131.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:
|