-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgenerator.yaml
270 lines (269 loc) · 5.88 KB
/
generator.yaml
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
provider:
name: vantage
resources:
anomaly_notification:
create:
path: /anomaly_notifications
method: POST
read:
path: /anomaly_notifications/{anomaly_notification_token}
method: GET
update:
path: /anomaly_notifications/{anomaly_notification_token}
method: PUT
delete:
path: /anomaly_notifications/{anomaly_notification_token}
method: DELETE
schema:
attributes:
overrides:
token:
description: The token of the report alert
aliases:
anomaly_notification_token: token
billing_rule:
create:
path: /billing_rules
method: POST
read:
path: /billing_rules/{billing_rule_token}
method: GET
update:
path: /billing_rules/{billing_rule_token}
method: PUT
delete:
path: /billing_rules/{billing_rule_token}
method: DELETE
schema:
attributes:
overrides:
token:
description: The token of the billing rule
aliases:
billing_rule_token: token
budget:
create:
path: /budgets
method: POST
read:
path: /budgets/{budget_token}
method: GET
update:
path: /budgets/{budget_token}
method: PUT
delete:
path: /budgets/{budget_token}
method: DELETE
schema:
ignores:
- include_performance
attributes:
overrides:
token:
description: The token of the budget
aliases:
budget_token: token
business_metric:
create:
path: /business_metrics
method: POST
read:
path: /business_metrics/{business_metric_token}
method: GET
update:
path: /business_metrics/{business_metric_token}
method: PUT
delete:
path: /business_metrics/{business_metric_token}
method: DELETE
schema:
attributes:
overrides:
token:
description: The token of the business metric
aliases:
business_metric_token: token
dashboard:
create:
path: /dashboards
method: POST
read:
path: /dashboards/{dashboard_token}
method: GET
update:
path: /dashboards/{dashboard_token}
method: PUT
delete:
path: /dashboards/{dashboard_token}
method: DELETE
schema:
attributes:
overrides:
token:
description: The token of the dashboard
aliases:
dashboard_token: token
kubernetes_efficiency_report:
create:
path: /kubernetes_efficiency_reports
method: POST
read:
path: /kubernetes_efficiency_reports/{kubernetes_efficiency_report_token}
method: GET
update:
path: /kubernetes_efficiency_reports/{kubernetes_efficiency_report_token}
method: PUT
delete:
path: /kubernetes_efficiency_reports/{kubernetes_efficiency_report_token}
method: DELETE
schema:
attributes:
overrides:
token:
description: The token of the report
aliases:
kubernetes_efficiency_report_token: token
managed_account:
create:
path: /managed_accounts
method: POST
read:
path: /managed_accounts/{managed_account_token}
method: GET
update:
path: /managed_accounts/{managed_account_token}
method: PUT
delete:
path: /managed_accounts/{managed_account_token}
method: DELETE
schema:
attributes:
overrides:
token:
description: The token of the managed account
aliases:
managed_account_token: token
resource_report:
create:
path: /resource_reports
method: POST
read:
path: /resource_reports/{resource_report_token}
method: GET
update:
path: /resource_reports/{resource_report_token}
method: PUT
delete:
path: /resource_reports/{resource_report_token}
method: DELETE
schema:
attributes:
overrides:
token:
description: The token of the report
aliases:
resource_report_token: token
virtual_tag_config:
create:
path: /virtual_tag_configs
method: POST
read:
path: /virtual_tag_configs/{token}
method: GET
update:
path: /virtual_tag_configs/{token}
method: PUT
delete:
path: /virtual_tag_configs/{token}
method: DELETE
data_sources:
billing_rules:
read:
path: /billing_rules
method: GET
schema:
ignores:
- limit
- links
- page
budgets:
read:
path: /budgets
method: GET
schema:
ignores:
- limit
- links
- page
business_metrics:
read:
path: /business_metrics
method: GET
schema:
ignores:
- limit
- links
- page
dashboards:
read:
path: /dashboards
method: GET
schema:
ignores:
- limit
- links
- page
managed_accounts:
read:
path: /managed_accounts
method: GET
schema:
ignores:
- limit
- links
- page
report_notifications:
read:
path: /report_notifications
method: GET
schema:
ignores:
- limit
- links
- page
financial_commitment_reports:
read:
path: /financial_commitment_reports
method: GET
schema:
ignores:
- limit
- links
- page
kubernetes_efficiency_reports:
read:
path: /kubernetes_efficiency_reports
method: GET
schema:
ignores:
- limit
- links
- page
anomaly_notifications:
read:
path: /anomaly_notifications
method: GET
schema:
ignores:
- limit
- links
- page
virtual_tag_configs:
read:
path: /virtual_tag_configs
method: GET
schema:
ignores:
- limit
- links
- page