File: scope_parameters.yml

package info (click to toggle)
cloudkitty 23.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,528 kB
  • sloc: python: 21,803; sh: 528; makefile: 226; pascal: 54
file content (127 lines) | stat: -rw-r--r-- 2,364 bytes parent folder | download | duplicates (4)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
collector: &collector
  in: query
  description: |
    Filter on collector.
  type: string
  required: false

fetcher: &fetcher
  in: query
  description: |
    Filter on fetcher.
  type: string
  required: false

limit:
  in: query
  description: |
    For pagination. The maximum number of results to return.
  type: int
  required: false

offset: &offset
  in: query
  description: |
    For pagination. The index of the first element that should be returned.
  type: int
  required: false

scope_id: &scope_id
  in: query
  description: |
    Filter on scope.
  type: string
  required: false

scope_key: &scope_key
  in: query
  description: |
    Filter on scope_key.
  type: string
  required: false

active_anchor_query: &active_query
  in: body
  description: |
    Defines if a scope should be processed or not; `True` means that
    CloudKitty must process the scope.
  type: bool
  required: true

active_body:
  <<: *active_query
  required: false

active_key_resp:
  <<: *active_query

all_scopes: &all_scopes
  in: body
  description: |
    Confirmation whether all scopes must be reset
  type: bool

collector_body:
  <<: *collector
  in: body

collector_resp:
  <<: *collector
  required: true
  description: Collector for the given scope
  in: body

fetcher_body:
  <<: *fetcher
  in: body

fetcher_resp:
  <<: *fetcher
  required: true
  description: Fetcher for the given scope
  in: body

last_processed_timestamp:
  in: body
  description: |
    It represents the last processed timestamp for the storage state element.
  type: iso8601 timestamp
  required: true

scope_activation_toggle_date:
  in: body
  description: |
    It represents the last time the scope was activated/deactivated via the
    PATCH API.
  type: iso8601 timestamp
  required: true

scope_id_body:
  <<: *scope_id
  in: body

scope_id_resp:
  <<: *scope_id
  required: true
  description: Scope
  in: body

scope_key_body:
  <<: *scope_key
  in: body

scope_key_resp:
  <<: *scope_key
  required: true
  description: Scope key for the given scope
  in: body

state:
  in: body
  description: |
    State of the scope. This variable represents the last processed
    timestamp for the storage state element. It is DEPRECATED, and it will
    be removed in upcoming releases. The alternative is
    `last_processed_timestamp`.
  type: iso8601 timestamp
  required: true