---------------------------------------------------------------------- This is the API documentation for the gdtest_stress_all_sections library. ---------------------------------------------------------------------- ## Core Primary API create(name: str) -> dict Create a new resource. Parameters ---------- name : str The name of the resource to create. Returns ------- dict A dictionary with the created resource. Examples -------- >>> create("item") {'name': 'item', 'id': 1} read(id: int) -> dict Read a resource by its ID. Parameters ---------- id : int The identifier of the resource. Returns ------- dict A dictionary with the resource data. Examples -------- >>> read(1) {'id': 1, 'data': 'loaded'} ## Admin Admin API update(id: int, data: dict) -> dict Update a resource by its ID. Parameters ---------- id : int The identifier of the resource to update. data : dict The new data to apply. Returns ------- dict The updated resource. Examples -------- >>> update(1, {"status": "active"}) {'id': 1, 'status': 'active'} delete(id: int) -> bool Delete a resource by its ID. Parameters ---------- id : int The identifier of the resource to delete. Returns ------- bool True if the resource was deleted. Examples -------- >>> delete(1) True ---------------------------------------------------------------------- This is the User Guide documentation for the package. ---------------------------------------------------------------------- # Introduction An introduction to the package and its capabilities.