---------------------------------------------------------------------- This is the API documentation for the gdtest_stress_all_config library. ---------------------------------------------------------------------- ## Functions Public functions stress_create(name: str) -> dict Create a new stress test resource. Args: name: The name of the resource to create. Returns: A dictionary with the created resource details. Examples: >>> stress_create("test-item") {'name': 'test-item', 'created': True} stress_read(id: int) -> dict Read a stress test resource by ID. Args: id: The identifier of the resource to read. Returns: A dictionary with the resource data. Examples: >>> stress_read(1) {'id': 1, 'data': 'loaded'} stress_delete(id: int) -> bool Delete a stress test resource by ID. Args: id: The identifier of the resource to delete. Returns: True if the resource was deleted successfully. Examples: >>> stress_delete(1) True