Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.11 KB

File metadata and controls

30 lines (22 loc) · 1.11 KB

ResourceRequest

Specifies Kubernetes resource requests for a Stress Test Job.

Properties

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]

Example

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)

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