google-apis-compute_beta 0.79.0 → 0.80.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/compute_beta/classes.rb +249 -14
- data/lib/google/apis/compute_beta/gem_version.rb +2 -2
- data/lib/google/apis/compute_beta/representations.rb +113 -0
- data/lib/google/apis/compute_beta/service.rb +4423 -4082
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a1d749df6aae485417d3468d4d884dc0833aaa3a6ea060870f6ef7618e973321
|
4
|
+
data.tar.gz: 26c11b369a581248245591bed32125116f0610cbf8aa9aff9944288b834c22b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 696e152ed38fc83209695ac35942cca520cfb6418e18f518e95fb60e793b269189aac1d8283a0a5041ad114a3277837ea49edfaa57f13f124f545dddfb655686
|
7
|
+
data.tar.gz: c88bc8df44c3ddcb5544fe55acf3dcc5890db085b56fc5b799435a5b4f0a32b31c1dca55495972f348d5127380ea90aac83c83ca7fba52f1417dff8f0f8b96bd
|
data/CHANGELOG.md
CHANGED
@@ -1203,6 +1203,91 @@ module Google
|
|
1203
1203
|
end
|
1204
1204
|
end
|
1205
1205
|
|
1206
|
+
# This reservation type is specified by total resource amounts (e.g. total count
|
1207
|
+
# of CPUs) and can account for multiple instance SKUs. In other words, one can
|
1208
|
+
# create instances of varying shapes against this reservation.
|
1209
|
+
class AllocationAggregateReservation
|
1210
|
+
include Google::Apis::Core::Hashable
|
1211
|
+
|
1212
|
+
# [Output only] List of resources currently in use.
|
1213
|
+
# Corresponds to the JSON property `inUseResources`
|
1214
|
+
# @return [Array<Google::Apis::ComputeBeta::AllocationAggregateReservationReservedResourceInfo>]
|
1215
|
+
attr_accessor :in_use_resources
|
1216
|
+
|
1217
|
+
# List of reserved resources (CPUs, memory, accelerators).
|
1218
|
+
# Corresponds to the JSON property `reservedResources`
|
1219
|
+
# @return [Array<Google::Apis::ComputeBeta::AllocationAggregateReservationReservedResourceInfo>]
|
1220
|
+
attr_accessor :reserved_resources
|
1221
|
+
|
1222
|
+
# The VM family that all instances scheduled against this reservation must
|
1223
|
+
# belong to.
|
1224
|
+
# Corresponds to the JSON property `vmFamily`
|
1225
|
+
# @return [String]
|
1226
|
+
attr_accessor :vm_family
|
1227
|
+
|
1228
|
+
# The workload type of the instances that will target this reservation.
|
1229
|
+
# Corresponds to the JSON property `workloadType`
|
1230
|
+
# @return [String]
|
1231
|
+
attr_accessor :workload_type
|
1232
|
+
|
1233
|
+
def initialize(**args)
|
1234
|
+
update!(**args)
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
# Update properties of this object
|
1238
|
+
def update!(**args)
|
1239
|
+
@in_use_resources = args[:in_use_resources] if args.key?(:in_use_resources)
|
1240
|
+
@reserved_resources = args[:reserved_resources] if args.key?(:reserved_resources)
|
1241
|
+
@vm_family = args[:vm_family] if args.key?(:vm_family)
|
1242
|
+
@workload_type = args[:workload_type] if args.key?(:workload_type)
|
1243
|
+
end
|
1244
|
+
end
|
1245
|
+
|
1246
|
+
#
|
1247
|
+
class AllocationAggregateReservationReservedResourceInfo
|
1248
|
+
include Google::Apis::Core::Hashable
|
1249
|
+
|
1250
|
+
# Properties of accelerator resources in this reservation.
|
1251
|
+
# Corresponds to the JSON property `accelerator`
|
1252
|
+
# @return [Google::Apis::ComputeBeta::AllocationAggregateReservationReservedResourceInfoAccelerator]
|
1253
|
+
attr_accessor :accelerator
|
1254
|
+
|
1255
|
+
def initialize(**args)
|
1256
|
+
update!(**args)
|
1257
|
+
end
|
1258
|
+
|
1259
|
+
# Update properties of this object
|
1260
|
+
def update!(**args)
|
1261
|
+
@accelerator = args[:accelerator] if args.key?(:accelerator)
|
1262
|
+
end
|
1263
|
+
end
|
1264
|
+
|
1265
|
+
#
|
1266
|
+
class AllocationAggregateReservationReservedResourceInfoAccelerator
|
1267
|
+
include Google::Apis::Core::Hashable
|
1268
|
+
|
1269
|
+
# Number of accelerators of specified type.
|
1270
|
+
# Corresponds to the JSON property `acceleratorCount`
|
1271
|
+
# @return [Fixnum]
|
1272
|
+
attr_accessor :accelerator_count
|
1273
|
+
|
1274
|
+
# Full or partial URL to accelerator type. e.g. "projects/`PROJECT`/zones/`ZONE`/
|
1275
|
+
# acceleratorTypes/ct4l"
|
1276
|
+
# Corresponds to the JSON property `acceleratorType`
|
1277
|
+
# @return [String]
|
1278
|
+
attr_accessor :accelerator_type
|
1279
|
+
|
1280
|
+
def initialize(**args)
|
1281
|
+
update!(**args)
|
1282
|
+
end
|
1283
|
+
|
1284
|
+
# Update properties of this object
|
1285
|
+
def update!(**args)
|
1286
|
+
@accelerator_count = args[:accelerator_count] if args.key?(:accelerator_count)
|
1287
|
+
@accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type)
|
1288
|
+
end
|
1289
|
+
end
|
1290
|
+
|
1206
1291
|
# [Output Only] Contains output only fields.
|
1207
1292
|
class AllocationResourceStatus
|
1208
1293
|
include Google::Apis::Core::Hashable
|
@@ -3663,6 +3748,11 @@ module Google
|
|
3663
3748
|
# @return [Fixnum]
|
3664
3749
|
attr_accessor :timeout_sec
|
3665
3750
|
|
3751
|
+
#
|
3752
|
+
# Corresponds to the JSON property `usedBy`
|
3753
|
+
# @return [Array<Google::Apis::ComputeBeta::BackendServiceUsedBy>]
|
3754
|
+
attr_accessor :used_by
|
3755
|
+
|
3666
3756
|
def initialize(**args)
|
3667
3757
|
update!(**args)
|
3668
3758
|
end
|
@@ -3710,6 +3800,7 @@ module Google
|
|
3710
3800
|
@session_affinity = args[:session_affinity] if args.key?(:session_affinity)
|
3711
3801
|
@subsetting = args[:subsetting] if args.key?(:subsetting)
|
3712
3802
|
@timeout_sec = args[:timeout_sec] if args.key?(:timeout_sec)
|
3803
|
+
@used_by = args[:used_by] if args.key?(:used_by)
|
3713
3804
|
end
|
3714
3805
|
end
|
3715
3806
|
|
@@ -4204,8 +4295,7 @@ module Google
|
|
4204
4295
|
include Google::Apis::Core::Hashable
|
4205
4296
|
|
4206
4297
|
# Whether the serving infrastructure will authenticate and authorize all
|
4207
|
-
# incoming requests.
|
4208
|
-
# must be non-empty.
|
4298
|
+
# incoming requests.
|
4209
4299
|
# Corresponds to the JSON property `enabled`
|
4210
4300
|
# @return [Boolean]
|
4211
4301
|
attr_accessor :enabled
|
@@ -4359,6 +4449,124 @@ module Google
|
|
4359
4449
|
end
|
4360
4450
|
end
|
4361
4451
|
|
4452
|
+
# Contains a list of usable BackendService resources.
|
4453
|
+
class BackendServiceListUsable
|
4454
|
+
include Google::Apis::Core::Hashable
|
4455
|
+
|
4456
|
+
# [Output Only] Unique identifier for the resource; defined by the server.
|
4457
|
+
# Corresponds to the JSON property `id`
|
4458
|
+
# @return [String]
|
4459
|
+
attr_accessor :id
|
4460
|
+
|
4461
|
+
# A list of BackendService resources.
|
4462
|
+
# Corresponds to the JSON property `items`
|
4463
|
+
# @return [Array<Google::Apis::ComputeBeta::BackendService>]
|
4464
|
+
attr_accessor :items
|
4465
|
+
|
4466
|
+
# [Output Only] Type of resource. Always compute#usableBackendServiceList for
|
4467
|
+
# lists of usable backend services.
|
4468
|
+
# Corresponds to the JSON property `kind`
|
4469
|
+
# @return [String]
|
4470
|
+
attr_accessor :kind
|
4471
|
+
|
4472
|
+
# [Output Only] This token allows you to get the next page of results for list
|
4473
|
+
# requests. If the number of results is larger than maxResults, use the
|
4474
|
+
# nextPageToken as a value for the query parameter pageToken in the next list
|
4475
|
+
# request. Subsequent list requests will have their own nextPageToken to
|
4476
|
+
# continue paging through the results.
|
4477
|
+
# Corresponds to the JSON property `nextPageToken`
|
4478
|
+
# @return [String]
|
4479
|
+
attr_accessor :next_page_token
|
4480
|
+
|
4481
|
+
# [Output Only] Server-defined URL for this resource.
|
4482
|
+
# Corresponds to the JSON property `selfLink`
|
4483
|
+
# @return [String]
|
4484
|
+
attr_accessor :self_link
|
4485
|
+
|
4486
|
+
# [Output Only] Informational warning message.
|
4487
|
+
# Corresponds to the JSON property `warning`
|
4488
|
+
# @return [Google::Apis::ComputeBeta::BackendServiceListUsable::Warning]
|
4489
|
+
attr_accessor :warning
|
4490
|
+
|
4491
|
+
def initialize(**args)
|
4492
|
+
update!(**args)
|
4493
|
+
end
|
4494
|
+
|
4495
|
+
# Update properties of this object
|
4496
|
+
def update!(**args)
|
4497
|
+
@id = args[:id] if args.key?(:id)
|
4498
|
+
@items = args[:items] if args.key?(:items)
|
4499
|
+
@kind = args[:kind] if args.key?(:kind)
|
4500
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
4501
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
4502
|
+
@warning = args[:warning] if args.key?(:warning)
|
4503
|
+
end
|
4504
|
+
|
4505
|
+
# [Output Only] Informational warning message.
|
4506
|
+
class Warning
|
4507
|
+
include Google::Apis::Core::Hashable
|
4508
|
+
|
4509
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
4510
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
4511
|
+
# Corresponds to the JSON property `code`
|
4512
|
+
# @return [String]
|
4513
|
+
attr_accessor :code
|
4514
|
+
|
4515
|
+
# [Output Only] Metadata about this warning in key: value format. For example: "
|
4516
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
4517
|
+
# Corresponds to the JSON property `data`
|
4518
|
+
# @return [Array<Google::Apis::ComputeBeta::BackendServiceListUsable::Warning::Datum>]
|
4519
|
+
attr_accessor :data
|
4520
|
+
|
4521
|
+
# [Output Only] A human-readable description of the warning code.
|
4522
|
+
# Corresponds to the JSON property `message`
|
4523
|
+
# @return [String]
|
4524
|
+
attr_accessor :message
|
4525
|
+
|
4526
|
+
def initialize(**args)
|
4527
|
+
update!(**args)
|
4528
|
+
end
|
4529
|
+
|
4530
|
+
# Update properties of this object
|
4531
|
+
def update!(**args)
|
4532
|
+
@code = args[:code] if args.key?(:code)
|
4533
|
+
@data = args[:data] if args.key?(:data)
|
4534
|
+
@message = args[:message] if args.key?(:message)
|
4535
|
+
end
|
4536
|
+
|
4537
|
+
#
|
4538
|
+
class Datum
|
4539
|
+
include Google::Apis::Core::Hashable
|
4540
|
+
|
4541
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
4542
|
+
# For example, for warnings where there are no results in a list request for a
|
4543
|
+
# particular zone, this key might be scope and the key value might be the zone
|
4544
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
4545
|
+
# suggested replacement, or a warning about invalid network settings (for
|
4546
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
4547
|
+
# for IP forwarding).
|
4548
|
+
# Corresponds to the JSON property `key`
|
4549
|
+
# @return [String]
|
4550
|
+
attr_accessor :key
|
4551
|
+
|
4552
|
+
# [Output Only] A warning data value corresponding to the key.
|
4553
|
+
# Corresponds to the JSON property `value`
|
4554
|
+
# @return [String]
|
4555
|
+
attr_accessor :value
|
4556
|
+
|
4557
|
+
def initialize(**args)
|
4558
|
+
update!(**args)
|
4559
|
+
end
|
4560
|
+
|
4561
|
+
# Update properties of this object
|
4562
|
+
def update!(**args)
|
4563
|
+
@key = args[:key] if args.key?(:key)
|
4564
|
+
@value = args[:value] if args.key?(:value)
|
4565
|
+
end
|
4566
|
+
end
|
4567
|
+
end
|
4568
|
+
end
|
4569
|
+
|
4362
4570
|
# Container for either a built-in LB policy supported by gRPC or Envoy or a
|
4363
4571
|
# custom one implemented by the end user.
|
4364
4572
|
class BackendServiceLocalityLoadBalancingPolicyConfig
|
@@ -4510,6 +4718,25 @@ module Google
|
|
4510
4718
|
end
|
4511
4719
|
end
|
4512
4720
|
|
4721
|
+
#
|
4722
|
+
class BackendServiceUsedBy
|
4723
|
+
include Google::Apis::Core::Hashable
|
4724
|
+
|
4725
|
+
#
|
4726
|
+
# Corresponds to the JSON property `reference`
|
4727
|
+
# @return [String]
|
4728
|
+
attr_accessor :reference
|
4729
|
+
|
4730
|
+
def initialize(**args)
|
4731
|
+
update!(**args)
|
4732
|
+
end
|
4733
|
+
|
4734
|
+
# Update properties of this object
|
4735
|
+
def update!(**args)
|
4736
|
+
@reference = args[:reference] if args.key?(:reference)
|
4737
|
+
end
|
4738
|
+
end
|
4739
|
+
|
4513
4740
|
#
|
4514
4741
|
class BackendServicesScopedList
|
4515
4742
|
include Google::Apis::Core::Hashable
|
@@ -5380,7 +5607,7 @@ module Google
|
|
5380
5607
|
# @return [String]
|
5381
5608
|
attr_accessor :region
|
5382
5609
|
|
5383
|
-
# List of
|
5610
|
+
# List of create-on-create reseravtions for this commitment.
|
5384
5611
|
# Corresponds to the JSON property `reservations`
|
5385
5612
|
# @return [Array<Google::Apis::ComputeBeta::Reservation>]
|
5386
5613
|
attr_accessor :reservations
|
@@ -9725,13 +9952,13 @@ module Google
|
|
9725
9952
|
# @return [String]
|
9726
9953
|
attr_accessor :name
|
9727
9954
|
|
9728
|
-
# This field is not used for external load balancing. For Internal TCP/
|
9729
|
-
# Balancing, this field identifies the network that the load balanced
|
9730
|
-
# belong to for this Forwarding Rule. If the subnetwork is specified,
|
9731
|
-
# network of the subnetwork will be used. If neither subnetwork nor this
|
9732
|
-
# is specified, the default network will be used. For Private Service
|
9733
|
-
# forwarding rules that forward traffic to Google APIs, a network must
|
9734
|
-
# provided.
|
9955
|
+
# This field is not used for global external load balancing. For Internal TCP/
|
9956
|
+
# UDP Load Balancing, this field identifies the network that the load balanced
|
9957
|
+
# IP should belong to for this Forwarding Rule. If the subnetwork is specified,
|
9958
|
+
# the network of the subnetwork will be used. If neither subnetwork nor this
|
9959
|
+
# field is specified, the default network will be used. For Private Service
|
9960
|
+
# Connect forwarding rules that forward traffic to Google APIs, a network must
|
9961
|
+
# be provided.
|
9735
9962
|
# Corresponds to the JSON property `network`
|
9736
9963
|
# @return [String]
|
9737
9964
|
attr_accessor :network
|
@@ -15885,8 +16112,8 @@ module Google
|
|
15885
16112
|
class InstanceGroupManagerInstanceFlexibilityPolicy
|
15886
16113
|
include Google::Apis::Core::Hashable
|
15887
16114
|
|
15888
|
-
#
|
15889
|
-
# VMs.
|
16115
|
+
# Named instance selections configuring properties that the group will use when
|
16116
|
+
# creating new VMs.
|
15890
16117
|
# Corresponds to the JSON property `instanceSelectionLists`
|
15891
16118
|
# @return [Hash<String,Google::Apis::ComputeBeta::InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection>]
|
15892
16119
|
attr_accessor :instance_selection_lists
|
@@ -33455,6 +33682,13 @@ module Google
|
|
33455
33682
|
class Reservation
|
33456
33683
|
include Google::Apis::Core::Hashable
|
33457
33684
|
|
33685
|
+
# This reservation type is specified by total resource amounts (e.g. total count
|
33686
|
+
# of CPUs) and can account for multiple instance SKUs. In other words, one can
|
33687
|
+
# create instances of varying shapes against this reservation.
|
33688
|
+
# Corresponds to the JSON property `aggregateReservation`
|
33689
|
+
# @return [Google::Apis::ComputeBeta::AllocationAggregateReservation]
|
33690
|
+
attr_accessor :aggregate_reservation
|
33691
|
+
|
33458
33692
|
# [Output Only] Full or partial URL to a parent commitment. This field displays
|
33459
33693
|
# for reservations that are tied to a commitment.
|
33460
33694
|
# Corresponds to the JSON property `commitment`
|
@@ -33568,6 +33802,7 @@ module Google
|
|
33568
33802
|
|
33569
33803
|
# Update properties of this object
|
33570
33804
|
def update!(**args)
|
33805
|
+
@aggregate_reservation = args[:aggregate_reservation] if args.key?(:aggregate_reservation)
|
33571
33806
|
@commitment = args[:commitment] if args.key?(:commitment)
|
33572
33807
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
33573
33808
|
@delete_after_duration = args[:delete_after_duration] if args.key?(:delete_after_duration)
|
@@ -36422,8 +36657,8 @@ module Google
|
|
36422
36657
|
# "inIpRange(destination.ip, '1.1.0.0/16') || inIpRange(destination.ip, '2.2.0.
|
36423
36658
|
# 0/16')" "destination.ip == '1.1.0.1' || destination.ip == '8.8.8.8'" The
|
36424
36659
|
# following example is a valid match expression for private NAT: "nexthop.hub ==
|
36425
|
-
# '
|
36426
|
-
#
|
36660
|
+
# '//networkconnectivity.googleapis.com/projects/my-project/locations/global/
|
36661
|
+
# hubs/hub-1'"
|
36427
36662
|
# Corresponds to the JSON property `match`
|
36428
36663
|
# @return [String]
|
36429
36664
|
attr_accessor :match
|
@@ -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.80.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230912"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -172,6 +172,24 @@ module Google
|
|
172
172
|
include Google::Apis::Core::JsonObjectSupport
|
173
173
|
end
|
174
174
|
|
175
|
+
class AllocationAggregateReservation
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
|
+
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
179
|
+
end
|
180
|
+
|
181
|
+
class AllocationAggregateReservationReservedResourceInfo
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
+
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
185
|
+
end
|
186
|
+
|
187
|
+
class AllocationAggregateReservationReservedResourceInfoAccelerator
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
175
193
|
class AllocationResourceStatus
|
176
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
195
|
|
@@ -478,6 +496,24 @@ module Google
|
|
478
496
|
include Google::Apis::Core::JsonObjectSupport
|
479
497
|
end
|
480
498
|
|
499
|
+
class BackendServiceListUsable
|
500
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
501
|
+
|
502
|
+
class Warning
|
503
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
504
|
+
|
505
|
+
class Datum
|
506
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
507
|
+
|
508
|
+
include Google::Apis::Core::JsonObjectSupport
|
509
|
+
end
|
510
|
+
|
511
|
+
include Google::Apis::Core::JsonObjectSupport
|
512
|
+
end
|
513
|
+
|
514
|
+
include Google::Apis::Core::JsonObjectSupport
|
515
|
+
end
|
516
|
+
|
481
517
|
class BackendServiceLocalityLoadBalancingPolicyConfig
|
482
518
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
483
519
|
|
@@ -508,6 +544,12 @@ module Google
|
|
508
544
|
include Google::Apis::Core::JsonObjectSupport
|
509
545
|
end
|
510
546
|
|
547
|
+
class BackendServiceUsedBy
|
548
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
549
|
+
|
550
|
+
include Google::Apis::Core::JsonObjectSupport
|
551
|
+
end
|
552
|
+
|
511
553
|
class BackendServicesScopedList
|
512
554
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
513
555
|
|
@@ -6830,6 +6872,34 @@ module Google
|
|
6830
6872
|
end
|
6831
6873
|
end
|
6832
6874
|
|
6875
|
+
class AllocationAggregateReservation
|
6876
|
+
# @private
|
6877
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6878
|
+
collection :in_use_resources, as: 'inUseResources', class: Google::Apis::ComputeBeta::AllocationAggregateReservationReservedResourceInfo, decorator: Google::Apis::ComputeBeta::AllocationAggregateReservationReservedResourceInfo::Representation
|
6879
|
+
|
6880
|
+
collection :reserved_resources, as: 'reservedResources', class: Google::Apis::ComputeBeta::AllocationAggregateReservationReservedResourceInfo, decorator: Google::Apis::ComputeBeta::AllocationAggregateReservationReservedResourceInfo::Representation
|
6881
|
+
|
6882
|
+
property :vm_family, as: 'vmFamily'
|
6883
|
+
property :workload_type, as: 'workloadType'
|
6884
|
+
end
|
6885
|
+
end
|
6886
|
+
|
6887
|
+
class AllocationAggregateReservationReservedResourceInfo
|
6888
|
+
# @private
|
6889
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6890
|
+
property :accelerator, as: 'accelerator', class: Google::Apis::ComputeBeta::AllocationAggregateReservationReservedResourceInfoAccelerator, decorator: Google::Apis::ComputeBeta::AllocationAggregateReservationReservedResourceInfoAccelerator::Representation
|
6891
|
+
|
6892
|
+
end
|
6893
|
+
end
|
6894
|
+
|
6895
|
+
class AllocationAggregateReservationReservedResourceInfoAccelerator
|
6896
|
+
# @private
|
6897
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6898
|
+
property :accelerator_count, as: 'acceleratorCount'
|
6899
|
+
property :accelerator_type, as: 'acceleratorType'
|
6900
|
+
end
|
6901
|
+
end
|
6902
|
+
|
6833
6903
|
class AllocationResourceStatus
|
6834
6904
|
# @private
|
6835
6905
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7340,6 +7410,8 @@ module Google
|
|
7340
7410
|
property :subsetting, as: 'subsetting', class: Google::Apis::ComputeBeta::Subsetting, decorator: Google::Apis::ComputeBeta::Subsetting::Representation
|
7341
7411
|
|
7342
7412
|
property :timeout_sec, as: 'timeoutSec'
|
7413
|
+
collection :used_by, as: 'usedBy', class: Google::Apis::ComputeBeta::BackendServiceUsedBy, decorator: Google::Apis::ComputeBeta::BackendServiceUsedBy::Representation
|
7414
|
+
|
7343
7415
|
end
|
7344
7416
|
end
|
7345
7417
|
|
@@ -7483,6 +7555,38 @@ module Google
|
|
7483
7555
|
end
|
7484
7556
|
end
|
7485
7557
|
|
7558
|
+
class BackendServiceListUsable
|
7559
|
+
# @private
|
7560
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7561
|
+
property :id, as: 'id'
|
7562
|
+
collection :items, as: 'items', class: Google::Apis::ComputeBeta::BackendService, decorator: Google::Apis::ComputeBeta::BackendService::Representation
|
7563
|
+
|
7564
|
+
property :kind, as: 'kind'
|
7565
|
+
property :next_page_token, as: 'nextPageToken'
|
7566
|
+
property :self_link, as: 'selfLink'
|
7567
|
+
property :warning, as: 'warning', class: Google::Apis::ComputeBeta::BackendServiceListUsable::Warning, decorator: Google::Apis::ComputeBeta::BackendServiceListUsable::Warning::Representation
|
7568
|
+
|
7569
|
+
end
|
7570
|
+
|
7571
|
+
class Warning
|
7572
|
+
# @private
|
7573
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7574
|
+
property :code, as: 'code'
|
7575
|
+
collection :data, as: 'data', class: Google::Apis::ComputeBeta::BackendServiceListUsable::Warning::Datum, decorator: Google::Apis::ComputeBeta::BackendServiceListUsable::Warning::Datum::Representation
|
7576
|
+
|
7577
|
+
property :message, as: 'message'
|
7578
|
+
end
|
7579
|
+
|
7580
|
+
class Datum
|
7581
|
+
# @private
|
7582
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7583
|
+
property :key, as: 'key'
|
7584
|
+
property :value, as: 'value'
|
7585
|
+
end
|
7586
|
+
end
|
7587
|
+
end
|
7588
|
+
end
|
7589
|
+
|
7486
7590
|
class BackendServiceLocalityLoadBalancingPolicyConfig
|
7487
7591
|
# @private
|
7488
7592
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7525,6 +7629,13 @@ module Google
|
|
7525
7629
|
end
|
7526
7630
|
end
|
7527
7631
|
|
7632
|
+
class BackendServiceUsedBy
|
7633
|
+
# @private
|
7634
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7635
|
+
property :reference, as: 'reference'
|
7636
|
+
end
|
7637
|
+
end
|
7638
|
+
|
7528
7639
|
class BackendServicesScopedList
|
7529
7640
|
# @private
|
7530
7641
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -14701,6 +14812,8 @@ module Google
|
|
14701
14812
|
class Reservation
|
14702
14813
|
# @private
|
14703
14814
|
class Representation < Google::Apis::Core::JsonRepresentation
|
14815
|
+
property :aggregate_reservation, as: 'aggregateReservation', class: Google::Apis::ComputeBeta::AllocationAggregateReservation, decorator: Google::Apis::ComputeBeta::AllocationAggregateReservation::Representation
|
14816
|
+
|
14704
14817
|
property :commitment, as: 'commitment'
|
14705
14818
|
property :creation_timestamp, as: 'creationTimestamp'
|
14706
14819
|
property :delete_after_duration, as: 'deleteAfterDuration', class: Google::Apis::ComputeBeta::Duration, decorator: Google::Apis::ComputeBeta::Duration::Representation
|