Specifies Kubernetes resource requests for a Stress Test Job.
| Name | Type | Description | Notes |
|---|---|---|---|
| ram_request_megabytes | str | Megabytes of RAM requested for the Stress Test Job. | [optional] |
| cpu_request_millicores | str | Millicores of CPU requested for the Stress Test Job. | [optional] |
from ri.apiclient.models.resource_request import ResourceRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ResourceRequest from a JSON string
resource_request_instance = ResourceRequest.from_json(json)
# print the JSON string representation of the object
print(ResourceRequest.to_json())
# convert the object into a dict
resource_request_dict = resource_request_instance.to_dict()
# create an instance of ResourceRequest from a dict
resource_request_from_dict = ResourceRequest.from_dict(resource_request_dict)