google-apis-compute_alpha 0.42.0 → 0.45.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 +12 -0
- data/lib/google/apis/compute_alpha/classes.rb +352 -17
- data/lib/google/apis/compute_alpha/gem_version.rb +2 -2
- data/lib/google/apis/compute_alpha/representations.rb +135 -1
- 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: 478d2aa46654fbcd2722a71372dd4dfe05cd8406be4b6d59df4fb6daed319a00
|
4
|
+
data.tar.gz: 6b7ca553a1ff825d858a1df3b6d3782ebc060d5aab750c4d6e7ebc3f4e457584
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2fbdae738b194f0b85379ebe02358dfd5868340f75b8d4c3ae6d670d6fa51bbc947ca1d0314d08c9b1f984fa09b4ccdd9a4a5d0238ba43571a836b3419f57c78
|
7
|
+
data.tar.gz: 654fd44720b65a41b87fd7920cc68aff36fab14caebe3a21c5b9638917e250f98da91527faf92680e2bec1aa1a8b7e066c2eb2f465ebbf962782d3b9c9d03386
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-compute_alpha
|
2
2
|
|
3
|
+
### v0.45.0 (2022-08-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220726
|
6
|
+
|
7
|
+
### v0.44.0 (2022-07-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220720
|
10
|
+
|
11
|
+
### v0.43.0 (2022-07-20)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220714
|
14
|
+
|
3
15
|
### v0.42.0 (2022-07-13)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220705
|
@@ -1176,6 +1176,44 @@ module Google
|
|
1176
1176
|
end
|
1177
1177
|
end
|
1178
1178
|
|
1179
|
+
# [Output Only] Contains output only fields.
|
1180
|
+
class AllocationResourceStatus
|
1181
|
+
include Google::Apis::Core::Hashable
|
1182
|
+
|
1183
|
+
# Contains Properties set for the reservation.
|
1184
|
+
# Corresponds to the JSON property `specificSkuAllocation`
|
1185
|
+
# @return [Google::Apis::ComputeAlpha::AllocationResourceStatusSpecificSkuAllocation]
|
1186
|
+
attr_accessor :specific_sku_allocation
|
1187
|
+
|
1188
|
+
def initialize(**args)
|
1189
|
+
update!(**args)
|
1190
|
+
end
|
1191
|
+
|
1192
|
+
# Update properties of this object
|
1193
|
+
def update!(**args)
|
1194
|
+
@specific_sku_allocation = args[:specific_sku_allocation] if args.key?(:specific_sku_allocation)
|
1195
|
+
end
|
1196
|
+
end
|
1197
|
+
|
1198
|
+
# Contains Properties set for the reservation.
|
1199
|
+
class AllocationResourceStatusSpecificSkuAllocation
|
1200
|
+
include Google::Apis::Core::Hashable
|
1201
|
+
|
1202
|
+
# ID of the instance template used to populate reservation properties.
|
1203
|
+
# Corresponds to the JSON property `sourceInstanceTemplateId`
|
1204
|
+
# @return [String]
|
1205
|
+
attr_accessor :source_instance_template_id
|
1206
|
+
|
1207
|
+
def initialize(**args)
|
1208
|
+
update!(**args)
|
1209
|
+
end
|
1210
|
+
|
1211
|
+
# Update properties of this object
|
1212
|
+
def update!(**args)
|
1213
|
+
@source_instance_template_id = args[:source_instance_template_id] if args.key?(:source_instance_template_id)
|
1214
|
+
end
|
1215
|
+
end
|
1216
|
+
|
1179
1217
|
#
|
1180
1218
|
class AllocationSpecificSkuAllocationAllocatedInstancePropertiesReservedDisk
|
1181
1219
|
include Google::Apis::Core::Hashable
|
@@ -1289,6 +1327,11 @@ module Google
|
|
1289
1327
|
# @return [Google::Apis::ComputeAlpha::AllocationSpecificSkuAllocationReservedInstanceProperties]
|
1290
1328
|
attr_accessor :instance_properties
|
1291
1329
|
|
1330
|
+
# Specific URL of the instance template used in the reservation
|
1331
|
+
# Corresponds to the JSON property `sourceInstanceTemplate`
|
1332
|
+
# @return [String]
|
1333
|
+
attr_accessor :source_instance_template
|
1334
|
+
|
1292
1335
|
def initialize(**args)
|
1293
1336
|
update!(**args)
|
1294
1337
|
end
|
@@ -1299,6 +1342,7 @@ module Google
|
|
1299
1342
|
@count = args[:count] if args.key?(:count)
|
1300
1343
|
@in_use_count = args[:in_use_count] if args.key?(:in_use_count)
|
1301
1344
|
@instance_properties = args[:instance_properties] if args.key?(:instance_properties)
|
1345
|
+
@source_instance_template = args[:source_instance_template] if args.key?(:source_instance_template)
|
1302
1346
|
end
|
1303
1347
|
end
|
1304
1348
|
|
@@ -9329,7 +9373,7 @@ module Google
|
|
9329
9373
|
# A fully-qualified URL of a SecurityProfile resource instance. Example: https://
|
9330
9374
|
# networksecurity.googleapis.com/v1/projects/`project`/locations/`location`/
|
9331
9375
|
# securityProfileGroups/my-security-profile-group Must be specified if action = '
|
9332
|
-
#
|
9376
|
+
# apply_security_profile_group' and cannot be specified for other actions.
|
9333
9377
|
# Corresponds to the JSON property `securityProfileGroup`
|
9334
9378
|
# @return [String]
|
9335
9379
|
attr_accessor :security_profile_group
|
@@ -10367,6 +10411,11 @@ module Google
|
|
10367
10411
|
# @return [String]
|
10368
10412
|
attr_accessor :name_prefix
|
10369
10413
|
|
10414
|
+
# Planning state before being submitted for evaluation
|
10415
|
+
# Corresponds to the JSON property `planningStatus`
|
10416
|
+
# @return [String]
|
10417
|
+
attr_accessor :planning_status
|
10418
|
+
|
10370
10419
|
# [Output Only] Server-defined fully-qualified URL for this resource.
|
10371
10420
|
# Corresponds to the JSON property `selfLink`
|
10372
10421
|
# @return [String]
|
@@ -10415,6 +10464,7 @@ module Google
|
|
10415
10464
|
@kind = args[:kind] if args.key?(:kind)
|
10416
10465
|
@name = args[:name] if args.key?(:name)
|
10417
10466
|
@name_prefix = args[:name_prefix] if args.key?(:name_prefix)
|
10467
|
+
@planning_status = args[:planning_status] if args.key?(:planning_status)
|
10418
10468
|
@self_link = args[:self_link] if args.key?(:self_link)
|
10419
10469
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
10420
10470
|
@share_settings = args[:share_settings] if args.key?(:share_settings)
|
@@ -10434,6 +10484,12 @@ module Google
|
|
10434
10484
|
# @return [Google::Apis::ComputeAlpha::AllocationSpecificSkuAllocationReservedInstanceProperties]
|
10435
10485
|
attr_accessor :instance_properties
|
10436
10486
|
|
10487
|
+
# The instance template that will be used to populate the
|
10488
|
+
# ReservedInstanceProperties of the future reservation
|
10489
|
+
# Corresponds to the JSON property `sourceInstanceTemplate`
|
10490
|
+
# @return [String]
|
10491
|
+
attr_accessor :source_instance_template
|
10492
|
+
|
10437
10493
|
# Total number of instances for which capacity assurance is requested at a
|
10438
10494
|
# future time period.
|
10439
10495
|
# Corresponds to the JSON property `totalCount`
|
@@ -10447,6 +10503,7 @@ module Google
|
|
10447
10503
|
# Update properties of this object
|
10448
10504
|
def update!(**args)
|
10449
10505
|
@instance_properties = args[:instance_properties] if args.key?(:instance_properties)
|
10506
|
+
@source_instance_template = args[:source_instance_template] if args.key?(:source_instance_template)
|
10450
10507
|
@total_count = args[:total_count] if args.key?(:total_count)
|
10451
10508
|
end
|
10452
10509
|
end
|
@@ -10480,6 +10537,11 @@ module Google
|
|
10480
10537
|
# @return [String]
|
10481
10538
|
attr_accessor :procurement_status
|
10482
10539
|
|
10540
|
+
# Properties to be set for the Future Reservation.
|
10541
|
+
# Corresponds to the JSON property `specificSkuProperties`
|
10542
|
+
# @return [Google::Apis::ComputeAlpha::FutureReservationStatusSpecificSkuProperties]
|
10543
|
+
attr_accessor :specific_sku_properties
|
10544
|
+
|
10483
10545
|
def initialize(**args)
|
10484
10546
|
update!(**args)
|
10485
10547
|
end
|
@@ -10490,6 +10552,26 @@ module Google
|
|
10490
10552
|
@fulfilled_count = args[:fulfilled_count] if args.key?(:fulfilled_count)
|
10491
10553
|
@lock_time = args[:lock_time] if args.key?(:lock_time)
|
10492
10554
|
@procurement_status = args[:procurement_status] if args.key?(:procurement_status)
|
10555
|
+
@specific_sku_properties = args[:specific_sku_properties] if args.key?(:specific_sku_properties)
|
10556
|
+
end
|
10557
|
+
end
|
10558
|
+
|
10559
|
+
# Properties to be set for the Future Reservation.
|
10560
|
+
class FutureReservationStatusSpecificSkuProperties
|
10561
|
+
include Google::Apis::Core::Hashable
|
10562
|
+
|
10563
|
+
# ID of the instance template used to populate the Future Reservation properties.
|
10564
|
+
# Corresponds to the JSON property `sourceInstanceTemplateId`
|
10565
|
+
# @return [String]
|
10566
|
+
attr_accessor :source_instance_template_id
|
10567
|
+
|
10568
|
+
def initialize(**args)
|
10569
|
+
update!(**args)
|
10570
|
+
end
|
10571
|
+
|
10572
|
+
# Update properties of this object
|
10573
|
+
def update!(**args)
|
10574
|
+
@source_instance_template_id = args[:source_instance_template_id] if args.key?(:source_instance_template_id)
|
10493
10575
|
end
|
10494
10576
|
end
|
10495
10577
|
|
@@ -14784,7 +14866,7 @@ module Google
|
|
14784
14866
|
attr_accessor :satisfies_pzs
|
14785
14867
|
alias_method :satisfies_pzs?, :satisfies_pzs
|
14786
14868
|
|
14787
|
-
# Sets the scheduling options for an Instance.
|
14869
|
+
# Sets the scheduling options for an Instance.
|
14788
14870
|
# Corresponds to the JSON property `scheduling`
|
14789
14871
|
# @return [Google::Apis::ComputeAlpha::Scheduling]
|
14790
14872
|
attr_accessor :scheduling
|
@@ -18285,7 +18367,7 @@ module Google
|
|
18285
18367
|
# @return [Array<String>]
|
18286
18368
|
attr_accessor :resource_policies
|
18287
18369
|
|
18288
|
-
# Sets the scheduling options for an Instance.
|
18370
|
+
# Sets the scheduling options for an Instance.
|
18289
18371
|
# Corresponds to the JSON property `scheduling`
|
18290
18372
|
# @return [Google::Apis::ComputeAlpha::Scheduling]
|
18291
18373
|
attr_accessor :scheduling
|
@@ -19989,6 +20071,12 @@ module Google
|
|
19989
20071
|
# @return [String]
|
19990
20072
|
attr_accessor :cloud_router_ipv6_interface_id
|
19991
20073
|
|
20074
|
+
# [Output Only] Constraints for this attachment, if any. The attachment does not
|
20075
|
+
# work if these constraints are not met.
|
20076
|
+
# Corresponds to the JSON property `configurationConstraints`
|
20077
|
+
# @return [Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraints]
|
20078
|
+
attr_accessor :configuration_constraints
|
20079
|
+
|
19992
20080
|
# [Output Only] Creation timestamp in RFC3339 text format.
|
19993
20081
|
# Corresponds to the JSON property `creationTimestamp`
|
19994
20082
|
# @return [String]
|
@@ -20170,6 +20258,15 @@ module Google
|
|
20170
20258
|
# @return [String]
|
20171
20259
|
attr_accessor :region
|
20172
20260
|
|
20261
|
+
# [Output Only] If the attachment is on a Cross-Cloud Interconnect connection,
|
20262
|
+
# this field contains the interconnect's remote location service provider.
|
20263
|
+
# Example values: "Amazon Web Services" "Microsoft Azure". The field is set only
|
20264
|
+
# for attachments on Cross-Cloud Interconnect connections. Its value is copied
|
20265
|
+
# from the InterconnectRemoteLocation remoteService field.
|
20266
|
+
# Corresponds to the JSON property `remoteService`
|
20267
|
+
# @return [String]
|
20268
|
+
attr_accessor :remote_service
|
20269
|
+
|
20173
20270
|
# URL of the Cloud Router to be used for dynamic routing. This router must be in
|
20174
20271
|
# the same region as this InterconnectAttachment. The InterconnectAttachment
|
20175
20272
|
# will automatically connect the Interconnect to the network & region within
|
@@ -20223,6 +20320,17 @@ module Google
|
|
20223
20320
|
# @return [String]
|
20224
20321
|
attr_accessor :state
|
20225
20322
|
|
20323
|
+
# Length of the IPv4 subnet mask. Allowed values: - 29 (default) - 30 The
|
20324
|
+
# default value is 29, except for Cross-Cloud Interconnect connections that use
|
20325
|
+
# an InterconnectRemoteLocation with a constraints.subnetLengthRange.min equal
|
20326
|
+
# to 30. For example, connections that use an Azure remote location fall into
|
20327
|
+
# this category. In these cases, the default value is 30, and requesting 29
|
20328
|
+
# returns an error. Where both 29 and 30 are allowed, 29 is preferred, because
|
20329
|
+
# it gives Google Cloud Support more debugging visibility.
|
20330
|
+
# Corresponds to the JSON property `subnetLength`
|
20331
|
+
# @return [Fixnum]
|
20332
|
+
attr_accessor :subnet_length
|
20333
|
+
|
20226
20334
|
# The type of interconnect attachment this is, which can take one of the
|
20227
20335
|
# following values: - DEDICATED: an attachment to a Dedicated Interconnect. -
|
20228
20336
|
# PARTNER: an attachment to a Partner Interconnect, created by the customer. -
|
@@ -20251,6 +20359,7 @@ module Google
|
|
20251
20359
|
@cloud_router_ip_address = args[:cloud_router_ip_address] if args.key?(:cloud_router_ip_address)
|
20252
20360
|
@cloud_router_ipv6_address = args[:cloud_router_ipv6_address] if args.key?(:cloud_router_ipv6_address)
|
20253
20361
|
@cloud_router_ipv6_interface_id = args[:cloud_router_ipv6_interface_id] if args.key?(:cloud_router_ipv6_interface_id)
|
20362
|
+
@configuration_constraints = args[:configuration_constraints] if args.key?(:configuration_constraints)
|
20254
20363
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
20255
20364
|
@customer_router_ip_address = args[:customer_router_ip_address] if args.key?(:customer_router_ip_address)
|
20256
20365
|
@customer_router_ipv6_address = args[:customer_router_ipv6_address] if args.key?(:customer_router_ipv6_address)
|
@@ -20274,12 +20383,14 @@ module Google
|
|
20274
20383
|
@partner_metadata = args[:partner_metadata] if args.key?(:partner_metadata)
|
20275
20384
|
@private_interconnect_info = args[:private_interconnect_info] if args.key?(:private_interconnect_info)
|
20276
20385
|
@region = args[:region] if args.key?(:region)
|
20386
|
+
@remote_service = args[:remote_service] if args.key?(:remote_service)
|
20277
20387
|
@router = args[:router] if args.key?(:router)
|
20278
20388
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
20279
20389
|
@self_link = args[:self_link] if args.key?(:self_link)
|
20280
20390
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
20281
20391
|
@stack_type = args[:stack_type] if args.key?(:stack_type)
|
20282
20392
|
@state = args[:state] if args.key?(:state)
|
20393
|
+
@subnet_length = args[:subnet_length] if args.key?(:subnet_length)
|
20283
20394
|
@type = args[:type] if args.key?(:type)
|
20284
20395
|
@vlan_tag8021q = args[:vlan_tag8021q] if args.key?(:vlan_tag8021q)
|
20285
20396
|
end
|
@@ -20410,6 +20521,75 @@ module Google
|
|
20410
20521
|
end
|
20411
20522
|
end
|
20412
20523
|
|
20524
|
+
#
|
20525
|
+
class InterconnectAttachmentConfigurationConstraints
|
20526
|
+
include Google::Apis::Core::Hashable
|
20527
|
+
|
20528
|
+
# [Output Only] Whether the attachment's BGP session requires/allows/disallows
|
20529
|
+
# BGP MD5 authentication. This can take one of the following values:
|
20530
|
+
# MD5_OPTIONAL, MD5_REQUIRED, MD5_UNSUPPORTED. For example, a Cross-Cloud
|
20531
|
+
# Interconnect connection to a remote cloud provider that requires BGP MD5
|
20532
|
+
# authentication has the interconnectRemoteLocation
|
20533
|
+
# attachment_configuration_constraints.bgp_md5 field set to MD5_REQUIRED, and
|
20534
|
+
# that property is propagated to the attachment. Similarly, if BGP MD5 is
|
20535
|
+
# MD5_UNSUPPORTED, an error is returned if MD5 is requested.
|
20536
|
+
# Corresponds to the JSON property `bgpMd5`
|
20537
|
+
# @return [String]
|
20538
|
+
attr_accessor :bgp_md5
|
20539
|
+
|
20540
|
+
# [Output Only] List of ASN ranges that the remote location is known to support.
|
20541
|
+
# Formatted as an array of inclusive ranges `min: min-value, max: max-value`.
|
20542
|
+
# For example, [`min: 123, max: 123`, `min: 64512, max: 65534`] allows the peer
|
20543
|
+
# ASN to be 123 or anything in the range 64512-65534. This field is only
|
20544
|
+
# advisory. Although the API accepts other ranges, these are the ranges that we
|
20545
|
+
# recommend.
|
20546
|
+
# Corresponds to the JSON property `bgpPeerAsnRanges`
|
20547
|
+
# @return [Array<Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraintsBgpPeerAsnRange>]
|
20548
|
+
attr_accessor :bgp_peer_asn_ranges
|
20549
|
+
|
20550
|
+
# [Output Only] Network Connectivity Center constraints, which can take one of
|
20551
|
+
# the following values: NCC_UNCONSTRAINED, NCC_SPOKE_REQUIRED
|
20552
|
+
# Corresponds to the JSON property `networkConnectivityCenter`
|
20553
|
+
# @return [String]
|
20554
|
+
attr_accessor :network_connectivity_center
|
20555
|
+
|
20556
|
+
def initialize(**args)
|
20557
|
+
update!(**args)
|
20558
|
+
end
|
20559
|
+
|
20560
|
+
# Update properties of this object
|
20561
|
+
def update!(**args)
|
20562
|
+
@bgp_md5 = args[:bgp_md5] if args.key?(:bgp_md5)
|
20563
|
+
@bgp_peer_asn_ranges = args[:bgp_peer_asn_ranges] if args.key?(:bgp_peer_asn_ranges)
|
20564
|
+
@network_connectivity_center = args[:network_connectivity_center] if args.key?(:network_connectivity_center)
|
20565
|
+
end
|
20566
|
+
end
|
20567
|
+
|
20568
|
+
#
|
20569
|
+
class InterconnectAttachmentConfigurationConstraintsBgpPeerAsnRange
|
20570
|
+
include Google::Apis::Core::Hashable
|
20571
|
+
|
20572
|
+
#
|
20573
|
+
# Corresponds to the JSON property `max`
|
20574
|
+
# @return [Fixnum]
|
20575
|
+
attr_accessor :max
|
20576
|
+
|
20577
|
+
#
|
20578
|
+
# Corresponds to the JSON property `min`
|
20579
|
+
# @return [Fixnum]
|
20580
|
+
attr_accessor :min
|
20581
|
+
|
20582
|
+
def initialize(**args)
|
20583
|
+
update!(**args)
|
20584
|
+
end
|
20585
|
+
|
20586
|
+
# Update properties of this object
|
20587
|
+
def update!(**args)
|
20588
|
+
@max = args[:max] if args.key?(:max)
|
20589
|
+
@min = args[:min] if args.key?(:min)
|
20590
|
+
end
|
20591
|
+
end
|
20592
|
+
|
20413
20593
|
# Response to the list request, and contains a list of interconnect attachments.
|
20414
20594
|
class InterconnectAttachmentList
|
20415
20595
|
include Google::Apis::Core::Hashable
|
@@ -21563,12 +21743,25 @@ module Google
|
|
21563
21743
|
# @return [String]
|
21564
21744
|
attr_accessor :address
|
21565
21745
|
|
21746
|
+
# [Output Only] Subset of fields from InterconnectAttachment's |
|
21747
|
+
# configurationConstraints| field that apply to all attachments for this remote
|
21748
|
+
# location.
|
21749
|
+
# Corresponds to the JSON property `attachmentConfigurationConstraints`
|
21750
|
+
# @return [Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraints]
|
21751
|
+
attr_accessor :attachment_configuration_constraints
|
21752
|
+
|
21566
21753
|
# [Output Only] Metropolitan area designator that indicates which city an
|
21567
21754
|
# interconnect is located. For example: "Chicago, IL", "Amsterdam, Netherlands".
|
21568
21755
|
# Corresponds to the JSON property `city`
|
21569
21756
|
# @return [String]
|
21570
21757
|
attr_accessor :city
|
21571
21758
|
|
21759
|
+
# [Output Only] Constraints on the parameters for creating Cross-Cloud
|
21760
|
+
# Interconnect and associated InterconnectAttachments.
|
21761
|
+
# Corresponds to the JSON property `constraints`
|
21762
|
+
# @return [Google::Apis::ComputeAlpha::InterconnectRemoteLocationConstraints]
|
21763
|
+
attr_accessor :constraints
|
21764
|
+
|
21572
21765
|
# [Output Only] Continent for this location, which can take one of the following
|
21573
21766
|
# values: - AFRICA - ASIA_PAC - EUROPE - NORTH_AMERICA - SOUTH_AMERICA
|
21574
21767
|
# Corresponds to the JSON property `continent`
|
@@ -21608,6 +21801,19 @@ module Google
|
|
21608
21801
|
# @return [String]
|
21609
21802
|
attr_accessor :kind
|
21610
21803
|
|
21804
|
+
# [Output Only] Link Aggregation Control Protocol (LACP) constraints, which can
|
21805
|
+
# take one of the following values: LACP_SUPPORTED, LACP_UNSUPPORTED
|
21806
|
+
# Corresponds to the JSON property `lacp`
|
21807
|
+
# @return [String]
|
21808
|
+
attr_accessor :lacp
|
21809
|
+
|
21810
|
+
# [Output Only] The maximum number of 100 Gbps ports supported in a link
|
21811
|
+
# aggregation group (LAG). When linkType is 100 Gbps, requestedLinkCount cannot
|
21812
|
+
# exceed max_lag_size_100_gbps.
|
21813
|
+
# Corresponds to the JSON property `maxLagSize100Gbps`
|
21814
|
+
# @return [Fixnum]
|
21815
|
+
attr_accessor :max_lag_size100_gbps
|
21816
|
+
|
21611
21817
|
# [Output Only] Name of the resource.
|
21612
21818
|
# Corresponds to the JSON property `name`
|
21613
21819
|
# @return [String]
|
@@ -21619,9 +21825,9 @@ module Google
|
|
21619
21825
|
# @return [String]
|
21620
21826
|
attr_accessor :peeringdb_facility_id
|
21621
21827
|
|
21622
|
-
# [Output
|
21828
|
+
# [Output Only] Permitted connections.
|
21623
21829
|
# Corresponds to the JSON property `permittedConnections`
|
21624
|
-
# @return [Google::Apis::ComputeAlpha::InterconnectRemoteLocationPermittedConnections]
|
21830
|
+
# @return [Array<Google::Apis::ComputeAlpha::InterconnectRemoteLocationPermittedConnections>]
|
21625
21831
|
attr_accessor :permitted_connections
|
21626
21832
|
|
21627
21833
|
# [Output Only] Indicates the service provider present at the remote location.
|
@@ -21656,7 +21862,9 @@ module Google
|
|
21656
21862
|
# Update properties of this object
|
21657
21863
|
def update!(**args)
|
21658
21864
|
@address = args[:address] if args.key?(:address)
|
21865
|
+
@attachment_configuration_constraints = args[:attachment_configuration_constraints] if args.key?(:attachment_configuration_constraints)
|
21659
21866
|
@city = args[:city] if args.key?(:city)
|
21867
|
+
@constraints = args[:constraints] if args.key?(:constraints)
|
21660
21868
|
@continent = args[:continent] if args.key?(:continent)
|
21661
21869
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
21662
21870
|
@description = args[:description] if args.key?(:description)
|
@@ -21664,6 +21872,8 @@ module Google
|
|
21664
21872
|
@facility_provider_facility_id = args[:facility_provider_facility_id] if args.key?(:facility_provider_facility_id)
|
21665
21873
|
@id = args[:id] if args.key?(:id)
|
21666
21874
|
@kind = args[:kind] if args.key?(:kind)
|
21875
|
+
@lacp = args[:lacp] if args.key?(:lacp)
|
21876
|
+
@max_lag_size100_gbps = args[:max_lag_size100_gbps] if args.key?(:max_lag_size100_gbps)
|
21667
21877
|
@name = args[:name] if args.key?(:name)
|
21668
21878
|
@peeringdb_facility_id = args[:peeringdb_facility_id] if args.key?(:peeringdb_facility_id)
|
21669
21879
|
@permitted_connections = args[:permitted_connections] if args.key?(:permitted_connections)
|
@@ -21674,6 +21884,77 @@ module Google
|
|
21674
21884
|
end
|
21675
21885
|
end
|
21676
21886
|
|
21887
|
+
#
|
21888
|
+
class InterconnectRemoteLocationConstraints
|
21889
|
+
include Google::Apis::Core::Hashable
|
21890
|
+
|
21891
|
+
# [Output Only] Port pair remote location constraints, which can take one of the
|
21892
|
+
# following values: PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION,
|
21893
|
+
# PORT_PAIR_MATCHING_REMOTE_LOCATION. GCP's API refers only to individual ports,
|
21894
|
+
# but the UI uses this field when ordering a pair of ports, to prevent users
|
21895
|
+
# from accidentally ordering something that is incompatible with their cloud
|
21896
|
+
# provider. Specifically, when ordering a redundant pair of Cross-Cloud
|
21897
|
+
# Interconnect ports, and one of them uses a remote location with
|
21898
|
+
# portPairMatchingRemoteLocation set to matching, the UI will require that both
|
21899
|
+
# ports use the same remote location.
|
21900
|
+
# Corresponds to the JSON property `portPairRemoteLocation`
|
21901
|
+
# @return [String]
|
21902
|
+
attr_accessor :port_pair_remote_location
|
21903
|
+
|
21904
|
+
# [Output Only] Port pair VLAN constraints, which can take one of the following
|
21905
|
+
# values: PORT_PAIR_UNCONSTRAINED_VLAN, PORT_PAIR_MATCHING_VLAN
|
21906
|
+
# Corresponds to the JSON property `portPairVlan`
|
21907
|
+
# @return [String]
|
21908
|
+
attr_accessor :port_pair_vlan
|
21909
|
+
|
21910
|
+
# [Output Only] [min-length, max-length] The minimum and maximum value (
|
21911
|
+
# inclusive) for the IPv4 subnet length. For example, an
|
21912
|
+
# interconnectRemoteLocation for Azure has `min: 30, max: 30` because Azure
|
21913
|
+
# requires /30 subnets. This range specifies the values supported by both cloud
|
21914
|
+
# providers. Interconnect currently supports /29 and /30 IPv4 subnet lengths. If
|
21915
|
+
# a remote cloud has no constraint on IPv4 subnet length, the range would thus
|
21916
|
+
# be `min: 29, max: 30`.
|
21917
|
+
# Corresponds to the JSON property `subnetLengthRange`
|
21918
|
+
# @return [Google::Apis::ComputeAlpha::InterconnectRemoteLocationConstraintsSubnetLengthRange]
|
21919
|
+
attr_accessor :subnet_length_range
|
21920
|
+
|
21921
|
+
def initialize(**args)
|
21922
|
+
update!(**args)
|
21923
|
+
end
|
21924
|
+
|
21925
|
+
# Update properties of this object
|
21926
|
+
def update!(**args)
|
21927
|
+
@port_pair_remote_location = args[:port_pair_remote_location] if args.key?(:port_pair_remote_location)
|
21928
|
+
@port_pair_vlan = args[:port_pair_vlan] if args.key?(:port_pair_vlan)
|
21929
|
+
@subnet_length_range = args[:subnet_length_range] if args.key?(:subnet_length_range)
|
21930
|
+
end
|
21931
|
+
end
|
21932
|
+
|
21933
|
+
#
|
21934
|
+
class InterconnectRemoteLocationConstraintsSubnetLengthRange
|
21935
|
+
include Google::Apis::Core::Hashable
|
21936
|
+
|
21937
|
+
#
|
21938
|
+
# Corresponds to the JSON property `max`
|
21939
|
+
# @return [Fixnum]
|
21940
|
+
attr_accessor :max
|
21941
|
+
|
21942
|
+
#
|
21943
|
+
# Corresponds to the JSON property `min`
|
21944
|
+
# @return [Fixnum]
|
21945
|
+
attr_accessor :min
|
21946
|
+
|
21947
|
+
def initialize(**args)
|
21948
|
+
update!(**args)
|
21949
|
+
end
|
21950
|
+
|
21951
|
+
# Update properties of this object
|
21952
|
+
def update!(**args)
|
21953
|
+
@max = args[:max] if args.key?(:max)
|
21954
|
+
@min = args[:min] if args.key?(:min)
|
21955
|
+
end
|
21956
|
+
end
|
21957
|
+
|
21677
21958
|
# Response to the list request, and contains a list of interconnect remote
|
21678
21959
|
# locations.
|
21679
21960
|
class InterconnectRemoteLocationList
|
@@ -21797,7 +22078,7 @@ module Google
|
|
21797
22078
|
class InterconnectRemoteLocationPermittedConnections
|
21798
22079
|
include Google::Apis::Core::Hashable
|
21799
22080
|
|
21800
|
-
# [Output
|
22081
|
+
# [Output Only] URL of an Interconnect location that is permitted to connect to
|
21801
22082
|
# this Interconnect remote location.
|
21802
22083
|
# Corresponds to the JSON property `interconnectLocation`
|
21803
22084
|
# @return [String]
|
@@ -25010,9 +25291,9 @@ module Google
|
|
25010
25291
|
# allows for routing to multiple App Engine services without having to create
|
25011
25292
|
# multiple Network Endpoint Groups and backend services. For example, the
|
25012
25293
|
# request URLs "foo1-dot-appname.appspot.com/v1" and "foo1-dot-appname.appspot.
|
25013
|
-
# com/v2" can be backed by the same Serverless NEG with URL mask "
|
25014
|
-
# appspot.com
|
25015
|
-
# v1" ` and ` service = "foo1", version = "v2" ` respectively.
|
25294
|
+
# com/v2" can be backed by the same Serverless NEG with URL mask "<service>-dot-
|
25295
|
+
# appname.appspot.com/<version>". The URL mask will parse them to ` service = "
|
25296
|
+
# foo1", version = "v1" ` and ` service = "foo1", version = "v2" ` respectively.
|
25016
25297
|
# Corresponds to the JSON property `urlMask`
|
25017
25298
|
# @return [String]
|
25018
25299
|
attr_accessor :url_mask
|
@@ -25051,8 +25332,8 @@ module Google
|
|
25051
25332
|
# routing to multiple Cloud Functions without having to create multiple Network
|
25052
25333
|
# Endpoint Groups and backend services. For example, request URLs " mydomain.com/
|
25053
25334
|
# function1" and "mydomain.com/function2" can be backed by the same Serverless
|
25054
|
-
# NEG with URL mask "
|
25055
|
-
# ` and ` function = "function2" ` respectively.
|
25335
|
+
# NEG with URL mask "/<function>". The URL mask will parse them to ` function = "
|
25336
|
+
# function1" ` and ` function = "function2" ` respectively.
|
25056
25337
|
# Corresponds to the JSON property `urlMask`
|
25057
25338
|
# @return [String]
|
25058
25339
|
attr_accessor :url_mask
|
@@ -34137,7 +34418,7 @@ module Google
|
|
34137
34418
|
include Google::Apis::Core::Hashable
|
34138
34419
|
|
34139
34420
|
# New set of SslCertificate resources to associate with this TargetHttpsProxy
|
34140
|
-
# resource.
|
34421
|
+
# resource.
|
34141
34422
|
# Corresponds to the JSON property `sslCertificates`
|
34142
34423
|
# @return [Array<String>]
|
34143
34424
|
attr_accessor :ssl_certificates
|
@@ -34192,7 +34473,11 @@ module Google
|
|
34192
34473
|
class RequestMirrorPolicy
|
34193
34474
|
include Google::Apis::Core::Hashable
|
34194
34475
|
|
34195
|
-
# The full or partial URL to the BackendService resource being mirrored to.
|
34476
|
+
# The full or partial URL to the BackendService resource being mirrored to. The
|
34477
|
+
# backend service configured for a mirroring policy must reference backends that
|
34478
|
+
# are of the same type as the original backend service matched in the URL map.
|
34479
|
+
# Serverless NEG backends are not currently supported as a mirrored backend
|
34480
|
+
# service.
|
34196
34481
|
# Corresponds to the JSON property `backendService`
|
34197
34482
|
# @return [String]
|
34198
34483
|
attr_accessor :backend_service
|
@@ -34260,6 +34545,11 @@ module Google
|
|
34260
34545
|
# @return [Hash<String,String>]
|
34261
34546
|
attr_accessor :resource_policies
|
34262
34547
|
|
34548
|
+
# [Output Only] Contains output only fields.
|
34549
|
+
# Corresponds to the JSON property `resourceStatus`
|
34550
|
+
# @return [Google::Apis::ComputeAlpha::AllocationResourceStatus]
|
34551
|
+
attr_accessor :resource_status
|
34552
|
+
|
34263
34553
|
# [Output Only] Reserved for future use.
|
34264
34554
|
# Corresponds to the JSON property `satisfiesPzs`
|
34265
34555
|
# @return [Boolean]
|
@@ -34319,6 +34609,7 @@ module Google
|
|
34319
34609
|
@kind = args[:kind] if args.key?(:kind)
|
34320
34610
|
@name = args[:name] if args.key?(:name)
|
34321
34611
|
@resource_policies = args[:resource_policies] if args.key?(:resource_policies)
|
34612
|
+
@resource_status = args[:resource_status] if args.key?(:resource_status)
|
34322
34613
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
34323
34614
|
@self_link = args[:self_link] if args.key?(:self_link)
|
34324
34615
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
@@ -35762,6 +36053,11 @@ module Google
|
|
35762
36053
|
class ResourceStatus
|
35763
36054
|
include Google::Apis::Core::Hashable
|
35764
36055
|
|
36056
|
+
# [Output Only] An opaque ID of the host on which the VM is running.
|
36057
|
+
# Corresponds to the JSON property `physicalHost`
|
36058
|
+
# @return [String]
|
36059
|
+
attr_accessor :physical_host
|
36060
|
+
|
35765
36061
|
#
|
35766
36062
|
# Corresponds to the JSON property `scheduling`
|
35767
36063
|
# @return [Google::Apis::ComputeAlpha::ResourceStatusScheduling]
|
@@ -35778,6 +36074,7 @@ module Google
|
|
35778
36074
|
|
35779
36075
|
# Update properties of this object
|
35780
36076
|
def update!(**args)
|
36077
|
+
@physical_host = args[:physical_host] if args.key?(:physical_host)
|
35781
36078
|
@scheduling = args[:scheduling] if args.key?(:scheduling)
|
35782
36079
|
@upcoming_maintenance = args[:upcoming_maintenance] if args.key?(:upcoming_maintenance)
|
35783
36080
|
end
|
@@ -38139,7 +38436,7 @@ module Google
|
|
38139
38436
|
end
|
38140
38437
|
end
|
38141
38438
|
|
38142
|
-
# Sets the scheduling options for an Instance.
|
38439
|
+
# Sets the scheduling options for an Instance.
|
38143
38440
|
class Scheduling
|
38144
38441
|
include Google::Apis::Core::Hashable
|
38145
38442
|
|
@@ -38911,6 +39208,12 @@ module Google
|
|
38911
39208
|
class SecurityPolicyAdvancedOptionsConfig
|
38912
39209
|
include Google::Apis::Core::Hashable
|
38913
39210
|
|
39211
|
+
# Custom configuration to apply the JSON parsing. Only applicable when
|
39212
|
+
# json_parsing is set to STANDARD.
|
39213
|
+
# Corresponds to the JSON property `jsonCustomConfig`
|
39214
|
+
# @return [Google::Apis::ComputeAlpha::SecurityPolicyAdvancedOptionsConfigJsonCustomConfig]
|
39215
|
+
attr_accessor :json_custom_config
|
39216
|
+
|
38914
39217
|
#
|
38915
39218
|
# Corresponds to the JSON property `jsonParsing`
|
38916
39219
|
# @return [String]
|
@@ -38927,11 +39230,35 @@ module Google
|
|
38927
39230
|
|
38928
39231
|
# Update properties of this object
|
38929
39232
|
def update!(**args)
|
39233
|
+
@json_custom_config = args[:json_custom_config] if args.key?(:json_custom_config)
|
38930
39234
|
@json_parsing = args[:json_parsing] if args.key?(:json_parsing)
|
38931
39235
|
@log_level = args[:log_level] if args.key?(:log_level)
|
38932
39236
|
end
|
38933
39237
|
end
|
38934
39238
|
|
39239
|
+
#
|
39240
|
+
class SecurityPolicyAdvancedOptionsConfigJsonCustomConfig
|
39241
|
+
include Google::Apis::Core::Hashable
|
39242
|
+
|
39243
|
+
# A list of custom Content-Type header values to apply the JSON parsing. As per
|
39244
|
+
# RFC 1341, a Content-Type header value has the following format: Content-Type :=
|
39245
|
+
# type "/" subtype *[";" parameter] When configuring a custom Content-Type
|
39246
|
+
# header value, only the type/subtype needs to be specified, and the parameters
|
39247
|
+
# should be excluded.
|
39248
|
+
# Corresponds to the JSON property `contentTypes`
|
39249
|
+
# @return [Array<String>]
|
39250
|
+
attr_accessor :content_types
|
39251
|
+
|
39252
|
+
def initialize(**args)
|
39253
|
+
update!(**args)
|
39254
|
+
end
|
39255
|
+
|
39256
|
+
# Update properties of this object
|
39257
|
+
def update!(**args)
|
39258
|
+
@content_types = args[:content_types] if args.key?(:content_types)
|
39259
|
+
end
|
39260
|
+
end
|
39261
|
+
|
38935
39262
|
#
|
38936
39263
|
class SecurityPolicyAssociation
|
38937
39264
|
include Google::Apis::Core::Hashable
|
@@ -40901,6 +41228,12 @@ module Google
|
|
40901
41228
|
# @return [String]
|
40902
41229
|
attr_accessor :location_hint
|
40903
41230
|
|
41231
|
+
# Number of days the snapshot should be retained before being deleted
|
41232
|
+
# automatically.
|
41233
|
+
# Corresponds to the JSON property `maxRetentionDays`
|
41234
|
+
# @return [Fixnum]
|
41235
|
+
attr_accessor :max_retention_days
|
41236
|
+
|
40904
41237
|
# Name of the resource; provided by the client when the resource is created. The
|
40905
41238
|
# name must be 1-63 characters long, and comply with RFC1035. Specifically, the
|
40906
41239
|
# name must be 1-63 characters long and match the regular expression `[a-z]([-a-
|
@@ -41046,6 +41379,7 @@ module Google
|
|
41046
41379
|
@license_codes = args[:license_codes] if args.key?(:license_codes)
|
41047
41380
|
@licenses = args[:licenses] if args.key?(:licenses)
|
41048
41381
|
@location_hint = args[:location_hint] if args.key?(:location_hint)
|
41382
|
+
@max_retention_days = args[:max_retention_days] if args.key?(:max_retention_days)
|
41049
41383
|
@name = args[:name] if args.key?(:name)
|
41050
41384
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
41051
41385
|
@self_link = args[:self_link] if args.key?(:self_link)
|
@@ -41317,7 +41651,7 @@ module Google
|
|
41317
41651
|
# @return [String]
|
41318
41652
|
attr_accessor :post_key_revocation_action_type
|
41319
41653
|
|
41320
|
-
# Sets the scheduling options for an Instance.
|
41654
|
+
# Sets the scheduling options for an Instance.
|
41321
41655
|
# Corresponds to the JSON property `scheduling`
|
41322
41656
|
# @return [Google::Apis::ComputeAlpha::Scheduling]
|
41323
41657
|
attr_accessor :scheduling
|
@@ -44782,8 +45116,9 @@ module Google
|
|
44782
45116
|
# @return [String]
|
44783
45117
|
attr_accessor :name
|
44784
45118
|
|
44785
|
-
#
|
44786
|
-
#
|
45119
|
+
# Must have a value of NO_NAT. Protocol forwarding delivers packets while
|
45120
|
+
# preserving the destination IP address of the forwarding rule referencing the
|
45121
|
+
# target instance.
|
44787
45122
|
# Corresponds to the JSON property `natPolicy`
|
44788
45123
|
# @return [String]
|
44789
45124
|
attr_accessor :nat_policy
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeAlpha
|
18
18
|
# Version of the google-apis-compute_alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.45.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220726"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -166,6 +166,18 @@ module Google
|
|
166
166
|
include Google::Apis::Core::JsonObjectSupport
|
167
167
|
end
|
168
168
|
|
169
|
+
class AllocationResourceStatus
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
+
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
173
|
+
end
|
174
|
+
|
175
|
+
class AllocationResourceStatusSpecificSkuAllocation
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
|
+
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
179
|
+
end
|
180
|
+
|
169
181
|
class AllocationSpecificSkuAllocationAllocatedInstancePropertiesReservedDisk
|
170
182
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
183
|
|
@@ -1216,6 +1228,12 @@ module Google
|
|
1216
1228
|
include Google::Apis::Core::JsonObjectSupport
|
1217
1229
|
end
|
1218
1230
|
|
1231
|
+
class FutureReservationStatusSpecificSkuProperties
|
1232
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1233
|
+
|
1234
|
+
include Google::Apis::Core::JsonObjectSupport
|
1235
|
+
end
|
1236
|
+
|
1219
1237
|
class FutureReservationTimeWindow
|
1220
1238
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1221
1239
|
|
@@ -2470,6 +2488,18 @@ module Google
|
|
2470
2488
|
include Google::Apis::Core::JsonObjectSupport
|
2471
2489
|
end
|
2472
2490
|
|
2491
|
+
class InterconnectAttachmentConfigurationConstraints
|
2492
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2493
|
+
|
2494
|
+
include Google::Apis::Core::JsonObjectSupport
|
2495
|
+
end
|
2496
|
+
|
2497
|
+
class InterconnectAttachmentConfigurationConstraintsBgpPeerAsnRange
|
2498
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2499
|
+
|
2500
|
+
include Google::Apis::Core::JsonObjectSupport
|
2501
|
+
end
|
2502
|
+
|
2473
2503
|
class InterconnectAttachmentList
|
2474
2504
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2475
2505
|
|
@@ -2644,6 +2674,18 @@ module Google
|
|
2644
2674
|
include Google::Apis::Core::JsonObjectSupport
|
2645
2675
|
end
|
2646
2676
|
|
2677
|
+
class InterconnectRemoteLocationConstraints
|
2678
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2679
|
+
|
2680
|
+
include Google::Apis::Core::JsonObjectSupport
|
2681
|
+
end
|
2682
|
+
|
2683
|
+
class InterconnectRemoteLocationConstraintsSubnetLengthRange
|
2684
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2685
|
+
|
2686
|
+
include Google::Apis::Core::JsonObjectSupport
|
2687
|
+
end
|
2688
|
+
|
2647
2689
|
class InterconnectRemoteLocationList
|
2648
2690
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2649
2691
|
|
@@ -5074,6 +5116,12 @@ module Google
|
|
5074
5116
|
include Google::Apis::Core::JsonObjectSupport
|
5075
5117
|
end
|
5076
5118
|
|
5119
|
+
class SecurityPolicyAdvancedOptionsConfigJsonCustomConfig
|
5120
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5121
|
+
|
5122
|
+
include Google::Apis::Core::JsonObjectSupport
|
5123
|
+
end
|
5124
|
+
|
5077
5125
|
class SecurityPolicyAssociation
|
5078
5126
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5079
5127
|
|
@@ -6896,6 +6944,21 @@ module Google
|
|
6896
6944
|
end
|
6897
6945
|
end
|
6898
6946
|
|
6947
|
+
class AllocationResourceStatus
|
6948
|
+
# @private
|
6949
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6950
|
+
property :specific_sku_allocation, as: 'specificSkuAllocation', class: Google::Apis::ComputeAlpha::AllocationResourceStatusSpecificSkuAllocation, decorator: Google::Apis::ComputeAlpha::AllocationResourceStatusSpecificSkuAllocation::Representation
|
6951
|
+
|
6952
|
+
end
|
6953
|
+
end
|
6954
|
+
|
6955
|
+
class AllocationResourceStatusSpecificSkuAllocation
|
6956
|
+
# @private
|
6957
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6958
|
+
property :source_instance_template_id, as: 'sourceInstanceTemplateId'
|
6959
|
+
end
|
6960
|
+
end
|
6961
|
+
|
6899
6962
|
class AllocationSpecificSkuAllocationAllocatedInstancePropertiesReservedDisk
|
6900
6963
|
# @private
|
6901
6964
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6927,6 +6990,7 @@ module Google
|
|
6927
6990
|
property :in_use_count, :numeric_string => true, as: 'inUseCount'
|
6928
6991
|
property :instance_properties, as: 'instanceProperties', class: Google::Apis::ComputeAlpha::AllocationSpecificSkuAllocationReservedInstanceProperties, decorator: Google::Apis::ComputeAlpha::AllocationSpecificSkuAllocationReservedInstanceProperties::Representation
|
6929
6992
|
|
6993
|
+
property :source_instance_template, as: 'sourceInstanceTemplate'
|
6930
6994
|
end
|
6931
6995
|
end
|
6932
6996
|
|
@@ -8944,6 +9008,7 @@ module Google
|
|
8944
9008
|
property :kind, as: 'kind'
|
8945
9009
|
property :name, as: 'name'
|
8946
9010
|
property :name_prefix, as: 'namePrefix'
|
9011
|
+
property :planning_status, as: 'planningStatus'
|
8947
9012
|
property :self_link, as: 'selfLink'
|
8948
9013
|
property :self_link_with_id, as: 'selfLinkWithId'
|
8949
9014
|
property :share_settings, as: 'shareSettings', class: Google::Apis::ComputeAlpha::ShareSettings, decorator: Google::Apis::ComputeAlpha::ShareSettings::Representation
|
@@ -8963,6 +9028,7 @@ module Google
|
|
8963
9028
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8964
9029
|
property :instance_properties, as: 'instanceProperties', class: Google::Apis::ComputeAlpha::AllocationSpecificSkuAllocationReservedInstanceProperties, decorator: Google::Apis::ComputeAlpha::AllocationSpecificSkuAllocationReservedInstanceProperties::Representation
|
8965
9030
|
|
9031
|
+
property :source_instance_template, as: 'sourceInstanceTemplate'
|
8966
9032
|
property :total_count, :numeric_string => true, as: 'totalCount'
|
8967
9033
|
end
|
8968
9034
|
end
|
@@ -8974,6 +9040,15 @@ module Google
|
|
8974
9040
|
property :fulfilled_count, :numeric_string => true, as: 'fulfilledCount'
|
8975
9041
|
property :lock_time, as: 'lockTime'
|
8976
9042
|
property :procurement_status, as: 'procurementStatus'
|
9043
|
+
property :specific_sku_properties, as: 'specificSkuProperties', class: Google::Apis::ComputeAlpha::FutureReservationStatusSpecificSkuProperties, decorator: Google::Apis::ComputeAlpha::FutureReservationStatusSpecificSkuProperties::Representation
|
9044
|
+
|
9045
|
+
end
|
9046
|
+
end
|
9047
|
+
|
9048
|
+
class FutureReservationStatusSpecificSkuProperties
|
9049
|
+
# @private
|
9050
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9051
|
+
property :source_instance_template_id, as: 'sourceInstanceTemplateId'
|
8977
9052
|
end
|
8978
9053
|
end
|
8979
9054
|
|
@@ -11342,6 +11417,8 @@ module Google
|
|
11342
11417
|
property :cloud_router_ip_address, as: 'cloudRouterIpAddress'
|
11343
11418
|
property :cloud_router_ipv6_address, as: 'cloudRouterIpv6Address'
|
11344
11419
|
property :cloud_router_ipv6_interface_id, as: 'cloudRouterIpv6InterfaceId'
|
11420
|
+
property :configuration_constraints, as: 'configurationConstraints', class: Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraints, decorator: Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraints::Representation
|
11421
|
+
|
11345
11422
|
property :creation_timestamp, as: 'creationTimestamp'
|
11346
11423
|
property :customer_router_ip_address, as: 'customerRouterIpAddress'
|
11347
11424
|
property :customer_router_ipv6_address, as: 'customerRouterIpv6Address'
|
@@ -11367,12 +11444,14 @@ module Google
|
|
11367
11444
|
property :private_interconnect_info, as: 'privateInterconnectInfo', class: Google::Apis::ComputeAlpha::InterconnectAttachmentPrivateInfo, decorator: Google::Apis::ComputeAlpha::InterconnectAttachmentPrivateInfo::Representation
|
11368
11445
|
|
11369
11446
|
property :region, as: 'region'
|
11447
|
+
property :remote_service, as: 'remoteService'
|
11370
11448
|
property :router, as: 'router'
|
11371
11449
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
11372
11450
|
property :self_link, as: 'selfLink'
|
11373
11451
|
property :self_link_with_id, as: 'selfLinkWithId'
|
11374
11452
|
property :stack_type, as: 'stackType'
|
11375
11453
|
property :state, as: 'state'
|
11454
|
+
property :subnet_length, as: 'subnetLength'
|
11376
11455
|
property :type, as: 'type'
|
11377
11456
|
property :vlan_tag8021q, as: 'vlanTag8021q'
|
11378
11457
|
end
|
@@ -11411,6 +11490,24 @@ module Google
|
|
11411
11490
|
end
|
11412
11491
|
end
|
11413
11492
|
|
11493
|
+
class InterconnectAttachmentConfigurationConstraints
|
11494
|
+
# @private
|
11495
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
11496
|
+
property :bgp_md5, as: 'bgpMd5'
|
11497
|
+
collection :bgp_peer_asn_ranges, as: 'bgpPeerAsnRanges', class: Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraintsBgpPeerAsnRange, decorator: Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraintsBgpPeerAsnRange::Representation
|
11498
|
+
|
11499
|
+
property :network_connectivity_center, as: 'networkConnectivityCenter'
|
11500
|
+
end
|
11501
|
+
end
|
11502
|
+
|
11503
|
+
class InterconnectAttachmentConfigurationConstraintsBgpPeerAsnRange
|
11504
|
+
# @private
|
11505
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
11506
|
+
property :max, as: 'max'
|
11507
|
+
property :min, as: 'min'
|
11508
|
+
end
|
11509
|
+
end
|
11510
|
+
|
11414
11511
|
class InterconnectAttachmentList
|
11415
11512
|
# @private
|
11416
11513
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -11711,7 +11808,11 @@ module Google
|
|
11711
11808
|
# @private
|
11712
11809
|
class Representation < Google::Apis::Core::JsonRepresentation
|
11713
11810
|
property :address, as: 'address'
|
11811
|
+
property :attachment_configuration_constraints, as: 'attachmentConfigurationConstraints', class: Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraints, decorator: Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraints::Representation
|
11812
|
+
|
11714
11813
|
property :city, as: 'city'
|
11814
|
+
property :constraints, as: 'constraints', class: Google::Apis::ComputeAlpha::InterconnectRemoteLocationConstraints, decorator: Google::Apis::ComputeAlpha::InterconnectRemoteLocationConstraints::Representation
|
11815
|
+
|
11715
11816
|
property :continent, as: 'continent'
|
11716
11817
|
property :creation_timestamp, as: 'creationTimestamp'
|
11717
11818
|
property :description, as: 'description'
|
@@ -11719,9 +11820,11 @@ module Google
|
|
11719
11820
|
property :facility_provider_facility_id, as: 'facilityProviderFacilityId'
|
11720
11821
|
property :id, :numeric_string => true, as: 'id'
|
11721
11822
|
property :kind, as: 'kind'
|
11823
|
+
property :lacp, as: 'lacp'
|
11824
|
+
property :max_lag_size100_gbps, as: 'maxLagSize100Gbps'
|
11722
11825
|
property :name, as: 'name'
|
11723
11826
|
property :peeringdb_facility_id, as: 'peeringdbFacilityId'
|
11724
|
-
|
11827
|
+
collection :permitted_connections, as: 'permittedConnections', class: Google::Apis::ComputeAlpha::InterconnectRemoteLocationPermittedConnections, decorator: Google::Apis::ComputeAlpha::InterconnectRemoteLocationPermittedConnections::Representation
|
11725
11828
|
|
11726
11829
|
property :remote_service, as: 'remoteService'
|
11727
11830
|
property :self_link, as: 'selfLink'
|
@@ -11730,6 +11833,24 @@ module Google
|
|
11730
11833
|
end
|
11731
11834
|
end
|
11732
11835
|
|
11836
|
+
class InterconnectRemoteLocationConstraints
|
11837
|
+
# @private
|
11838
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
11839
|
+
property :port_pair_remote_location, as: 'portPairRemoteLocation'
|
11840
|
+
property :port_pair_vlan, as: 'portPairVlan'
|
11841
|
+
property :subnet_length_range, as: 'subnetLengthRange', class: Google::Apis::ComputeAlpha::InterconnectRemoteLocationConstraintsSubnetLengthRange, decorator: Google::Apis::ComputeAlpha::InterconnectRemoteLocationConstraintsSubnetLengthRange::Representation
|
11842
|
+
|
11843
|
+
end
|
11844
|
+
end
|
11845
|
+
|
11846
|
+
class InterconnectRemoteLocationConstraintsSubnetLengthRange
|
11847
|
+
# @private
|
11848
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
11849
|
+
property :max, as: 'max'
|
11850
|
+
property :min, as: 'min'
|
11851
|
+
end
|
11852
|
+
end
|
11853
|
+
|
11733
11854
|
class InterconnectRemoteLocationList
|
11734
11855
|
# @private
|
11735
11856
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -15014,6 +15135,8 @@ module Google
|
|
15014
15135
|
property :kind, as: 'kind'
|
15015
15136
|
property :name, as: 'name'
|
15016
15137
|
hash :resource_policies, as: 'resourcePolicies'
|
15138
|
+
property :resource_status, as: 'resourceStatus', class: Google::Apis::ComputeAlpha::AllocationResourceStatus, decorator: Google::Apis::ComputeAlpha::AllocationResourceStatus::Representation
|
15139
|
+
|
15017
15140
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
15018
15141
|
property :self_link, as: 'selfLink'
|
15019
15142
|
property :self_link_with_id, as: 'selfLinkWithId'
|
@@ -15434,6 +15557,7 @@ module Google
|
|
15434
15557
|
class ResourceStatus
|
15435
15558
|
# @private
|
15436
15559
|
class Representation < Google::Apis::Core::JsonRepresentation
|
15560
|
+
property :physical_host, as: 'physicalHost'
|
15437
15561
|
property :scheduling, as: 'scheduling', class: Google::Apis::ComputeAlpha::ResourceStatusScheduling, decorator: Google::Apis::ComputeAlpha::ResourceStatusScheduling::Representation
|
15438
15562
|
|
15439
15563
|
property :upcoming_maintenance, as: 'upcomingMaintenance', class: Google::Apis::ComputeAlpha::ResourceStatusUpcomingMaintenance, decorator: Google::Apis::ComputeAlpha::ResourceStatusUpcomingMaintenance::Representation
|
@@ -16169,11 +16293,20 @@ module Google
|
|
16169
16293
|
class SecurityPolicyAdvancedOptionsConfig
|
16170
16294
|
# @private
|
16171
16295
|
class Representation < Google::Apis::Core::JsonRepresentation
|
16296
|
+
property :json_custom_config, as: 'jsonCustomConfig', class: Google::Apis::ComputeAlpha::SecurityPolicyAdvancedOptionsConfigJsonCustomConfig, decorator: Google::Apis::ComputeAlpha::SecurityPolicyAdvancedOptionsConfigJsonCustomConfig::Representation
|
16297
|
+
|
16172
16298
|
property :json_parsing, as: 'jsonParsing'
|
16173
16299
|
property :log_level, as: 'logLevel'
|
16174
16300
|
end
|
16175
16301
|
end
|
16176
16302
|
|
16303
|
+
class SecurityPolicyAdvancedOptionsConfigJsonCustomConfig
|
16304
|
+
# @private
|
16305
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
16306
|
+
collection :content_types, as: 'contentTypes'
|
16307
|
+
end
|
16308
|
+
end
|
16309
|
+
|
16177
16310
|
class SecurityPolicyAssociation
|
16178
16311
|
# @private
|
16179
16312
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -16687,6 +16820,7 @@ module Google
|
|
16687
16820
|
collection :license_codes, as: 'licenseCodes'
|
16688
16821
|
collection :licenses, as: 'licenses'
|
16689
16822
|
property :location_hint, as: 'locationHint'
|
16823
|
+
property :max_retention_days, as: 'maxRetentionDays'
|
16690
16824
|
property :name, as: 'name'
|
16691
16825
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
16692
16826
|
property :self_link, as: 'selfLink'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-compute_alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.45.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-08-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.45.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|