| Name | Type | Description | Notes |
|---|---|---|---|
| requests | CpuMemoryConfig | [optional] | |
| limits | CpuMemoryConfig | [optional] |
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)