Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 940 Bytes

CreateEnvironment.md

File metadata and controls

30 lines (21 loc) · 940 Bytes

CreateEnvironment

Properties

Name Type Description Notes
name str
region str

Example

from hyperstack.models.create_environment import CreateEnvironment

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

# convert the object into a dict
create_environment_dict = create_environment_instance.to_dict()
# create an instance of CreateEnvironment from a dict
create_environment_form_dict = create_environment.from_dict(create_environment_dict)

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