google-apis-compute_alpha 0.42.0 → 0.43.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: 8007a526f38b878f010f8ba7433cf8d03e53999dd1b0a5514c4f30f3df6378e4
|
4
|
+
data.tar.gz: 7d641934f51c7a6502ca865d94af32caac6abdc3cca48ecc5361bb0ee50e0447
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 47663c99c36d9c3615d3ff02094a588e8e1d2ceee04cf4ed1ec062833d0c9f92eecc0f3226c332f69b05d6b04152601343a415691adae1b32db1e09e8cf41389
|
7
|
+
data.tar.gz: 7e645d7012b7f02a98c688c07b9a4edd106d9752b702188b35bf1a100611a8f7a51bea943157f2369cc29054831bfbf96daa1b6f62ca166dd199c826e538f7f2
|
data/CHANGELOG.md
CHANGED
@@ -19989,6 +19989,12 @@ module Google
|
|
19989
19989
|
# @return [String]
|
19990
19990
|
attr_accessor :cloud_router_ipv6_interface_id
|
19991
19991
|
|
19992
|
+
# [Output Only] Constraints for this attachment, if any. The attachment does not
|
19993
|
+
# work if these constraints are not met.
|
19994
|
+
# Corresponds to the JSON property `configurationConstraints`
|
19995
|
+
# @return [Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraints]
|
19996
|
+
attr_accessor :configuration_constraints
|
19997
|
+
|
19992
19998
|
# [Output Only] Creation timestamp in RFC3339 text format.
|
19993
19999
|
# Corresponds to the JSON property `creationTimestamp`
|
19994
20000
|
# @return [String]
|
@@ -20170,6 +20176,15 @@ module Google
|
|
20170
20176
|
# @return [String]
|
20171
20177
|
attr_accessor :region
|
20172
20178
|
|
20179
|
+
# [Output Only] If the attachment is on a Cross-Cloud Interconnect connection,
|
20180
|
+
# this field contains the interconnect's remote location service provider.
|
20181
|
+
# Example values: "Amazon Web Services" "Microsoft Azure". The field is set only
|
20182
|
+
# for attachments on Cross-Cloud Interconnect connections. Its value is copied
|
20183
|
+
# from the InterconnectRemoteLocation remoteService field.
|
20184
|
+
# Corresponds to the JSON property `remoteService`
|
20185
|
+
# @return [String]
|
20186
|
+
attr_accessor :remote_service
|
20187
|
+
|
20173
20188
|
# URL of the Cloud Router to be used for dynamic routing. This router must be in
|
20174
20189
|
# the same region as this InterconnectAttachment. The InterconnectAttachment
|
20175
20190
|
# will automatically connect the Interconnect to the network & region within
|
@@ -20223,6 +20238,17 @@ module Google
|
|
20223
20238
|
# @return [String]
|
20224
20239
|
attr_accessor :state
|
20225
20240
|
|
20241
|
+
# Length of the IPv4 subnet mask. Allowed values: - 29 (default) - 30 The
|
20242
|
+
# default value is 29, except for Cross-Cloud Interconnect connections that use
|
20243
|
+
# an InterconnectRemoteLocation with a constraints.subnetLengthRange.min equal
|
20244
|
+
# to 30. For example, connections that use an Azure remote location fall into
|
20245
|
+
# this category. In these cases, the default value is 30, and requesting 29
|
20246
|
+
# returns an error. Where both 29 and 30 are allowed, 29 is preferred, because
|
20247
|
+
# it gives Google Cloud Support more debugging visibility.
|
20248
|
+
# Corresponds to the JSON property `subnetLength`
|
20249
|
+
# @return [Fixnum]
|
20250
|
+
attr_accessor :subnet_length
|
20251
|
+
|
20226
20252
|
# The type of interconnect attachment this is, which can take one of the
|
20227
20253
|
# following values: - DEDICATED: an attachment to a Dedicated Interconnect. -
|
20228
20254
|
# PARTNER: an attachment to a Partner Interconnect, created by the customer. -
|
@@ -20251,6 +20277,7 @@ module Google
|
|
20251
20277
|
@cloud_router_ip_address = args[:cloud_router_ip_address] if args.key?(:cloud_router_ip_address)
|
20252
20278
|
@cloud_router_ipv6_address = args[:cloud_router_ipv6_address] if args.key?(:cloud_router_ipv6_address)
|
20253
20279
|
@cloud_router_ipv6_interface_id = args[:cloud_router_ipv6_interface_id] if args.key?(:cloud_router_ipv6_interface_id)
|
20280
|
+
@configuration_constraints = args[:configuration_constraints] if args.key?(:configuration_constraints)
|
20254
20281
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
20255
20282
|
@customer_router_ip_address = args[:customer_router_ip_address] if args.key?(:customer_router_ip_address)
|
20256
20283
|
@customer_router_ipv6_address = args[:customer_router_ipv6_address] if args.key?(:customer_router_ipv6_address)
|
@@ -20274,12 +20301,14 @@ module Google
|
|
20274
20301
|
@partner_metadata = args[:partner_metadata] if args.key?(:partner_metadata)
|
20275
20302
|
@private_interconnect_info = args[:private_interconnect_info] if args.key?(:private_interconnect_info)
|
20276
20303
|
@region = args[:region] if args.key?(:region)
|
20304
|
+
@remote_service = args[:remote_service] if args.key?(:remote_service)
|
20277
20305
|
@router = args[:router] if args.key?(:router)
|
20278
20306
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
20279
20307
|
@self_link = args[:self_link] if args.key?(:self_link)
|
20280
20308
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
20281
20309
|
@stack_type = args[:stack_type] if args.key?(:stack_type)
|
20282
20310
|
@state = args[:state] if args.key?(:state)
|
20311
|
+
@subnet_length = args[:subnet_length] if args.key?(:subnet_length)
|
20283
20312
|
@type = args[:type] if args.key?(:type)
|
20284
20313
|
@vlan_tag8021q = args[:vlan_tag8021q] if args.key?(:vlan_tag8021q)
|
20285
20314
|
end
|
@@ -20410,6 +20439,75 @@ module Google
|
|
20410
20439
|
end
|
20411
20440
|
end
|
20412
20441
|
|
20442
|
+
#
|
20443
|
+
class InterconnectAttachmentConfigurationConstraints
|
20444
|
+
include Google::Apis::Core::Hashable
|
20445
|
+
|
20446
|
+
# [Output Only] Whether the attachment's BGP session requires/allows/disallows
|
20447
|
+
# BGP MD5 authentication. This can take one of the following values:
|
20448
|
+
# MD5_OPTIONAL, MD5_REQUIRED, MD5_UNSUPPORTED. For example, a Cross-Cloud
|
20449
|
+
# Interconnect connection to a remote cloud provider that requires BGP MD5
|
20450
|
+
# authentication has the interconnectRemoteLocation
|
20451
|
+
# attachment_configuration_constraints.bgp_md5 field set to MD5_REQUIRED, and
|
20452
|
+
# that property is propagated to the attachment. Similarly, if BGP MD5 is
|
20453
|
+
# MD5_UNSUPPORTED, an error is returned if MD5 is requested.
|
20454
|
+
# Corresponds to the JSON property `bgpMd5`
|
20455
|
+
# @return [String]
|
20456
|
+
attr_accessor :bgp_md5
|
20457
|
+
|
20458
|
+
# [Output Only] List of ASN ranges that the remote location is known to support.
|
20459
|
+
# Formatted as an array of inclusive ranges `min: min-value, max: max-value`.
|
20460
|
+
# For example, [`min: 123, max: 123`, `min: 64512, max: 65534`] allows the peer
|
20461
|
+
# ASN to be 123 or anything in the range 64512-65534. This field is only
|
20462
|
+
# advisory. Although the API accepts other ranges, these are the ranges that we
|
20463
|
+
# recommend.
|
20464
|
+
# Corresponds to the JSON property `bgpPeerAsnRanges`
|
20465
|
+
# @return [Array<Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraintsBgpPeerAsnRange>]
|
20466
|
+
attr_accessor :bgp_peer_asn_ranges
|
20467
|
+
|
20468
|
+
# [Output Only] Network Connectivity Center constraints, which can take one of
|
20469
|
+
# the following values: NCC_UNCONSTRAINED, NCC_SPOKE_REQUIRED
|
20470
|
+
# Corresponds to the JSON property `networkConnectivityCenter`
|
20471
|
+
# @return [String]
|
20472
|
+
attr_accessor :network_connectivity_center
|
20473
|
+
|
20474
|
+
def initialize(**args)
|
20475
|
+
update!(**args)
|
20476
|
+
end
|
20477
|
+
|
20478
|
+
# Update properties of this object
|
20479
|
+
def update!(**args)
|
20480
|
+
@bgp_md5 = args[:bgp_md5] if args.key?(:bgp_md5)
|
20481
|
+
@bgp_peer_asn_ranges = args[:bgp_peer_asn_ranges] if args.key?(:bgp_peer_asn_ranges)
|
20482
|
+
@network_connectivity_center = args[:network_connectivity_center] if args.key?(:network_connectivity_center)
|
20483
|
+
end
|
20484
|
+
end
|
20485
|
+
|
20486
|
+
#
|
20487
|
+
class InterconnectAttachmentConfigurationConstraintsBgpPeerAsnRange
|
20488
|
+
include Google::Apis::Core::Hashable
|
20489
|
+
|
20490
|
+
#
|
20491
|
+
# Corresponds to the JSON property `max`
|
20492
|
+
# @return [Fixnum]
|
20493
|
+
attr_accessor :max
|
20494
|
+
|
20495
|
+
#
|
20496
|
+
# Corresponds to the JSON property `min`
|
20497
|
+
# @return [Fixnum]
|
20498
|
+
attr_accessor :min
|
20499
|
+
|
20500
|
+
def initialize(**args)
|
20501
|
+
update!(**args)
|
20502
|
+
end
|
20503
|
+
|
20504
|
+
# Update properties of this object
|
20505
|
+
def update!(**args)
|
20506
|
+
@max = args[:max] if args.key?(:max)
|
20507
|
+
@min = args[:min] if args.key?(:min)
|
20508
|
+
end
|
20509
|
+
end
|
20510
|
+
|
20413
20511
|
# Response to the list request, and contains a list of interconnect attachments.
|
20414
20512
|
class InterconnectAttachmentList
|
20415
20513
|
include Google::Apis::Core::Hashable
|
@@ -21563,12 +21661,25 @@ module Google
|
|
21563
21661
|
# @return [String]
|
21564
21662
|
attr_accessor :address
|
21565
21663
|
|
21664
|
+
# [Output Only] Subset of fields from InterconnectAttachment's |
|
21665
|
+
# configurationConstraints| field that apply to all attachments for this remote
|
21666
|
+
# location.
|
21667
|
+
# Corresponds to the JSON property `attachmentConfigurationConstraints`
|
21668
|
+
# @return [Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraints]
|
21669
|
+
attr_accessor :attachment_configuration_constraints
|
21670
|
+
|
21566
21671
|
# [Output Only] Metropolitan area designator that indicates which city an
|
21567
21672
|
# interconnect is located. For example: "Chicago, IL", "Amsterdam, Netherlands".
|
21568
21673
|
# Corresponds to the JSON property `city`
|
21569
21674
|
# @return [String]
|
21570
21675
|
attr_accessor :city
|
21571
21676
|
|
21677
|
+
# [Output Only] Constraints on the parameters for creating Cross-Cloud
|
21678
|
+
# Interconnect and associated InterconnectAttachments.
|
21679
|
+
# Corresponds to the JSON property `constraints`
|
21680
|
+
# @return [Google::Apis::ComputeAlpha::InterconnectRemoteLocationConstraints]
|
21681
|
+
attr_accessor :constraints
|
21682
|
+
|
21572
21683
|
# [Output Only] Continent for this location, which can take one of the following
|
21573
21684
|
# values: - AFRICA - ASIA_PAC - EUROPE - NORTH_AMERICA - SOUTH_AMERICA
|
21574
21685
|
# Corresponds to the JSON property `continent`
|
@@ -21608,6 +21719,19 @@ module Google
|
|
21608
21719
|
# @return [String]
|
21609
21720
|
attr_accessor :kind
|
21610
21721
|
|
21722
|
+
# [Output Only] Link Aggregation Control Protocol (LACP) constraints, which can
|
21723
|
+
# take one of the following values: LACP_SUPPORTED, LACP_UNSUPPORTED
|
21724
|
+
# Corresponds to the JSON property `lacp`
|
21725
|
+
# @return [String]
|
21726
|
+
attr_accessor :lacp
|
21727
|
+
|
21728
|
+
# [Output Only] The maximum number of 100 Gbps ports supported in a link
|
21729
|
+
# aggregation group (LAG). When linkType is 100 Gbps, requestedLinkCount cannot
|
21730
|
+
# exceed max_lag_size_100_gbps.
|
21731
|
+
# Corresponds to the JSON property `maxLagSize100Gbps`
|
21732
|
+
# @return [Fixnum]
|
21733
|
+
attr_accessor :max_lag_size100_gbps
|
21734
|
+
|
21611
21735
|
# [Output Only] Name of the resource.
|
21612
21736
|
# Corresponds to the JSON property `name`
|
21613
21737
|
# @return [String]
|
@@ -21619,9 +21743,9 @@ module Google
|
|
21619
21743
|
# @return [String]
|
21620
21744
|
attr_accessor :peeringdb_facility_id
|
21621
21745
|
|
21622
|
-
# [Output
|
21746
|
+
# [Output Only] Permitted connections.
|
21623
21747
|
# Corresponds to the JSON property `permittedConnections`
|
21624
|
-
# @return [Google::Apis::ComputeAlpha::InterconnectRemoteLocationPermittedConnections]
|
21748
|
+
# @return [Array<Google::Apis::ComputeAlpha::InterconnectRemoteLocationPermittedConnections>]
|
21625
21749
|
attr_accessor :permitted_connections
|
21626
21750
|
|
21627
21751
|
# [Output Only] Indicates the service provider present at the remote location.
|
@@ -21656,7 +21780,9 @@ module Google
|
|
21656
21780
|
# Update properties of this object
|
21657
21781
|
def update!(**args)
|
21658
21782
|
@address = args[:address] if args.key?(:address)
|
21783
|
+
@attachment_configuration_constraints = args[:attachment_configuration_constraints] if args.key?(:attachment_configuration_constraints)
|
21659
21784
|
@city = args[:city] if args.key?(:city)
|
21785
|
+
@constraints = args[:constraints] if args.key?(:constraints)
|
21660
21786
|
@continent = args[:continent] if args.key?(:continent)
|
21661
21787
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
21662
21788
|
@description = args[:description] if args.key?(:description)
|
@@ -21664,6 +21790,8 @@ module Google
|
|
21664
21790
|
@facility_provider_facility_id = args[:facility_provider_facility_id] if args.key?(:facility_provider_facility_id)
|
21665
21791
|
@id = args[:id] if args.key?(:id)
|
21666
21792
|
@kind = args[:kind] if args.key?(:kind)
|
21793
|
+
@lacp = args[:lacp] if args.key?(:lacp)
|
21794
|
+
@max_lag_size100_gbps = args[:max_lag_size100_gbps] if args.key?(:max_lag_size100_gbps)
|
21667
21795
|
@name = args[:name] if args.key?(:name)
|
21668
21796
|
@peeringdb_facility_id = args[:peeringdb_facility_id] if args.key?(:peeringdb_facility_id)
|
21669
21797
|
@permitted_connections = args[:permitted_connections] if args.key?(:permitted_connections)
|
@@ -21674,6 +21802,77 @@ module Google
|
|
21674
21802
|
end
|
21675
21803
|
end
|
21676
21804
|
|
21805
|
+
#
|
21806
|
+
class InterconnectRemoteLocationConstraints
|
21807
|
+
include Google::Apis::Core::Hashable
|
21808
|
+
|
21809
|
+
# [Output Only] Port pair remote location constraints, which can take one of the
|
21810
|
+
# following values: PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION,
|
21811
|
+
# PORT_PAIR_MATCHING_REMOTE_LOCATION. GCP's API refers only to individual ports,
|
21812
|
+
# but the UI uses this field when ordering a pair of ports, to prevent users
|
21813
|
+
# from accidentally ordering something that is incompatible with their cloud
|
21814
|
+
# provider. Specifically, when ordering a redundant pair of Cross-Cloud
|
21815
|
+
# Interconnect ports, and one of them uses a remote location with
|
21816
|
+
# portPairMatchingRemoteLocation set to matching, the UI will require that both
|
21817
|
+
# ports use the same remote location.
|
21818
|
+
# Corresponds to the JSON property `portPairRemoteLocation`
|
21819
|
+
# @return [String]
|
21820
|
+
attr_accessor :port_pair_remote_location
|
21821
|
+
|
21822
|
+
# [Output Only] Port pair VLAN constraints, which can take one of the following
|
21823
|
+
# values: PORT_PAIR_UNCONSTRAINED_VLAN, PORT_PAIR_MATCHING_VLAN
|
21824
|
+
# Corresponds to the JSON property `portPairVlan`
|
21825
|
+
# @return [String]
|
21826
|
+
attr_accessor :port_pair_vlan
|
21827
|
+
|
21828
|
+
# [Output Only] [min-length, max-length] The minimum and maximum value (
|
21829
|
+
# inclusive) for the IPv4 subnet length. For example, an
|
21830
|
+
# interconnectRemoteLocation for Azure has `min: 30, max: 30` because Azure
|
21831
|
+
# requires /30 subnets. This range specifies the values supported by both cloud
|
21832
|
+
# providers. Interconnect currently supports /29 and /30 IPv4 subnet lengths. If
|
21833
|
+
# a remote cloud has no constraint on IPv4 subnet length, the range would thus
|
21834
|
+
# be `min: 29, max: 30`.
|
21835
|
+
# Corresponds to the JSON property `subnetLengthRange`
|
21836
|
+
# @return [Google::Apis::ComputeAlpha::InterconnectRemoteLocationConstraintsSubnetLengthRange]
|
21837
|
+
attr_accessor :subnet_length_range
|
21838
|
+
|
21839
|
+
def initialize(**args)
|
21840
|
+
update!(**args)
|
21841
|
+
end
|
21842
|
+
|
21843
|
+
# Update properties of this object
|
21844
|
+
def update!(**args)
|
21845
|
+
@port_pair_remote_location = args[:port_pair_remote_location] if args.key?(:port_pair_remote_location)
|
21846
|
+
@port_pair_vlan = args[:port_pair_vlan] if args.key?(:port_pair_vlan)
|
21847
|
+
@subnet_length_range = args[:subnet_length_range] if args.key?(:subnet_length_range)
|
21848
|
+
end
|
21849
|
+
end
|
21850
|
+
|
21851
|
+
#
|
21852
|
+
class InterconnectRemoteLocationConstraintsSubnetLengthRange
|
21853
|
+
include Google::Apis::Core::Hashable
|
21854
|
+
|
21855
|
+
#
|
21856
|
+
# Corresponds to the JSON property `max`
|
21857
|
+
# @return [Fixnum]
|
21858
|
+
attr_accessor :max
|
21859
|
+
|
21860
|
+
#
|
21861
|
+
# Corresponds to the JSON property `min`
|
21862
|
+
# @return [Fixnum]
|
21863
|
+
attr_accessor :min
|
21864
|
+
|
21865
|
+
def initialize(**args)
|
21866
|
+
update!(**args)
|
21867
|
+
end
|
21868
|
+
|
21869
|
+
# Update properties of this object
|
21870
|
+
def update!(**args)
|
21871
|
+
@max = args[:max] if args.key?(:max)
|
21872
|
+
@min = args[:min] if args.key?(:min)
|
21873
|
+
end
|
21874
|
+
end
|
21875
|
+
|
21677
21876
|
# Response to the list request, and contains a list of interconnect remote
|
21678
21877
|
# locations.
|
21679
21878
|
class InterconnectRemoteLocationList
|
@@ -21797,7 +21996,7 @@ module Google
|
|
21797
21996
|
class InterconnectRemoteLocationPermittedConnections
|
21798
21997
|
include Google::Apis::Core::Hashable
|
21799
21998
|
|
21800
|
-
# [Output
|
21999
|
+
# [Output Only] URL of an Interconnect location that is permitted to connect to
|
21801
22000
|
# this Interconnect remote location.
|
21802
22001
|
# Corresponds to the JSON property `interconnectLocation`
|
21803
22002
|
# @return [String]
|
@@ -25010,9 +25209,9 @@ module Google
|
|
25010
25209
|
# allows for routing to multiple App Engine services without having to create
|
25011
25210
|
# multiple Network Endpoint Groups and backend services. For example, the
|
25012
25211
|
# 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.
|
25212
|
+
# com/v2" can be backed by the same Serverless NEG with URL mask "<service>-dot-
|
25213
|
+
# appname.appspot.com/<version>". The URL mask will parse them to ` service = "
|
25214
|
+
# foo1", version = "v1" ` and ` service = "foo1", version = "v2" ` respectively.
|
25016
25215
|
# Corresponds to the JSON property `urlMask`
|
25017
25216
|
# @return [String]
|
25018
25217
|
attr_accessor :url_mask
|
@@ -25051,8 +25250,8 @@ module Google
|
|
25051
25250
|
# routing to multiple Cloud Functions without having to create multiple Network
|
25052
25251
|
# Endpoint Groups and backend services. For example, request URLs " mydomain.com/
|
25053
25252
|
# function1" and "mydomain.com/function2" can be backed by the same Serverless
|
25054
|
-
# NEG with URL mask "
|
25055
|
-
# ` and ` function = "function2" ` respectively.
|
25253
|
+
# NEG with URL mask "/<function>". The URL mask will parse them to ` function = "
|
25254
|
+
# function1" ` and ` function = "function2" ` respectively.
|
25056
25255
|
# Corresponds to the JSON property `urlMask`
|
25057
25256
|
# @return [String]
|
25058
25257
|
attr_accessor :url_mask
|
@@ -34137,7 +34336,7 @@ module Google
|
|
34137
34336
|
include Google::Apis::Core::Hashable
|
34138
34337
|
|
34139
34338
|
# New set of SslCertificate resources to associate with this TargetHttpsProxy
|
34140
|
-
# resource.
|
34339
|
+
# resource.
|
34141
34340
|
# Corresponds to the JSON property `sslCertificates`
|
34142
34341
|
# @return [Array<String>]
|
34143
34342
|
attr_accessor :ssl_certificates
|
@@ -34192,7 +34391,11 @@ module Google
|
|
34192
34391
|
class RequestMirrorPolicy
|
34193
34392
|
include Google::Apis::Core::Hashable
|
34194
34393
|
|
34195
|
-
# The full or partial URL to the BackendService resource being mirrored to.
|
34394
|
+
# The full or partial URL to the BackendService resource being mirrored to. The
|
34395
|
+
# backend service configured for a mirroring policy must reference backends that
|
34396
|
+
# are of the same type as the original backend service matched in the URL map.
|
34397
|
+
# Serverless NEG backends are not currently supported as a mirrored backend
|
34398
|
+
# service.
|
34196
34399
|
# Corresponds to the JSON property `backendService`
|
34197
34400
|
# @return [String]
|
34198
34401
|
attr_accessor :backend_service
|
@@ -35762,6 +35965,11 @@ module Google
|
|
35762
35965
|
class ResourceStatus
|
35763
35966
|
include Google::Apis::Core::Hashable
|
35764
35967
|
|
35968
|
+
# [Output Only] An opaque ID of the host on which the VM is running.
|
35969
|
+
# Corresponds to the JSON property `physicalHost`
|
35970
|
+
# @return [String]
|
35971
|
+
attr_accessor :physical_host
|
35972
|
+
|
35765
35973
|
#
|
35766
35974
|
# Corresponds to the JSON property `scheduling`
|
35767
35975
|
# @return [Google::Apis::ComputeAlpha::ResourceStatusScheduling]
|
@@ -35778,6 +35986,7 @@ module Google
|
|
35778
35986
|
|
35779
35987
|
# Update properties of this object
|
35780
35988
|
def update!(**args)
|
35989
|
+
@physical_host = args[:physical_host] if args.key?(:physical_host)
|
35781
35990
|
@scheduling = args[:scheduling] if args.key?(:scheduling)
|
35782
35991
|
@upcoming_maintenance = args[:upcoming_maintenance] if args.key?(:upcoming_maintenance)
|
35783
35992
|
end
|
@@ -40901,6 +41110,12 @@ module Google
|
|
40901
41110
|
# @return [String]
|
40902
41111
|
attr_accessor :location_hint
|
40903
41112
|
|
41113
|
+
# Number of days the snapshot should be retained before being deleted
|
41114
|
+
# automatically.
|
41115
|
+
# Corresponds to the JSON property `maxRetentionDays`
|
41116
|
+
# @return [Fixnum]
|
41117
|
+
attr_accessor :max_retention_days
|
41118
|
+
|
40904
41119
|
# Name of the resource; provided by the client when the resource is created. The
|
40905
41120
|
# name must be 1-63 characters long, and comply with RFC1035. Specifically, the
|
40906
41121
|
# name must be 1-63 characters long and match the regular expression `[a-z]([-a-
|
@@ -41046,6 +41261,7 @@ module Google
|
|
41046
41261
|
@license_codes = args[:license_codes] if args.key?(:license_codes)
|
41047
41262
|
@licenses = args[:licenses] if args.key?(:licenses)
|
41048
41263
|
@location_hint = args[:location_hint] if args.key?(:location_hint)
|
41264
|
+
@max_retention_days = args[:max_retention_days] if args.key?(:max_retention_days)
|
41049
41265
|
@name = args[:name] if args.key?(:name)
|
41050
41266
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
41051
41267
|
@self_link = args[:self_link] if args.key?(:self_link)
|
@@ -44782,8 +44998,9 @@ module Google
|
|
44782
44998
|
# @return [String]
|
44783
44999
|
attr_accessor :name
|
44784
45000
|
|
44785
|
-
#
|
44786
|
-
#
|
45001
|
+
# Must have a value of NO_NAT. Protocol forwarding delivers packets while
|
45002
|
+
# preserving the destination IP address of the forwarding rule referencing the
|
45003
|
+
# target instance.
|
44787
45004
|
# Corresponds to the JSON property `natPolicy`
|
44788
45005
|
# @return [String]
|
44789
45006
|
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.43.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 = "20220714"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2470,6 +2470,18 @@ module Google
|
|
2470
2470
|
include Google::Apis::Core::JsonObjectSupport
|
2471
2471
|
end
|
2472
2472
|
|
2473
|
+
class InterconnectAttachmentConfigurationConstraints
|
2474
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2475
|
+
|
2476
|
+
include Google::Apis::Core::JsonObjectSupport
|
2477
|
+
end
|
2478
|
+
|
2479
|
+
class InterconnectAttachmentConfigurationConstraintsBgpPeerAsnRange
|
2480
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2481
|
+
|
2482
|
+
include Google::Apis::Core::JsonObjectSupport
|
2483
|
+
end
|
2484
|
+
|
2473
2485
|
class InterconnectAttachmentList
|
2474
2486
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2475
2487
|
|
@@ -2644,6 +2656,18 @@ module Google
|
|
2644
2656
|
include Google::Apis::Core::JsonObjectSupport
|
2645
2657
|
end
|
2646
2658
|
|
2659
|
+
class InterconnectRemoteLocationConstraints
|
2660
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2661
|
+
|
2662
|
+
include Google::Apis::Core::JsonObjectSupport
|
2663
|
+
end
|
2664
|
+
|
2665
|
+
class InterconnectRemoteLocationConstraintsSubnetLengthRange
|
2666
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2667
|
+
|
2668
|
+
include Google::Apis::Core::JsonObjectSupport
|
2669
|
+
end
|
2670
|
+
|
2647
2671
|
class InterconnectRemoteLocationList
|
2648
2672
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2649
2673
|
|
@@ -11342,6 +11366,8 @@ module Google
|
|
11342
11366
|
property :cloud_router_ip_address, as: 'cloudRouterIpAddress'
|
11343
11367
|
property :cloud_router_ipv6_address, as: 'cloudRouterIpv6Address'
|
11344
11368
|
property :cloud_router_ipv6_interface_id, as: 'cloudRouterIpv6InterfaceId'
|
11369
|
+
property :configuration_constraints, as: 'configurationConstraints', class: Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraints, decorator: Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraints::Representation
|
11370
|
+
|
11345
11371
|
property :creation_timestamp, as: 'creationTimestamp'
|
11346
11372
|
property :customer_router_ip_address, as: 'customerRouterIpAddress'
|
11347
11373
|
property :customer_router_ipv6_address, as: 'customerRouterIpv6Address'
|
@@ -11367,12 +11393,14 @@ module Google
|
|
11367
11393
|
property :private_interconnect_info, as: 'privateInterconnectInfo', class: Google::Apis::ComputeAlpha::InterconnectAttachmentPrivateInfo, decorator: Google::Apis::ComputeAlpha::InterconnectAttachmentPrivateInfo::Representation
|
11368
11394
|
|
11369
11395
|
property :region, as: 'region'
|
11396
|
+
property :remote_service, as: 'remoteService'
|
11370
11397
|
property :router, as: 'router'
|
11371
11398
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
11372
11399
|
property :self_link, as: 'selfLink'
|
11373
11400
|
property :self_link_with_id, as: 'selfLinkWithId'
|
11374
11401
|
property :stack_type, as: 'stackType'
|
11375
11402
|
property :state, as: 'state'
|
11403
|
+
property :subnet_length, as: 'subnetLength'
|
11376
11404
|
property :type, as: 'type'
|
11377
11405
|
property :vlan_tag8021q, as: 'vlanTag8021q'
|
11378
11406
|
end
|
@@ -11411,6 +11439,24 @@ module Google
|
|
11411
11439
|
end
|
11412
11440
|
end
|
11413
11441
|
|
11442
|
+
class InterconnectAttachmentConfigurationConstraints
|
11443
|
+
# @private
|
11444
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
11445
|
+
property :bgp_md5, as: 'bgpMd5'
|
11446
|
+
collection :bgp_peer_asn_ranges, as: 'bgpPeerAsnRanges', class: Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraintsBgpPeerAsnRange, decorator: Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraintsBgpPeerAsnRange::Representation
|
11447
|
+
|
11448
|
+
property :network_connectivity_center, as: 'networkConnectivityCenter'
|
11449
|
+
end
|
11450
|
+
end
|
11451
|
+
|
11452
|
+
class InterconnectAttachmentConfigurationConstraintsBgpPeerAsnRange
|
11453
|
+
# @private
|
11454
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
11455
|
+
property :max, as: 'max'
|
11456
|
+
property :min, as: 'min'
|
11457
|
+
end
|
11458
|
+
end
|
11459
|
+
|
11414
11460
|
class InterconnectAttachmentList
|
11415
11461
|
# @private
|
11416
11462
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -11711,7 +11757,11 @@ module Google
|
|
11711
11757
|
# @private
|
11712
11758
|
class Representation < Google::Apis::Core::JsonRepresentation
|
11713
11759
|
property :address, as: 'address'
|
11760
|
+
property :attachment_configuration_constraints, as: 'attachmentConfigurationConstraints', class: Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraints, decorator: Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraints::Representation
|
11761
|
+
|
11714
11762
|
property :city, as: 'city'
|
11763
|
+
property :constraints, as: 'constraints', class: Google::Apis::ComputeAlpha::InterconnectRemoteLocationConstraints, decorator: Google::Apis::ComputeAlpha::InterconnectRemoteLocationConstraints::Representation
|
11764
|
+
|
11715
11765
|
property :continent, as: 'continent'
|
11716
11766
|
property :creation_timestamp, as: 'creationTimestamp'
|
11717
11767
|
property :description, as: 'description'
|
@@ -11719,9 +11769,11 @@ module Google
|
|
11719
11769
|
property :facility_provider_facility_id, as: 'facilityProviderFacilityId'
|
11720
11770
|
property :id, :numeric_string => true, as: 'id'
|
11721
11771
|
property :kind, as: 'kind'
|
11772
|
+
property :lacp, as: 'lacp'
|
11773
|
+
property :max_lag_size100_gbps, as: 'maxLagSize100Gbps'
|
11722
11774
|
property :name, as: 'name'
|
11723
11775
|
property :peeringdb_facility_id, as: 'peeringdbFacilityId'
|
11724
|
-
|
11776
|
+
collection :permitted_connections, as: 'permittedConnections', class: Google::Apis::ComputeAlpha::InterconnectRemoteLocationPermittedConnections, decorator: Google::Apis::ComputeAlpha::InterconnectRemoteLocationPermittedConnections::Representation
|
11725
11777
|
|
11726
11778
|
property :remote_service, as: 'remoteService'
|
11727
11779
|
property :self_link, as: 'selfLink'
|
@@ -11730,6 +11782,24 @@ module Google
|
|
11730
11782
|
end
|
11731
11783
|
end
|
11732
11784
|
|
11785
|
+
class InterconnectRemoteLocationConstraints
|
11786
|
+
# @private
|
11787
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
11788
|
+
property :port_pair_remote_location, as: 'portPairRemoteLocation'
|
11789
|
+
property :port_pair_vlan, as: 'portPairVlan'
|
11790
|
+
property :subnet_length_range, as: 'subnetLengthRange', class: Google::Apis::ComputeAlpha::InterconnectRemoteLocationConstraintsSubnetLengthRange, decorator: Google::Apis::ComputeAlpha::InterconnectRemoteLocationConstraintsSubnetLengthRange::Representation
|
11791
|
+
|
11792
|
+
end
|
11793
|
+
end
|
11794
|
+
|
11795
|
+
class InterconnectRemoteLocationConstraintsSubnetLengthRange
|
11796
|
+
# @private
|
11797
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
11798
|
+
property :max, as: 'max'
|
11799
|
+
property :min, as: 'min'
|
11800
|
+
end
|
11801
|
+
end
|
11802
|
+
|
11733
11803
|
class InterconnectRemoteLocationList
|
11734
11804
|
# @private
|
11735
11805
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -15434,6 +15504,7 @@ module Google
|
|
15434
15504
|
class ResourceStatus
|
15435
15505
|
# @private
|
15436
15506
|
class Representation < Google::Apis::Core::JsonRepresentation
|
15507
|
+
property :physical_host, as: 'physicalHost'
|
15437
15508
|
property :scheduling, as: 'scheduling', class: Google::Apis::ComputeAlpha::ResourceStatusScheduling, decorator: Google::Apis::ComputeAlpha::ResourceStatusScheduling::Representation
|
15438
15509
|
|
15439
15510
|
property :upcoming_maintenance, as: 'upcomingMaintenance', class: Google::Apis::ComputeAlpha::ResourceStatusUpcomingMaintenance, decorator: Google::Apis::ComputeAlpha::ResourceStatusUpcomingMaintenance::Representation
|
@@ -16687,6 +16758,7 @@ module Google
|
|
16687
16758
|
collection :license_codes, as: 'licenseCodes'
|
16688
16759
|
collection :licenses, as: 'licenses'
|
16689
16760
|
property :location_hint, as: 'locationHint'
|
16761
|
+
property :max_retention_days, as: 'maxRetentionDays'
|
16690
16762
|
property :name, as: 'name'
|
16691
16763
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
16692
16764
|
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.43.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-07-
|
11
|
+
date: 2022-07-25 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.43.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: []
|