diff --git a/docs/getting_started.rst b/docs/getting_started.rst index ccffb90c..5e98cfe7 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -286,7 +286,7 @@ Create, update, query, and delete steps .. literalinclude:: ../examples/testmonitor/steps.py :language: python - :linenos + :linenos: Notebook API ------- diff --git a/examples/testmonitor/results.py b/examples/testmonitor/results.py index f4fb8bae..f606800e 100644 --- a/examples/testmonitor/results.py +++ b/examples/testmonitor/results.py @@ -6,6 +6,7 @@ ResultField, Status, StatusType, + UpdateResultRequest, ) program_name = "Example Name" @@ -70,9 +71,12 @@ def create_some_results(): # Update the first result that you just created and replace the keywords updated_result = create_response.results[0] -updated_result.keywords = ["new keyword"] -updated_result.properties = {"new property key": "new value"} -update_response = client.update_results([create_response.results[0]], replace=True) +updated_result = UpdateResultRequest( + id=create_response.results[0].id, + keywords=["new keyword"], + properties={"new property key": "new value"}, +) +update_response = client.update_results([updated_result], replace=True) # Query for just the ids of results that match the family values_query = QueryResultValuesRequest(