clearml-server/apiserver/schema/services
2023-07-26 18:39:41 +03:00
..
_api_defaults.conf
_common.conf Add reports support 2022-12-21 18:30:54 +02:00
_events_common.conf Task reports can now return single value metrics 2023-05-25 19:18:24 +03:00
_tasks_common.conf Add min and max value iteration to last metrics 2022-12-21 18:36:50 +02:00
auth.conf Add auth.edit_credentials 2022-05-17 16:08:12 +03:00
debug.conf
events.conf Fix events.get_multitask_plots to retrieve last iterations per each task metric separately 2023-07-26 18:34:30 +03:00
login.conf Add missing login.logout endpoint 2021-05-11 16:12:27 +03:00
models.conf Add include_subprojects to tasks/models.get_all endpoints 2023-07-26 18:24:49 +03:00
organization.conf Add field_mappings to organizations download endpoints 2023-07-26 18:39:41 +03:00
pipelines.conf Add pipelines.delete_runs endpoint 2023-07-26 18:23:05 +03:00
projects.conf Support paging in projects.get_model_metadata_values and get_hyperparam_values endpoints 2023-07-26 18:38:11 +03:00
queues.conf Update API version to 2.21 2022-09-29 19:31:42 +03:00
README.md
reports.conf Fix events.get_multitask_plots to retrieve last iterations per each task metric separately 2023-07-26 18:34:30 +03:00
server.conf
tasks.conf Add include_subprojects to tasks/models.get_all endpoints 2023-07-26 18:24:49 +03:00
users.conf Add user creation time to users.get_current_user 2022-07-08 17:59:45 +03:00
workers.conf Add workers.get_count endpoint 2023-07-26 18:21:52 +03:00

Writing descriptions

There are two options for writing parameters descriptions. Mixing between the two will result in output which is not Sphinx friendly. Whatever you choose, lines are subject to wrapping.

  • non-strict whitespace - Break the string however you like. Newlines and sequences of tabs/spaces are replaced by one space. Example:
    get_all {
        "1.5" {
            description: """This will all appear
            as one long
            sentence.
            Break lines wherever you
            like.
            """
        }
    }
    
    Becomes:
    class GetAllRequest(...):
        """
        This will all appear as one long sentence. Break lines wherever you
        like.
        """
    
  • strict whitespace - Single newlines will be replaced by spaces. Double newlines become a single newline WITH INDENTATION PRESERVED, so if uniform indentation is requried for all lines you MUST start new lines at the first column. Example:
    get_all {
        "1.5" {
            description: """
    Some general sentence.
    
    - separate lines must have double newlines between them
    
    - must begin at first column even though the "description" key is indented
    
    - you can use single newlines, the lines will be
      joined
    
        -- sub bullet: this line's leading spaces are preserved
    """
        }
    }
    
    Becomes:
    class GetAllRequest(...):
        """
        Some general sentence.
        - separate lines must have double newlines between them
        - must begin at first column even though the "description" key is indented
        - you can use single newlines, the lines will be joined
            -- sub bullet: this line's leading spaces are preserved
        """