xautomata-hive 3.18.0__py3-none-any.whl → 3.18.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hive/cookbook/dashboards.py +2 -2
- hive/cookbook/metrics.py +6 -5
- hive/cookbook/objects.py +18 -15
- hive/cookbook/probes.py +6 -5
- hive/cookbook/services.py +6 -5
- hive/cookbook/users.py +24 -19
- hive/cookbook/virtual_domains.py +6 -5
- hive/cookbook/widget_groups.py +6 -5
- hive/cookbook/widgets.py +6 -5
- hive/decorators.py +2 -2
- hive/version.py +1 -1
- {xautomata_hive-3.18.0.dist-info → xautomata_hive-3.18.2.dist-info}/METADATA +1 -1
- {xautomata_hive-3.18.0.dist-info → xautomata_hive-3.18.2.dist-info}/RECORD +16 -16
- {xautomata_hive-3.18.0.dist-info → xautomata_hive-3.18.2.dist-info}/WHEEL +1 -1
- {xautomata_hive-3.18.0.dist-info → xautomata_hive-3.18.2.dist-info}/LICENSE +0 -0
- {xautomata_hive-3.18.0.dist-info → xautomata_hive-3.18.2.dist-info}/top_level.txt +0 -0
hive/cookbook/dashboards.py
CHANGED
@@ -440,7 +440,7 @@ class Dashboards(ApiManager):
|
|
440
440
|
f'/dashboards/{uuid}/customers/{uuid_customer}', **kwargs)
|
441
441
|
return response
|
442
442
|
|
443
|
-
def
|
443
|
+
def dashboards_customers_delete(self, uuid: str, uuid_customer: str,
|
444
444
|
kwargs: dict = None) -> list:
|
445
445
|
"""Remove Customer Dashboard Association
|
446
446
|
|
@@ -453,7 +453,7 @@ class Dashboards(ApiManager):
|
|
453
453
|
if kwargs is None:
|
454
454
|
kwargs = dict()
|
455
455
|
response = self.execute('DELETE', path=
|
456
|
-
f'/dashboards/{uuid}/
|
456
|
+
f'/dashboards/{uuid}/customers/{uuid_customer}', **kwargs)
|
457
457
|
return response
|
458
458
|
|
459
459
|
def dashboards_bulk(self, payload: list, warm_start: bool = False,
|
hive/cookbook/metrics.py
CHANGED
@@ -193,6 +193,7 @@ class Metrics(ApiManager):
|
|
193
193
|
Keyword Args:
|
194
194
|
not_in (boolean optional): additional filter - parameter
|
195
195
|
name (string optional): additional filter - parameter
|
196
|
+
status (string optional): additional filter - parameter
|
196
197
|
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
197
198
|
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
198
199
|
like (boolean optional): Se True, eventuali filtri richiesti dalla API vengono presi come porzioni di testo, se False il matching sul campo dei filtri deve essere esatto. Default to True. - parameter
|
@@ -202,11 +203,11 @@ class Metrics(ApiManager):
|
|
202
203
|
Returns: list"""
|
203
204
|
if kwargs is None:
|
204
205
|
kwargs = dict()
|
205
|
-
official_params_list = ['not_in', 'name', '
|
206
|
-
'join', 'count']
|
207
|
-
params.get('not_in'), params.get('name'), params.get('
|
208
|
-
), params.get('
|
209
|
-
), params.get('count')
|
206
|
+
official_params_list = ['not_in', 'name', 'status', 'skip', 'limit',
|
207
|
+
'like', 'join', 'count']
|
208
|
+
params.get('not_in'), params.get('name'), params.get('status'
|
209
|
+
), params.get('skip'), params.get('limit'), params.get('like'
|
210
|
+
), params.get('join'), params.get('count')
|
210
211
|
if not self._silence_warning:
|
211
212
|
warning_wrong_parameters(self.metrics_services.__name__, params,
|
212
213
|
official_params_list)
|
hive/cookbook/objects.py
CHANGED
@@ -166,6 +166,7 @@ class Objects(ApiManager):
|
|
166
166
|
Keyword Args:
|
167
167
|
not_in (boolean optional): additional filter - parameter
|
168
168
|
name (string optional): additional filter - parameter
|
169
|
+
status (string optional): additional filter - parameter
|
169
170
|
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
170
171
|
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
171
172
|
like (boolean optional): Se True, eventuali filtri richiesti dalla API vengono presi come porzioni di testo, se False il matching sul campo dei filtri deve essere esatto. Default to True. - parameter
|
@@ -175,11 +176,11 @@ class Objects(ApiManager):
|
|
175
176
|
Returns: list"""
|
176
177
|
if kwargs is None:
|
177
178
|
kwargs = dict()
|
178
|
-
official_params_list = ['not_in', 'name', '
|
179
|
-
'join', 'count']
|
180
|
-
params.get('not_in'), params.get('name'), params.get('
|
181
|
-
), params.get('
|
182
|
-
), params.get('count')
|
179
|
+
official_params_list = ['not_in', 'name', 'status', 'skip', 'limit',
|
180
|
+
'like', 'join', 'count']
|
181
|
+
params.get('not_in'), params.get('name'), params.get('status'
|
182
|
+
), params.get('skip'), params.get('limit'), params.get('like'
|
183
|
+
), params.get('join'), params.get('count')
|
183
184
|
if not self._silence_warning:
|
184
185
|
warning_wrong_parameters(self.objects_metric_types.__name__,
|
185
186
|
params, official_params_list)
|
@@ -240,6 +241,7 @@ class Objects(ApiManager):
|
|
240
241
|
Keyword Args:
|
241
242
|
not_in (boolean optional): additional filter - parameter
|
242
243
|
name (string optional): additional filter - parameter
|
244
|
+
status (string optional): additional filter - parameter
|
243
245
|
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
244
246
|
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
245
247
|
like (boolean optional): Se True, eventuali filtri richiesti dalla API vengono presi come porzioni di testo, se False il matching sul campo dei filtri deve essere esatto. Default to True. - parameter
|
@@ -249,11 +251,11 @@ class Objects(ApiManager):
|
|
249
251
|
Returns: list"""
|
250
252
|
if kwargs is None:
|
251
253
|
kwargs = dict()
|
252
|
-
official_params_list = ['not_in', 'name', '
|
253
|
-
'join', 'count']
|
254
|
-
params.get('not_in'), params.get('name'), params.get('
|
255
|
-
), params.get('
|
256
|
-
), params.get('count')
|
254
|
+
official_params_list = ['not_in', 'name', 'status', 'skip', 'limit',
|
255
|
+
'like', 'join', 'count']
|
256
|
+
params.get('not_in'), params.get('name'), params.get('status'
|
257
|
+
), params.get('skip'), params.get('limit'), params.get('like'
|
258
|
+
), params.get('join'), params.get('count')
|
257
259
|
if not self._silence_warning:
|
258
260
|
warning_wrong_parameters(self.objects_groups.__name__, params,
|
259
261
|
official_params_list)
|
@@ -310,6 +312,7 @@ class Objects(ApiManager):
|
|
310
312
|
Keyword Args:
|
311
313
|
not_in (boolean optional): additional filter - parameter
|
312
314
|
name (string optional): additional filter - parameter
|
315
|
+
status (string optional): additional filter - parameter
|
313
316
|
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
314
317
|
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
315
318
|
like (boolean optional): Se True, eventuali filtri richiesti dalla API vengono presi come porzioni di testo, se False il matching sul campo dei filtri deve essere esatto. Default to True. - parameter
|
@@ -319,11 +322,11 @@ class Objects(ApiManager):
|
|
319
322
|
Returns: list"""
|
320
323
|
if kwargs is None:
|
321
324
|
kwargs = dict()
|
322
|
-
official_params_list = ['not_in', 'name', '
|
323
|
-
'join', 'count']
|
324
|
-
params.get('not_in'), params.get('name'), params.get('
|
325
|
-
), params.get('
|
326
|
-
), params.get('count')
|
325
|
+
official_params_list = ['not_in', 'name', 'status', 'skip', 'limit',
|
326
|
+
'like', 'join', 'count']
|
327
|
+
params.get('not_in'), params.get('name'), params.get('status'
|
328
|
+
), params.get('skip'), params.get('limit'), params.get('like'
|
329
|
+
), params.get('join'), params.get('count')
|
327
330
|
if not self._silence_warning:
|
328
331
|
warning_wrong_parameters(self.objects_probes.__name__, params,
|
329
332
|
official_params_list)
|
hive/cookbook/probes.py
CHANGED
@@ -216,6 +216,7 @@ class Probes(ApiManager):
|
|
216
216
|
Keyword Args:
|
217
217
|
not_in (boolean optional): additional filter - parameter
|
218
218
|
name (string optional): additional filter - parameter
|
219
|
+
status (string optional): additional filter - parameter
|
219
220
|
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
220
221
|
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
221
222
|
like (boolean optional): Se True, eventuali filtri richiesti dalla API vengono presi come porzioni di testo, se False il matching sul campo dei filtri deve essere esatto. Default to True. - parameter
|
@@ -225,11 +226,11 @@ class Probes(ApiManager):
|
|
225
226
|
Returns: list"""
|
226
227
|
if kwargs is None:
|
227
228
|
kwargs = dict()
|
228
|
-
official_params_list = ['not_in', 'name', '
|
229
|
-
'join', 'count']
|
230
|
-
params.get('not_in'), params.get('name'), params.get('
|
231
|
-
), params.get('
|
232
|
-
), params.get('count')
|
229
|
+
official_params_list = ['not_in', 'name', 'status', 'skip', 'limit',
|
230
|
+
'like', 'join', 'count']
|
231
|
+
params.get('not_in'), params.get('name'), params.get('status'
|
232
|
+
), params.get('skip'), params.get('limit'), params.get('like'
|
233
|
+
), params.get('join'), params.get('count')
|
233
234
|
if not self._silence_warning:
|
234
235
|
warning_wrong_parameters(self.probes_objects.__name__, params,
|
235
236
|
official_params_list)
|
hive/cookbook/services.py
CHANGED
@@ -172,6 +172,7 @@ class Services(ApiManager):
|
|
172
172
|
Keyword Args:
|
173
173
|
not_in (boolean optional): additional filter - parameter
|
174
174
|
name (string optional): additional filter - parameter
|
175
|
+
status (string optional): additional filter - parameter
|
175
176
|
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
176
177
|
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
177
178
|
like (boolean optional): Se True, eventuali filtri richiesti dalla API vengono presi come porzioni di testo, se False il matching sul campo dei filtri deve essere esatto. Default to True. - parameter
|
@@ -181,11 +182,11 @@ class Services(ApiManager):
|
|
181
182
|
Returns: list"""
|
182
183
|
if kwargs is None:
|
183
184
|
kwargs = dict()
|
184
|
-
official_params_list = ['not_in', 'name', '
|
185
|
-
'join', 'count']
|
186
|
-
params.get('not_in'), params.get('name'), params.get('
|
187
|
-
), params.get('
|
188
|
-
), params.get('count')
|
185
|
+
official_params_list = ['not_in', 'name', 'status', 'skip', 'limit',
|
186
|
+
'like', 'join', 'count']
|
187
|
+
params.get('not_in'), params.get('name'), params.get('status'
|
188
|
+
), params.get('skip'), params.get('limit'), params.get('like'
|
189
|
+
), params.get('join'), params.get('count')
|
189
190
|
if not self._silence_warning:
|
190
191
|
warning_wrong_parameters(self.services_metrics.__name__, params,
|
191
192
|
official_params_list)
|
hive/cookbook/users.py
CHANGED
@@ -375,6 +375,7 @@ class Users(ApiManager):
|
|
375
375
|
Keyword Args:
|
376
376
|
not_in (boolean optional): additional filter - parameter
|
377
377
|
group_name (string optional): additional filter - parameter
|
378
|
+
status (string optional): additional filter - parameter
|
378
379
|
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
379
380
|
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
380
381
|
like (boolean optional): Se True, eventuali filtri richiesti dalla API vengono presi come porzioni di testo, se False il matching sul campo dei filtri deve essere esatto. Default to True. - parameter
|
@@ -384,11 +385,11 @@ class Users(ApiManager):
|
|
384
385
|
Returns: list"""
|
385
386
|
if kwargs is None:
|
386
387
|
kwargs = dict()
|
387
|
-
official_params_list = ['not_in', 'group_name', '
|
388
|
-
'like', 'join', 'count']
|
389
|
-
params.get('not_in'), params.get('group_name'), params.get('
|
390
|
-
), params.get('
|
391
|
-
), params.get('count')
|
388
|
+
official_params_list = ['not_in', 'group_name', 'status', 'skip',
|
389
|
+
'limit', 'like', 'join', 'count']
|
390
|
+
params.get('not_in'), params.get('group_name'), params.get('status'
|
391
|
+
), params.get('skip'), params.get('limit'), params.get('like'
|
392
|
+
), params.get('join'), params.get('count')
|
392
393
|
if not self._silence_warning:
|
393
394
|
warning_wrong_parameters(self.users_groups.__name__, params,
|
394
395
|
official_params_list)
|
@@ -516,6 +517,7 @@ class Users(ApiManager):
|
|
516
517
|
Keyword Args:
|
517
518
|
not_in (boolean optional): additional filter - parameter
|
518
519
|
company_name (string optional): additional filter - parameter
|
520
|
+
status (string optional): additional filter - parameter
|
519
521
|
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
520
522
|
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
521
523
|
like (boolean optional): Se True, eventuali filtri richiesti dalla API vengono presi come porzioni di testo, se False il matching sul campo dei filtri deve essere esatto. Default to True. - parameter
|
@@ -525,11 +527,11 @@ class Users(ApiManager):
|
|
525
527
|
Returns: list"""
|
526
528
|
if kwargs is None:
|
527
529
|
kwargs = dict()
|
528
|
-
official_params_list = ['not_in', 'company_name', '
|
529
|
-
'like', 'join', 'count']
|
530
|
-
params.get('not_in'), params.get('company_name'), params.get('
|
531
|
-
), params.get('
|
532
|
-
), params.get('count')
|
530
|
+
official_params_list = ['not_in', 'company_name', 'status', 'skip',
|
531
|
+
'limit', 'like', 'join', 'count']
|
532
|
+
params.get('not_in'), params.get('company_name'), params.get('status'
|
533
|
+
), params.get('skip'), params.get('limit'), params.get('like'
|
534
|
+
), params.get('join'), params.get('count')
|
533
535
|
if not self._silence_warning:
|
534
536
|
warning_wrong_parameters(self.users_customers.__name__, params,
|
535
537
|
official_params_list)
|
@@ -585,6 +587,7 @@ class Users(ApiManager):
|
|
585
587
|
|
586
588
|
Keyword Args:
|
587
589
|
not_in (boolean optional): additional filter - parameter
|
590
|
+
status (string optional): additional filter - parameter
|
588
591
|
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
589
592
|
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
590
593
|
like (boolean optional): Se True, eventuali filtri richiesti dalla API vengono presi come porzioni di testo, se False il matching sul campo dei filtri deve essere esatto. Default to True. - parameter
|
@@ -594,10 +597,11 @@ class Users(ApiManager):
|
|
594
597
|
Returns: list"""
|
595
598
|
if kwargs is None:
|
596
599
|
kwargs = dict()
|
597
|
-
official_params_list = ['not_in', '
|
598
|
-
'count']
|
599
|
-
params.get('not_in'), params.get('
|
600
|
-
), params.get('
|
600
|
+
official_params_list = ['not_in', 'status', 'skip', 'limit', 'like',
|
601
|
+
'join', 'count']
|
602
|
+
params.get('not_in'), params.get('status'), params.get('skip'
|
603
|
+
), params.get('limit'), params.get('like'), params.get('join'
|
604
|
+
), params.get('count')
|
601
605
|
if not self._silence_warning:
|
602
606
|
warning_wrong_parameters(self.users_starred_customers.__name__,
|
603
607
|
params, official_params_list)
|
@@ -655,6 +659,7 @@ class Users(ApiManager):
|
|
655
659
|
Keyword Args:
|
656
660
|
not_in (boolean optional): additional filter - parameter
|
657
661
|
group_name (string optional): additional filter - parameter
|
662
|
+
active (boolean optional): additional filter - parameter
|
658
663
|
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
659
664
|
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
660
665
|
like (boolean optional): Se True, eventuali filtri richiesti dalla API vengono presi come porzioni di testo, se False il matching sul campo dei filtri deve essere esatto. Default to True. - parameter
|
@@ -664,11 +669,11 @@ class Users(ApiManager):
|
|
664
669
|
Returns: list"""
|
665
670
|
if kwargs is None:
|
666
671
|
kwargs = dict()
|
667
|
-
official_params_list = ['not_in', 'group_name', '
|
668
|
-
'like', 'join', 'count']
|
669
|
-
params.get('not_in'), params.get('group_name'), params.get('
|
670
|
-
), params.get('
|
671
|
-
), params.get('count')
|
672
|
+
official_params_list = ['not_in', 'group_name', 'active', 'skip',
|
673
|
+
'limit', 'like', 'join', 'count']
|
674
|
+
params.get('not_in'), params.get('group_name'), params.get('active'
|
675
|
+
), params.get('skip'), params.get('limit'), params.get('like'
|
676
|
+
), params.get('join'), params.get('count')
|
672
677
|
if not self._silence_warning:
|
673
678
|
warning_wrong_parameters(self.users_widget_groups.__name__,
|
674
679
|
params, official_params_list)
|
hive/cookbook/virtual_domains.py
CHANGED
@@ -208,6 +208,7 @@ class VirtualDomains(ApiManager):
|
|
208
208
|
Keyword Args:
|
209
209
|
not_in (boolean optional): additional filter - parameter
|
210
210
|
name (string optional): additional filter - parameter
|
211
|
+
active (boolean optional): additional filter - parameter
|
211
212
|
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
212
213
|
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
213
214
|
like (boolean optional): Se True, eventuali filtri richiesti dalla API vengono presi come porzioni di testo, se False il matching sul campo dei filtri deve essere esatto. Default to True. - parameter
|
@@ -217,11 +218,11 @@ class VirtualDomains(ApiManager):
|
|
217
218
|
Returns: list"""
|
218
219
|
if kwargs is None:
|
219
220
|
kwargs = dict()
|
220
|
-
official_params_list = ['not_in', 'name', '
|
221
|
-
'join', 'count']
|
222
|
-
params.get('not_in'), params.get('name'), params.get('
|
223
|
-
), params.get('
|
224
|
-
), params.get('count')
|
221
|
+
official_params_list = ['not_in', 'name', 'active', 'skip', 'limit',
|
222
|
+
'like', 'join', 'count']
|
223
|
+
params.get('not_in'), params.get('name'), params.get('active'
|
224
|
+
), params.get('skip'), params.get('limit'), params.get('like'
|
225
|
+
), params.get('join'), params.get('count')
|
225
226
|
if not self._silence_warning:
|
226
227
|
warning_wrong_parameters(self.virtual_domains_users.__name__,
|
227
228
|
params, official_params_list)
|
hive/cookbook/widget_groups.py
CHANGED
@@ -217,6 +217,7 @@ class WidgetGroups(ApiManager):
|
|
217
217
|
Keyword Args:
|
218
218
|
not_in (boolean optional): additional filter - parameter
|
219
219
|
name (string optional): additional filter - parameter
|
220
|
+
active (boolean optional): additional filter - parameter
|
220
221
|
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
221
222
|
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
222
223
|
like (boolean optional): Se True, eventuali filtri richiesti dalla API vengono presi come porzioni di testo, se False il matching sul campo dei filtri deve essere esatto. Default to True. - parameter
|
@@ -226,11 +227,11 @@ class WidgetGroups(ApiManager):
|
|
226
227
|
Returns: list"""
|
227
228
|
if kwargs is None:
|
228
229
|
kwargs = dict()
|
229
|
-
official_params_list = ['not_in', 'name', '
|
230
|
-
'join', 'count']
|
231
|
-
params.get('not_in'), params.get('name'), params.get('
|
232
|
-
), params.get('
|
233
|
-
), params.get('count')
|
230
|
+
official_params_list = ['not_in', 'name', 'active', 'skip', 'limit',
|
231
|
+
'like', 'join', 'count']
|
232
|
+
params.get('not_in'), params.get('name'), params.get('active'
|
233
|
+
), params.get('skip'), params.get('limit'), params.get('like'
|
234
|
+
), params.get('join'), params.get('count')
|
234
235
|
if not self._silence_warning:
|
235
236
|
warning_wrong_parameters(self.widget_groups_users.__name__,
|
236
237
|
params, official_params_list)
|
hive/cookbook/widgets.py
CHANGED
@@ -261,6 +261,7 @@ class Widgets(ApiManager):
|
|
261
261
|
Keyword Args:
|
262
262
|
not_in (boolean optional): additional filter - parameter
|
263
263
|
name (string optional): additional filter - parameter
|
264
|
+
active (boolean optional): additional filter - parameter
|
264
265
|
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
265
266
|
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
266
267
|
like (boolean optional): Se True, eventuali filtri richiesti dalla API vengono presi come porzioni di testo, se False il matching sul campo dei filtri deve essere esatto. Default to True. - parameter
|
@@ -270,11 +271,11 @@ class Widgets(ApiManager):
|
|
270
271
|
Returns: list"""
|
271
272
|
if kwargs is None:
|
272
273
|
kwargs = dict()
|
273
|
-
official_params_list = ['not_in', 'name', '
|
274
|
-
'join', 'count']
|
275
|
-
params.get('not_in'), params.get('name'), params.get('
|
276
|
-
), params.get('
|
277
|
-
), params.get('count')
|
274
|
+
official_params_list = ['not_in', 'name', 'active', 'skip', 'limit',
|
275
|
+
'like', 'join', 'count']
|
276
|
+
params.get('not_in'), params.get('name'), params.get('active'
|
277
|
+
), params.get('skip'), params.get('limit'), params.get('like'
|
278
|
+
), params.get('join'), params.get('count')
|
278
279
|
if not self._silence_warning:
|
279
280
|
warning_wrong_parameters(self.widgets_widget_groups.__name__,
|
280
281
|
params, official_params_list)
|
hive/decorators.py
CHANGED
@@ -112,11 +112,11 @@ def timeout_retry(func=None, max_tries: int = 2, sleep_time: int = 60):
|
|
112
112
|
try:
|
113
113
|
return func(*args, **kwargs)
|
114
114
|
except requests.exceptions.ReadTimeout:
|
115
|
-
print(f'WARNING: timeout reached on get_session, sleep set to {sleep_time}, on retry num {i}')
|
115
|
+
print(f'WARNING: timeout reached on get_session, sleep set to {sleep_time}, on retry num {i+1}/{max_tries}')
|
116
116
|
time.sleep(sleep_time)
|
117
117
|
count_timeout += 1
|
118
118
|
except requests.exceptions.JSONDecodeError:
|
119
|
-
print(f'WARNING: JSONDecodeError, sleep set to {sleep_time}, on retry num {i}')
|
119
|
+
print(f'WARNING: JSONDecodeError, sleep set to {sleep_time}, on retry num {i+1}/{max_tries}')
|
120
120
|
time.sleep(sleep_time)
|
121
121
|
count_json += 1
|
122
122
|
|
hive/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
version = '3.18.
|
1
|
+
version = '3.18.2'
|
@@ -1,10 +1,10 @@
|
|
1
1
|
hive/__init__.py,sha256=UjH5QfSfRGu2FR5_StfVbEtL_fuGS2Z_iZXmf1nx4AE,68
|
2
2
|
hive/api.py,sha256=SszpSOkFPiqJavxglpSzyq4JUJLc3fTGx9uMFq_DVQ0,41082
|
3
|
-
hive/decorators.py,sha256=
|
3
|
+
hive/decorators.py,sha256=Lb2mYj7UpFaCzJXGKyLj3SmTK74zKMZgnC7Ys2j1D7g,9975
|
4
4
|
hive/exceptions.py,sha256=kTJSPMViU2ZhF_ENbL_i-skU3YEv_ViJH2PpUQ6ums8,136
|
5
5
|
hive/infrastrucure_keys.py,sha256=UzgXex6tQsglowhKeb45e7vw4u7kh2wM0YscQPorodU,4095
|
6
6
|
hive/tools.py,sha256=Oi_d6wphtAS4f1wOhFzdXZj8Au1nwZ-UrRvIJDBQLMo,1371
|
7
|
-
hive/version.py,sha256=
|
7
|
+
hive/version.py,sha256=YC0jy5WEO1pVNZI81wmJ7QJLQsECH1tmRhR_GHi1Lgk,18
|
8
8
|
hive/cookbook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
hive/cookbook/acl_docs.py,sha256=0xr7Vb9121vhsiZjQaKvuAt4gKlXOO4aUJM472HeARw,786
|
10
10
|
hive/cookbook/acl_overrides.py,sha256=l3xyJmGeQysP1M2Sa6kVhDn8n6ttCKUzJ0jTcPjyo78,9690
|
@@ -18,7 +18,7 @@ hive/cookbook/cost_tree_nodes.py,sha256=rQht_xSxNZ4oL-Q5YNJIYGSX7tmRBDyIdOBYbsGt
|
|
18
18
|
hive/cookbook/cost_tree_resources.py,sha256=UpoYTvJrmCHbuo8WsN8r3wMV8wwpEL976LvB7qTfbDM,12398
|
19
19
|
hive/cookbook/cost_views.py,sha256=D2DMB3YPkfEbdUZ3_WsAvJohBgmgDvyScSJ9bzpCpKM,10760
|
20
20
|
hive/cookbook/customers.py,sha256=tFVMoHDiy-m02DVhZGrZYlOjmLv9060oMQh1xx9FZkE,78305
|
21
|
-
hive/cookbook/dashboards.py,sha256=
|
21
|
+
hive/cookbook/dashboards.py,sha256=MbpGcaNjVjvon6eVcU83gmkXaS-qZQOQF9-mOP6gGpI,33356
|
22
22
|
hive/cookbook/dispatchers.py,sha256=Mk-u6xhBYdvU_av9ac9a1yejLiukUB30Ey9mIme-V5w,43301
|
23
23
|
hive/cookbook/downtimes.py,sha256=NHA_W64tJk1YO9GmshyNstROzPHYJHAAwZnIFfjZh_I,48511
|
24
24
|
hive/cookbook/external_tickets.py,sha256=Lv30Mu6Hu4L8zWdduR_2OUCC_QTy8rvdWv-9gmWCljo,29510
|
@@ -32,20 +32,20 @@ hive/cookbook/login.py,sha256=ZxJmc5bh8TodbEGBdpIQgsVYnIVLmWbkmc25-6pYTr8,21677
|
|
32
32
|
hive/cookbook/messages.py,sha256=dD9QQlqR9Zyu8Kg8yJev-EZQOo0poQTsFwLEIvmyNbo,15285
|
33
33
|
hive/cookbook/metric_ingest.py,sha256=w5Ej4N4W8unyj6SjsUVmTr5fKkjkfYEYxz7TSHPWv-M,2519
|
34
34
|
hive/cookbook/metric_types.py,sha256=CaQhOFxGVYaWcxmHfygovyheGW3up_4PQMl9Wsbehwg,28255
|
35
|
-
hive/cookbook/metrics.py,sha256=
|
35
|
+
hive/cookbook/metrics.py,sha256=Zc8WUoxMBjj43sHzMic3nrgEc5T9aLMI_dWtCpYka7A,37924
|
36
36
|
hive/cookbook/microsoft.py,sha256=X8Q9FGw7WbnsMyTdWUuB8R5cAk-AJ8AZVLDpC0vGrt4,1453
|
37
37
|
hive/cookbook/notification_provider_types.py,sha256=tpSeAoluy6QQSnR4JtJQfH3O_qwcSE-lF04dWFle9yo,13463
|
38
38
|
hive/cookbook/notification_providers.py,sha256=6dKi_wDv99HzIybTi6isLjnNNKGNpb4rnhiJzhRRYH8,11095
|
39
|
-
hive/cookbook/objects.py,sha256=
|
39
|
+
hive/cookbook/objects.py,sha256=_sMXa04xU3B16Kbo-fsQwUdFRM897C61fL6vo_o_aFk,45451
|
40
40
|
hive/cookbook/opening_reasons.py,sha256=fwq0E51Qs-hnyUMY242GYf8Vr5YtcJZy2SZtjZVXTE8,11928
|
41
41
|
hive/cookbook/probe_types.py,sha256=isKPKbMr19_DVtI_0Erk4i3g6Hh_yWxOo6RbTCOkCxw,12992
|
42
|
-
hive/cookbook/probes.py,sha256=
|
42
|
+
hive/cookbook/probes.py,sha256=P-qh-M1Kho1fsuDS__fYVn9tgScjyNs9OCeigadQVp4,23386
|
43
43
|
hive/cookbook/probes_log_ingest.py,sha256=0D5szbqHOujPbGQ_nyZZZpob4damvWjo1FSw9iDf0fM,1661
|
44
44
|
hive/cookbook/profile_topics.py,sha256=Wp209fmSsrEZ3jnn6AYHjX7jJ12zfFDV-T9liGUHuXI,10253
|
45
45
|
hive/cookbook/reason_for_closure.py,sha256=PqDleTYc6RJmhPrJ7q-A9RgCc6GEC05x_hU9R2sXIFE,11012
|
46
46
|
hive/cookbook/retention_rules.py,sha256=brW64MqYrl4XNYN7ZxojVDWXpdBV4fRpR7a2A1ya2zM,7958
|
47
47
|
hive/cookbook/schedules.py,sha256=ldI-hpOx-EpCy3oSOVczk8114QL2bS_2rsjNI6TEMjc,6916
|
48
|
-
hive/cookbook/services.py,sha256=
|
48
|
+
hive/cookbook/services.py,sha256=34HoxMkmN5jJ0lJTVfVKuqEj0vprYzI9BeQKziHJFWg,45107
|
49
49
|
hive/cookbook/sites.py,sha256=1mMfi1vsF0zAfcrCQy8G-joF3JmbJfKvhZExI48Avsg,33138
|
50
50
|
hive/cookbook/terms_and_conditions.py,sha256=cc01N2N41yAbFa5HCvY2Ur4nujSQb1VnEbsrWVq1znY,4669
|
51
51
|
hive/cookbook/tree_hierarchy.py,sha256=ldJ1hMFQcghA6P2gRHheLjG74X8B6Z1JaupeAW9vg9s,23749
|
@@ -56,14 +56,14 @@ hive/cookbook/ts_metric_value.py,sha256=ehkjUMsAcZaA9HC0sN39gYKtXEG2xArdPsmhXWKS
|
|
56
56
|
hive/cookbook/ts_ntop_flows.py,sha256=Obmn86YlFvymWMzSkQ9Lrq7OuznLf2m4T_JiC8X_qpY,17197
|
57
57
|
hive/cookbook/ts_service_status.py,sha256=hr0heuEkEWmjvVsYVMQJpcve0hrQiY3a8w-OdfBchT8,15143
|
58
58
|
hive/cookbook/ts_service_value.py,sha256=oJ0fOAyAr2OuBerwDZRHeFtATkkdED4e_X6mmv7WTzo,14430
|
59
|
-
hive/cookbook/users.py,sha256=
|
59
|
+
hive/cookbook/users.py,sha256=VHoW2iaUnOKHziHxPOAdgYJtxkvvpQozXZh6xotxW2Q,52429
|
60
60
|
hive/cookbook/users_notifications.py,sha256=klrqR3awrwKHx6o0wpg2oLFdU0PWA2MSa41KtJQhNjw,8165
|
61
|
-
hive/cookbook/virtual_domains.py,sha256
|
61
|
+
hive/cookbook/virtual_domains.py,sha256=N3dp3pjkO-5jni3KBcCukRqcmVqAFYCDV6dgVXrHaFM,22826
|
62
62
|
hive/cookbook/webhooks.py,sha256=xQp7gW4FQP6717d4MCOuQN2Py7nw7TFy4pl9RmkqMKs,6705
|
63
|
-
hive/cookbook/widget_groups.py,sha256=
|
64
|
-
hive/cookbook/widgets.py,sha256=
|
65
|
-
xautomata_hive-3.18.
|
66
|
-
xautomata_hive-3.18.
|
67
|
-
xautomata_hive-3.18.
|
68
|
-
xautomata_hive-3.18.
|
69
|
-
xautomata_hive-3.18.
|
63
|
+
hive/cookbook/widget_groups.py,sha256=GY7mBh72HzI9RRMCwnmJ-fildtZ3w4BrPDUdNfNoVyk,16018
|
64
|
+
hive/cookbook/widgets.py,sha256=nYAEwh17aMGam8EC13jUwSR_i9KuP4yYRt25F0J6Z4g,23497
|
65
|
+
xautomata_hive-3.18.2.dist-info/LICENSE,sha256=CFT1oIPm4kciOjwep2r1LQnpATugddSy3D839fsmgFs,1065
|
66
|
+
xautomata_hive-3.18.2.dist-info/METADATA,sha256=cmk_6HLK26GvBMvUTrRdTKfASfQTCgkb8rPU7WTpSpE,10750
|
67
|
+
xautomata_hive-3.18.2.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
|
68
|
+
xautomata_hive-3.18.2.dist-info/top_level.txt,sha256=pLpVAuviHGk3pzaFXU-4GKttxGTGAbFoWK8JvUl1jHQ,5
|
69
|
+
xautomata_hive-3.18.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|