tableauserverclient 0.34__py3-none-any.whl → 0.35__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.
- tableauserverclient/__init__.py +5 -1
- tableauserverclient/{_version.py → bin/_version.py} +3 -3
- tableauserverclient/models/connection_credentials.py +17 -1
- tableauserverclient/models/connection_item.py +38 -0
- tableauserverclient/models/custom_view_item.py +49 -5
- tableauserverclient/models/flow_item.py +49 -4
- tableauserverclient/models/group_item.py +40 -0
- tableauserverclient/models/job_item.py +65 -0
- tableauserverclient/models/project_item.py +39 -1
- tableauserverclient/models/task_item.py +30 -0
- tableauserverclient/models/view_item.py +55 -3
- tableauserverclient/models/webhook_item.py +33 -0
- tableauserverclient/models/workbook_item.py +26 -1
- tableauserverclient/server/endpoint/auth_endpoint.py +4 -2
- tableauserverclient/server/endpoint/custom_views_endpoint.py +197 -12
- tableauserverclient/server/endpoint/datasources_endpoint.py +13 -9
- tableauserverclient/server/endpoint/flows_endpoint.py +314 -0
- tableauserverclient/server/endpoint/groups_endpoint.py +325 -11
- tableauserverclient/server/endpoint/jobs_endpoint.py +109 -0
- tableauserverclient/server/endpoint/projects_endpoint.py +600 -0
- tableauserverclient/server/endpoint/tasks_endpoint.py +78 -0
- tableauserverclient/server/endpoint/views_endpoint.py +243 -2
- tableauserverclient/server/endpoint/webhooks_endpoint.py +77 -0
- tableauserverclient/server/endpoint/workbooks_endpoint.py +6 -4
- tableauserverclient/server/pager.py +24 -0
- tableauserverclient/server/request_factory.py +20 -1
- tableauserverclient/server/request_options.py +126 -2
- tableauserverclient/server/server.py +11 -1
- tableauserverclient/server/sort.py +14 -0
- {tableauserverclient-0.34.dist-info → tableauserverclient-0.35.dist-info}/METADATA +2 -2
- {tableauserverclient-0.34.dist-info → tableauserverclient-0.35.dist-info}/RECORD +35 -35
- {tableauserverclient-0.34.dist-info → tableauserverclient-0.35.dist-info}/WHEEL +1 -1
- {tableauserverclient-0.34.dist-info → tableauserverclient-0.35.dist-info}/LICENSE +0 -0
- {tableauserverclient-0.34.dist-info → tableauserverclient-0.35.dist-info}/LICENSE.versioneer +0 -0
- {tableauserverclient-0.34.dist-info → tableauserverclient-0.35.dist-info}/top_level.txt +0 -0
|
@@ -35,6 +35,28 @@ This class manages options can be used when querying content on the server
|
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
class RequestOptions(RequestOptionsBase):
|
|
38
|
+
"""
|
|
39
|
+
This class is used to manage the options that can be used when querying content on the server.
|
|
40
|
+
Optionally initialize with a page number and page size to control the number of items returned.
|
|
41
|
+
|
|
42
|
+
Additionally, you can add sorting and filtering options to the request.
|
|
43
|
+
|
|
44
|
+
The `sort` and `filter` options are set-like objects, so you can only add a field once. If you add the same field
|
|
45
|
+
multiple times, only the last one will be used.
|
|
46
|
+
|
|
47
|
+
The list of fields that can be sorted on or filtered by can be found in the `Field`
|
|
48
|
+
class contained within this class.
|
|
49
|
+
|
|
50
|
+
Parameters
|
|
51
|
+
----------
|
|
52
|
+
pagenumber: int, optional
|
|
53
|
+
The page number to start the query on. Default is 1.
|
|
54
|
+
|
|
55
|
+
pagesize: int, optional
|
|
56
|
+
The number of items to return per page. Default is 100. Can also read
|
|
57
|
+
from the environment variable `TSC_PAGE_SIZE`
|
|
58
|
+
"""
|
|
59
|
+
|
|
38
60
|
def __init__(self, pagenumber=1, pagesize=None):
|
|
39
61
|
self.pagenumber = pagenumber
|
|
40
62
|
self.pagesize = pagesize or config.PAGE_SIZE
|
|
@@ -122,6 +144,7 @@ class RequestOptions(RequestOptionsBase):
|
|
|
122
144
|
NotificationType = "notificationType"
|
|
123
145
|
OwnerDomain = "ownerDomain"
|
|
124
146
|
OwnerEmail = "ownerEmail"
|
|
147
|
+
OwnerId = "ownerId"
|
|
125
148
|
OwnerName = "ownerName"
|
|
126
149
|
ParentProjectId = "parentProjectId"
|
|
127
150
|
Priority = "priority"
|
|
@@ -148,8 +171,10 @@ class RequestOptions(RequestOptionsBase):
|
|
|
148
171
|
UpdatedAt = "updatedAt"
|
|
149
172
|
UserCount = "userCount"
|
|
150
173
|
UserId = "userId"
|
|
174
|
+
ViewId = "viewId"
|
|
151
175
|
ViewUrlName = "viewUrlName"
|
|
152
176
|
WorkbookDescription = "workbookDescription"
|
|
177
|
+
WorkbookId = "workbookId"
|
|
153
178
|
WorkbookName = "workbookName"
|
|
154
179
|
|
|
155
180
|
class Direction:
|
|
@@ -196,13 +221,43 @@ class _DataExportOptions(RequestOptionsBase):
|
|
|
196
221
|
|
|
197
222
|
def vf(self, name: str, value: str) -> Self:
|
|
198
223
|
"""Apply a filter based on a column within the view.
|
|
199
|
-
Note that when filtering on a boolean type field, the only valid values are 'true' and 'false'
|
|
224
|
+
Note that when filtering on a boolean type field, the only valid values are 'true' and 'false'
|
|
225
|
+
|
|
226
|
+
For more detail see: https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#Filter-query-views
|
|
227
|
+
|
|
228
|
+
Parameters
|
|
229
|
+
----------
|
|
230
|
+
name: str
|
|
231
|
+
The name of the column to filter on
|
|
232
|
+
|
|
233
|
+
value: str
|
|
234
|
+
The value to filter on
|
|
235
|
+
|
|
236
|
+
Returns
|
|
237
|
+
-------
|
|
238
|
+
Self
|
|
239
|
+
The current object
|
|
240
|
+
"""
|
|
200
241
|
self.view_filters.append((name, value))
|
|
201
242
|
return self
|
|
202
243
|
|
|
203
244
|
def parameter(self, name: str, value: str) -> Self:
|
|
204
245
|
"""Apply a filter based on a parameter within the workbook.
|
|
205
|
-
Note that when filtering on a boolean type field, the only valid values are 'true' and 'false'
|
|
246
|
+
Note that when filtering on a boolean type field, the only valid values are 'true' and 'false'
|
|
247
|
+
|
|
248
|
+
Parameters
|
|
249
|
+
----------
|
|
250
|
+
name: str
|
|
251
|
+
The name of the parameter to filter on
|
|
252
|
+
|
|
253
|
+
value: str
|
|
254
|
+
The value to filter on
|
|
255
|
+
|
|
256
|
+
Returns
|
|
257
|
+
-------
|
|
258
|
+
Self
|
|
259
|
+
The current object
|
|
260
|
+
"""
|
|
206
261
|
self.view_parameters.append((name, value))
|
|
207
262
|
return self
|
|
208
263
|
|
|
@@ -254,14 +309,60 @@ class _ImagePDFCommonExportOptions(_DataExportOptions):
|
|
|
254
309
|
|
|
255
310
|
|
|
256
311
|
class CSVRequestOptions(_DataExportOptions):
|
|
312
|
+
"""
|
|
313
|
+
Options that can be used when exporting a view to CSV. Set the maxage to control the age of the data exported.
|
|
314
|
+
Filters to the underlying data can be applied using the `vf` and `parameter` methods.
|
|
315
|
+
|
|
316
|
+
Parameters
|
|
317
|
+
----------
|
|
318
|
+
maxage: int, optional
|
|
319
|
+
The maximum age of the data to export. Shortest possible duration is 1
|
|
320
|
+
minute. No upper limit. Default is -1, which means no limit.
|
|
321
|
+
"""
|
|
322
|
+
|
|
257
323
|
extension = "csv"
|
|
258
324
|
|
|
259
325
|
|
|
260
326
|
class ExcelRequestOptions(_DataExportOptions):
|
|
327
|
+
"""
|
|
328
|
+
Options that can be used when exporting a view to Excel. Set the maxage to control the age of the data exported.
|
|
329
|
+
Filters to the underlying data can be applied using the `vf` and `parameter` methods.
|
|
330
|
+
|
|
331
|
+
Parameters
|
|
332
|
+
----------
|
|
333
|
+
maxage: int, optional
|
|
334
|
+
The maximum age of the data to export. Shortest possible duration is 1
|
|
335
|
+
minute. No upper limit. Default is -1, which means no limit.
|
|
336
|
+
"""
|
|
337
|
+
|
|
261
338
|
extension = "xlsx"
|
|
262
339
|
|
|
263
340
|
|
|
264
341
|
class ImageRequestOptions(_ImagePDFCommonExportOptions):
|
|
342
|
+
"""
|
|
343
|
+
Options that can be used when exporting a view to an image. Set the maxage to control the age of the data exported.
|
|
344
|
+
Filters to the underlying data can be applied using the `vf` and `parameter` methods.
|
|
345
|
+
|
|
346
|
+
Parameters
|
|
347
|
+
----------
|
|
348
|
+
imageresolution: str, optional
|
|
349
|
+
The resolution of the image to export. Valid values are "high" or None. Default is None.
|
|
350
|
+
Image width and actual pixel density are determined by the display context
|
|
351
|
+
of the image. Aspect ratio is always preserved. Set the value to "high" to
|
|
352
|
+
ensure maximum pixel density.
|
|
353
|
+
|
|
354
|
+
maxage: int, optional
|
|
355
|
+
The maximum age of the data to export. Shortest possible duration is 1
|
|
356
|
+
minute. No upper limit. Default is -1, which means no limit.
|
|
357
|
+
|
|
358
|
+
viz_height: int, optional
|
|
359
|
+
The height of the viz in pixels. If specified, viz_width must also be specified.
|
|
360
|
+
|
|
361
|
+
viz_width: int, optional
|
|
362
|
+
The width of the viz in pixels. If specified, viz_height must also be specified.
|
|
363
|
+
|
|
364
|
+
"""
|
|
365
|
+
|
|
265
366
|
extension = "png"
|
|
266
367
|
|
|
267
368
|
# if 'high' isn't specified, the REST API endpoint returns an image with standard resolution
|
|
@@ -280,6 +381,29 @@ class ImageRequestOptions(_ImagePDFCommonExportOptions):
|
|
|
280
381
|
|
|
281
382
|
|
|
282
383
|
class PDFRequestOptions(_ImagePDFCommonExportOptions):
|
|
384
|
+
"""
|
|
385
|
+
Options that can be used when exporting a view to PDF. Set the maxage to control the age of the data exported.
|
|
386
|
+
Filters to the underlying data can be applied using the `vf` and `parameter` methods.
|
|
387
|
+
|
|
388
|
+
Parameters
|
|
389
|
+
----------
|
|
390
|
+
page_type: str, optional
|
|
391
|
+
The page type of the PDF to export. Valid values are accessible via the `PageType` class.
|
|
392
|
+
|
|
393
|
+
orientation: str, optional
|
|
394
|
+
The orientation of the PDF to export. Valid values are accessible via the `Orientation` class.
|
|
395
|
+
|
|
396
|
+
maxage: int, optional
|
|
397
|
+
The maximum age of the data to export. Shortest possible duration is 1
|
|
398
|
+
minute. No upper limit. Default is -1, which means no limit.
|
|
399
|
+
|
|
400
|
+
viz_height: int, optional
|
|
401
|
+
The height of the viz in pixels. If specified, viz_width must also be specified.
|
|
402
|
+
|
|
403
|
+
viz_width: int, optional
|
|
404
|
+
The width of the viz in pixels. If specified, viz_height must also be specified.
|
|
405
|
+
"""
|
|
406
|
+
|
|
283
407
|
class PageType:
|
|
284
408
|
A3 = "a3"
|
|
285
409
|
A4 = "a4"
|
|
@@ -119,6 +119,7 @@ class Server:
|
|
|
119
119
|
Append = "Append"
|
|
120
120
|
Overwrite = "Overwrite"
|
|
121
121
|
CreateNew = "CreateNew"
|
|
122
|
+
Replace = "Replace"
|
|
122
123
|
|
|
123
124
|
def __init__(self, server_address, use_server_version=False, http_options=None, session_factory=None):
|
|
124
125
|
self._auth_token = None
|
|
@@ -207,12 +208,14 @@ class Server:
|
|
|
207
208
|
self._site_id = None
|
|
208
209
|
self._user_id = None
|
|
209
210
|
self._auth_token = None
|
|
211
|
+
self._site_url = None
|
|
210
212
|
self._session = self._session_factory()
|
|
211
213
|
|
|
212
|
-
def _set_auth(self, site_id, user_id, auth_token):
|
|
214
|
+
def _set_auth(self, site_id, user_id, auth_token, site_url=None):
|
|
213
215
|
self._site_id = site_id
|
|
214
216
|
self._user_id = user_id
|
|
215
217
|
self._auth_token = auth_token
|
|
218
|
+
self._site_url = site_url
|
|
216
219
|
|
|
217
220
|
def _get_legacy_version(self):
|
|
218
221
|
# the serverInfo call was introduced in 2.4, earlier than that we have this different call
|
|
@@ -282,6 +285,13 @@ class Server:
|
|
|
282
285
|
raise NotSignedInError(error)
|
|
283
286
|
return self._site_id
|
|
284
287
|
|
|
288
|
+
@property
|
|
289
|
+
def site_url(self):
|
|
290
|
+
if self._site_url is None:
|
|
291
|
+
error = "Missing site URL. You must sign in first."
|
|
292
|
+
raise NotSignedInError(error)
|
|
293
|
+
return self._site_url
|
|
294
|
+
|
|
285
295
|
@property
|
|
286
296
|
def user_id(self):
|
|
287
297
|
if self._user_id is None:
|
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
class Sort:
|
|
2
|
+
"""
|
|
3
|
+
Used with request options (RequestOptions) where you can filter and sort on
|
|
4
|
+
the results returned from the server.
|
|
5
|
+
|
|
6
|
+
Parameters
|
|
7
|
+
----------
|
|
8
|
+
field : str
|
|
9
|
+
Sets the field to sort on. The fields are defined in the RequestOption class.
|
|
10
|
+
|
|
11
|
+
direction : str
|
|
12
|
+
The direction to sort, either ascending (Asc) or descending (Desc). The
|
|
13
|
+
options are defined in the RequestOptions.Direction class.
|
|
14
|
+
"""
|
|
15
|
+
|
|
2
16
|
def __init__(self, field, direction):
|
|
3
17
|
self.field = field
|
|
4
18
|
self.direction = direction
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tableauserverclient
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.35
|
|
4
4
|
Summary: A Python module for working with the Tableau Server REST API.
|
|
5
5
|
Author-email: Tableau <github@tableau.com>
|
|
6
6
|
License: The MIT License (MIT)
|
|
@@ -41,7 +41,7 @@ Requires-Dist: defusedxml>=0.7.1
|
|
|
41
41
|
Requires-Dist: packaging>=23.1
|
|
42
42
|
Requires-Dist: requests>=2.32
|
|
43
43
|
Requires-Dist: urllib3<3,>=2.2.2
|
|
44
|
-
Requires-Dist:
|
|
44
|
+
Requires-Dist: typing_extensions>=4.0
|
|
45
45
|
Provides-Extra: test
|
|
46
46
|
Requires-Dist: black==24.8; extra == "test"
|
|
47
47
|
Requires-Dist: build; extra == "test"
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
tableauserverclient/__init__.py,sha256=
|
|
2
|
-
tableauserverclient/_version.py,sha256=avYqaqs6dEYkBErJoo8H4QwrWV-YA20Dq1QvilajM4c,496
|
|
1
|
+
tableauserverclient/__init__.py,sha256=cklsANSkzOpxzwTw-w7__Wzjs5yAp9M9KG427GOm9Ho,2814
|
|
3
2
|
tableauserverclient/config.py,sha256=LcWVmZjkYMh1cKCKZm3VZItgKOoSLz1ai4PnVgbAtDA,713
|
|
4
3
|
tableauserverclient/datetime_helpers.py,sha256=_-gWz5I2_KHT5AzW_boD8meH6loTTKdK-_62h1MA6ko,884
|
|
5
4
|
tableauserverclient/exponential_backoff.py,sha256=HtAfbbVnYtiOe2_ZzKqZmsml40EDZBaC3bttif5qeG8,1474
|
|
6
5
|
tableauserverclient/filesys_helpers.py,sha256=hosTm9fpc9B9_VCDcAuyHA0A-f-MWs9_2utyRweuZ5I,1667
|
|
7
6
|
tableauserverclient/namespace.py,sha256=Zh6QtxNmqPkjRMsefHHX-ycS4r-egnrJ4-hdHvldBHw,963
|
|
8
7
|
tableauserverclient/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
tableauserverclient/bin/_version.py,sha256=XyYyfmHf6Mqq2cYvRhg8abPcJtKD9ME4yl_PC6tHB8I,496
|
|
9
9
|
tableauserverclient/helpers/__init__.py,sha256=llpqF9zV5dsP5hQt8dyop33Op5OzGmxW0BZibaSlCcM,23
|
|
10
10
|
tableauserverclient/helpers/headers.py,sha256=Pg-ZWSgV2Yp813BV1Tzo8F2Hn4P01zscla2RRM4yqNk,411
|
|
11
11
|
tableauserverclient/helpers/logging.py,sha256=5q_oR3wERHVXFXY6XDnLYML5-HdAPJTmqhH9IZg4VfY,113
|
|
12
12
|
tableauserverclient/helpers/strings.py,sha256=HRTP31HIdD3gFxDDHuBsmOl_8cLdh8fa3xLALgYsUAQ,1563
|
|
13
13
|
tableauserverclient/models/__init__.py,sha256=bU4eaOQ4I9h_JYn7IbhCZhHbMVvxdSUhMJeHg80apYA,4051
|
|
14
14
|
tableauserverclient/models/column_item.py,sha256=yUFzXNcnUPVo2imrhEBS4fMVAR5j2ZzksOk5t9XYW5s,1964
|
|
15
|
-
tableauserverclient/models/connection_credentials.py,sha256=
|
|
16
|
-
tableauserverclient/models/connection_item.py,sha256=
|
|
17
|
-
tableauserverclient/models/custom_view_item.py,sha256=
|
|
15
|
+
tableauserverclient/models/connection_credentials.py,sha256=CQ8FkkHW9MeTw8uArNhrU5mowtryWUddgEgEliqh3ys,2066
|
|
16
|
+
tableauserverclient/models/connection_item.py,sha256=0fmYXfrBccTnRm_3AtEJKaz4jkM1_TvdBTfI7pZVe-U,5908
|
|
17
|
+
tableauserverclient/models/custom_view_item.py,sha256=JZyq7jkt9WH-24eOV4PO2uGJxaSZ-5K05jL4UoZ8kYs,7771
|
|
18
18
|
tableauserverclient/models/data_acceleration_report_item.py,sha256=HFZROetfOWh-hMS48xBEHqYOViINHZR-EpcrP45_8AI,3386
|
|
19
19
|
tableauserverclient/models/data_alert_item.py,sha256=VZtRR-kqojq-mkrTgvay4WkPawj3-4jbSc0wBijmJhk,6444
|
|
20
20
|
tableauserverclient/models/data_freshness_policy_item.py,sha256=UdaEmwVL_q364Do_2dOnkCSX-oKnvjKfsYzGSaJIQFs,7618
|
|
@@ -24,17 +24,17 @@ tableauserverclient/models/dqw_item.py,sha256=87oTc7icrQst_DSaTqoVR965YEckg5dk6o
|
|
|
24
24
|
tableauserverclient/models/exceptions.py,sha256=pQu5DS4jNMT9A0wEBWv2vANAQU1vgNpFatVr8sGE4zk,105
|
|
25
25
|
tableauserverclient/models/favorites_item.py,sha256=JxHfy38xdRYol2KM_8_A7Ng59cZunkhTNcpxO670k08,3294
|
|
26
26
|
tableauserverclient/models/fileupload_item.py,sha256=N5M0jtlFj_PFh3jlp2AbcYOwCwdnBCk_L64xe3Z4ves,742
|
|
27
|
-
tableauserverclient/models/flow_item.py,sha256=
|
|
27
|
+
tableauserverclient/models/flow_item.py,sha256=df4kkKXVp4dAOblBUDShEl571BxS7hB1AZKHl4P9tss,8666
|
|
28
28
|
tableauserverclient/models/flow_run_item.py,sha256=nf_b6KRwNevwZRsPoMh8dLzdONUMWY2wipWEMdY9SN4,3113
|
|
29
|
-
tableauserverclient/models/group_item.py,sha256=
|
|
29
|
+
tableauserverclient/models/group_item.py,sha256=asj0ZlA0-OAGgcYFu9sDX0t29B5A4LDsirXi0IN6i40,4896
|
|
30
30
|
tableauserverclient/models/groupset_item.py,sha256=gxxyzviE5B8zr2sKJteIDKtYTPYKsGd-qMcrjEY2uVU,1885
|
|
31
31
|
tableauserverclient/models/interval_item.py,sha256=_ZHQtzQWxwdd_sScziqhrK54k7W_ZgrMfP2PhlIhTRQ,9101
|
|
32
|
-
tableauserverclient/models/job_item.py,sha256=
|
|
32
|
+
tableauserverclient/models/job_item.py,sha256=TJBGqWWYYolcqPAwUSb8gLoXDb0Vsu3LGFk05UpFe0s,11485
|
|
33
33
|
tableauserverclient/models/linked_tasks_item.py,sha256=TYkNvmJfKlZ30OST8w9GUobboFAH5ftFKjXdWWAtR24,3806
|
|
34
34
|
tableauserverclient/models/metric_item.py,sha256=D3atzbr3jtQUsVsqYHfz-v3yRP3qruRN5jRsv_-yRQ0,5378
|
|
35
35
|
tableauserverclient/models/pagination_item.py,sha256=55Ap_9pJxq8plWQO1Js3Jp6KFidN3TQsL5LM2-yZGDo,1424
|
|
36
36
|
tableauserverclient/models/permissions_item.py,sha256=CWf1Q4x7U4QQWQ1VUWgDzaE7mhriHblG1MJAc6EKJHM,6149
|
|
37
|
-
tableauserverclient/models/project_item.py,sha256=
|
|
37
|
+
tableauserverclient/models/project_item.py,sha256=bzSn9IsWt69DL7rZb5B3MubpNUTCw7XMYHw6wu4inj8,8481
|
|
38
38
|
tableauserverclient/models/property_decorators.py,sha256=v2cTqiW5iZXoOyu6RYg3X6Ly--8sozjWOcKCTLi99Nc,4645
|
|
39
39
|
tableauserverclient/models/reference_item.py,sha256=R4Tr7qfVdnGcq_ac4hr0yhAjBOkqFZEW-4NGMUYaf9w,733
|
|
40
40
|
tableauserverclient/models/revision_item.py,sha256=5ghmnwhUcCOWwZdApzgV_uM3sqdoG_gtsJwUQwfKITo,2773
|
|
@@ -47,28 +47,28 @@ tableauserverclient/models/tableau_auth.py,sha256=atmXdAsA5LrrLHEzrHJQPLYETC1iKy
|
|
|
47
47
|
tableauserverclient/models/tableau_types.py,sha256=ybXO_O7ni-WjKUJ5zVEoEgEnatsDtfXTeT0rpiq7Jxs,1230
|
|
48
48
|
tableauserverclient/models/tag_item.py,sha256=K2EVEy1EDdr0yLr4wBvGr-p9gIAFVsOCv80b-AFPFLk,588
|
|
49
49
|
tableauserverclient/models/target.py,sha256=dVc1SHwo9ZASR8250MhAPODXX_G5UqA4BnK8hykRE6E,263
|
|
50
|
-
tableauserverclient/models/task_item.py,sha256=
|
|
50
|
+
tableauserverclient/models/task_item.py,sha256=l4t4COw2LfdlYmJpzUSgwGven_NSZj2r3PUJZkqvCus,4555
|
|
51
51
|
tableauserverclient/models/user_item.py,sha256=otfavMznvkqUwxRlh1wW0Y_eTw3gaVNJKlWeecKy5j0,16494
|
|
52
|
-
tableauserverclient/models/view_item.py,sha256=
|
|
52
|
+
tableauserverclient/models/view_item.py,sha256=AxHGrcUOv_kKDqqFWxvQ-kX9KoD0Df20MQygZIkF-9Y,9964
|
|
53
53
|
tableauserverclient/models/virtual_connection_item.py,sha256=TvX7MId7WSg4IZE41XAMl1l3Ibu8kTUR1xr26Cqtyeo,3357
|
|
54
|
-
tableauserverclient/models/webhook_item.py,sha256=
|
|
55
|
-
tableauserverclient/models/workbook_item.py,sha256=
|
|
54
|
+
tableauserverclient/models/webhook_item.py,sha256=r37fHY3_uhDhxupHfMSvB4I2aUjy3qQ2FOLQjAcNUUk,3994
|
|
55
|
+
tableauserverclient/models/workbook_item.py,sha256=s1zSSPaXASbjOirB6EqGO_O8ev-BrsSFwEJwlbdFYFQ,17468
|
|
56
56
|
tableauserverclient/server/__init__.py,sha256=Ahk3Zh1F2e-rNPtlC7k51Lp8R_2q2obIuolln7bllTM,1890
|
|
57
57
|
tableauserverclient/server/exceptions.py,sha256=l-O4lcoEeXJC7fLWUanIcZM_Mf8m54uK3NQuKNj3RCg,183
|
|
58
58
|
tableauserverclient/server/filter.py,sha256=Z7O6A175bBSmcponLs0Enh5R5Gp2puVRGfOMk-V395w,1096
|
|
59
|
-
tableauserverclient/server/pager.py,sha256=
|
|
59
|
+
tableauserverclient/server/pager.py,sha256=IESvCba7WZO3O9VBcKlJ6ricVDgro0gKuUQyJnOCUws,3497
|
|
60
60
|
tableauserverclient/server/query.py,sha256=dxl0dOBd_Rx8BIS0ocMd-RhO5yb1KXnu2OacrQzQGPY,9461
|
|
61
|
-
tableauserverclient/server/request_factory.py,sha256=
|
|
62
|
-
tableauserverclient/server/request_options.py,sha256=
|
|
63
|
-
tableauserverclient/server/server.py,sha256=
|
|
64
|
-
tableauserverclient/server/sort.py,sha256
|
|
61
|
+
tableauserverclient/server/request_factory.py,sha256=GIOJjJQBnijxY4Z7s7RJf_5c9RvvyEIuEIJsE7epmo4,72424
|
|
62
|
+
tableauserverclient/server/request_options.py,sha256=xuu7Pf_9kG4liUwioC9zWhe3p8s50pwXQhNvUarzlso,14488
|
|
63
|
+
tableauserverclient/server/server.py,sha256=Uk63h9Y2Ub1Iu2PWhguG5D5BpWFqNydgML6ae2yesV4,11291
|
|
64
|
+
tableauserverclient/server/sort.py,sha256=wjnlt7rlmLvQjM_XpgD8N8Hlg0zVvLOV7k_dAs1DmHY,628
|
|
65
65
|
tableauserverclient/server/endpoint/__init__.py,sha256=MpttkNENWAiXS2QigwZMfWG6PnsB05QSFK4-OIR3CaQ,3101
|
|
66
|
-
tableauserverclient/server/endpoint/auth_endpoint.py,sha256=
|
|
67
|
-
tableauserverclient/server/endpoint/custom_views_endpoint.py,sha256=
|
|
66
|
+
tableauserverclient/server/endpoint/auth_endpoint.py,sha256=8N3_OUSwYm4KCvwDJHGmH9i2OqzH70PLP0-rT-sKYVo,7177
|
|
67
|
+
tableauserverclient/server/endpoint/custom_views_endpoint.py,sha256=se-CZ9BF8Cf_quT_3BbrO9lwK7E8hHbCoMYq-2IZMM8,14515
|
|
68
68
|
tableauserverclient/server/endpoint/data_acceleration_report_endpoint.py,sha256=he-MVqCvAQo8--icEKFoIV2KUP6Z1s_PJ2uZ8Xpj2f8,1130
|
|
69
69
|
tableauserverclient/server/endpoint/data_alert_endpoint.py,sha256=ZNotgG3hBpR7fo8eDTXx_gSppF2n25GQ3udwF3MKFLk,5203
|
|
70
70
|
tableauserverclient/server/endpoint/databases_endpoint.py,sha256=3kl7YCCJB_DY88QiJxKvtarDV7kPApGYtIcr7d7l8k0,5705
|
|
71
|
-
tableauserverclient/server/endpoint/datasources_endpoint.py,sha256=
|
|
71
|
+
tableauserverclient/server/endpoint/datasources_endpoint.py,sha256=j-y_q-q4qJv2voPQBVVlorXMbE5ubdeJWG_txsuhGRM,22879
|
|
72
72
|
tableauserverclient/server/endpoint/default_permissions_endpoint.py,sha256=bZlhDqu6jFyC4vbrdC3Nn1cWRJWRz0mhxco9hRUouJA,4327
|
|
73
73
|
tableauserverclient/server/endpoint/dqw_endpoint.py,sha256=hN2UsyM3hrUsIK9CudSBB-WXNa0TeUU7Zjeol0njIXI,2155
|
|
74
74
|
tableauserverclient/server/endpoint/endpoint.py,sha256=pYr-l3GLK8Fvh46U_VdaJLLerd2GBJXJk_x94RQ-ZeE,14113
|
|
@@ -77,30 +77,30 @@ tableauserverclient/server/endpoint/favorites_endpoint.py,sha256=ZMui0KQCSGRBlUr
|
|
|
77
77
|
tableauserverclient/server/endpoint/fileuploads_endpoint.py,sha256=OnjAoHJyMsOnCVauAyOnKEdUqw9elpQ5O5cBnM0T1bQ,2427
|
|
78
78
|
tableauserverclient/server/endpoint/flow_runs_endpoint.py,sha256=HIVuTi4pXIqog16K_3Zzu1LC96TR_pZlAjxRKoJrJ_g,4957
|
|
79
79
|
tableauserverclient/server/endpoint/flow_task_endpoint.py,sha256=4D7tEYow7lqkCuazXUrUyIH_y_PQMTehmeIi-zSIMXo,1078
|
|
80
|
-
tableauserverclient/server/endpoint/flows_endpoint.py,sha256=
|
|
81
|
-
tableauserverclient/server/endpoint/groups_endpoint.py,sha256=
|
|
80
|
+
tableauserverclient/server/endpoint/flows_endpoint.py,sha256=i0nc9JeBzJ7A-kymGMubV8khT-NU3oxlvB7SHd_bddA,23650
|
|
81
|
+
tableauserverclient/server/endpoint/groups_endpoint.py,sha256=5ZhKJeKT3GoM2olqJYJggdiVYQ9BdcEJCIqkx-tZqxo,18745
|
|
82
82
|
tableauserverclient/server/endpoint/groupsets_endpoint.py,sha256=-nsl2LCixvMhho3KKSWDpHLfNahTBue76L3i8RjTqyc,5585
|
|
83
|
-
tableauserverclient/server/endpoint/jobs_endpoint.py,sha256=
|
|
83
|
+
tableauserverclient/server/endpoint/jobs_endpoint.py,sha256=bwNxLq4t2AUq6xtyv41FkhekeEE3SitNs8VpibakWOE,10355
|
|
84
84
|
tableauserverclient/server/endpoint/linked_tasks_endpoint.py,sha256=tMZqVPWPZvYawaXLJGVV9scmWPu1rdCxz-eWZv1WbPk,2262
|
|
85
85
|
tableauserverclient/server/endpoint/metadata_endpoint.py,sha256=sg0Yehj2f0wlrJMkVjzNdNxNEhSeNbZIkio3eQamOVk,5228
|
|
86
86
|
tableauserverclient/server/endpoint/metrics_endpoint.py,sha256=p9F_tbUela1sb3i9n67Tr9zsPRmsjSAigC6EqLwZHqE,3175
|
|
87
87
|
tableauserverclient/server/endpoint/permissions_endpoint.py,sha256=tXX_KSanbxUeR-L4UdI_jphko8dD_fZsXVhQayQL3JA,3719
|
|
88
|
-
tableauserverclient/server/endpoint/projects_endpoint.py,sha256=
|
|
88
|
+
tableauserverclient/server/endpoint/projects_endpoint.py,sha256=aIYW2NWZnWgK2PXHcBgHJwGxv6Ak915J-1wmPD1FiFY,30603
|
|
89
89
|
tableauserverclient/server/endpoint/resource_tagger.py,sha256=eKekflXzLjx_zDOLgYkTIusRO8vsFus1LvLIf0LOwtQ,6661
|
|
90
90
|
tableauserverclient/server/endpoint/schedules_endpoint.py,sha256=eUyNCqx7alQTPTCX-KYGk7zFd7EtAJxYatfa9D6NCc0,6242
|
|
91
91
|
tableauserverclient/server/endpoint/server_info_endpoint.py,sha256=9UcYP3td22S_Kwabu-RWc-Pn3lFrIERVlzVpl4ErP_I,2649
|
|
92
92
|
tableauserverclient/server/endpoint/sites_endpoint.py,sha256=H_bq6hU-zsGJ2sNr2jqQ5YGajQ310WvjJgpiDBREfiY,14001
|
|
93
93
|
tableauserverclient/server/endpoint/subscriptions_endpoint.py,sha256=21oZ6Q14AL8p2ZHyfREpbnPU6Vj4Xh97o1K9hmKRJ-I,3187
|
|
94
94
|
tableauserverclient/server/endpoint/tables_endpoint.py,sha256=7HCOheWJd8VAEz1TACbWnLFxfYiKcPB40XpxtT5Qbj0,5725
|
|
95
|
-
tableauserverclient/server/endpoint/tasks_endpoint.py,sha256=
|
|
95
|
+
tableauserverclient/server/endpoint/tasks_endpoint.py,sha256=5VHGe2NSgr40BKPPOm9nVrdZGrG3Sf0ri_CNqsv0CpQ,6304
|
|
96
96
|
tableauserverclient/server/endpoint/users_endpoint.py,sha256=yLDzGy9K9ecY8uO8Tww1fp3hwrs_WMbMYtgMRRa7Hho,19788
|
|
97
|
-
tableauserverclient/server/endpoint/views_endpoint.py,sha256=
|
|
97
|
+
tableauserverclient/server/endpoint/views_endpoint.py,sha256=d_vy0PJGyeOqQPtLflSKKRyiVaqgRcQ9oMD4vGKr5hE,17572
|
|
98
98
|
tableauserverclient/server/endpoint/virtual_connections_endpoint.py,sha256=K5R86aIm4hZeYw3OUOlKv-zTmsWa3np1iuV_h5iPvt0,8458
|
|
99
|
-
tableauserverclient/server/endpoint/webhooks_endpoint.py,sha256=
|
|
100
|
-
tableauserverclient/server/endpoint/workbooks_endpoint.py,sha256=
|
|
101
|
-
tableauserverclient-0.
|
|
102
|
-
tableauserverclient-0.
|
|
103
|
-
tableauserverclient-0.
|
|
104
|
-
tableauserverclient-0.
|
|
105
|
-
tableauserverclient-0.
|
|
106
|
-
tableauserverclient-0.
|
|
99
|
+
tableauserverclient/server/endpoint/webhooks_endpoint.py,sha256=nmEjKdbntwBg-0XAP2TluOv2v8usqxXg7sO8ogS5rDI,4923
|
|
100
|
+
tableauserverclient/server/endpoint/workbooks_endpoint.py,sha256=WaECiTbWl5yL2S4qUcMgiwYzkth2ZQieQs_0HD57Omg,43323
|
|
101
|
+
tableauserverclient-0.35.dist-info/LICENSE,sha256=MMkY7MguOb4L-WCmmqrVcwg2iwSGaz-RfAMFvXRXwsQ,1074
|
|
102
|
+
tableauserverclient-0.35.dist-info/LICENSE.versioneer,sha256=OYaGozOXk7bUNSm1z577iDYpti8a40XIqqR4lyQ47D8,334
|
|
103
|
+
tableauserverclient-0.35.dist-info/METADATA,sha256=vxfXh69rDCr5QbF2IYQQ9ONBBUONyOeEo3aZzss9bDU,4329
|
|
104
|
+
tableauserverclient-0.35.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
|
105
|
+
tableauserverclient-0.35.dist-info/top_level.txt,sha256=kBnL39G2RlGqxJSsShDBWG4WZ3NFcWJkv1EGiOfZh4Q,20
|
|
106
|
+
tableauserverclient-0.35.dist-info/RECORD,,
|
|
File without changes
|
{tableauserverclient-0.34.dist-info → tableauserverclient-0.35.dist-info}/LICENSE.versioneer
RENAMED
|
File without changes
|
|
File without changes
|