xautomata-hive 3.16.2__py3-none-any.whl → 3.16.4__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/cost_tree_nodes.py +4 -4
- hive/cookbook/cost_tree_resources.py +53 -52
- hive/cookbook/cost_views.py +10 -4
- hive/cookbook/customers.py +55 -1
- hive/cookbook/metrics.py +52 -0
- hive/cookbook/probes.py +2 -2
- hive/cookbook/ts_cost_management.py +99 -46
- hive/version.py +1 -1
- {xautomata_hive-3.16.2.dist-info → xautomata_hive-3.16.4.dist-info}/METADATA +1 -1
- {xautomata_hive-3.16.2.dist-info → xautomata_hive-3.16.4.dist-info}/RECORD +13 -13
- {xautomata_hive-3.16.2.dist-info → xautomata_hive-3.16.4.dist-info}/WHEEL +1 -1
- {xautomata_hive-3.16.2.dist-info → xautomata_hive-3.16.4.dist-info}/LICENSE +0 -0
- {xautomata_hive-3.16.2.dist-info → xautomata_hive-3.16.4.dist-info}/top_level.txt +0 -0
hive/cookbook/cost_tree_nodes.py
CHANGED
@@ -159,16 +159,16 @@ class CostTreeNodes(ApiManager):
|
|
159
159
|
**params: additional parameters for the API.
|
160
160
|
|
161
161
|
Keyword Args:
|
162
|
-
|
163
|
-
|
162
|
+
date_start (string required): additional filter - parameter
|
163
|
+
date_end (string required): additional filter - parameter
|
164
164
|
|
165
165
|
Returns: list"""
|
166
166
|
if kwargs is None:
|
167
167
|
kwargs = dict()
|
168
168
|
kwargs, params = handling_single_page_methods(kwargs=kwargs, params
|
169
169
|
=params)
|
170
|
-
official_params_list = ['
|
171
|
-
params.get('
|
170
|
+
official_params_list = ['date_start', 'date_end']
|
171
|
+
params.get('date_start'), params.get('date_end')
|
172
172
|
if not self._silence_warning:
|
173
173
|
warning_wrong_parameters(self.cost_tree_nodes_navigate_tree.
|
174
174
|
__name__, params, official_params_list)
|
@@ -19,7 +19,7 @@ class CostTreeResources(ApiManager):
|
|
19
19
|
Keyword Args:
|
20
20
|
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
|
21
21
|
uuid_tree_node (string optional): additional filter - parameter
|
22
|
-
|
22
|
+
uuid_view (string optional): additional filter - parameter
|
23
23
|
cost_category (string optional): additional filter - parameter
|
24
24
|
cost_category_value (string optional): additional filter - parameter
|
25
25
|
percentage (number optional): additional filter - parameter
|
@@ -33,11 +33,11 @@ class CostTreeResources(ApiManager):
|
|
33
33
|
Returns: list"""
|
34
34
|
if kwargs is None:
|
35
35
|
kwargs = dict()
|
36
|
-
official_params_list = ['sort_by', 'uuid_tree_node', '
|
36
|
+
official_params_list = ['sort_by', 'uuid_tree_node', 'uuid_view',
|
37
37
|
'cost_category', 'cost_category_value', 'percentage',
|
38
38
|
'null_fields', 'skip', 'limit', 'like', 'join', 'count']
|
39
39
|
params.get('sort_by'), params.get('uuid_tree_node'), params.get(
|
40
|
-
'
|
40
|
+
'uuid_view'), params.get('cost_category'), params.get(
|
41
41
|
'cost_category_value'), params.get('percentage'), params.get(
|
42
42
|
'null_fields'), params.get('skip'), params.get('limit'
|
43
43
|
), params.get('like'), params.get('join'), params.get('count')
|
@@ -77,79 +77,80 @@ class CostTreeResources(ApiManager):
|
|
77
77
|
payload=payload, **kwargs)
|
78
78
|
return response
|
79
79
|
|
80
|
-
def
|
81
|
-
|
82
|
-
) -> list:
|
83
|
-
"""
|
80
|
+
def cost_tree_resources_all_resource_ids(self, warm_start: bool = False,
|
81
|
+
single_page: bool = False, page_size: int = 5000,
|
82
|
+
kwargs: dict = None, **params) -> list:
|
83
|
+
"""Get Resource Ids
|
84
84
|
|
85
85
|
Args:
|
86
|
-
uuid_tree_node (str, required): uuid_tree_node
|
87
|
-
uuid_tag (str, required): uuid_tag
|
88
86
|
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.
|
87
|
+
single_page (bool, optional): se False la risposta viene ottenuta a step per non appesantire le API. Default to False.
|
88
|
+
page_size (int, optional): Numero di oggetti per pagina se single_page == False. Default to 5000.
|
89
89
|
kwargs (dict, optional): additional parameters for execute. Default to None.
|
90
90
|
**params: additional parameters for the API.
|
91
91
|
|
92
92
|
Keyword Args:
|
93
|
+
date_start (string required): additional filter - parameter
|
94
|
+
date_end (string required): additional filter - parameter
|
95
|
+
uuid_customer (string optional): additional filter - parameter
|
96
|
+
uuid_view (string optional): additional filter - parameter
|
97
|
+
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
98
|
+
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
99
|
+
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
|
93
100
|
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
|
101
|
+
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
|
94
102
|
|
95
103
|
Returns: list"""
|
96
104
|
if kwargs is None:
|
97
105
|
kwargs = dict()
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
106
|
+
official_params_list = ['date_start', 'date_end', 'uuid_customer',
|
107
|
+
'uuid_view', 'skip', 'limit', 'like', 'join', 'count']
|
108
|
+
params.get('date_start'), params.get('date_end'), params.get(
|
109
|
+
'uuid_customer'), params.get('uuid_view'), params.get('skip'
|
110
|
+
), params.get('limit'), params.get('like'), params.get('join'
|
111
|
+
), params.get('count')
|
102
112
|
if not self._silence_warning:
|
103
|
-
warning_wrong_parameters(self.
|
104
|
-
params,
|
113
|
+
warning_wrong_parameters(self.
|
114
|
+
cost_tree_resources_all_resource_ids.__name__, params,
|
115
|
+
official_params_list)
|
105
116
|
response = self.execute('GET', path=
|
106
|
-
f'/cost_tree_resources/
|
107
|
-
=
|
117
|
+
f'/cost_tree_resources/all_resource_ids/', single_page=
|
118
|
+
single_page, page_size=page_size, warm_start=warm_start, params
|
119
|
+
=params, **kwargs)
|
108
120
|
return response
|
109
121
|
|
110
|
-
def
|
111
|
-
|
112
|
-
|
122
|
+
def cost_tree_resources_unfully_assigned_resource_ids(self,
|
123
|
+
uuid_view: str, warm_start: bool = False, single_page: bool = False,
|
124
|
+
page_size: int = 5000, kwargs: dict = None, **params) -> list:
|
125
|
+
"""Get Unfully Assigned Resource Ids
|
113
126
|
|
114
127
|
Args:
|
115
|
-
|
116
|
-
|
128
|
+
uuid_view (str, required): uuid_view
|
129
|
+
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.
|
130
|
+
single_page (bool, optional): se False la risposta viene ottenuta a step per non appesantire le API. Default to False.
|
131
|
+
page_size (int, optional): Numero di oggetti per pagina se single_page == False. Default to 5000.
|
117
132
|
kwargs (dict, optional): additional parameters for execute. Default to None.
|
118
|
-
**
|
133
|
+
**params: additional parameters for the API.
|
119
134
|
|
120
135
|
Keyword Args:
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
136
|
+
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
137
|
+
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
138
|
+
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
|
139
|
+
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
|
140
|
+
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
|
125
141
|
|
126
142
|
Returns: list"""
|
127
143
|
if kwargs is None:
|
128
144
|
kwargs = dict()
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
), payload.get('cost_category_value'), payload.get('percentage')
|
145
|
+
official_params_list = ['skip', 'limit', 'like', 'join', 'count']
|
146
|
+
params.get('skip'), params.get('limit'), params.get('like'
|
147
|
+
), params.get('join'), params.get('count')
|
133
148
|
if not self._silence_warning:
|
134
|
-
warning_wrong_parameters(self.
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
def cost_tree_resources_delete(self, uuid_tree_node: str, uuid_tag: str,
|
142
|
-
kwargs: dict = None) -> list:
|
143
|
-
"""Delete Cost Tree Resources
|
144
|
-
|
145
|
-
Args:
|
146
|
-
uuid_tree_node (str, required): uuid_tree_node
|
147
|
-
uuid_tag (str, required): uuid_tag
|
148
|
-
kwargs (dict, optional): additional parameters for execute. Default to None.
|
149
|
-
|
150
|
-
Returns: list"""
|
151
|
-
if kwargs is None:
|
152
|
-
kwargs = dict()
|
153
|
-
response = self.execute('DELETE', path=
|
154
|
-
f'/cost_tree_resources/{uuid_tree_node}/{uuid_tag}', **kwargs)
|
149
|
+
warning_wrong_parameters(self.
|
150
|
+
cost_tree_resources_unfully_assigned_resource_ids.__name__,
|
151
|
+
params, official_params_list)
|
152
|
+
response = self.execute('GET', path=
|
153
|
+
f'/cost_tree_resources/{uuid_view}/unfully_assigned_resource_ids/',
|
154
|
+
single_page=single_page, page_size=page_size, warm_start=
|
155
|
+
warm_start, params=params, **kwargs)
|
155
156
|
return response
|
hive/cookbook/cost_views.py
CHANGED
@@ -53,6 +53,7 @@ class CostViews(ApiManager):
|
|
53
53
|
**payload: additional parameters for the API.
|
54
54
|
|
55
55
|
Keyword Args:
|
56
|
+
uuid_customer (string required): additional filter - payload
|
56
57
|
name (string required): additional filter - payload
|
57
58
|
description (string optional): additional filter - payload
|
58
59
|
type (string optional): additional filter - payload
|
@@ -60,8 +61,10 @@ class CostViews(ApiManager):
|
|
60
61
|
Returns: list"""
|
61
62
|
if kwargs is None:
|
62
63
|
kwargs = dict()
|
63
|
-
official_payload_list = ['name', 'description', 'type'
|
64
|
-
|
64
|
+
official_payload_list = ['uuid_customer', 'name', 'description', 'type'
|
65
|
+
]
|
66
|
+
payload.get('uuid_customer'), payload.get('name'), payload.get(
|
67
|
+
'description'), payload.get('type')
|
65
68
|
if not self._silence_warning:
|
66
69
|
warning_wrong_parameters(self.cost_views_create.__name__,
|
67
70
|
payload, official_payload_list)
|
@@ -106,6 +109,7 @@ class CostViews(ApiManager):
|
|
106
109
|
**payload: additional parameters for the API.
|
107
110
|
|
108
111
|
Keyword Args:
|
112
|
+
uuid_customer (string required): additional filter - payload
|
109
113
|
name (string optional): additional filter - payload
|
110
114
|
description (string optional): additional filter - payload
|
111
115
|
type (string optional): additional filter - payload
|
@@ -113,8 +117,10 @@ class CostViews(ApiManager):
|
|
113
117
|
Returns: list"""
|
114
118
|
if kwargs is None:
|
115
119
|
kwargs = dict()
|
116
|
-
official_payload_list = ['name', 'description', 'type'
|
117
|
-
|
120
|
+
official_payload_list = ['uuid_customer', 'name', 'description', 'type'
|
121
|
+
]
|
122
|
+
payload.get('uuid_customer'), payload.get('name'), payload.get(
|
123
|
+
'description'), payload.get('type')
|
118
124
|
if not self._silence_warning:
|
119
125
|
warning_wrong_parameters(self.cost_views_put.__name__, payload,
|
120
126
|
official_payload_list)
|
hive/cookbook/customers.py
CHANGED
@@ -1301,7 +1301,7 @@ class Customers(ApiManager):
|
|
1301
1301
|
def customers_it_availability_history(self, uuid_customer: str,
|
1302
1302
|
warm_start: bool = False, single_page: bool = False,
|
1303
1303
|
page_size: int = 5000, kwargs: dict = None, **params) -> list:
|
1304
|
-
"""Query It Availability By Customer
|
1304
|
+
"""Query It Availability History By Customer
|
1305
1305
|
|
1306
1306
|
Args:
|
1307
1307
|
uuid_customer (str, required): uuid_customer
|
@@ -1336,3 +1336,57 @@ class Customers(ApiManager):
|
|
1336
1336
|
single_page=single_page, page_size=page_size, warm_start=
|
1337
1337
|
warm_start, params=params, **kwargs)
|
1338
1338
|
return response
|
1339
|
+
|
1340
|
+
def customers_acknowledged(self, uuid_customer: str,
|
1341
|
+
warm_start: bool = False, kwargs: dict = None, **params) -> list:
|
1342
|
+
"""Consume Acknowledged Log
|
1343
|
+
|
1344
|
+
Args:
|
1345
|
+
uuid_customer (str, required): uuid_customer
|
1346
|
+
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.
|
1347
|
+
kwargs (dict, optional): additional parameters for execute. Default to None.
|
1348
|
+
**params: additional parameters for the API.
|
1349
|
+
|
1350
|
+
Keyword Args:
|
1351
|
+
offset (integer optional): additional filter - parameter
|
1352
|
+
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
1353
|
+
|
1354
|
+
Returns: list"""
|
1355
|
+
if kwargs is None:
|
1356
|
+
kwargs = dict()
|
1357
|
+
kwargs, params = handling_single_page_methods(kwargs=kwargs, params
|
1358
|
+
=params)
|
1359
|
+
official_params_list = ['offset', 'limit']
|
1360
|
+
params.get('offset'), params.get('limit')
|
1361
|
+
if not self._silence_warning:
|
1362
|
+
warning_wrong_parameters(self.customers_acknowledged.__name__,
|
1363
|
+
params, official_params_list)
|
1364
|
+
response = self.execute('GET', path=
|
1365
|
+
f'/customers/{uuid_customer}/acknowledged/', warm_start=
|
1366
|
+
warm_start, params=params, **kwargs)
|
1367
|
+
return response
|
1368
|
+
|
1369
|
+
def customers_acknowledged_create(self, uuid_customer: str,
|
1370
|
+
kwargs: dict = None, **payload) -> list:
|
1371
|
+
"""Produce Acknowledged Message
|
1372
|
+
|
1373
|
+
Args:
|
1374
|
+
uuid_customer (str, required): uuid_customer
|
1375
|
+
kwargs (dict, optional): additional parameters for execute. Default to None.
|
1376
|
+
**payload: additional parameters for the API.
|
1377
|
+
|
1378
|
+
Keyword Args:
|
1379
|
+
uuid (str required): additional filter - payload
|
1380
|
+
|
1381
|
+
Returns: list"""
|
1382
|
+
if kwargs is None:
|
1383
|
+
kwargs = dict()
|
1384
|
+
official_payload_list = ['uuid']
|
1385
|
+
payload.get('uuid')
|
1386
|
+
if not self._silence_warning:
|
1387
|
+
warning_wrong_parameters(self.customers_acknowledged_create.
|
1388
|
+
__name__, payload, official_payload_list)
|
1389
|
+
response = self.execute('POST', path=
|
1390
|
+
f'/customers/{uuid_customer}/acknowledged/', payload=payload,
|
1391
|
+
**kwargs)
|
1392
|
+
return response
|
hive/cookbook/metrics.py
CHANGED
@@ -472,6 +472,58 @@ class Metrics(ApiManager):
|
|
472
472
|
payload=payload, **kwargs)
|
473
473
|
return response
|
474
474
|
|
475
|
+
def metrics_downtimes_bulk(self, payload: list,
|
476
|
+
warm_start: bool = False, single_page: bool = False,
|
477
|
+
page_size: int = 50, kwargs: dict = None, **params) -> list:
|
478
|
+
"""Bulk Read Metrics
|
479
|
+
|
480
|
+
Args:
|
481
|
+
payload (list[dict], optional): List dict to create.
|
482
|
+
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.
|
483
|
+
single_page (bool, optional): se False la risposta viene ottenuta a step per non appesantire le API. Default to False.
|
484
|
+
page_size (int, optional): Numero di oggetti per pagina se single_page == False. Default to 50.
|
485
|
+
kwargs (dict, optional): additional parameters for execute. Default to None.
|
486
|
+
**params: additional parameters for the API.
|
487
|
+
|
488
|
+
Keyword Args:
|
489
|
+
code (string optional): additional filter - parameter
|
490
|
+
status (string optional): additional filter - parameter
|
491
|
+
fetch_all (boolean optional): additional filter - parameter
|
492
|
+
only_actives (boolean optional): additional filter - parameter
|
493
|
+
active_at_timestamp (string optional): additional filter - parameter
|
494
|
+
active_after_timestamp (string optional): additional filter - parameter
|
495
|
+
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
496
|
+
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
497
|
+
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
|
498
|
+
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
|
499
|
+
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
|
500
|
+
|
501
|
+
Examples:
|
502
|
+
payload =
|
503
|
+
[
|
504
|
+
"uuid": "str", required
|
505
|
+
]
|
506
|
+
|
507
|
+
Returns: list"""
|
508
|
+
if kwargs is None:
|
509
|
+
kwargs = dict()
|
510
|
+
official_params_list = ['code', 'status', 'fetch_all',
|
511
|
+
'only_actives', 'active_at_timestamp', 'active_after_timestamp',
|
512
|
+
'skip', 'limit', 'like', 'join', 'count']
|
513
|
+
params.get('code'), params.get('status'), params.get('fetch_all'
|
514
|
+
), params.get('only_actives'), params.get('active_at_timestamp'
|
515
|
+
), params.get('active_after_timestamp'), params.get('skip'
|
516
|
+
), params.get('limit'), params.get('like'), params.get('join'
|
517
|
+
), params.get('count')
|
518
|
+
if not self._silence_warning:
|
519
|
+
warning_wrong_parameters(self.metrics_downtimes_bulk.__name__,
|
520
|
+
params, official_params_list)
|
521
|
+
response = self.execute('POST', path=
|
522
|
+
f'/metrics/bulk/read/downtimes/', single_page=single_page,
|
523
|
+
page_size=page_size, warm_start=warm_start, params=params,
|
524
|
+
payload=payload, **kwargs)
|
525
|
+
return response
|
526
|
+
|
475
527
|
def metrics_read_by_bulk(self, payload: list, warm_start: bool = False,
|
476
528
|
single_page: bool = False, page_size: int = 50, kwargs: dict = None
|
477
529
|
) -> list:
|
hive/cookbook/probes.py
CHANGED
@@ -449,8 +449,8 @@ class Probes(ApiManager):
|
|
449
449
|
**params: additional parameters for the API.
|
450
450
|
|
451
451
|
Keyword Args:
|
452
|
-
skip (
|
453
|
-
limit (
|
452
|
+
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
453
|
+
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
454
454
|
key (string optional): additional filter - parameter
|
455
455
|
|
456
456
|
Returns: list"""
|
@@ -221,192 +221,245 @@ class TsCostManagement(ApiManager):
|
|
221
221
|
return response
|
222
222
|
|
223
223
|
def ts_cost_management_ccm_by_date(self, uuid_customer: str,
|
224
|
-
warm_start: bool = False,
|
224
|
+
warm_start: bool = False, single_page: bool = False,
|
225
|
+
page_size: int = 5000, kwargs: dict = None, **params) -> list:
|
225
226
|
"""Query Group By Cloud Provider Subscription Type Resource Group
|
226
227
|
|
227
228
|
Args:
|
228
229
|
uuid_customer (str, required): uuid_customer
|
229
230
|
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.
|
231
|
+
single_page (bool, optional): se False la risposta viene ottenuta a step per non appesantire le API. Default to False.
|
232
|
+
page_size (int, optional): Numero di oggetti per pagina se single_page == False. Default to 5000.
|
230
233
|
kwargs (dict, optional): additional parameters for execute. Default to None.
|
231
234
|
**params: additional parameters for the API.
|
232
235
|
|
233
236
|
Keyword Args:
|
234
|
-
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
|
235
237
|
date_start (string optional): additional filter - parameter
|
236
238
|
date_end (string optional): additional filter - parameter
|
237
239
|
interval (None optional): additional filter - parameter
|
240
|
+
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
241
|
+
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
242
|
+
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
|
243
|
+
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
|
244
|
+
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
|
238
245
|
|
239
246
|
Returns: list"""
|
240
247
|
if kwargs is None:
|
241
248
|
kwargs = dict()
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
), params.get('
|
249
|
+
official_params_list = ['date_start', 'date_end', 'interval',
|
250
|
+
'skip', 'limit', 'like', 'join', 'count']
|
251
|
+
params.get('date_start'), params.get('date_end'), params.get('interval'
|
252
|
+
), params.get('skip'), params.get('limit'), params.get('like'
|
253
|
+
), params.get('join'), params.get('count')
|
247
254
|
if not self._silence_warning:
|
248
255
|
warning_wrong_parameters(self.ts_cost_management_ccm_by_date.
|
249
256
|
__name__, params, official_params_list)
|
250
257
|
response = self.execute('GET', path=
|
251
|
-
f'/ts_cost_management/ccm_by_date/{uuid_customer}',
|
252
|
-
|
258
|
+
f'/ts_cost_management/ccm_by_date/{uuid_customer}', single_page
|
259
|
+
=single_page, page_size=page_size, warm_start=warm_start,
|
260
|
+
params=params, **kwargs)
|
253
261
|
return response
|
254
262
|
|
255
263
|
def ts_cost_management_ccm_by_subscription_type(self,
|
256
|
-
uuid_customer: str, warm_start: bool = False,
|
257
|
-
|
264
|
+
uuid_customer: str, warm_start: bool = False,
|
265
|
+
single_page: bool = False, page_size: int = 5000,
|
266
|
+
kwargs: dict = None, **params) -> list:
|
258
267
|
"""Query Group By Cloud Provider Subscription Type
|
259
268
|
|
260
269
|
Args:
|
261
270
|
uuid_customer (str, required): uuid_customer
|
262
271
|
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.
|
272
|
+
single_page (bool, optional): se False la risposta viene ottenuta a step per non appesantire le API. Default to False.
|
273
|
+
page_size (int, optional): Numero di oggetti per pagina se single_page == False. Default to 5000.
|
263
274
|
kwargs (dict, optional): additional parameters for execute. Default to None.
|
264
275
|
**params: additional parameters for the API.
|
265
276
|
|
266
277
|
Keyword Args:
|
267
|
-
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
|
268
278
|
date_start (string optional): additional filter - parameter
|
269
279
|
date_end (string optional): additional filter - parameter
|
280
|
+
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
281
|
+
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
282
|
+
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
|
283
|
+
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
|
284
|
+
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
|
270
285
|
|
271
286
|
Returns: list"""
|
272
287
|
if kwargs is None:
|
273
288
|
kwargs = dict()
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
289
|
+
official_params_list = ['date_start', 'date_end', 'skip', 'limit',
|
290
|
+
'like', 'join', 'count']
|
291
|
+
params.get('date_start'), params.get('date_end'), params.get('skip'
|
292
|
+
), params.get('limit'), params.get('like'), params.get('join'
|
293
|
+
), params.get('count')
|
278
294
|
if not self._silence_warning:
|
279
295
|
warning_wrong_parameters(self.
|
280
296
|
ts_cost_management_ccm_by_subscription_type.__name__,
|
281
297
|
params, official_params_list)
|
282
298
|
response = self.execute('GET', path=
|
283
299
|
f'/ts_cost_management/ccm_by_subscription_type/{uuid_customer}',
|
284
|
-
|
300
|
+
single_page=single_page, page_size=page_size, warm_start=
|
301
|
+
warm_start, params=params, **kwargs)
|
285
302
|
return response
|
286
303
|
|
287
304
|
def ts_cost_management_ccm_by_category(self, uuid_customer: str,
|
288
|
-
warm_start: bool = False,
|
305
|
+
warm_start: bool = False, single_page: bool = False,
|
306
|
+
page_size: int = 5000, kwargs: dict = None, **params) -> list:
|
289
307
|
"""Query Group By Category
|
290
308
|
|
291
309
|
Args:
|
292
310
|
uuid_customer (str, required): uuid_customer
|
293
311
|
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.
|
312
|
+
single_page (bool, optional): se False la risposta viene ottenuta a step per non appesantire le API. Default to False.
|
313
|
+
page_size (int, optional): Numero di oggetti per pagina se single_page == False. Default to 5000.
|
294
314
|
kwargs (dict, optional): additional parameters for execute. Default to None.
|
295
315
|
**params: additional parameters for the API.
|
296
316
|
|
297
317
|
Keyword Args:
|
298
|
-
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
|
299
318
|
date_start (string optional): additional filter - parameter
|
300
319
|
date_end (string optional): additional filter - parameter
|
320
|
+
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
321
|
+
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
322
|
+
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
|
323
|
+
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
|
324
|
+
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
|
301
325
|
|
302
326
|
Returns: list"""
|
303
327
|
if kwargs is None:
|
304
328
|
kwargs = dict()
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
329
|
+
official_params_list = ['date_start', 'date_end', 'skip', 'limit',
|
330
|
+
'like', 'join', 'count']
|
331
|
+
params.get('date_start'), params.get('date_end'), params.get('skip'
|
332
|
+
), params.get('limit'), params.get('like'), params.get('join'
|
333
|
+
), params.get('count')
|
309
334
|
if not self._silence_warning:
|
310
335
|
warning_wrong_parameters(self.
|
311
336
|
ts_cost_management_ccm_by_category.__name__, params,
|
312
337
|
official_params_list)
|
313
338
|
response = self.execute('GET', path=
|
314
339
|
f'/ts_cost_management/ccm_by_category/{uuid_customer}',
|
315
|
-
|
340
|
+
single_page=single_page, page_size=page_size, warm_start=
|
341
|
+
warm_start, params=params, **kwargs)
|
316
342
|
return response
|
317
343
|
|
318
344
|
def ts_cost_management_ccm_by_resource_location(self,
|
319
|
-
uuid_customer: str, warm_start: bool = False,
|
320
|
-
|
345
|
+
uuid_customer: str, warm_start: bool = False,
|
346
|
+
single_page: bool = False, page_size: int = 5000,
|
347
|
+
kwargs: dict = None, **params) -> list:
|
321
348
|
"""Query Group By Resource Location
|
322
349
|
|
323
350
|
Args:
|
324
351
|
uuid_customer (str, required): uuid_customer
|
325
352
|
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.
|
353
|
+
single_page (bool, optional): se False la risposta viene ottenuta a step per non appesantire le API. Default to False.
|
354
|
+
page_size (int, optional): Numero di oggetti per pagina se single_page == False. Default to 5000.
|
326
355
|
kwargs (dict, optional): additional parameters for execute. Default to None.
|
327
356
|
**params: additional parameters for the API.
|
328
357
|
|
329
358
|
Keyword Args:
|
330
|
-
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
|
331
359
|
date_start (string optional): additional filter - parameter
|
332
360
|
date_end (string optional): additional filter - parameter
|
361
|
+
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
362
|
+
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
363
|
+
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
|
364
|
+
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
|
365
|
+
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
|
333
366
|
|
334
367
|
Returns: list"""
|
335
368
|
if kwargs is None:
|
336
369
|
kwargs = dict()
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
370
|
+
official_params_list = ['date_start', 'date_end', 'skip', 'limit',
|
371
|
+
'like', 'join', 'count']
|
372
|
+
params.get('date_start'), params.get('date_end'), params.get('skip'
|
373
|
+
), params.get('limit'), params.get('like'), params.get('join'
|
374
|
+
), params.get('count')
|
341
375
|
if not self._silence_warning:
|
342
376
|
warning_wrong_parameters(self.
|
343
377
|
ts_cost_management_ccm_by_resource_location.__name__,
|
344
378
|
params, official_params_list)
|
345
379
|
response = self.execute('GET', path=
|
346
380
|
f'/ts_cost_management/ccm_by_resource_location/{uuid_customer}',
|
347
|
-
|
381
|
+
single_page=single_page, page_size=page_size, warm_start=
|
382
|
+
warm_start, params=params, **kwargs)
|
348
383
|
return response
|
349
384
|
|
350
385
|
def ts_cost_management_ccm_by_resource_group(self, uuid_customer: str,
|
351
|
-
warm_start: bool = False,
|
386
|
+
warm_start: bool = False, single_page: bool = False,
|
387
|
+
page_size: int = 5000, kwargs: dict = None, **params) -> list:
|
352
388
|
"""Query Group By Resource Group
|
353
389
|
|
354
390
|
Args:
|
355
391
|
uuid_customer (str, required): uuid_customer
|
356
392
|
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.
|
393
|
+
single_page (bool, optional): se False la risposta viene ottenuta a step per non appesantire le API. Default to False.
|
394
|
+
page_size (int, optional): Numero di oggetti per pagina se single_page == False. Default to 5000.
|
357
395
|
kwargs (dict, optional): additional parameters for execute. Default to None.
|
358
396
|
**params: additional parameters for the API.
|
359
397
|
|
360
398
|
Keyword Args:
|
361
|
-
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
|
362
399
|
date_start (string optional): additional filter - parameter
|
363
400
|
date_end (string optional): additional filter - parameter
|
401
|
+
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
402
|
+
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
403
|
+
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
|
404
|
+
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
|
405
|
+
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
|
364
406
|
|
365
407
|
Returns: list"""
|
366
408
|
if kwargs is None:
|
367
409
|
kwargs = dict()
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
410
|
+
official_params_list = ['date_start', 'date_end', 'skip', 'limit',
|
411
|
+
'like', 'join', 'count']
|
412
|
+
params.get('date_start'), params.get('date_end'), params.get('skip'
|
413
|
+
), params.get('limit'), params.get('like'), params.get('join'
|
414
|
+
), params.get('count')
|
372
415
|
if not self._silence_warning:
|
373
416
|
warning_wrong_parameters(self.
|
374
417
|
ts_cost_management_ccm_by_resource_group.__name__, params,
|
375
418
|
official_params_list)
|
376
419
|
response = self.execute('GET', path=
|
377
420
|
f'/ts_cost_management/ccm_by_resource_group/{uuid_customer}',
|
378
|
-
|
421
|
+
single_page=single_page, page_size=page_size, warm_start=
|
422
|
+
warm_start, params=params, **kwargs)
|
379
423
|
return response
|
380
424
|
|
381
425
|
def ts_cost_management_ccm_by_subscription(self, uuid_customer: str,
|
382
|
-
warm_start: bool = False,
|
426
|
+
warm_start: bool = False, single_page: bool = False,
|
427
|
+
page_size: int = 5000, kwargs: dict = None, **params) -> list:
|
383
428
|
"""Query Group By Subscription
|
384
429
|
|
385
430
|
Args:
|
386
431
|
uuid_customer (str, required): uuid_customer
|
387
432
|
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.
|
433
|
+
single_page (bool, optional): se False la risposta viene ottenuta a step per non appesantire le API. Default to False.
|
434
|
+
page_size (int, optional): Numero di oggetti per pagina se single_page == False. Default to 5000.
|
388
435
|
kwargs (dict, optional): additional parameters for execute. Default to None.
|
389
436
|
**params: additional parameters for the API.
|
390
437
|
|
391
438
|
Keyword Args:
|
392
|
-
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
|
393
439
|
date_start (string optional): additional filter - parameter
|
394
440
|
date_end (string optional): additional filter - parameter
|
441
|
+
skip (integer optional): numero di oggetti che si vogliono saltare nella risposta. Default to 0. - parameter
|
442
|
+
limit (integer optional): numero di oggetti massimi che si vogliono ottenere. Default to 1_000_000. - parameter
|
443
|
+
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
|
444
|
+
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
|
445
|
+
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
|
395
446
|
|
396
447
|
Returns: list"""
|
397
448
|
if kwargs is None:
|
398
449
|
kwargs = dict()
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
450
|
+
official_params_list = ['date_start', 'date_end', 'skip', 'limit',
|
451
|
+
'like', 'join', 'count']
|
452
|
+
params.get('date_start'), params.get('date_end'), params.get('skip'
|
453
|
+
), params.get('limit'), params.get('like'), params.get('join'
|
454
|
+
), params.get('count')
|
403
455
|
if not self._silence_warning:
|
404
456
|
warning_wrong_parameters(self.
|
405
457
|
ts_cost_management_ccm_by_subscription.__name__, params,
|
406
458
|
official_params_list)
|
407
459
|
response = self.execute('GET', path=
|
408
460
|
f'/ts_cost_management/ccm_by_subscription/{uuid_customer}',
|
409
|
-
|
461
|
+
single_page=single_page, page_size=page_size, warm_start=
|
462
|
+
warm_start, params=params, **kwargs)
|
410
463
|
return response
|
411
464
|
|
412
465
|
def ts_cost_management_anomalies(self, warm_start: bool = False,
|
hive/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
version = '3.16.
|
1
|
+
version = '3.16.4'
|
@@ -4,7 +4,7 @@ hive/decorators.py,sha256=tId1zEXXKgegU_F9g2nbjFosB-9NNWQWueMu60w60Cc,9947
|
|
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=uHe40Bm_Y73dwvAXfBu55NV9vT11bEiPBut88ZW-NGE,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
|
@@ -14,10 +14,10 @@ hive/cookbook/calendars.py,sha256=hLjerNUJETT6xOa6-zhRFR2GTzUxruQCABcM-mJKACs,22
|
|
14
14
|
hive/cookbook/contacts.py,sha256=vhkBjaxFoQA5P-GSGLsgtcvo3rbAPfHOCiB87tXtQsM,39183
|
15
15
|
hive/cookbook/cost_tagging.py,sha256=wwLgo3YaDI4Xm7QcQVlf4kXxz8kPP7J7Qh4ddzuaDro,7779
|
16
16
|
hive/cookbook/cost_tags.py,sha256=G4iI97oasXQnke9R4_chNmWFr1yxpysTKFp-CnnE6aI,7464
|
17
|
-
hive/cookbook/cost_tree_nodes.py,sha256=
|
18
|
-
hive/cookbook/cost_tree_resources.py,sha256=
|
19
|
-
hive/cookbook/cost_views.py,sha256=
|
20
|
-
hive/cookbook/customers.py,sha256=
|
17
|
+
hive/cookbook/cost_tree_nodes.py,sha256=A0WdbZ2g9aqpSqLYSbrV-e4WCOXqILg2Ns8YrZjwzd4,11212
|
18
|
+
hive/cookbook/cost_tree_resources.py,sha256=fV7H9W6YfyvZoB7eqYDXLdvf-_1DtPb9C_629keIZxQ,10338
|
19
|
+
hive/cookbook/cost_views.py,sha256=D2DMB3YPkfEbdUZ3_WsAvJohBgmgDvyScSJ9bzpCpKM,10760
|
20
|
+
hive/cookbook/customers.py,sha256=hTdJjjnj2Lp1z23aJz4a_LZbA4tvjc_vt2p9NHvWaTc,74241
|
21
21
|
hive/cookbook/dashboards.py,sha256=oAgx4XbIu26hLoXjS8sEhI-gg9lIpeGRoG1MT5UKxJM,27647
|
22
22
|
hive/cookbook/dispatchers.py,sha256=Mk-u6xhBYdvU_av9ac9a1yejLiukUB30Ey9mIme-V5w,43301
|
23
23
|
hive/cookbook/downtimes.py,sha256=ylhT8TPm87LRjSVwoZgeKwUqnJ2IPva0jqcudbhS0cI,45001
|
@@ -32,14 +32,14 @@ hive/cookbook/login.py,sha256=Z3u53AyvZiTVJQBCrbXebXufdJQHlCJzkg4dhd6nlpw,21577
|
|
32
32
|
hive/cookbook/messages.py,sha256=OHaasxVPZoxY1Ouzc-kILARKb-QT7JFrv-1n1-OT-xA,14231
|
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=KjS9SwnI0ZCc0Rkfho8axVTbS0bvflsO9Qx7nF0t6Kk,37824
|
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
39
|
hive/cookbook/objects.py,sha256=58JtpT-8Hd2TFJtBUcSusXYDFO5ZH1_Iy5DQQzRETd0,42072
|
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=AxtUXOqe_B87U4rJcG6H-_5VFrpIAaW3WhwHV5W9A8E,23101
|
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
|
@@ -50,7 +50,7 @@ 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
|
52
52
|
hive/cookbook/ts_cost_azure_raw.py,sha256=e4-bsmjOEu14dQljyNzZpEkG7-iSu1LaP9w3zbB1FHE,34075
|
53
|
-
hive/cookbook/ts_cost_management.py,sha256=
|
53
|
+
hive/cookbook/ts_cost_management.py,sha256=CDDR73o67aMJ1G9JmrF8UruGZp9jfxw2FhsCHqDbLC8,41506
|
54
54
|
hive/cookbook/ts_metric_status.py,sha256=hnWhpqBNYawEsMwOd1G5Vgg6JUPk7lT1NBfnxg9TbCw,6370
|
55
55
|
hive/cookbook/ts_metric_value.py,sha256=ehkjUMsAcZaA9HC0sN39gYKtXEG2xArdPsmhXWKSBIA,6103
|
56
56
|
hive/cookbook/ts_ntop_flows.py,sha256=Obmn86YlFvymWMzSkQ9Lrq7OuznLf2m4T_JiC8X_qpY,17197
|
@@ -62,8 +62,8 @@ hive/cookbook/virtual_domains.py,sha256=-i666Jyi3j_EwRUzlymh2-q3bCxAz6TA3Q_lPVDC
|
|
62
62
|
hive/cookbook/webhooks.py,sha256=xQp7gW4FQP6717d4MCOuQN2Py7nw7TFy4pl9RmkqMKs,6705
|
63
63
|
hive/cookbook/widget_groups.py,sha256=Sd8u_eNr7GYLyN0-wC-k9lsHfNOEmU3HkAvWrwWoZtE,15917
|
64
64
|
hive/cookbook/widgets.py,sha256=d7-DXC-ODNpdt4KjCAzFW0T3HWf0ThOO9yL17jJigdc,23396
|
65
|
-
xautomata_hive-3.16.
|
66
|
-
xautomata_hive-3.16.
|
67
|
-
xautomata_hive-3.16.
|
68
|
-
xautomata_hive-3.16.
|
69
|
-
xautomata_hive-3.16.
|
65
|
+
xautomata_hive-3.16.4.dist-info/LICENSE,sha256=CFT1oIPm4kciOjwep2r1LQnpATugddSy3D839fsmgFs,1065
|
66
|
+
xautomata_hive-3.16.4.dist-info/METADATA,sha256=RI8wV8jRfwXeLh_--9nx9Df6TK4z8ggQQ6Ty4kRjZ38,10750
|
67
|
+
xautomata_hive-3.16.4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
68
|
+
xautomata_hive-3.16.4.dist-info/top_level.txt,sha256=pLpVAuviHGk3pzaFXU-4GKttxGTGAbFoWK8JvUl1jHQ,5
|
69
|
+
xautomata_hive-3.16.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|