Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.51 KB

File metadata and controls

32 lines (24 loc) · 1.51 KB

StartStressTestRequest

StartStressTestRequest is the request object containing the project information and the configurations for the Stress Test.

Properties

Name Type Description Notes
project_id object Uniquely specifies a Project. [optional]
test_run_config TestRunConfig [optional]
agent_id ID [optional]
experimental_fields Dict[str, object] Fields that enable experimental functionality. WARNING: these fields are experimental; ie, their functionality may not be reliable or backwards-compatible. Do not use these fields in production. [optional]

Example

from ri.apiclient.models.start_stress_test_request import StartStressTestRequest

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

# convert the object into a dict
start_stress_test_request_dict = start_stress_test_request_instance.to_dict()
# create an instance of StartStressTestRequest from a dict
start_stress_test_request_from_dict = StartStressTestRequest.from_dict(start_stress_test_request_dict)

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