You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# [Output Only] The status of this InterconnectLocation, which can take one of
23373
23380
# the following values: - CLOSED: The InterconnectLocation is closed and is
23374
23381
# unavailable for provisioning new Interconnects. - AVAILABLE: The
@@ -23405,6 +23412,7 @@ def update!(**args)
23405
23412
@peeringdb_facility_id = args[:peeringdb_facility_id] if args.key?(:peeringdb_facility_id)
23406
23413
@region_infos = args[:region_infos] if args.key?(:region_infos)
23407
23414
@self_link = args[:self_link] if args.key?(:self_link)
23415
+
@single_region_production_critical_peer_locations = args[:single_region_production_critical_peer_locations] if args.key?(:single_region_production_critical_peer_locations)
23408
23416
@status = args[:status] if args.key?(:status)
23409
23417
@supports_pzs = args[:supports_pzs] if args.key?(:supports_pzs)
23410
23418
end
@@ -23858,6 +23866,13 @@ class InterconnectRemoteLocation
23858
23866
# @return [Fixnum]
23859
23867
attr_accessor :max_lag_size10_gbps
23860
23868
23869
+
# [Output Only] The maximum number of 400 Gbps ports supported in a link
23870
+
# aggregation group (LAG). When linkType is 400 Gbps, requestedLinkCount cannot
23871
+
# exceed max_lag_size_400_gbps.
23872
+
# Corresponds to the JSON property `maxLagSize400Gbps`
23873
+
# @return [Fixnum]
23874
+
attr_accessor :max_lag_size400_gbps
23875
+
23861
23876
# [Output Only] Name of the resource.
23862
23877
# Corresponds to the JSON property `name`
23863
23878
# @return [String]
@@ -23914,6 +23929,7 @@ def update!(**args)
23914
23929
@lacp = args[:lacp] if args.key?(:lacp)
23915
23930
@max_lag_size100_gbps = args[:max_lag_size100_gbps] if args.key?(:max_lag_size100_gbps)
23916
23931
@max_lag_size10_gbps = args[:max_lag_size10_gbps] if args.key?(:max_lag_size10_gbps)
23932
+
@max_lag_size400_gbps = args[:max_lag_size400_gbps] if args.key?(:max_lag_size400_gbps)
23917
23933
@name = args[:name] if args.key?(:name)
23918
23934
@peeringdb_facility_id = args[:peeringdb_facility_id] if args.key?(:peeringdb_facility_id)
23919
23935
@permitted_connections = args[:permitted_connections] if args.key?(:permitted_connections)
@@ -36374,13 +36390,19 @@ class RequestMirrorPolicy
36374
36390
# @return [String]
36375
36391
attr_accessor :backend_service
36376
36392
36393
+
# The percentage of requests to be mirrored to `backend_service`.
36394
+
# Corresponds to the JSON property `mirrorPercent`
36395
+
# @return [Float]
36396
+
attr_accessor :mirror_percent
36397
+
36377
36398
def initialize(**args)
36378
36399
update!(**args)
36379
36400
end
36380
36401
36381
36402
# Update properties of this object
36382
36403
def update!(**args)
36383
36404
@backend_service = args[:backend_service] if args.key?(:backend_service)
36405
+
@mirror_percent = args[:mirror_percent] if args.key?(:mirror_percent)
0 commit comments