xautomata-hive 3.22.0__py3-none-any.whl → 3.22.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/api.py +2 -1
- hive/cookbook/acl_overrides.py +7 -3
- hive/cookbook/apple.py +32 -0
- hive/cookbook/cost_tags.py +2 -2
- hive/cookbook/dashboards.py +6 -6
- hive/cookbook/dispatchers.py +399 -0
- hive/cookbook/groups.py +14 -9
- hive/cookbook/login.py +36 -0
- hive/cookbook/metric_types.py +8 -5
- hive/cookbook/metrics.py +459 -4
- hive/cookbook/objects.py +13 -8
- hive/cookbook/qr_code.py +19 -0
- hive/cookbook/services.py +208 -0
- hive/cookbook/sites.py +7 -4
- hive/cookbook/widgets.py +6 -6
- hive/version.py +1 -1
- {xautomata_hive-3.22.0.dist-info → xautomata_hive-3.22.2.dist-info}/METADATA +4 -3
- {xautomata_hive-3.22.0.dist-info → xautomata_hive-3.22.2.dist-info}/RECORD +21 -19
- {xautomata_hive-3.22.0.dist-info → xautomata_hive-3.22.2.dist-info}/WHEEL +1 -1
- {xautomata_hive-3.22.0.dist-info → xautomata_hive-3.22.2.dist-info/licenses}/LICENSE +0 -0
- {xautomata_hive-3.22.0.dist-info → xautomata_hive-3.22.2.dist-info}/top_level.txt +0 -0
hive/cookbook/services.py
CHANGED
@@ -737,6 +737,214 @@ class Services(ApiManager):
|
|
737
737
|
warm_start, params=params, payload=payload, **kwargs)
|
738
738
|
return response
|
739
739
|
|
740
|
+
def services_last_status_query(self, warm_start: bool = False,
|
741
|
+
single_page: bool = False, page_size: int = 5000,
|
742
|
+
kwargs: dict = None, **params) -> list:
|
743
|
+
"""Service Query Last Status
|
744
|
+
|
745
|
+
Args:
|
746
|
+
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.
|
747
|
+
single_page (bool, optional): se False la risposta viene ottenuta a step per non appesantire le API. Default to False.
|
748
|
+
page_size (int, optional): Numero di oggetti per pagina se single_page == False. Default to 5000.
|
749
|
+
kwargs (dict, optional): additional parameters for execute. Default to None.
|
750
|
+
**params: additional parameters for the API.
|
751
|
+
|
752
|
+
Keyword Args:
|
753
|
+
sort_by (string optional): Stringa separata da virgole di campi su cui ordinare. Si indica uno o piu campi della risposta e si puo chiedere di ottenere i valori di quei campi in ordine ascendente o discendente. Esempio "Customer:Desc". Default to "". - parameter
|
754
|
+
null_fields (string optional): additional filter - parameter
|
755
|
+
uuid_customer (string optional): additional filter - parameter
|
756
|
+
customer_code (string optional): additional filter - parameter
|
757
|
+
customer_status (string optional): additional filter - parameter
|
758
|
+
uuid_site (string optional): additional filter - parameter
|
759
|
+
site_code (string optional): additional filter - parameter
|
760
|
+
site_description (string optional): additional filter - parameter
|
761
|
+
site_address (string optional): additional filter - parameter
|
762
|
+
site_zip_code (string optional): additional filter - parameter
|
763
|
+
site_city (string optional): additional filter - parameter
|
764
|
+
site_country (string optional): additional filter - parameter
|
765
|
+
site_state_province (string optional): additional filter - parameter
|
766
|
+
site_status (string optional): additional filter - parameter
|
767
|
+
uuid_group (string optional): additional filter - parameter
|
768
|
+
group_name (string optional): additional filter - parameter
|
769
|
+
group_status (string optional): additional filter - parameter
|
770
|
+
group_type (string optional): additional filter - parameter
|
771
|
+
group_uuid_virtual_domain (string optional): additional filter - parameter
|
772
|
+
uuid_object (string optional): additional filter - parameter
|
773
|
+
object_name (string optional): additional filter - parameter
|
774
|
+
object_status (string optional): additional filter - parameter
|
775
|
+
object_profile (string optional): additional filter - parameter
|
776
|
+
uuid_metric_type (string optional): additional filter - parameter
|
777
|
+
metric_type_name (string optional): additional filter - parameter
|
778
|
+
metric_type_status (string optional): additional filter - parameter
|
779
|
+
uuid_metric (string optional): additional filter - parameter
|
780
|
+
metric_name (string optional): additional filter - parameter
|
781
|
+
metric_status (string optional): additional filter - parameter
|
782
|
+
metric_profile (string optional): additional filter - parameter
|
783
|
+
service_uuid_parent (string optional): additional filter - parameter
|
784
|
+
uuid_service (string optional): additional filter - parameter
|
785
|
+
service_profile (string optional): additional filter - parameter
|
786
|
+
service_name (string optional): additional filter - parameter
|
787
|
+
service_description (string optional): additional filter - parameter
|
788
|
+
service_status (string optional): additional filter - parameter
|
789
|
+
service_automata_domain (string optional): additional filter - parameter
|
790
|
+
service_uuid_customer (string optional): additional filter - parameter
|
791
|
+
timestamp_start (string optional): additional filter - parameter
|
792
|
+
timestamp_end (string optional): additional filter - parameter
|
793
|
+
database_timestamp_start (string optional): additional filter - parameter
|
794
|
+
database_timestamp_end (string optional): additional filter - parameter
|
795
|
+
status (None optional): additional filter - parameter
|
796
|
+
ranking (integer optional): additional filter - parameter
|
797
|
+
description (string optional): additional filter - parameter
|
798
|
+
unit (string optional): additional filter - parameter
|
799
|
+
value (number optional): additional filter - parameter
|
800
|
+
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
801
|
+
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
802
|
+
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
|
803
|
+
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
|
804
|
+
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
|
805
|
+
|
806
|
+
Returns: list"""
|
807
|
+
if kwargs is None:
|
808
|
+
kwargs = dict()
|
809
|
+
official_params_list = ['sort_by', 'null_fields', 'uuid_customer',
|
810
|
+
'customer_code', 'customer_status', 'uuid_site', 'site_code',
|
811
|
+
'site_description', 'site_address', 'site_zip_code',
|
812
|
+
'site_city', 'site_country', 'site_state_province',
|
813
|
+
'site_status', 'uuid_group', 'group_name', 'group_status',
|
814
|
+
'group_type', 'group_uuid_virtual_domain', 'uuid_object',
|
815
|
+
'object_name', 'object_status', 'object_profile',
|
816
|
+
'uuid_metric_type', 'metric_type_name', 'metric_type_status',
|
817
|
+
'uuid_metric', 'metric_name', 'metric_status', 'metric_profile',
|
818
|
+
'service_uuid_parent', 'uuid_service', 'service_profile',
|
819
|
+
'service_name', 'service_description', 'service_status',
|
820
|
+
'service_automata_domain', 'service_uuid_customer',
|
821
|
+
'timestamp_start', 'timestamp_end', 'database_timestamp_start',
|
822
|
+
'database_timestamp_end', 'status', 'ranking', 'description',
|
823
|
+
'unit', 'value', 'skip', 'limit', 'like', 'join', 'count']
|
824
|
+
params.get('sort_by'), params.get('null_fields'), params.get(
|
825
|
+
'uuid_customer'), params.get('customer_code'), params.get(
|
826
|
+
'customer_status'), params.get('uuid_site'), params.get('site_code'
|
827
|
+
), params.get('site_description'), params.get('site_address'
|
828
|
+
), params.get('site_zip_code'), params.get('site_city'
|
829
|
+
), params.get('site_country'), params.get('site_state_province'
|
830
|
+
), params.get('site_status'), params.get('uuid_group'), params.get(
|
831
|
+
'group_name'), params.get('group_status'), params.get('group_type'
|
832
|
+
), params.get('group_uuid_virtual_domain'), params.get(
|
833
|
+
'uuid_object'), params.get('object_name'), params.get(
|
834
|
+
'object_status'), params.get('object_profile'), params.get(
|
835
|
+
'uuid_metric_type'), params.get('metric_type_name'), params.get(
|
836
|
+
'metric_type_status'), params.get('uuid_metric'), params.get(
|
837
|
+
'metric_name'), params.get('metric_status'), params.get(
|
838
|
+
'metric_profile'), params.get('service_uuid_parent'), params.get(
|
839
|
+
'uuid_service'), params.get('service_profile'), params.get(
|
840
|
+
'service_name'), params.get('service_description'), params.get(
|
841
|
+
'service_status'), params.get('service_automata_domain'
|
842
|
+
), params.get('service_uuid_customer'), params.get(
|
843
|
+
'timestamp_start'), params.get('timestamp_end'), params.get(
|
844
|
+
'database_timestamp_start'), params.get('database_timestamp_end'
|
845
|
+
), params.get('status'), params.get('ranking'), params.get(
|
846
|
+
'description'), params.get('unit'), params.get('value'
|
847
|
+
), params.get('skip'), params.get('limit'), params.get('like'
|
848
|
+
), params.get('join'), params.get('count')
|
849
|
+
if not self._silence_warning:
|
850
|
+
warning_wrong_parameters(self.services_last_status_query.
|
851
|
+
__name__, params, official_params_list)
|
852
|
+
response = self.execute('GET', path=f'/services/query/last_status',
|
853
|
+
single_page=single_page, page_size=page_size, warm_start=
|
854
|
+
warm_start, params=params, **kwargs)
|
855
|
+
return response
|
856
|
+
|
857
|
+
def last_status_bulk(self, payload: dict = False,
|
858
|
+
warm_start: bool = False, single_page: bool = False,
|
859
|
+
page_size: int = 5000, kwargs: dict = None, **params) -> list:
|
860
|
+
"""Service Query Last Status List
|
861
|
+
|
862
|
+
Args:
|
863
|
+
payload (dict, optional): additional parameters for the API.
|
864
|
+
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.
|
865
|
+
single_page (bool, optional): se False la risposta viene ottenuta a step per non appesantire le API. Default to False.
|
866
|
+
page_size (int, optional): Numero di oggetti per pagina se single_page == False. Default to 5000.
|
867
|
+
kwargs (dict, optional): additional parameters for execute. Default to None.
|
868
|
+
**params: additional parameters for the API.
|
869
|
+
|
870
|
+
Keyword Args:
|
871
|
+
sort_by (string optional): Stringa separata da virgole di campi su cui ordinare. Si indica uno o piu campi della risposta e si puo chiedere di ottenere i valori di quei campi in ordine ascendente o discendente. Esempio "Customer:Desc". Default to "". - parameter
|
872
|
+
null_fields (string optional): additional filter - parameter
|
873
|
+
timestamp_start (string optional): additional filter - parameter
|
874
|
+
timestamp_end (string optional): additional filter - parameter
|
875
|
+
database_timestamp_start (string optional): additional filter - parameter
|
876
|
+
database_timestamp_end (string optional): additional filter - parameter
|
877
|
+
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
878
|
+
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
879
|
+
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
|
880
|
+
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
|
881
|
+
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
|
882
|
+
|
883
|
+
Examples:
|
884
|
+
payload =
|
885
|
+
{
|
886
|
+
"uuid_customer": "array", optional
|
887
|
+
"customer_code": "array", optional
|
888
|
+
"customer_status": "array", optional
|
889
|
+
"uuid_site": "array", optional
|
890
|
+
"site_code": "array", optional
|
891
|
+
"site_description": "array", optional
|
892
|
+
"site_address": "array", optional
|
893
|
+
"site_zip_code": "array", optional
|
894
|
+
"site_city": "array", optional
|
895
|
+
"site_country": "array", optional
|
896
|
+
"site_state_province": "array", optional
|
897
|
+
"site_status": "array", optional
|
898
|
+
"uuid_group": "array", optional
|
899
|
+
"group_name": "array", optional
|
900
|
+
"group_status": "array", optional
|
901
|
+
"group_type": "array", optional
|
902
|
+
"group_uuid_virtual_domain": "array", optional
|
903
|
+
"uuid_object": "array", optional
|
904
|
+
"object_name": "array", optional
|
905
|
+
"object_status": "array", optional
|
906
|
+
"object_profile": "array", optional
|
907
|
+
"uuid_metric_type": "array", optional
|
908
|
+
"metric_type_name": "array", optional
|
909
|
+
"metric_type_status": "array", optional
|
910
|
+
"uuid_metric": "array", optional
|
911
|
+
"metric_name": "array", optional
|
912
|
+
"metric_status": "array", optional
|
913
|
+
"metric_profile": "array", optional
|
914
|
+
"service_uuid_parent": "array", optional
|
915
|
+
"uuid_service": "array", optional
|
916
|
+
"service_profile": "array", optional
|
917
|
+
"service_name": "array", optional
|
918
|
+
"service_description": "array", optional
|
919
|
+
"service_status": "array", optional
|
920
|
+
"service_automata_domain": "array", optional
|
921
|
+
"service_uuid_customer": "array", optional
|
922
|
+
"status": "array", optional
|
923
|
+
"ranking": "array", optional
|
924
|
+
"description": "array", optional
|
925
|
+
"unit": "array", optional
|
926
|
+
"value": "array", optional
|
927
|
+
}
|
928
|
+
|
929
|
+
Returns: list"""
|
930
|
+
if kwargs is None:
|
931
|
+
kwargs = dict()
|
932
|
+
official_params_list = ['sort_by', 'null_fields', 'timestamp_start',
|
933
|
+
'timestamp_end', 'database_timestamp_start',
|
934
|
+
'database_timestamp_end', 'skip', 'limit', 'like', 'join', 'count']
|
935
|
+
params.get('sort_by'), params.get('null_fields'), params.get(
|
936
|
+
'timestamp_start'), params.get('timestamp_end'), params.get(
|
937
|
+
'database_timestamp_start'), params.get('database_timestamp_end'
|
938
|
+
), params.get('skip'), params.get('limit'), params.get('like'
|
939
|
+
), params.get('join'), params.get('count')
|
940
|
+
if not self._silence_warning:
|
941
|
+
warning_wrong_parameters(self.last_status_bulk.__name__, params,
|
942
|
+
official_params_list)
|
943
|
+
response = self.execute('POST', path=f'/services/query/last_status',
|
944
|
+
single_page=single_page, page_size=page_size, warm_start=
|
945
|
+
warm_start, params=params, payload=payload, **kwargs)
|
946
|
+
return response
|
947
|
+
|
740
948
|
def services_check_rules_create(self, params: dict = False,
|
741
949
|
kwargs: dict = None, **payload) -> list:
|
742
950
|
"""Check Service Rules
|
hive/cookbook/sites.py
CHANGED
@@ -29,7 +29,9 @@ class Sites(ApiManager):
|
|
29
29
|
notes (string optional): additional filter - parameter
|
30
30
|
state_province (string optional): additional filter - parameter
|
31
31
|
status (string optional): additional filter - parameter
|
32
|
+
severity (None optional): additional filter - parameter
|
32
33
|
filter_group_types (string optional): additional filter - parameter
|
34
|
+
count_children (boolean optional): additional filter - parameter
|
33
35
|
extract_severity (boolean optional): Se True nella risposta e' anche presente la severita, Default to False. - parameter
|
34
36
|
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
35
37
|
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
@@ -42,15 +44,16 @@ class Sites(ApiManager):
|
|
42
44
|
kwargs = dict()
|
43
45
|
official_params_list = ['sort_by', 'null_fields', 'uuid_customer',
|
44
46
|
'type', 'code', 'description', 'address', 'zip_code', 'city',
|
45
|
-
'country', 'notes', 'state_province', 'status',
|
46
|
-
'filter_group_types', '
|
47
|
-
'like', 'join', 'count']
|
47
|
+
'country', 'notes', 'state_province', 'status', 'severity',
|
48
|
+
'filter_group_types', 'count_children', 'extract_severity',
|
49
|
+
'skip', 'limit', 'like', 'join', 'count']
|
48
50
|
params.get('sort_by'), params.get('null_fields'), params.get(
|
49
51
|
'uuid_customer'), params.get('type'), params.get('code'
|
50
52
|
), params.get('description'), params.get('address'), params.get(
|
51
53
|
'zip_code'), params.get('city'), params.get('country'), params.get(
|
52
54
|
'notes'), params.get('state_province'), params.get('status'
|
53
|
-
), params.get('
|
55
|
+
), params.get('severity'), params.get('filter_group_types'
|
56
|
+
), params.get('count_children'), params.get('extract_severity'
|
54
57
|
), params.get('skip'), params.get('limit'), params.get('like'
|
55
58
|
), params.get('join'), params.get('count')
|
56
59
|
if not self._silence_warning:
|
hive/cookbook/widgets.py
CHANGED
@@ -175,9 +175,9 @@ class Widgets(ApiManager):
|
|
175
175
|
**payload: additional parameters for the API.
|
176
176
|
|
177
177
|
Keyword Args:
|
178
|
-
index (integer
|
179
|
-
width (integer
|
180
|
-
height (integer
|
178
|
+
index (integer optional): additional filter - payload
|
179
|
+
width (integer optional): additional filter - payload
|
180
|
+
height (integer optional): additional filter - payload
|
181
181
|
grid_x (integer optional): additional filter - payload
|
182
182
|
grid_y (integer optional): additional filter - payload
|
183
183
|
settings (array object optional): additional filter - payload
|
@@ -432,9 +432,9 @@ class Widgets(ApiManager):
|
|
432
432
|
payload =
|
433
433
|
[
|
434
434
|
{
|
435
|
-
"index": "integer",
|
436
|
-
"width": "integer",
|
437
|
-
"height": "integer",
|
435
|
+
"index": "integer", optional
|
436
|
+
"width": "integer", optional
|
437
|
+
"height": "integer", optional
|
438
438
|
"grid_x": "integer", optional
|
439
439
|
"grid_y": "integer", optional
|
440
440
|
"settings": "array object", optional
|
hive/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
version = '3.22.
|
1
|
+
version = '3.22.2'
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: xautomata-hive
|
3
|
-
Version: 3.22.
|
3
|
+
Version: 3.22.2
|
4
4
|
Home-page: https://github.com/sherlogic/xautomata-hive.git
|
5
5
|
Author: Enrico Ferro - Andrea Jacassi
|
6
6
|
Author-email:
|
@@ -8,14 +8,15 @@ License: MIT
|
|
8
8
|
Requires-Python: >=3.8.0
|
9
9
|
Description-Content-Type: text/markdown
|
10
10
|
License-File: LICENSE
|
11
|
-
Requires-Dist: urllib3==2.0.4
|
12
11
|
Requires-Dist: requests==2.31.0
|
13
12
|
Requires-Dist: tqdm==4.64.1
|
13
|
+
Requires-Dist: urllib3==2.0.4
|
14
14
|
Dynamic: author
|
15
15
|
Dynamic: description
|
16
16
|
Dynamic: description-content-type
|
17
17
|
Dynamic: home-page
|
18
18
|
Dynamic: license
|
19
|
+
Dynamic: license-file
|
19
20
|
Dynamic: requires-dist
|
20
21
|
Dynamic: requires-python
|
21
22
|
|
@@ -1,57 +1,59 @@
|
|
1
1
|
hive/__init__.py,sha256=UjH5QfSfRGu2FR5_StfVbEtL_fuGS2Z_iZXmf1nx4AE,68
|
2
|
-
hive/api.py,sha256=
|
2
|
+
hive/api.py,sha256=sfYEtzH4On2KhVuNnXfg-yhwMTBq9M_8B5ZaMXo0Gto,42112
|
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=JcqYf98zRV9mlD5iFZry7ZqFBNml6IAcw6wRxJzIXZE,18
|
8
8
|
hive/cookbook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
hive/cookbook/acl_docs.py,sha256=0xr7Vb9121vhsiZjQaKvuAt4gKlXOO4aUJM472HeARw,786
|
10
|
-
hive/cookbook/acl_overrides.py,sha256=
|
10
|
+
hive/cookbook/acl_overrides.py,sha256=1maKXIE-Ny4qqX5zZkWaB-Syrh8wNkQzEMpZFvueJW4,9910
|
11
11
|
hive/cookbook/analytics.py,sha256=1OMwo0vUuOAtT8WNz6HY6NJ-JTLpru4vTlYtdiczDrg,3531
|
12
12
|
hive/cookbook/anomalies.py,sha256=VnuIWGH0om2XuFiz9jlFjQWWWcIdbr3fmUECfiqvM0A,11208
|
13
|
+
hive/cookbook/apple.py,sha256=1Fpp8KCCBWs9-ZOMiLktxm9VthI7N8L5DwXQYTQ8CMs,1170
|
13
14
|
hive/cookbook/automata_ingest.py,sha256=LFwpT8NXJActB2iDShm2G8iwim72MEZBs2GA1OlvOzg,1954
|
14
15
|
hive/cookbook/calendars.py,sha256=rZfIR6aoVWfdLBmtQGLIk5gQ1F2rD6UQ9PEu6r8zDtA,24245
|
15
16
|
hive/cookbook/contacts.py,sha256=vhkBjaxFoQA5P-GSGLsgtcvo3rbAPfHOCiB87tXtQsM,39183
|
16
17
|
hive/cookbook/cost_tagging.py,sha256=wwLgo3YaDI4Xm7QcQVlf4kXxz8kPP7J7Qh4ddzuaDro,7779
|
17
|
-
hive/cookbook/cost_tags.py,sha256=
|
18
|
+
hive/cookbook/cost_tags.py,sha256=cMfcUJTThH-Rba6pC71cs_JouruiLAQ8pf7YLwkHqSc,10038
|
18
19
|
hive/cookbook/cost_tree_nodes.py,sha256=62YYjkTjkL7ob3hql7-PF9r_hnqDWcBL59aDxd28ECg,14256
|
19
20
|
hive/cookbook/cost_tree_resources.py,sha256=dWYkRNpkQ4nhg0zM8mIy0HymTHSMZm2G_Stnjvv9jSs,14732
|
20
21
|
hive/cookbook/cost_views.py,sha256=oPi-RA07W4SmZjdGhqSzVNoop9U6rZPLGJImS4hyqa8,11945
|
21
22
|
hive/cookbook/customers.py,sha256=SP5Ut34taKJ0h8FMSpS8rT2e8EclBKOvMKSat-HRy_g,81482
|
22
|
-
hive/cookbook/dashboards.py,sha256=
|
23
|
-
hive/cookbook/dispatchers.py,sha256=
|
23
|
+
hive/cookbook/dashboards.py,sha256=oiv_yR6WKLd-JS7S54KCxh7OWnhCiT5v1axWcZFH4fI,33600
|
24
|
+
hive/cookbook/dispatchers.py,sha256=HpAWumJg-Clb_D0-EqXV7RvLpe9D9qFztcj3pnHAY-8,59735
|
24
25
|
hive/cookbook/downtimes.py,sha256=NHA_W64tJk1YO9GmshyNstROzPHYJHAAwZnIFfjZh_I,48511
|
25
26
|
hive/cookbook/external_tickets.py,sha256=Lv30Mu6Hu4L8zWdduR_2OUCC_QTy8rvdWv-9gmWCljo,29510
|
26
27
|
hive/cookbook/features.py,sha256=XkIkZb1_-ybEnJ6Dx9WdVkvtLt8Ys8AitL9aNNy7o_s,1306
|
27
28
|
hive/cookbook/files.py,sha256=xPQcEsThYGVu2CSEm_GK0yjbzOeJSyV2fNFOh9-xKoo,4759
|
28
29
|
hive/cookbook/firmware_updates.py,sha256=2N4dwLWWOq6it0f3SbLYixzAkATZ0O9v5lX-6gQwMZE,5996
|
29
30
|
hive/cookbook/google.py,sha256=fxequ6Vsd7kzWyP2VV2xs8JmLUJCiw_8P7gsuYZDoM0,1430
|
30
|
-
hive/cookbook/groups.py,sha256=
|
31
|
+
hive/cookbook/groups.py,sha256=vmR95dMs-3GWUl5PXvChVcbB3M7j43f5fSdhchQWQj0,41277
|
31
32
|
hive/cookbook/jobs.py,sha256=VlmqbBNMx-dBMsaolHIlxJcuFTGIbPfoNOOBYhFOsnQ,4105
|
32
33
|
hive/cookbook/last_object_status.py,sha256=hVXt2fBxzkuGCXg-Q_ovhIEk1Zx5irv2yV8d9GKjjQk,15407
|
33
34
|
hive/cookbook/last_status.py,sha256=TvDp6wvpZTpTfTZAAkQWwUdTrB2tHBOylxlZPQboAls,13161
|
34
35
|
hive/cookbook/last_status_v2.py,sha256=Busbt6O1PWno81IdZRa6v8mQjDfj32Y2qMz1xFzyPJc,13178
|
35
|
-
hive/cookbook/login.py,sha256=
|
36
|
+
hive/cookbook/login.py,sha256=KDC_4Pp49H0YjUaS-F7O9goriCquurPC8-TpG7ugT6U,25618
|
36
37
|
hive/cookbook/messages.py,sha256=dD9QQlqR9Zyu8Kg8yJev-EZQOo0poQTsFwLEIvmyNbo,15285
|
37
38
|
hive/cookbook/metric_ingest.py,sha256=V6JH_ZpePM_3GBRoVc5U7hHZul45Yyf2CRcXEXNJgMI,2519
|
38
|
-
hive/cookbook/metric_types.py,sha256=
|
39
|
-
hive/cookbook/metrics.py,sha256=
|
39
|
+
hive/cookbook/metric_types.py,sha256=6iy2-cB4kL9cJpaGz49EDonsT5vD3AKLGXp89y3XftI,28704
|
40
|
+
hive/cookbook/metrics.py,sha256=kgb4qkgmUgleFdr9d73JWhtHaKYV6Kn9UHUIw5nZbcs,69419
|
40
41
|
hive/cookbook/microsoft.py,sha256=X8Q9FGw7WbnsMyTdWUuB8R5cAk-AJ8AZVLDpC0vGrt4,1453
|
41
42
|
hive/cookbook/notification_provider_types.py,sha256=tpSeAoluy6QQSnR4JtJQfH3O_qwcSE-lF04dWFle9yo,13463
|
42
43
|
hive/cookbook/notification_providers.py,sha256=6dKi_wDv99HzIybTi6isLjnNNKGNpb4rnhiJzhRRYH8,11095
|
43
|
-
hive/cookbook/objects.py,sha256=
|
44
|
+
hive/cookbook/objects.py,sha256=JLrzx-NTOt78VHsq1YYMmgwy48y4JMamTuAPgn0t3WQ,46290
|
44
45
|
hive/cookbook/opening_reasons.py,sha256=fwq0E51Qs-hnyUMY242GYf8Vr5YtcJZy2SZtjZVXTE8,11928
|
45
46
|
hive/cookbook/probe_types.py,sha256=isKPKbMr19_DVtI_0Erk4i3g6Hh_yWxOo6RbTCOkCxw,12992
|
46
47
|
hive/cookbook/probes.py,sha256=jYqeGwz-26Y4B3t2EIOl5MfW8gcpHwXF-pdEPfaO-Qk,23648
|
47
48
|
hive/cookbook/probes_log_ingest.py,sha256=0D5szbqHOujPbGQ_nyZZZpob4damvWjo1FSw9iDf0fM,1661
|
48
49
|
hive/cookbook/profile_topics.py,sha256=Wp209fmSsrEZ3jnn6AYHjX7jJ12zfFDV-T9liGUHuXI,10253
|
50
|
+
hive/cookbook/qr_code.py,sha256=Ra4hk5hHEiyhVwFIFmtDphn_cvS7TUGECnDqLEl48zA,779
|
49
51
|
hive/cookbook/questions.py,sha256=VMf1WWHYFfegujy5bpI7kxVlokOpHraKW7JRppoPvYQ,8070
|
50
52
|
hive/cookbook/reason_for_closure.py,sha256=PqDleTYc6RJmhPrJ7q-A9RgCc6GEC05x_hU9R2sXIFE,11012
|
51
53
|
hive/cookbook/retention_rules.py,sha256=brW64MqYrl4XNYN7ZxojVDWXpdBV4fRpR7a2A1ya2zM,7958
|
52
54
|
hive/cookbook/schedules.py,sha256=ldI-hpOx-EpCy3oSOVczk8114QL2bS_2rsjNI6TEMjc,6916
|
53
|
-
hive/cookbook/services.py,sha256
|
54
|
-
hive/cookbook/sites.py,sha256=
|
55
|
+
hive/cookbook/services.py,sha256=-TQM2FxX__14J4D0RYnPeL0dBtXcow6OdEtRvGU69L0,73234
|
56
|
+
hive/cookbook/sites.py,sha256=WLXdnxrMYkT3bCM2Mz5sjQzZzqRDmCGiMl4BtEWJ1WU,33383
|
55
57
|
hive/cookbook/terms_and_conditions.py,sha256=cc01N2N41yAbFa5HCvY2Ur4nujSQb1VnEbsrWVq1znY,4669
|
56
58
|
hive/cookbook/tree_hierarchy.py,sha256=ldJ1hMFQcghA6P2gRHheLjG74X8B6Z1JaupeAW9vg9s,23749
|
57
59
|
hive/cookbook/tree_hierarchy_v2.py,sha256=r2aYianO9sUQa2-cec9wA3j7iWLGSLHBVSM1n3Vh8sA,23805
|
@@ -69,9 +71,9 @@ hive/cookbook/users_notifications.py,sha256=klrqR3awrwKHx6o0wpg2oLFdU0PWA2MSa41K
|
|
69
71
|
hive/cookbook/virtual_domains.py,sha256=N3dp3pjkO-5jni3KBcCukRqcmVqAFYCDV6dgVXrHaFM,22826
|
70
72
|
hive/cookbook/webhooks.py,sha256=6ZSJfAiEjuh4Y4pfkUNjUYquBwxhD2KVkcVU3BcNkDc,7572
|
71
73
|
hive/cookbook/widget_groups.py,sha256=GY7mBh72HzI9RRMCwnmJ-fildtZ3w4BrPDUdNfNoVyk,16018
|
72
|
-
hive/cookbook/widgets.py,sha256=
|
73
|
-
xautomata_hive-3.22.
|
74
|
-
xautomata_hive-3.22.
|
75
|
-
xautomata_hive-3.22.
|
76
|
-
xautomata_hive-3.22.
|
77
|
-
xautomata_hive-3.22.
|
74
|
+
hive/cookbook/widgets.py,sha256=0Maw5gRAnph1Mu9ZlgzPT2Di_kJFeGKOOkhCGCjnelc,23497
|
75
|
+
xautomata_hive-3.22.2.dist-info/licenses/LICENSE,sha256=CFT1oIPm4kciOjwep2r1LQnpATugddSy3D839fsmgFs,1065
|
76
|
+
xautomata_hive-3.22.2.dist-info/METADATA,sha256=IAuBKdhqVh6_H1ZuOTDp0a_gU9mV2TRXWp4RYzmZNP0,10924
|
77
|
+
xautomata_hive-3.22.2.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
78
|
+
xautomata_hive-3.22.2.dist-info/top_level.txt,sha256=pLpVAuviHGk3pzaFXU-4GKttxGTGAbFoWK8JvUl1jHQ,5
|
79
|
+
xautomata_hive-3.22.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|