Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 1.1 KB

File metadata and controls

31 lines (21 loc) · 1.1 KB

DeploymentResourcesConf

Properties

Name Type Description Notes
requests CpuMemoryConfig [optional]
limits CpuMemoryConfig [optional]

Example

from cloudharness_model.models.deployment_resources_conf import DeploymentResourcesConf

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

# convert the object into a dict
deployment_resources_conf_dict = deployment_resources_conf_instance.to_dict()
# create an instance of DeploymentResourcesConf from a dict
deployment_resources_conf_from_dict = DeploymentResourcesConf.from_dict(deployment_resources_conf_dict)

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