xautomata-hive 3.23.0__py3-none-any.whl → 3.25.0__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/api.py +2 -1
- hive/cookbook/calendars.py +30 -21
- hive/cookbook/groups.py +48 -0
- hive/cookbook/messages.py +6 -4
- hive/cookbook/metric_types.py +48 -0
- hive/cookbook/metrics.py +99 -0
- hive/cookbook/objects.py +48 -0
- hive/cookbook/probes.py +8 -5
- hive/cookbook/services.py +1 -1
- hive/cookbook/tests.py +32 -0
- hive/version.py +1 -1
- {xautomata_hive-3.23.0.dist-info → xautomata_hive-3.25.0.dist-info}/METADATA +1 -1
- {xautomata_hive-3.23.0.dist-info → xautomata_hive-3.25.0.dist-info}/RECORD +16 -15
- {xautomata_hive-3.23.0.dist-info → xautomata_hive-3.25.0.dist-info}/WHEEL +1 -1
- {xautomata_hive-3.23.0.dist-info → xautomata_hive-3.25.0.dist-info}/licenses/LICENSE +0 -0
- {xautomata_hive-3.23.0.dist-info → xautomata_hive-3.25.0.dist-info}/top_level.txt +0 -0
hive/api.py
CHANGED
@@ -527,6 +527,7 @@ from hive.cookbook.sites import Sites
|
|
527
527
|
from hive.cookbook.last_status import LastStatus
|
528
528
|
from hive.cookbook.last_object_status import LastObjectStatus
|
529
529
|
from hive.cookbook.terms_and_conditions import TermsAndConditions
|
530
|
+
from hive.cookbook.tests import Tests
|
530
531
|
from hive.cookbook.tree_hierarchy import TreeHierarchy
|
531
532
|
from hive.cookbook.ts_automata_state import TsAutomataState
|
532
533
|
from hive.cookbook.ts_cost_azure_raw import TsCostAzureRaw
|
@@ -545,7 +546,7 @@ from hive.cookbook.widget_groups import WidgetGroups
|
|
545
546
|
# hive imports stop
|
546
547
|
|
547
548
|
|
548
|
-
class XautomataApi(AclDocs, AclOverrides, Analytics, Anomalies, Calendars, CostTagging, CostTags, CostViews, CostTreeNodes, CostTreeResources, Contacts, Customers, Dashboards, Dispatchers, Downtimes, ExternalTickets, Features, Files, FirmwareUpdates, Groups, AutomataIngest, MetricIngest, Microsoft, Google, Apple, Login, QrCode, Jobs, Messages, Metrics, ProbesLogIngest, MetricTypes, NotificationProviders, NotificationProviderTypes, Objects, OpeningReasons, Probes, ProbeTypes, ProfileTopics, Questions, ReasonForClosure, RetentionRules, Schedules, Services, Sites, LastStatus, LastObjectStatus, TermsAndConditions, TreeHierarchy, TsAutomataState, TsCostAzureRaw, TsCostManagement, TsMetricStatus, TsMetricValue, TsNtopFlows, TsServiceStatus, TsServiceValue, Users, UsersNotifications, VirtualDomains, Widgets, Webhooks, WidgetGroups):
|
549
|
+
class XautomataApi(AclDocs, AclOverrides, Analytics, Anomalies, Calendars, CostTagging, CostTags, CostViews, CostTreeNodes, CostTreeResources, Contacts, Customers, Dashboards, Dispatchers, Downtimes, ExternalTickets, Features, Files, FirmwareUpdates, Groups, AutomataIngest, MetricIngest, Microsoft, Google, Apple, Login, QrCode, Jobs, Messages, Metrics, ProbesLogIngest, MetricTypes, NotificationProviders, NotificationProviderTypes, Objects, OpeningReasons, Probes, ProbeTypes, ProfileTopics, Questions, ReasonForClosure, RetentionRules, Schedules, Services, Sites, LastStatus, LastObjectStatus, TermsAndConditions, Tests, TreeHierarchy, TsAutomataState, TsCostAzureRaw, TsCostManagement, TsMetricStatus, TsMetricValue, TsNtopFlows, TsServiceStatus, TsServiceValue, Users, UsersNotifications, VirtualDomains, Widgets, Webhooks, WidgetGroups):
|
549
550
|
"""
|
550
551
|
Class with each specific API, based on the ApiManager Class created for a more general interaction with Xautomata API
|
551
552
|
"""
|
hive/cookbook/calendars.py
CHANGED
@@ -21,6 +21,7 @@ class Calendars(ApiManager):
|
|
21
21
|
name (string optional): additional filter - parameter
|
22
22
|
local_public_holidays (boolean optional): additional filter - parameter
|
23
23
|
timezone (string optional): additional filter - parameter
|
24
|
+
type (None optional): additional filter - parameter
|
24
25
|
mon_int1_start (string optional): additional filter - parameter
|
25
26
|
mon_int1_end (string optional): additional filter - parameter
|
26
27
|
mon_int2_start (string optional): additional filter - parameter
|
@@ -59,7 +60,7 @@ class Calendars(ApiManager):
|
|
59
60
|
if kwargs is None:
|
60
61
|
kwargs = dict()
|
61
62
|
official_params_list = ['sort_by', 'null_fields', 'name',
|
62
|
-
'local_public_holidays', 'timezone', 'mon_int1_start',
|
63
|
+
'local_public_holidays', 'timezone', 'type', 'mon_int1_start',
|
63
64
|
'mon_int1_end', 'mon_int2_start', 'mon_int2_end',
|
64
65
|
'tue_int1_start', 'tue_int1_end', 'tue_int2_start',
|
65
66
|
'tue_int2_end', 'wed_int1_start', 'wed_int1_end',
|
@@ -72,22 +73,22 @@ class Calendars(ApiManager):
|
|
72
73
|
'limit', 'like', 'join', 'count']
|
73
74
|
params.get('sort_by'), params.get('null_fields'), params.get('name'
|
74
75
|
), params.get('local_public_holidays'), params.get('timezone'
|
75
|
-
), params.get('
|
76
|
-
), params.get('mon_int2_start'), params.get(
|
77
|
-
), params.get('tue_int1_start'), params.get(
|
78
|
-
), params.get('tue_int2_start'), params.get(
|
79
|
-
), params.get('wed_int1_start'), params.get(
|
80
|
-
), params.get('wed_int2_start'), params.get(
|
81
|
-
), params.get('thu_int1_start'), params.get(
|
82
|
-
), params.get('thu_int2_start'), params.get(
|
83
|
-
), params.get('fri_int1_start'), params.get(
|
84
|
-
), params.get('fri_int2_start'), params.get(
|
85
|
-
), params.get('sat_int1_start'), params.get(
|
86
|
-
), params.get('sat_int2_start'), params.get(
|
87
|
-
), params.get('sun_int1_start'), params.get(
|
88
|
-
), params.get('sun_int2_start'), params.get(
|
89
|
-
), params.get('skip'), params.get('limit'
|
90
|
-
), params.get('join'), params.get('count')
|
76
|
+
), params.get('type'), params.get('mon_int1_start'), params.get(
|
77
|
+
'mon_int1_end'), params.get('mon_int2_start'), params.get(
|
78
|
+
'mon_int2_end'), params.get('tue_int1_start'), params.get(
|
79
|
+
'tue_int1_end'), params.get('tue_int2_start'), params.get(
|
80
|
+
'tue_int2_end'), params.get('wed_int1_start'), params.get(
|
81
|
+
'wed_int1_end'), params.get('wed_int2_start'), params.get(
|
82
|
+
'wed_int2_end'), params.get('thu_int1_start'), params.get(
|
83
|
+
'thu_int1_end'), params.get('thu_int2_start'), params.get(
|
84
|
+
'thu_int2_end'), params.get('fri_int1_start'), params.get(
|
85
|
+
'fri_int1_end'), params.get('fri_int2_start'), params.get(
|
86
|
+
'fri_int2_end'), params.get('sat_int1_start'), params.get(
|
87
|
+
'sat_int1_end'), params.get('sat_int2_start'), params.get(
|
88
|
+
'sat_int2_end'), params.get('sun_int1_start'), params.get(
|
89
|
+
'sun_int1_end'), params.get('sun_int2_start'), params.get(
|
90
|
+
'sun_int2_end'), params.get('skip'), params.get('limit'
|
91
|
+
), params.get('like'), params.get('join'), params.get('count')
|
91
92
|
if not self._silence_warning:
|
92
93
|
warning_wrong_parameters(self.calendars.__name__, params,
|
93
94
|
official_params_list)
|
@@ -135,6 +136,8 @@ class Calendars(ApiManager):
|
|
135
136
|
sun_int1_end (string optional): additional filter - payload
|
136
137
|
sun_int2_start (string optional): additional filter - payload
|
137
138
|
sun_int2_end (string optional): additional filter - payload
|
139
|
+
type (None optional): additional filter - payload
|
140
|
+
ical (string optional): additional filter - payload
|
138
141
|
|
139
142
|
Returns: list"""
|
140
143
|
if kwargs is None:
|
@@ -149,7 +152,7 @@ class Calendars(ApiManager):
|
|
149
152
|
'fri_int1_end', 'fri_int2_start', 'fri_int2_end',
|
150
153
|
'sat_int1_start', 'sat_int1_end', 'sat_int2_start',
|
151
154
|
'sat_int2_end', 'sun_int1_start', 'sun_int1_end',
|
152
|
-
'sun_int2_start', 'sun_int2_end']
|
155
|
+
'sun_int2_start', 'sun_int2_end', 'type', 'ical']
|
153
156
|
payload.get('name'), payload.get('timezone'), payload.get(
|
154
157
|
'local_public_holidays'), payload.get('mon_int1_start'
|
155
158
|
), payload.get('mon_int1_end'), payload.get('mon_int2_start'
|
@@ -165,7 +168,8 @@ class Calendars(ApiManager):
|
|
165
168
|
), payload.get('sat_int1_end'), payload.get('sat_int2_start'
|
166
169
|
), payload.get('sat_int2_end'), payload.get('sun_int1_start'
|
167
170
|
), payload.get('sun_int1_end'), payload.get('sun_int2_start'
|
168
|
-
), payload.get('sun_int2_end')
|
171
|
+
), payload.get('sun_int2_end'), payload.get('type'), payload.get(
|
172
|
+
'ical')
|
169
173
|
if not self._silence_warning:
|
170
174
|
warning_wrong_parameters(self.calendars_create.__name__,
|
171
175
|
payload, official_payload_list)
|
@@ -229,6 +233,8 @@ class Calendars(ApiManager):
|
|
229
233
|
sun_int1_end (string optional): additional filter - payload
|
230
234
|
sun_int2_start (string optional): additional filter - payload
|
231
235
|
sun_int2_end (string optional): additional filter - payload
|
236
|
+
type (None optional): additional filter - payload
|
237
|
+
ical (string optional): additional filter - payload
|
232
238
|
|
233
239
|
Returns: list"""
|
234
240
|
if kwargs is None:
|
@@ -243,7 +249,7 @@ class Calendars(ApiManager):
|
|
243
249
|
'fri_int1_end', 'fri_int2_start', 'fri_int2_end',
|
244
250
|
'sat_int1_start', 'sat_int1_end', 'sat_int2_start',
|
245
251
|
'sat_int2_end', 'sun_int1_start', 'sun_int1_end',
|
246
|
-
'sun_int2_start', 'sun_int2_end']
|
252
|
+
'sun_int2_start', 'sun_int2_end', 'type', 'ical']
|
247
253
|
payload.get('name'), payload.get('timezone'), payload.get(
|
248
254
|
'local_public_holidays'), payload.get('mon_int1_start'
|
249
255
|
), payload.get('mon_int1_end'), payload.get('mon_int2_start'
|
@@ -259,7 +265,8 @@ class Calendars(ApiManager):
|
|
259
265
|
), payload.get('sat_int1_end'), payload.get('sat_int2_start'
|
260
266
|
), payload.get('sat_int2_end'), payload.get('sun_int1_start'
|
261
267
|
), payload.get('sun_int1_end'), payload.get('sun_int2_start'
|
262
|
-
), payload.get('sun_int2_end')
|
268
|
+
), payload.get('sun_int2_end'), payload.get('type'), payload.get(
|
269
|
+
'ical')
|
263
270
|
if not self._silence_warning:
|
264
271
|
warning_wrong_parameters(self.calendars_put.__name__, payload,
|
265
272
|
official_payload_list)
|
@@ -392,6 +399,8 @@ class Calendars(ApiManager):
|
|
392
399
|
"sun_int1_end": "string", optional
|
393
400
|
"sun_int2_start": "string", optional
|
394
401
|
"sun_int2_end": "string", optional
|
402
|
+
"type": "None", optional
|
403
|
+
"ical": "string", optional
|
395
404
|
}
|
396
405
|
]
|
397
406
|
|
hive/cookbook/groups.py
CHANGED
@@ -434,6 +434,54 @@ class Groups(ApiManager):
|
|
434
434
|
warm_start, params=params, **kwargs)
|
435
435
|
return response
|
436
436
|
|
437
|
+
def groups_dispatchers_v2(self, uuid: str, warm_start: bool = False,
|
438
|
+
single_page: bool = False, page_size: int = 5000,
|
439
|
+
kwargs: dict = None, **params) -> list:
|
440
|
+
"""List Dispatchers V2
|
441
|
+
|
442
|
+
Args:
|
443
|
+
uuid (str, required): uuid
|
444
|
+
warm_start (bool, optional): salva la risposta in un file e se viene richiamata la stessa funzione con gli stessi argomenti restituisce il contenuto del file. Default to False.
|
445
|
+
single_page (bool, optional): se False la risposta viene ottenuta a step per non appesantire le API. Default to False.
|
446
|
+
page_size (int, optional): Numero di oggetti per pagina se single_page == False. Default to 5000.
|
447
|
+
kwargs (dict, optional): additional parameters for execute. Default to None.
|
448
|
+
**params: additional parameters for the API.
|
449
|
+
|
450
|
+
Keyword Args:
|
451
|
+
not_in (boolean optional): additional filter - parameter
|
452
|
+
code (string optional): additional filter - parameter
|
453
|
+
status (string optional): additional filter - parameter
|
454
|
+
active_at_timestamp (string optional): additional filter - parameter
|
455
|
+
active_after_timestamp (string optional): additional filter - parameter
|
456
|
+
active_at_or_after_timestamp (string optional): additional filter - parameter
|
457
|
+
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
458
|
+
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
459
|
+
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
|
460
|
+
join (boolean optional): Se join = true, ogni riga restituita conterra' chiavi aggiuntive che fanno riferimento ad altre entita', con cui la riga ha relazioni 1:1. Default to False - parameter
|
461
|
+
count (boolean optional): Se True nel header della risposta e' presente la dimensione massima a db della chiamata fatta, sconsigliabile perche raddoppia il tempo per chiamata. Default to False. - parameter
|
462
|
+
|
463
|
+
Returns: list"""
|
464
|
+
if kwargs is None:
|
465
|
+
kwargs = dict()
|
466
|
+
official_params_list = ['not_in', 'code', 'status',
|
467
|
+
'active_at_timestamp', 'active_after_timestamp',
|
468
|
+
'active_at_or_after_timestamp', 'skip', 'limit', 'like', 'join',
|
469
|
+
'count']
|
470
|
+
params.get('not_in'), params.get('code'), params.get('status'
|
471
|
+
), params.get('active_at_timestamp'), params.get(
|
472
|
+
'active_after_timestamp'), params.get(
|
473
|
+
'active_at_or_after_timestamp'), params.get('skip'), params.get(
|
474
|
+
'limit'), params.get('like'), params.get('join'), params.get(
|
475
|
+
'count')
|
476
|
+
if not self._silence_warning:
|
477
|
+
warning_wrong_parameters(self.groups_dispatchers_v2.__name__,
|
478
|
+
params, official_params_list)
|
479
|
+
response = self.execute('GET', path=
|
480
|
+
f'/groups/{uuid}/dispatchers/v2', single_page=single_page,
|
481
|
+
page_size=page_size, warm_start=warm_start, params=params, **kwargs
|
482
|
+
)
|
483
|
+
return response
|
484
|
+
|
437
485
|
def groups_dispatchers_create(self, uuid: str, uuid_dispatcher: str,
|
438
486
|
kwargs: dict = None) -> list:
|
439
487
|
"""Add Dispatcher
|
hive/cookbook/messages.py
CHANGED
@@ -268,14 +268,15 @@ class Messages(ApiManager):
|
|
268
268
|
|
269
269
|
Keyword Args:
|
270
270
|
service_profile (string optional): additional filter - parameter
|
271
|
+
timestamp (string optional): additional filter - parameter
|
271
272
|
|
272
273
|
Returns: list"""
|
273
274
|
if kwargs is None:
|
274
275
|
kwargs = dict()
|
275
276
|
kwargs, params = handling_single_page_methods(kwargs=kwargs, params
|
276
277
|
=params)
|
277
|
-
official_params_list = ['service_profile']
|
278
|
-
params.get('service_profile')
|
278
|
+
official_params_list = ['service_profile', 'timestamp']
|
279
|
+
params.get('service_profile'), params.get('timestamp')
|
279
280
|
if not self._silence_warning:
|
280
281
|
warning_wrong_parameters(self.messages_compile.__name__, params,
|
281
282
|
official_params_list)
|
@@ -297,14 +298,15 @@ class Messages(ApiManager):
|
|
297
298
|
|
298
299
|
Keyword Args:
|
299
300
|
service_profile (string optional): additional filter - parameter
|
301
|
+
timestamp (string optional): additional filter - parameter
|
300
302
|
|
301
303
|
Returns: list"""
|
302
304
|
if kwargs is None:
|
303
305
|
kwargs = dict()
|
304
306
|
kwargs, params = handling_single_page_methods(kwargs=kwargs, params
|
305
307
|
=params)
|
306
|
-
official_params_list = ['service_profile']
|
307
|
-
params.get('service_profile')
|
308
|
+
official_params_list = ['service_profile', 'timestamp']
|
309
|
+
params.get('service_profile'), params.get('timestamp')
|
308
310
|
if not self._silence_warning:
|
309
311
|
warning_wrong_parameters(self.messages_compile_additional.
|
310
312
|
__name__, params, official_params_list)
|
hive/cookbook/metric_types.py
CHANGED
@@ -327,6 +327,54 @@ class MetricTypes(ApiManager):
|
|
327
327
|
)
|
328
328
|
return response
|
329
329
|
|
330
|
+
def metric_types_dispatchers_v2(self, uuid: str,
|
331
|
+
warm_start: bool = False, single_page: bool = False,
|
332
|
+
page_size: int = 5000, kwargs: dict = None, **params) -> list:
|
333
|
+
"""List Dispatchers V2
|
334
|
+
|
335
|
+
Args:
|
336
|
+
uuid (str, required): uuid
|
337
|
+
warm_start (bool, optional): salva la risposta in un file e se viene richiamata la stessa funzione con gli stessi argomenti restituisce il contenuto del file. Default to False.
|
338
|
+
single_page (bool, optional): se False la risposta viene ottenuta a step per non appesantire le API. Default to False.
|
339
|
+
page_size (int, optional): Numero di oggetti per pagina se single_page == False. Default to 5000.
|
340
|
+
kwargs (dict, optional): additional parameters for execute. Default to None.
|
341
|
+
**params: additional parameters for the API.
|
342
|
+
|
343
|
+
Keyword Args:
|
344
|
+
not_in (boolean optional): additional filter - parameter
|
345
|
+
code (string optional): additional filter - parameter
|
346
|
+
status (string optional): additional filter - parameter
|
347
|
+
active_at_timestamp (string optional): additional filter - parameter
|
348
|
+
active_after_timestamp (string optional): additional filter - parameter
|
349
|
+
active_at_or_after_timestamp (string optional): additional filter - parameter
|
350
|
+
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
351
|
+
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
352
|
+
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
|
353
|
+
join (boolean optional): Se join = true, ogni riga restituita conterra' chiavi aggiuntive che fanno riferimento ad altre entita', con cui la riga ha relazioni 1:1. Default to False - parameter
|
354
|
+
count (boolean optional): Se True nel header della risposta e' presente la dimensione massima a db della chiamata fatta, sconsigliabile perche raddoppia il tempo per chiamata. Default to False. - parameter
|
355
|
+
|
356
|
+
Returns: list"""
|
357
|
+
if kwargs is None:
|
358
|
+
kwargs = dict()
|
359
|
+
official_params_list = ['not_in', 'code', 'status',
|
360
|
+
'active_at_timestamp', 'active_after_timestamp',
|
361
|
+
'active_at_or_after_timestamp', 'skip', 'limit', 'like', 'join',
|
362
|
+
'count']
|
363
|
+
params.get('not_in'), params.get('code'), params.get('status'
|
364
|
+
), params.get('active_at_timestamp'), params.get(
|
365
|
+
'active_after_timestamp'), params.get(
|
366
|
+
'active_at_or_after_timestamp'), params.get('skip'), params.get(
|
367
|
+
'limit'), params.get('like'), params.get('join'), params.get(
|
368
|
+
'count')
|
369
|
+
if not self._silence_warning:
|
370
|
+
warning_wrong_parameters(self.metric_types_dispatchers_v2.
|
371
|
+
__name__, params, official_params_list)
|
372
|
+
response = self.execute('GET', path=
|
373
|
+
f'/metric_types/{uuid}/dispatchers/v2', single_page=single_page,
|
374
|
+
page_size=page_size, warm_start=warm_start, params=params, **kwargs
|
375
|
+
)
|
376
|
+
return response
|
377
|
+
|
330
378
|
def metric_types_dispatchers_create(self, uuid: str,
|
331
379
|
uuid_dispatcher: str, kwargs: dict = None) -> list:
|
332
380
|
"""Add Dispatcher
|
hive/cookbook/metrics.py
CHANGED
@@ -752,6 +752,55 @@ class Metrics(ApiManager):
|
|
752
752
|
warm_start, params=params, **kwargs)
|
753
753
|
return response
|
754
754
|
|
755
|
+
def metrics_downtimes_v2(self, uuid: str, warm_start: bool = False,
|
756
|
+
single_page: bool = False, page_size: int = 5000,
|
757
|
+
kwargs: dict = None, **params) -> list:
|
758
|
+
"""List Downtimes V2
|
759
|
+
|
760
|
+
Args:
|
761
|
+
uuid (str, required): uuid
|
762
|
+
warm_start (bool, optional): salva la risposta in un file e se viene richiamata la stessa funzione con gli stessi argomenti restituisce il contenuto del file. Default to False.
|
763
|
+
single_page (bool, optional): se False la risposta viene ottenuta a step per non appesantire le API. Default to False.
|
764
|
+
page_size (int, optional): Numero di oggetti per pagina se single_page == False. Default to 5000.
|
765
|
+
kwargs (dict, optional): additional parameters for execute. Default to None.
|
766
|
+
**params: additional parameters for the API.
|
767
|
+
|
768
|
+
Keyword Args:
|
769
|
+
not_in (boolean optional): additional filter - parameter
|
770
|
+
code (string optional): additional filter - parameter
|
771
|
+
status (string optional): additional filter - parameter
|
772
|
+
fetch_all (boolean optional): additional filter - parameter
|
773
|
+
only_actives (boolean optional): additional filter - parameter
|
774
|
+
active_at_timestamp (string optional): additional filter - parameter
|
775
|
+
active_after_timestamp (string optional): additional filter - parameter
|
776
|
+
active_at_or_after_timestamp (string optional): additional filter - parameter
|
777
|
+
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
778
|
+
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
779
|
+
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
|
780
|
+
join (boolean optional): Se join = true, ogni riga restituita conterra' chiavi aggiuntive che fanno riferimento ad altre entita', con cui la riga ha relazioni 1:1. Default to False - parameter
|
781
|
+
count (boolean optional): Se True nel header della risposta e' presente la dimensione massima a db della chiamata fatta, sconsigliabile perche raddoppia il tempo per chiamata. Default to False. - parameter
|
782
|
+
|
783
|
+
Returns: list"""
|
784
|
+
if kwargs is None:
|
785
|
+
kwargs = dict()
|
786
|
+
official_params_list = ['not_in', 'code', 'status', 'fetch_all',
|
787
|
+
'only_actives', 'active_at_timestamp', 'active_after_timestamp',
|
788
|
+
'active_at_or_after_timestamp', 'skip', 'limit', 'like', 'join',
|
789
|
+
'count']
|
790
|
+
params.get('not_in'), params.get('code'), params.get('status'
|
791
|
+
), params.get('fetch_all'), params.get('only_actives'), params.get(
|
792
|
+
'active_at_timestamp'), params.get('active_after_timestamp'
|
793
|
+
), params.get('active_at_or_after_timestamp'), params.get('skip'
|
794
|
+
), params.get('limit'), params.get('like'), params.get('join'
|
795
|
+
), params.get('count')
|
796
|
+
if not self._silence_warning:
|
797
|
+
warning_wrong_parameters(self.metrics_downtimes_v2.__name__,
|
798
|
+
params, official_params_list)
|
799
|
+
response = self.execute('GET', path=f'/metrics/{uuid}/downtimes/v2',
|
800
|
+
single_page=single_page, page_size=page_size, warm_start=
|
801
|
+
warm_start, params=params, **kwargs)
|
802
|
+
return response
|
803
|
+
|
755
804
|
def metrics_downtimes_create(self, uuid: str, uuid_downtime: str,
|
756
805
|
kwargs: dict = None) -> list:
|
757
806
|
"""Add Downtime
|
@@ -828,6 +877,56 @@ class Metrics(ApiManager):
|
|
828
877
|
warm_start, params=params, **kwargs)
|
829
878
|
return response
|
830
879
|
|
880
|
+
def metrics_dispatchers_v2(self, uuid: str, warm_start: bool = False,
|
881
|
+
single_page: bool = False, page_size: int = 5000,
|
882
|
+
kwargs: dict = None, **params) -> list:
|
883
|
+
"""List Dispatchers V2
|
884
|
+
|
885
|
+
Args:
|
886
|
+
uuid (str, required): uuid
|
887
|
+
warm_start (bool, optional): salva la risposta in un file e se viene richiamata la stessa funzione con gli stessi argomenti restituisce il contenuto del file. Default to False.
|
888
|
+
single_page (bool, optional): se False la risposta viene ottenuta a step per non appesantire le API. Default to False.
|
889
|
+
page_size (int, optional): Numero di oggetti per pagina se single_page == False. Default to 5000.
|
890
|
+
kwargs (dict, optional): additional parameters for execute. Default to None.
|
891
|
+
**params: additional parameters for the API.
|
892
|
+
|
893
|
+
Keyword Args:
|
894
|
+
not_in (boolean optional): additional filter - parameter
|
895
|
+
code (string optional): additional filter - parameter
|
896
|
+
status (string optional): additional filter - parameter
|
897
|
+
fetch_all (boolean optional): additional filter - parameter
|
898
|
+
only_actives (boolean optional): additional filter - parameter
|
899
|
+
active_at_timestamp (string optional): additional filter - parameter
|
900
|
+
active_after_timestamp (string optional): additional filter - parameter
|
901
|
+
active_at_or_after_timestamp (string optional): additional filter - parameter
|
902
|
+
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
903
|
+
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
904
|
+
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
|
905
|
+
join (boolean optional): Se join = true, ogni riga restituita conterra' chiavi aggiuntive che fanno riferimento ad altre entita', con cui la riga ha relazioni 1:1. Default to False - parameter
|
906
|
+
count (boolean optional): Se True nel header della risposta e' presente la dimensione massima a db della chiamata fatta, sconsigliabile perche raddoppia il tempo per chiamata. Default to False. - parameter
|
907
|
+
|
908
|
+
Returns: list"""
|
909
|
+
if kwargs is None:
|
910
|
+
kwargs = dict()
|
911
|
+
official_params_list = ['not_in', 'code', 'status', 'fetch_all',
|
912
|
+
'only_actives', 'active_at_timestamp', 'active_after_timestamp',
|
913
|
+
'active_at_or_after_timestamp', 'skip', 'limit', 'like', 'join',
|
914
|
+
'count']
|
915
|
+
params.get('not_in'), params.get('code'), params.get('status'
|
916
|
+
), params.get('fetch_all'), params.get('only_actives'), params.get(
|
917
|
+
'active_at_timestamp'), params.get('active_after_timestamp'
|
918
|
+
), params.get('active_at_or_after_timestamp'), params.get('skip'
|
919
|
+
), params.get('limit'), params.get('like'), params.get('join'
|
920
|
+
), params.get('count')
|
921
|
+
if not self._silence_warning:
|
922
|
+
warning_wrong_parameters(self.metrics_dispatchers_v2.__name__,
|
923
|
+
params, official_params_list)
|
924
|
+
response = self.execute('GET', path=
|
925
|
+
f'/metrics/{uuid}/dispatchers/v2', single_page=single_page,
|
926
|
+
page_size=page_size, warm_start=warm_start, params=params, **kwargs
|
927
|
+
)
|
928
|
+
return response
|
929
|
+
|
831
930
|
def metrics_dispatchers_create(self, uuid: str, uuid_dispatcher: str,
|
832
931
|
kwargs: dict = None) -> list:
|
833
932
|
"""Add Dispatcher
|
hive/cookbook/objects.py
CHANGED
@@ -492,6 +492,54 @@ class Objects(ApiManager):
|
|
492
492
|
warm_start, params=params, **kwargs)
|
493
493
|
return response
|
494
494
|
|
495
|
+
def objects_dispatchers_v2(self, uuid: str, warm_start: bool = False,
|
496
|
+
single_page: bool = False, page_size: int = 5000,
|
497
|
+
kwargs: dict = None, **params) -> list:
|
498
|
+
"""List Dispatchers V2
|
499
|
+
|
500
|
+
Args:
|
501
|
+
uuid (str, required): uuid
|
502
|
+
warm_start (bool, optional): salva la risposta in un file e se viene richiamata la stessa funzione con gli stessi argomenti restituisce il contenuto del file. Default to False.
|
503
|
+
single_page (bool, optional): se False la risposta viene ottenuta a step per non appesantire le API. Default to False.
|
504
|
+
page_size (int, optional): Numero di oggetti per pagina se single_page == False. Default to 5000.
|
505
|
+
kwargs (dict, optional): additional parameters for execute. Default to None.
|
506
|
+
**params: additional parameters for the API.
|
507
|
+
|
508
|
+
Keyword Args:
|
509
|
+
not_in (boolean optional): additional filter - parameter
|
510
|
+
code (string optional): additional filter - parameter
|
511
|
+
status (string optional): additional filter - parameter
|
512
|
+
active_at_timestamp (string optional): additional filter - parameter
|
513
|
+
active_after_timestamp (string optional): additional filter - parameter
|
514
|
+
active_at_or_after_timestamp (string optional): additional filter - parameter
|
515
|
+
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
516
|
+
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
517
|
+
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
|
518
|
+
join (boolean optional): Se join = true, ogni riga restituita conterra' chiavi aggiuntive che fanno riferimento ad altre entita', con cui la riga ha relazioni 1:1. Default to False - parameter
|
519
|
+
count (boolean optional): Se True nel header della risposta e' presente la dimensione massima a db della chiamata fatta, sconsigliabile perche raddoppia il tempo per chiamata. Default to False. - parameter
|
520
|
+
|
521
|
+
Returns: list"""
|
522
|
+
if kwargs is None:
|
523
|
+
kwargs = dict()
|
524
|
+
official_params_list = ['not_in', 'code', 'status',
|
525
|
+
'active_at_timestamp', 'active_after_timestamp',
|
526
|
+
'active_at_or_after_timestamp', 'skip', 'limit', 'like', 'join',
|
527
|
+
'count']
|
528
|
+
params.get('not_in'), params.get('code'), params.get('status'
|
529
|
+
), params.get('active_at_timestamp'), params.get(
|
530
|
+
'active_after_timestamp'), params.get(
|
531
|
+
'active_at_or_after_timestamp'), params.get('skip'), params.get(
|
532
|
+
'limit'), params.get('like'), params.get('join'), params.get(
|
533
|
+
'count')
|
534
|
+
if not self._silence_warning:
|
535
|
+
warning_wrong_parameters(self.objects_dispatchers_v2.__name__,
|
536
|
+
params, official_params_list)
|
537
|
+
response = self.execute('GET', path=
|
538
|
+
f'/objects/{uuid}/dispatchers/v2', single_page=single_page,
|
539
|
+
page_size=page_size, warm_start=warm_start, params=params, **kwargs
|
540
|
+
)
|
541
|
+
return response
|
542
|
+
|
495
543
|
def objects_dispatchers_create(self, uuid: str, uuid_dispatcher: str,
|
496
544
|
kwargs: dict = None) -> list:
|
497
545
|
"""Add Dispatcher
|
hive/cookbook/probes.py
CHANGED
@@ -71,17 +71,18 @@ class Probes(ApiManager):
|
|
71
71
|
data_profile (array object required): additional filter - payload
|
72
72
|
notes (string optional): additional filter - payload
|
73
73
|
status (string required): additional filter - payload
|
74
|
+
data_profile_backup (array object optional): additional filter - payload
|
74
75
|
|
75
76
|
Returns: list"""
|
76
77
|
if kwargs is None:
|
77
78
|
kwargs = dict()
|
78
79
|
official_payload_list = ['uuid_virtual_domain', 'uuid_probe_type',
|
79
80
|
'uuid_host', 'name', 'description', 'data_profile', 'notes',
|
80
|
-
'status']
|
81
|
+
'status', 'data_profile_backup']
|
81
82
|
payload.get('uuid_virtual_domain'), payload.get('uuid_probe_type'
|
82
83
|
), payload.get('uuid_host'), payload.get('name'), payload.get(
|
83
84
|
'description'), payload.get('data_profile'), payload.get('notes'
|
84
|
-
), payload.get('status')
|
85
|
+
), payload.get('status'), payload.get('data_profile_backup')
|
85
86
|
if not self._silence_warning:
|
86
87
|
warning_wrong_parameters(self.probes_create.__name__, payload,
|
87
88
|
official_payload_list)
|
@@ -134,6 +135,7 @@ class Probes(ApiManager):
|
|
134
135
|
data_profile (array object optional): additional filter - payload
|
135
136
|
notes (string optional): additional filter - payload
|
136
137
|
status (string optional): additional filter - payload
|
138
|
+
data_profile_backup (array object optional): additional filter - payload
|
137
139
|
last_seen (string optional): additional filter - payload
|
138
140
|
ingest_frequency (number optional): additional filter - payload
|
139
141
|
|
@@ -142,12 +144,12 @@ class Probes(ApiManager):
|
|
142
144
|
kwargs = dict()
|
143
145
|
official_payload_list = ['uuid_virtual_domain', 'uuid_probe_type',
|
144
146
|
'uuid_host', 'name', 'description', 'data_profile', 'notes',
|
145
|
-
'status', 'last_seen', 'ingest_frequency']
|
147
|
+
'status', 'data_profile_backup', 'last_seen', 'ingest_frequency']
|
146
148
|
payload.get('uuid_virtual_domain'), payload.get('uuid_probe_type'
|
147
149
|
), payload.get('uuid_host'), payload.get('name'), payload.get(
|
148
150
|
'description'), payload.get('data_profile'), payload.get('notes'
|
149
|
-
), payload.get('status'), payload.get('
|
150
|
-
'ingest_frequency')
|
151
|
+
), payload.get('status'), payload.get('data_profile_backup'
|
152
|
+
), payload.get('last_seen'), payload.get('ingest_frequency')
|
151
153
|
if not self._silence_warning:
|
152
154
|
warning_wrong_parameters(self.probes_put.__name__, payload,
|
153
155
|
official_payload_list)
|
@@ -336,6 +338,7 @@ class Probes(ApiManager):
|
|
336
338
|
"data_profile": "array object", required
|
337
339
|
"notes": "string", optional
|
338
340
|
"status": "string", required
|
341
|
+
"data_profile_backup": "array object", optional
|
339
342
|
}
|
340
343
|
]
|
341
344
|
|
hive/cookbook/services.py
CHANGED
hive/cookbook/tests.py
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
from hive.api import ApiManager, handling_single_page_methods, warning_wrong_parameters
|
2
|
+
|
3
|
+
|
4
|
+
class Tests(ApiManager):
|
5
|
+
"""Class that handles all the XAutomata tests APIs"""
|
6
|
+
|
7
|
+
def tests_last_values(self, warm_start: bool = False,
|
8
|
+
kwargs: dict = None, **params) -> list:
|
9
|
+
"""Check Queues Or Ts Status
|
10
|
+
|
11
|
+
Args:
|
12
|
+
warm_start (bool, optional): salva la risposta in un file e se viene richiamata la stessa funzione con gli stessi argomenti restituisce il contenuto del file. Default to False.
|
13
|
+
kwargs (dict, optional): additional parameters for execute. Default to None.
|
14
|
+
**params: additional parameters for the API.
|
15
|
+
|
16
|
+
Keyword Args:
|
17
|
+
source (None required): additional filter - parameter
|
18
|
+
ts_start (string optional): additional filter - parameter
|
19
|
+
|
20
|
+
Returns: list"""
|
21
|
+
if kwargs is None:
|
22
|
+
kwargs = dict()
|
23
|
+
kwargs, params = handling_single_page_methods(kwargs=kwargs, params
|
24
|
+
=params)
|
25
|
+
official_params_list = ['source', 'ts_start']
|
26
|
+
params.get('source'), params.get('ts_start')
|
27
|
+
if not self._silence_warning:
|
28
|
+
warning_wrong_parameters(self.tests_last_values.__name__,
|
29
|
+
params, official_params_list)
|
30
|
+
response = self.execute('GET', path=f'/tests/last_values',
|
31
|
+
warm_start=warm_start, params=params, **kwargs)
|
32
|
+
return response
|
hive/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
version = '3.
|
1
|
+
version = '3.25.0'
|
@@ -1,10 +1,10 @@
|
|
1
1
|
hive/__init__.py,sha256=UjH5QfSfRGu2FR5_StfVbEtL_fuGS2Z_iZXmf1nx4AE,68
|
2
|
-
hive/api.py,sha256
|
2
|
+
hive/api.py,sha256=Tn6Bxg-KEgX5iD_mT070BiYw3nLNTvVJ9lQPg_B2P1Y,42156
|
3
3
|
hive/decorators.py,sha256=qvXBMfkzmJ3nHzpnX96thrTdZjWuw4WAqYaxsJCfRug,12110
|
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=UIgxmmXDYMWf5BKu3T9LCXsjjJ1f9fT6LbMEBKJV5lw,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=1maKXIE-Ny4qqX5zZkWaB-Syrh8wNkQzEMpZFvueJW4,9910
|
@@ -12,7 +12,7 @@ hive/cookbook/analytics.py,sha256=1OMwo0vUuOAtT8WNz6HY6NJ-JTLpru4vTlYtdiczDrg,35
|
|
12
12
|
hive/cookbook/anomalies.py,sha256=VnuIWGH0om2XuFiz9jlFjQWWWcIdbr3fmUECfiqvM0A,11208
|
13
13
|
hive/cookbook/apple.py,sha256=1Fpp8KCCBWs9-ZOMiLktxm9VthI7N8L5DwXQYTQ8CMs,1170
|
14
14
|
hive/cookbook/automata_ingest.py,sha256=LFwpT8NXJActB2iDShm2G8iwim72MEZBs2GA1OlvOzg,1954
|
15
|
-
hive/cookbook/calendars.py,sha256=
|
15
|
+
hive/cookbook/calendars.py,sha256=WyDpe0QmiB7Gk7wiASGt8r24DXDuM5tsIBO2rAWKEJg,24807
|
16
16
|
hive/cookbook/contacts.py,sha256=vhkBjaxFoQA5P-GSGLsgtcvo3rbAPfHOCiB87tXtQsM,39183
|
17
17
|
hive/cookbook/cost_tagging.py,sha256=wwLgo3YaDI4Xm7QcQVlf4kXxz8kPP7J7Qh4ddzuaDro,7779
|
18
18
|
hive/cookbook/cost_tags.py,sha256=cMfcUJTThH-Rba6pC71cs_JouruiLAQ8pf7YLwkHqSc,10038
|
@@ -28,23 +28,23 @@ hive/cookbook/features.py,sha256=XkIkZb1_-ybEnJ6Dx9WdVkvtLt8Ys8AitL9aNNy7o_s,130
|
|
28
28
|
hive/cookbook/files.py,sha256=xPQcEsThYGVu2CSEm_GK0yjbzOeJSyV2fNFOh9-xKoo,4759
|
29
29
|
hive/cookbook/firmware_updates.py,sha256=2N4dwLWWOq6it0f3SbLYixzAkATZ0O9v5lX-6gQwMZE,5996
|
30
30
|
hive/cookbook/google.py,sha256=fxequ6Vsd7kzWyP2VV2xs8JmLUJCiw_8P7gsuYZDoM0,1430
|
31
|
-
hive/cookbook/groups.py,sha256=
|
31
|
+
hive/cookbook/groups.py,sha256=jbrW-cSlQLMpL7Y7qLsp2OaIMLZ0i_XJkuNo2iRrNJw,44526
|
32
32
|
hive/cookbook/jobs.py,sha256=VlmqbBNMx-dBMsaolHIlxJcuFTGIbPfoNOOBYhFOsnQ,4105
|
33
33
|
hive/cookbook/last_object_status.py,sha256=hVXt2fBxzkuGCXg-Q_ovhIEk1Zx5irv2yV8d9GKjjQk,15407
|
34
34
|
hive/cookbook/last_status.py,sha256=TvDp6wvpZTpTfTZAAkQWwUdTrB2tHBOylxlZPQboAls,13161
|
35
35
|
hive/cookbook/last_status_v2.py,sha256=Busbt6O1PWno81IdZRa6v8mQjDfj32Y2qMz1xFzyPJc,13178
|
36
36
|
hive/cookbook/login.py,sha256=KDC_4Pp49H0YjUaS-F7O9goriCquurPC8-TpG7ugT6U,25618
|
37
|
-
hive/cookbook/messages.py,sha256=
|
37
|
+
hive/cookbook/messages.py,sha256=i9zVVj2wQ0Sk81hhNbEZtOURdbqryLh6oIUC97ScNWE,15503
|
38
38
|
hive/cookbook/metric_ingest.py,sha256=V6JH_ZpePM_3GBRoVc5U7hHZul45Yyf2CRcXEXNJgMI,2519
|
39
|
-
hive/cookbook/metric_types.py,sha256=
|
40
|
-
hive/cookbook/metrics.py,sha256=
|
39
|
+
hive/cookbook/metric_types.py,sha256=QO1JxU_AIiJSFzsx77MCcXktXpD_LucqFl6PmX2gK6s,31972
|
40
|
+
hive/cookbook/metrics.py,sha256=oBfH4H0nwmf_W9RVizLJDHFvsnOEQaBg5CvqXjW-5P8,76360
|
41
41
|
hive/cookbook/microsoft.py,sha256=X8Q9FGw7WbnsMyTdWUuB8R5cAk-AJ8AZVLDpC0vGrt4,1453
|
42
42
|
hive/cookbook/notification_provider_types.py,sha256=tpSeAoluy6QQSnR4JtJQfH3O_qwcSE-lF04dWFle9yo,13463
|
43
43
|
hive/cookbook/notification_providers.py,sha256=6dKi_wDv99HzIybTi6isLjnNNKGNpb4rnhiJzhRRYH8,11095
|
44
|
-
hive/cookbook/objects.py,sha256=
|
44
|
+
hive/cookbook/objects.py,sha256=gGoAZHU4bPrjrDWS3DDcrwDYN-9EnG74Bs-2KBXbIpI,49542
|
45
45
|
hive/cookbook/opening_reasons.py,sha256=fwq0E51Qs-hnyUMY242GYf8Vr5YtcJZy2SZtjZVXTE8,11928
|
46
46
|
hive/cookbook/probe_types.py,sha256=isKPKbMr19_DVtI_0Erk4i3g6Hh_yWxOo6RbTCOkCxw,12992
|
47
|
-
hive/cookbook/probes.py,sha256=
|
47
|
+
hive/cookbook/probes.py,sha256=r9utCnlPkQwIST2FyJDnSqWJoasxK2mWBO_axtzWSz8,23996
|
48
48
|
hive/cookbook/probes_log_ingest.py,sha256=0D5szbqHOujPbGQ_nyZZZpob4damvWjo1FSw9iDf0fM,1661
|
49
49
|
hive/cookbook/profile_topics.py,sha256=Wp209fmSsrEZ3jnn6AYHjX7jJ12zfFDV-T9liGUHuXI,10253
|
50
50
|
hive/cookbook/qr_code.py,sha256=Ra4hk5hHEiyhVwFIFmtDphn_cvS7TUGECnDqLEl48zA,779
|
@@ -52,9 +52,10 @@ hive/cookbook/questions.py,sha256=VMf1WWHYFfegujy5bpI7kxVlokOpHraKW7JRppoPvYQ,80
|
|
52
52
|
hive/cookbook/reason_for_closure.py,sha256=PqDleTYc6RJmhPrJ7q-A9RgCc6GEC05x_hU9R2sXIFE,11012
|
53
53
|
hive/cookbook/retention_rules.py,sha256=brW64MqYrl4XNYN7ZxojVDWXpdBV4fRpR7a2A1ya2zM,7958
|
54
54
|
hive/cookbook/schedules.py,sha256=ldI-hpOx-EpCy3oSOVczk8114QL2bS_2rsjNI6TEMjc,6916
|
55
|
-
hive/cookbook/services.py,sha256=
|
55
|
+
hive/cookbook/services.py,sha256=VzEoPPhgEwFka8GqFvYQ62VkD6dMmLC4xT6ip1UA6uA,73265
|
56
56
|
hive/cookbook/sites.py,sha256=WLXdnxrMYkT3bCM2Mz5sjQzZzqRDmCGiMl4BtEWJ1WU,33383
|
57
57
|
hive/cookbook/terms_and_conditions.py,sha256=cc01N2N41yAbFa5HCvY2Ur4nujSQb1VnEbsrWVq1znY,4669
|
58
|
+
hive/cookbook/tests.py,sha256=MS9KsrquXKL3TY-1-EQ1TjwNELuNPDWkL4yl8Rido2o,1416
|
58
59
|
hive/cookbook/tree_hierarchy.py,sha256=ldJ1hMFQcghA6P2gRHheLjG74X8B6Z1JaupeAW9vg9s,23749
|
59
60
|
hive/cookbook/tree_hierarchy_v2.py,sha256=r2aYianO9sUQa2-cec9wA3j7iWLGSLHBVSM1n3Vh8sA,23805
|
60
61
|
hive/cookbook/ts_automata_state.py,sha256=51CXpeq3Km5Lg8OJbyEvnGRpJT9CvB3v_IV0jiXOp1Q,6260
|
@@ -72,8 +73,8 @@ hive/cookbook/virtual_domains.py,sha256=N3dp3pjkO-5jni3KBcCukRqcmVqAFYCDV6dgVXrH
|
|
72
73
|
hive/cookbook/webhooks.py,sha256=6ZSJfAiEjuh4Y4pfkUNjUYquBwxhD2KVkcVU3BcNkDc,7572
|
73
74
|
hive/cookbook/widget_groups.py,sha256=GY7mBh72HzI9RRMCwnmJ-fildtZ3w4BrPDUdNfNoVyk,16018
|
74
75
|
hive/cookbook/widgets.py,sha256=0Maw5gRAnph1Mu9ZlgzPT2Di_kJFeGKOOkhCGCjnelc,23497
|
75
|
-
xautomata_hive-3.
|
76
|
-
xautomata_hive-3.
|
77
|
-
xautomata_hive-3.
|
78
|
-
xautomata_hive-3.
|
79
|
-
xautomata_hive-3.
|
76
|
+
xautomata_hive-3.25.0.dist-info/licenses/LICENSE,sha256=CFT1oIPm4kciOjwep2r1LQnpATugddSy3D839fsmgFs,1065
|
77
|
+
xautomata_hive-3.25.0.dist-info/METADATA,sha256=MvlFxVQPpNKLCPthGgKodU7siqbPiMo153ssVjJFja4,10924
|
78
|
+
xautomata_hive-3.25.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
79
|
+
xautomata_hive-3.25.0.dist-info/top_level.txt,sha256=pLpVAuviHGk3pzaFXU-4GKttxGTGAbFoWK8JvUl1jHQ,5
|
80
|
+
xautomata_hive-3.25.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|