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
Returns true if there is enough capacity in the metro to fulfill the quantity set. Returns false if there is not enough.
[optional]
href
str
[optional]
metro
str
The metro ID or code sent to check capacity.
[optional]
plan
str
The plan ID or slug sent to check capacity.
[optional]
quantity
str
The number of servers sent to check capacity.
[optional]
Example
fromequinix_metal.models.capacity_check_per_metro_infoimportCapacityCheckPerMetroInfo# TODO update the JSON string belowjson="{}"# create an instance of CapacityCheckPerMetroInfo from a JSON stringcapacity_check_per_metro_info_instance=CapacityCheckPerMetroInfo.from_json(json)
# print the JSON string representation of the objectprint(CapacityCheckPerMetroInfo.to_json())
# convert the object into a dictcapacity_check_per_metro_info_dict=capacity_check_per_metro_info_instance.to_dict()
# create an instance of CapacityCheckPerMetroInfo from a dictcapacity_check_per_metro_info_form_dict=capacity_check_per_metro_info.from_dict(capacity_check_per_metro_info_dict)