Environment creation/update request schema
| Name | Type | Description | Notes |
|---|---|---|---|
| env_name | str | ||
| desired_count | int | [optional] | |
| min_capacity | int | [optional] | |
| max_capacity | int | [optional] | |
| clone_configuration_from | str | [optional] | |
| image_suffix | str | Image tag suffix for cloning | [optional] |
from quantcdn.models.environment import Environment
# TODO update the JSON string below
json = "{}"
# create an instance of Environment from a JSON string
environment_instance = Environment.from_json(json)
# print the JSON string representation of the object
print(Environment.to_json())
# convert the object into a dict
environment_dict = environment_instance.to_dict()
# create an instance of Environment from a dict
environment_from_dict = Environment.from_dict(environment_dict)