| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] |
| name |
str |
|
[optional] |
| flavor |
FlavorResource |
|
[optional] |
| status |
str |
|
[optional] |
| image |
str |
|
[optional] |
| fixed_ip |
str |
|
[optional] |
| floating_ip |
str |
|
[optional] |
| created_at |
datetime |
|
[optional] |
from hyperstack.models.container_resource import ContainerResource
# TODO update the JSON string below
json = "{}"
# create an instance of ContainerResource from a JSON string
container_resource_instance = ContainerResource.from_json(json)
# print the JSON string representation of the object
print ContainerResource.to_json()
# convert the object into a dict
container_resource_dict = container_resource_instance.to_dict()
# create an instance of ContainerResource from a dict
container_resource_form_dict = container_resource.from_dict(container_resource_dict)
[Back to Model list] [Back to API list] [Back to README]