Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.53 KB

SpotMarketRequestCreateInput.md

File metadata and controls

36 lines (27 loc) · 1.53 KB

SpotMarketRequestCreateInput

Properties

Name Type Description Notes
devices_max int [optional]
devices_min int [optional]
end_at datetime [optional]
facilities List[str] [optional]
href str [optional]
instance_parameters SpotMarketRequestCreateInputInstanceParameters [optional]
max_bid_price float [optional]
metro str The metro ID or code the spot market request will be created in. [optional]

Example

from equinix_metal.models.spot_market_request_create_input import SpotMarketRequestCreateInput

# TODO update the JSON string below
json = "{}"
# create an instance of SpotMarketRequestCreateInput from a JSON string
spot_market_request_create_input_instance = SpotMarketRequestCreateInput.from_json(json)
# print the JSON string representation of the object
print(SpotMarketRequestCreateInput.to_json())

# convert the object into a dict
spot_market_request_create_input_dict = spot_market_request_create_input_instance.to_dict()
# create an instance of SpotMarketRequestCreateInput from a dict
spot_market_request_create_input_form_dict = spot_market_request_create_input.from_dict(spot_market_request_create_input_dict)

[Back to Model list] [Back to API list] [Back to README]