| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| name | str | [optional] | |
| region | str | [optional] | |
| instances | List[InstanceResources] | [optional] | |
| volumes | List[VolumeResource] | [optional] | |
| containers | List[ContainerResource] | [optional] | |
| clusters | List[ClusterResource] | [optional] | |
| created_at | datetime | [optional] |
from hyperstack.models.envrionment_resources import EnvrionmentResources
# TODO update the JSON string below
json = "{}"
# create an instance of EnvrionmentResources from a JSON string
envrionment_resources_instance = EnvrionmentResources.from_json(json)
# print the JSON string representation of the object
print EnvrionmentResources.to_json()
# convert the object into a dict
envrionment_resources_dict = envrionment_resources_instance.to_dict()
# create an instance of EnvrionmentResources from a dict
envrionment_resources_form_dict = envrionment_resources.from_dict(envrionment_resources_dict)