Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.38 KB

File metadata and controls

36 lines (27 loc) · 1.38 KB

EnvrionmentResources

Properties

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]

Example

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)

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