clearml-server/apiserver/schema/services
2024-12-31 22:05:30 +02:00
..
_api_defaults.conf
_common.conf Add _any_/_all_ queries support for datetime fields 2024-12-05 22:25:08 +02:00
_events_common.conf Add task names to events.get_single_value_metrics endpoint response 2023-07-26 18:50:53 +03:00
_tasks_common.conf Add x_axis_label support in scalar iter charts 2024-12-31 22:05:30 +02:00
_workers_common.conf Add mem used charts and cpu/gpu counts to model endpoints instance details 2024-12-05 22:31:45 +02:00
auth.conf Add auth.edit_credentials 2022-05-17 16:08:12 +03:00
debug.conf
events.conf Add x_axis_label support in scalar iter charts 2024-12-31 22:05:30 +02:00
login.conf Remove callback_url_prefix and state parameters from login.supported_modes and does not return urls 2024-01-10 15:26:22 +02:00
models.conf Add _any_/_all_ queries support for datetime fields 2024-12-05 22:25:08 +02:00
organization.conf Fix schema for swagger compatibility 2023-11-17 09:39:52 +02:00
pipelines.conf Set API version 2.28 2024-01-10 15:23:54 +02:00
projects.conf Add _any_/_all_ queries support for datetime fields 2024-12-05 22:25:08 +02:00
queues.conf Add support for queue display name 2024-12-18 17:47:51 +02:00
README.md
reports.conf Update docstrings (#246) 2024-06-20 17:00:31 +03:00
server.conf
serving.conf Change model input_size field to string 2024-12-05 22:33:52 +02:00
storage.conf Allow all users to access storage APIs 2024-12-05 22:35:16 +02:00
tasks.conf Sync API version 2024-12-05 22:18:27 +02:00
users.conf Return created_in_version property in users.get_current_user 2024-12-05 22:32:28 +02:00
workers.conf Add support for queue display name 2024-12-18 17:47:51 +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
        """