Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.11 KB

File metadata and controls

35 lines (26 loc) · 1.11 KB

Environment

Environment creation/update request schema

Properties

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]

Example

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)

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