Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

File metadata and controls

30 lines (21 loc) · 1.13 KB

CreateEnvironment

Properties

Name Type Description Notes
name str The name of the environment being created.
region str The geographic location of the data center where the environment is being created. To learn more about regions, click here.

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_from_dict = CreateEnvironment.from_dict(create_environment_dict)

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