clearml-server/apiserver/schema/services
2023-05-25 19:22:10 +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
debug.conf
events.conf Task reports can now return single value metrics 2023-05-25 19:18:24 +03:00
login.conf
models.conf Model events are fully supported 2023-05-25 19:17:40 +03:00
organization.conf Bump API version to 2.23 2022-12-21 18:46:12 +02:00
pipelines.conf
projects.conf Support filtering by children tags in projects.get_all_ex 2023-05-25 19:19:10 +03:00
queues.conf
README.md
reports.conf Task reports can now return single value metrics 2023-05-25 19:18:24 +03:00
server.conf
tasks.conf Add remove_from_all_queues parameter to tasks.dequeue/dequeue_many endpoints 2023-05-25 19:22:10 +03:00
users.conf
workers.conf Update endpoint API versions 2022-11-29 17:42:19 +02: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
        """