File: client_structure.rst

package info (click to toggle)
freezer 13.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,164 kB
  • sloc: python: 13,520; sh: 148; makefile: 46
file content (27 lines) | stat: -rw-r--r-- 660 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Freezer Client document structure
=================================

Identifies a freezer client for the purpose of sending action

client_info document contains information relevant for client identification

.. code-block:: none

    client_info:
    {
      "client_id": string   actually a concatenation "tenant-id_hostname"
      "hostname": string
      "description": string
      "uuid":
    }


client_type document embeds the client_info and adds user_id

.. code-block:: none

    client_type :
    {
      "client" : client_info document,
      "user_id": string,    # owner of the information (OS X-User-Id, keystone provided, added by api)
    }