Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.2 KB

Instances.md

File metadata and controls

36 lines (27 loc) · 1.2 KB

Instances

Properties

Name Type Description Notes
instance_id int Instance id
display_name str Instance display name
name str Instance name
product_id str Product id
private_ip_config PrivateIpConfig
ip_config IpConfig
status str State of the instance in the Private Network
error_message str Message in case of an error. [optional]

Example

from pfruck_contabo.models.instances import Instances

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

# convert the object into a dict
instances_dict = instances_instance.to_dict()
# create an instance of Instances from a dict
instances_from_dict = Instances.from_dict(instances_dict)

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