@@ -2338,7 +2338,7 @@ def save_result(
23382338 Materialize the processed data to the given file format.
23392339
23402340 :param format: an output format supported by the backend.
2341- :param options: file format options
2341+ :param options: (optional) file format options
23422342
23432343 .. versionchanged:: 0.39.0
23442344 returns a :py:class:`~openeo.rest.result.SaveResult` instance instead
@@ -2389,14 +2389,14 @@ def download(
23892389 If outputfile is provided, the result is stored on disk locally, otherwise, a bytes object is returned.
23902390 The bytes object can be passed on to a suitable decoder for decoding.
23912391
2392- :param outputfile: Optional, output path to download to.
2393- :param format: Optional, an output format supported by the backend.
2394- :param options: Optional, file format options
2395- :param validate: Optional toggle to enable/prevent validation of the process graphs before execution
2392+ :param outputfile: (optional) output path to download to.
2393+ :param format: (optional) an output format supported by the backend.
2394+ :param options: (optional) file format options
2395+ :param validate: (optional) toggle to enable/prevent validation of the process graphs before execution
23962396 (overruling the connection's ``auto_validate`` setting).
2397- :param auto_add_save_result: Automatically add a ``save_result`` node to the process graph.
2398- :param additional: additional (top-level) properties to set in the request body
2399- :param job_options: dictionary of job options to pass to the backend
2397+ :param auto_add_save_result: whether to automatically add a ``save_result`` node to the process graph.
2398+ :param additional: (optional) additional (top-level) properties to set in the request body
2399+ :param job_options: (optional) dictionary of job options to pass to the backend
24002400 (under top-level property "job_options")
24012401
24022402 :return: None if the result is stored to disk, or a bytes object returned by the backend.
@@ -2544,24 +2544,25 @@ def execute_batch(
25442544 for batch jobs that are expected to complete
25452545 in a time that is reasonable for your use case.
25462546
2547- :param outputfile: Optional, output path to download to.
2548- :param out_format: (optional) File format to use for the job result.
2549- :param title: job title.
2550- :param description: job description.
2551- :param plan: The billing plan to process and charge the job with
2552- :param budget: Maximum budget to be spent on executing the job.
2547+ :param outputfile: (optional) output path to download to.
2548+ :param out_format: (optional) file format to use for the job result.
2549+ :param title: (optional) job title.
2550+ :param description: (optional) job description.
2551+ :param plan: (optional) the billing plan to process and charge the job with.
2552+ :param budget: (optional) maximum budget to be spent on executing the job.
25532553 Note that some backends do not honor this limit.
2554- :param additional: additional (top-level) properties to set in the request body
2555- :param job_options: dictionary of job options to pass to the backend
2554+ :param additional: (optional) additional (top-level) properties to set in the request body
2555+ :param job_options: (optional) dictionary of job options to pass to the backend
25562556 (under top-level property "job_options")
2557- :param validate: Optional toggle to enable/prevent validation of the process graphs before execution
2557+ :param validate: (optional) toggle to enable/prevent validation of the process graphs before execution
25582558 (overruling the connection's ``auto_validate`` setting).
2559- :param auto_add_save_result: Automatically add a ``save_result`` node to the process graph.
2559+ :param auto_add_save_result: whether to automatically add a ``save_result`` node to the process graph.
25602560 :param show_error_logs: whether to automatically print error logs when the batch job failed.
2561- :param log_level: Optional minimum severity level for log entries that the back-end should keep track of.
2561+ :param log_level: (optional) minimum severity level for log entries that the back-end should keep track of.
25622562 One of "error" (highest severity), "warning", "info", and "debug" (lowest severity).
25632563 :param max_poll_interval: maximum number of seconds to sleep between job status polls
25642564 :param connection_retry_interval: how long to wait when status poll failed due to connection issue
2565+ :param print: print/logging function to show progress/status
25652566
25662567 .. versionchanged:: 0.32.0
25672568 Added ``auto_add_save_result`` option
@@ -2632,22 +2633,22 @@ def create_job(
26322633 Use :py:meth:`execute_batch` instead to let the openEO Python client
26332634 take care of the full job life cycle: create, start and track its progress until completion.
26342635
2635- :param out_format: output file format.
2636- :param title: job title.
2637- :param description: job description.
2638- :param plan: The billing plan to process and charge the job with.
2639- :param budget: Maximum budget to be spent on executing the job.
2636+ :param out_format: (optional) file format to use for the job result .
2637+ :param title: (optional) job title.
2638+ :param description: (optional) job description.
2639+ :param plan: (optional) the billing plan to process and charge the job with.
2640+ :param budget: (optional) maximum budget to be spent on executing the job.
26402641 Note that some backends do not honor this limit.
2641- :param additional: additional (top-level) properties to set in the request body
2642- :param job_options: dictionary of job options to pass to the backend
2642+ :param additional: (optional) additional (top-level) properties to set in the request body
2643+ :param job_options: (optional) dictionary of job options to pass to the backend
26432644 (under top-level property "job_options")
2644- :param validate: Optional toggle to enable/prevent validation of the process graphs before execution
2645+ :param validate: (optional) toggle to enable/prevent validation of the process graphs before execution
26452646 (overruling the connection's ``auto_validate`` setting).
2646- :param auto_add_save_result: Automatically add a ``save_result`` node to the process graph.
2647- :param log_level: Optional minimum severity level for log entries that the back-end should keep track of.
2647+ :param auto_add_save_result: whether to automatically add a ``save_result`` node to the process graph.
2648+ :param log_level: (optional) minimum severity level for log entries that the back-end should keep track of.
26482649 One of "error" (highest severity), "warning", "info", and "debug" (lowest severity).
26492650
2650- :return: Created job.
2651+ :return: Handle for the job created at the backend .
26512652
26522653 .. versionchanged:: 0.32.0
26532654 Added ``auto_add_save_result`` option
0 commit comments