tableauserverclient 0.25__py3-none-any.whl → 0.27.post0.dev1__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 +42 -1
- tableauserverclient/_version.py +4 -4
- tableauserverclient/config.py +13 -0
- tableauserverclient/datetime_helpers.py +4 -0
- tableauserverclient/helpers/logging.py +4 -0
- tableauserverclient/models/__init__.py +1 -1
- tableauserverclient/models/column_item.py +3 -0
- tableauserverclient/models/connection_credentials.py +7 -0
- tableauserverclient/models/connection_item.py +1 -1
- tableauserverclient/models/custom_view_item.py +5 -0
- tableauserverclient/models/data_acceleration_report_item.py +3 -0
- tableauserverclient/models/datasource_item.py +10 -54
- tableauserverclient/models/favorites_item.py +56 -40
- tableauserverclient/models/fileupload_item.py +2 -2
- tableauserverclient/models/flow_item.py +30 -25
- tableauserverclient/models/group_item.py +1 -4
- tableauserverclient/models/interval_item.py +12 -0
- tableauserverclient/models/job_item.py +10 -1
- tableauserverclient/models/metric_item.py +36 -29
- tableauserverclient/models/pagination_item.py +3 -0
- tableauserverclient/models/permissions_item.py +8 -5
- tableauserverclient/models/project_item.py +11 -13
- tableauserverclient/models/schedule_item.py +6 -7
- tableauserverclient/models/server_info_item.py +2 -2
- tableauserverclient/models/site_item.py +3 -0
- tableauserverclient/models/subscription_item.py +8 -0
- tableauserverclient/models/table_item.py +6 -0
- tableauserverclient/models/tableau_auth.py +41 -6
- tableauserverclient/models/tableau_types.py +4 -2
- tableauserverclient/models/user_item.py +5 -1
- tableauserverclient/models/view_item.py +39 -36
- tableauserverclient/models/workbook_item.py +14 -43
- tableauserverclient/server/__init__.py +1 -3
- tableauserverclient/server/endpoint/__init__.py +1 -5
- tableauserverclient/server/endpoint/auth_endpoint.py +29 -8
- tableauserverclient/server/endpoint/custom_views_endpoint.py +1 -1
- tableauserverclient/server/endpoint/data_acceleration_report_endpoint.py +1 -1
- tableauserverclient/server/endpoint/data_alert_endpoint.py +1 -1
- tableauserverclient/server/endpoint/databases_endpoint.py +1 -1
- tableauserverclient/server/endpoint/datasources_endpoint.py +21 -15
- tableauserverclient/server/endpoint/default_permissions_endpoint.py +1 -1
- tableauserverclient/server/endpoint/dqw_endpoint.py +1 -1
- tableauserverclient/server/endpoint/endpoint.py +98 -11
- tableauserverclient/server/endpoint/exceptions.py +1 -5
- tableauserverclient/server/endpoint/favorites_endpoint.py +71 -29
- tableauserverclient/server/endpoint/fileuploads_endpoint.py +11 -10
- tableauserverclient/server/endpoint/flow_runs_endpoint.py +1 -1
- tableauserverclient/server/endpoint/flows_endpoint.py +5 -5
- tableauserverclient/server/endpoint/groups_endpoint.py +5 -2
- tableauserverclient/server/endpoint/jobs_endpoint.py +1 -1
- tableauserverclient/server/endpoint/metadata_endpoint.py +1 -1
- tableauserverclient/server/endpoint/metrics_endpoint.py +1 -1
- tableauserverclient/server/endpoint/permissions_endpoint.py +1 -1
- tableauserverclient/server/endpoint/projects_endpoint.py +3 -1
- tableauserverclient/server/endpoint/resource_tagger.py +3 -3
- tableauserverclient/server/endpoint/schedules_endpoint.py +2 -1
- tableauserverclient/server/endpoint/server_info_endpoint.py +2 -4
- tableauserverclient/server/endpoint/sites_endpoint.py +1 -1
- tableauserverclient/server/endpoint/subscriptions_endpoint.py +1 -1
- tableauserverclient/server/endpoint/tables_endpoint.py +1 -1
- tableauserverclient/server/endpoint/tasks_endpoint.py +12 -1
- tableauserverclient/server/endpoint/users_endpoint.py +1 -1
- tableauserverclient/server/endpoint/views_endpoint.py +1 -1
- tableauserverclient/server/endpoint/webhooks_endpoint.py +1 -1
- tableauserverclient/server/endpoint/workbooks_endpoint.py +4 -2
- tableauserverclient/server/exceptions.py +8 -1
- tableauserverclient/server/filter.py +5 -1
- tableauserverclient/server/request_factory.py +56 -12
- tableauserverclient/server/request_options.py +4 -2
- tableauserverclient/server/server.py +12 -13
- {tableauserverclient-0.25.dist-info → tableauserverclient-0.27.post0.dev1.dist-info}/METADATA +12 -10
- tableauserverclient-0.27.post0.dev1.dist-info/RECORD +97 -0
- {tableauserverclient-0.25.dist-info → tableauserverclient-0.27.post0.dev1.dist-info}/WHEEL +1 -1
- tableauserverclient-0.25.dist-info/RECORD +0 -95
- {tableauserverclient-0.25.dist-info → tableauserverclient-0.27.post0.dev1.dist-info}/LICENSE +0 -0
- {tableauserverclient-0.25.dist-info → tableauserverclient-0.27.post0.dev1.dist-info}/LICENSE.versioneer +0 -0
- {tableauserverclient-0.25.dist-info → tableauserverclient-0.27.post0.dev1.dist-info}/top_level.txt +0 -0
|
@@ -9,6 +9,8 @@ from tableauserverclient.models import *
|
|
|
9
9
|
if TYPE_CHECKING:
|
|
10
10
|
from tableauserverclient.server import Server
|
|
11
11
|
|
|
12
|
+
# this file could be largely replaced if we were willing to import the huge file from generateDS
|
|
13
|
+
|
|
12
14
|
|
|
13
15
|
def _add_multipart(parts: Dict) -> Tuple[Any, str]:
|
|
14
16
|
mime_multipart_parts = list()
|
|
@@ -146,10 +148,11 @@ class DatabaseRequest(object):
|
|
|
146
148
|
|
|
147
149
|
|
|
148
150
|
class DatasourceRequest(object):
|
|
149
|
-
def _generate_xml(self, datasource_item, connection_credentials=None, connections=None):
|
|
151
|
+
def _generate_xml(self, datasource_item: DatasourceItem, connection_credentials=None, connections=None):
|
|
150
152
|
xml_request = ET.Element("tsRequest")
|
|
151
153
|
datasource_element = ET.SubElement(xml_request, "datasource")
|
|
152
|
-
|
|
154
|
+
if datasource_item.name:
|
|
155
|
+
datasource_element.attrib["name"] = datasource_item.name
|
|
153
156
|
if datasource_item.description:
|
|
154
157
|
datasource_element.attrib["description"] = str(datasource_item.description)
|
|
155
158
|
if datasource_item.use_remote_query_agent is not None:
|
|
@@ -157,10 +160,16 @@ class DatasourceRequest(object):
|
|
|
157
160
|
|
|
158
161
|
if datasource_item.ask_data_enablement:
|
|
159
162
|
ask_data_element = ET.SubElement(datasource_element, "askData")
|
|
160
|
-
ask_data_element.attrib["enablement"] = datasource_item.ask_data_enablement
|
|
163
|
+
ask_data_element.attrib["enablement"] = datasource_item.ask_data_enablement.__str__()
|
|
161
164
|
|
|
162
|
-
|
|
163
|
-
|
|
165
|
+
if datasource_item.certified:
|
|
166
|
+
datasource_element.attrib["isCertified"] = datasource_item.certified.__str__()
|
|
167
|
+
if datasource_item.certification_note:
|
|
168
|
+
datasource_element.attrib["certificationNote"] = datasource_item.certification_note
|
|
169
|
+
|
|
170
|
+
if datasource_item.project_id:
|
|
171
|
+
project_element = ET.SubElement(datasource_element, "project")
|
|
172
|
+
project_element.attrib["id"] = datasource_item.project_id
|
|
164
173
|
|
|
165
174
|
if connection_credentials is not None and connections is not None:
|
|
166
175
|
raise RuntimeError("You cannot set both `connections` and `connection_credentials`")
|
|
@@ -188,6 +197,8 @@ class DatasourceRequest(object):
|
|
|
188
197
|
if datasource_item.owner_id:
|
|
189
198
|
owner_element = ET.SubElement(datasource_element, "owner")
|
|
190
199
|
owner_element.attrib["id"] = datasource_item.owner_id
|
|
200
|
+
if datasource_item.use_remote_query_agent is not None:
|
|
201
|
+
datasource_element.attrib["useRemoteQueryAgent"] = str(datasource_item.use_remote_query_agent).lower()
|
|
191
202
|
|
|
192
203
|
datasource_element.attrib["isCertified"] = str(datasource_item.certified).lower()
|
|
193
204
|
|
|
@@ -252,12 +263,16 @@ class DQWRequest(object):
|
|
|
252
263
|
|
|
253
264
|
|
|
254
265
|
class FavoriteRequest(object):
|
|
255
|
-
def
|
|
266
|
+
def add_request(self, id_: Optional[str], target_type: str, label: Optional[str]) -> bytes:
|
|
256
267
|
"""
|
|
257
268
|
<favorite label="...">
|
|
258
269
|
<target_type id="..." />
|
|
259
270
|
</favorite>
|
|
260
271
|
"""
|
|
272
|
+
if id_ is None:
|
|
273
|
+
raise ValueError("Cannot add item as favorite without ID")
|
|
274
|
+
if label is None:
|
|
275
|
+
label = target_type
|
|
261
276
|
xml_request = ET.Element("tsRequest")
|
|
262
277
|
favorite_element = ET.SubElement(xml_request, "favorite")
|
|
263
278
|
target = ET.SubElement(favorite_element, target_type)
|
|
@@ -271,35 +286,35 @@ class FavoriteRequest(object):
|
|
|
271
286
|
raise ValueError("id must exist to add to favorites")
|
|
272
287
|
if name is None:
|
|
273
288
|
raise ValueError("Name must exist to add to favorites.")
|
|
274
|
-
return self.
|
|
289
|
+
return self.add_request(id_, Resource.Datasource, name)
|
|
275
290
|
|
|
276
291
|
def add_flow_req(self, id_: Optional[str], name: Optional[str]) -> bytes:
|
|
277
292
|
if id_ is None:
|
|
278
293
|
raise ValueError("id must exist to add to favorites")
|
|
279
294
|
if name is None:
|
|
280
295
|
raise ValueError("Name must exist to add to favorites.")
|
|
281
|
-
return self.
|
|
296
|
+
return self.add_request(id_, Resource.Flow, name)
|
|
282
297
|
|
|
283
298
|
def add_project_req(self, id_: Optional[str], name: Optional[str]) -> bytes:
|
|
284
299
|
if id_ is None:
|
|
285
300
|
raise ValueError("id must exist to add to favorites")
|
|
286
301
|
if name is None:
|
|
287
302
|
raise ValueError("Name must exist to add to favorites.")
|
|
288
|
-
return self.
|
|
303
|
+
return self.add_request(id_, Resource.Project, name)
|
|
289
304
|
|
|
290
305
|
def add_view_req(self, id_: Optional[str], name: Optional[str]) -> bytes:
|
|
291
306
|
if id_ is None:
|
|
292
307
|
raise ValueError("id must exist to add to favorites")
|
|
293
308
|
if name is None:
|
|
294
309
|
raise ValueError("Name must exist to add to favorites.")
|
|
295
|
-
return self.
|
|
310
|
+
return self.add_request(id_, Resource.View, name)
|
|
296
311
|
|
|
297
312
|
def add_workbook_req(self, id_: Optional[str], name: Optional[str]) -> bytes:
|
|
298
313
|
if id_ is None:
|
|
299
314
|
raise ValueError("id must exist to add to favorites")
|
|
300
315
|
if name is None:
|
|
301
316
|
raise ValueError("Name must exist to add to favorites.")
|
|
302
|
-
return self.
|
|
317
|
+
return self.add_request(id_, Resource.Workbook, name)
|
|
303
318
|
|
|
304
319
|
|
|
305
320
|
class FileuploadRequest(object):
|
|
@@ -476,7 +491,8 @@ class ProjectRequest(object):
|
|
|
476
491
|
def create_req(self, project_item: "ProjectItem") -> bytes:
|
|
477
492
|
xml_request = ET.Element("tsRequest")
|
|
478
493
|
project_element = ET.SubElement(xml_request, "project")
|
|
479
|
-
|
|
494
|
+
if project_item.name:
|
|
495
|
+
project_element.attrib["name"] = project_item.name
|
|
480
496
|
if project_item.description:
|
|
481
497
|
project_element.attrib["description"] = project_item.description
|
|
482
498
|
if project_item.content_permissions:
|
|
@@ -1012,6 +1028,34 @@ class TaskRequest(object):
|
|
|
1012
1028
|
# Send an empty tsRequest
|
|
1013
1029
|
pass
|
|
1014
1030
|
|
|
1031
|
+
@_tsrequest_wrapped
|
|
1032
|
+
def create_extract_req(self, xml_request: ET.Element, extract_item: "TaskItem") -> bytes:
|
|
1033
|
+
extract_element = ET.SubElement(xml_request, "extractRefresh")
|
|
1034
|
+
|
|
1035
|
+
# Schedule attributes
|
|
1036
|
+
schedule_element = ET.SubElement(xml_request, "schedule")
|
|
1037
|
+
|
|
1038
|
+
interval_item = extract_item.schedule_item.interval_item
|
|
1039
|
+
schedule_element.attrib["frequency"] = interval_item._frequency
|
|
1040
|
+
frequency_element = ET.SubElement(schedule_element, "frequencyDetails")
|
|
1041
|
+
frequency_element.attrib["start"] = str(interval_item.start_time)
|
|
1042
|
+
if hasattr(interval_item, "end_time") and interval_item.end_time is not None:
|
|
1043
|
+
frequency_element.attrib["end"] = str(interval_item.end_time)
|
|
1044
|
+
if hasattr(interval_item, "interval") and interval_item.interval:
|
|
1045
|
+
intervals_element = ET.SubElement(frequency_element, "intervals")
|
|
1046
|
+
for interval in interval_item._interval_type_pairs():
|
|
1047
|
+
expression, value = interval
|
|
1048
|
+
single_interval_element = ET.SubElement(intervals_element, "interval")
|
|
1049
|
+
single_interval_element.attrib[expression] = value
|
|
1050
|
+
|
|
1051
|
+
# Main attributes
|
|
1052
|
+
extract_element.attrib["type"] = extract_item.task_type
|
|
1053
|
+
|
|
1054
|
+
target_element = ET.SubElement(extract_element, extract_item.target.type)
|
|
1055
|
+
target_element.attrib["id"] = extract_item.target.id
|
|
1056
|
+
|
|
1057
|
+
return ET.tostring(xml_request)
|
|
1058
|
+
|
|
1015
1059
|
|
|
1016
1060
|
class SubscriptionRequest(object):
|
|
1017
1061
|
@_tsrequest_wrapped
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from tableauserverclient.models.property_decorators import property_is_int
|
|
2
2
|
import logging
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
from tableauserverclient.helpers.logging import logger
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
class RequestOptionsBase(object):
|
|
@@ -38,6 +38,7 @@ class RequestOptions(RequestOptionsBase):
|
|
|
38
38
|
class Field:
|
|
39
39
|
Args = "args"
|
|
40
40
|
CompletedAt = "completedAt"
|
|
41
|
+
ContentUrl = "contentUrl"
|
|
41
42
|
CreatedAt = "createdAt"
|
|
42
43
|
DomainName = "domainName"
|
|
43
44
|
DomainNickname = "domainNickname"
|
|
@@ -147,7 +148,7 @@ class CSVRequestOptions(_FilterOptionsBase):
|
|
|
147
148
|
return params
|
|
148
149
|
|
|
149
150
|
|
|
150
|
-
class ExcelRequestOptions(
|
|
151
|
+
class ExcelRequestOptions(_FilterOptionsBase):
|
|
151
152
|
def __init__(self, maxage: int = -1) -> None:
|
|
152
153
|
super().__init__()
|
|
153
154
|
self.max_age = maxage
|
|
@@ -166,6 +167,7 @@ class ExcelRequestOptions(RequestOptionsBase):
|
|
|
166
167
|
if self.max_age != -1:
|
|
167
168
|
params["maxAge"] = self.max_age
|
|
168
169
|
|
|
170
|
+
self._append_view_filters(params)
|
|
169
171
|
return params
|
|
170
172
|
|
|
171
173
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
from tableauserverclient.helpers.logging import logger
|
|
2
2
|
|
|
3
3
|
import requests
|
|
4
4
|
import urllib3
|
|
@@ -34,11 +34,11 @@ from .endpoint import (
|
|
|
34
34
|
Metrics,
|
|
35
35
|
Endpoint,
|
|
36
36
|
)
|
|
37
|
-
from .
|
|
37
|
+
from .exceptions import (
|
|
38
38
|
ServerInfoEndpointNotFoundError,
|
|
39
39
|
EndpointUnavailableError,
|
|
40
40
|
)
|
|
41
|
-
from .exceptions import NotSignedInError
|
|
41
|
+
from .endpoint.exceptions import NotSignedInError
|
|
42
42
|
from ..namespace import Namespace
|
|
43
43
|
|
|
44
44
|
|
|
@@ -99,8 +99,6 @@ class Server(object):
|
|
|
99
99
|
self.metrics = Metrics(self)
|
|
100
100
|
self.custom_views = CustomViews(self)
|
|
101
101
|
|
|
102
|
-
self.logger = logging.getLogger("TSC.server")
|
|
103
|
-
|
|
104
102
|
self._session = self._session_factory()
|
|
105
103
|
self._http_options = dict() # must set this before making a server call
|
|
106
104
|
if http_options:
|
|
@@ -114,7 +112,8 @@ class Server(object):
|
|
|
114
112
|
|
|
115
113
|
def validate_connection_settings(self):
|
|
116
114
|
try:
|
|
117
|
-
Endpoint(self).set_parameters(self._http_options, None, None, None, None)
|
|
115
|
+
params = Endpoint(self).set_parameters(self._http_options, None, None, None, None)
|
|
116
|
+
Endpoint.set_user_agent(params)
|
|
118
117
|
if not self._server_address.startswith("http://") and not self._server_address.startswith("https://"):
|
|
119
118
|
self._server_address = "http://" + self._server_address
|
|
120
119
|
self._session.prepare_request(requests.Request("GET", url=self._server_address, params=self._http_options))
|
|
@@ -156,8 +155,8 @@ class Server(object):
|
|
|
156
155
|
try:
|
|
157
156
|
info_xml = fromstring(response.content)
|
|
158
157
|
except ParseError as parseError:
|
|
159
|
-
|
|
160
|
-
|
|
158
|
+
logger.info(parseError)
|
|
159
|
+
logger.info("Could not read server version info. The server may not be running or configured.")
|
|
161
160
|
return self.version
|
|
162
161
|
prod_version = info_xml.find(".//product_version").text
|
|
163
162
|
version = _PRODUCT_TO_REST_VERSION.get(prod_version, minimum_supported_server_version)
|
|
@@ -168,15 +167,15 @@ class Server(object):
|
|
|
168
167
|
old_version = self.version
|
|
169
168
|
version = self.server_info.get().rest_api_version
|
|
170
169
|
except ServerInfoEndpointNotFoundError as e:
|
|
171
|
-
|
|
170
|
+
logger.info("Could not get version info from server: {}{}".format(e.__class__, e))
|
|
172
171
|
version = self._get_legacy_version()
|
|
173
172
|
except EndpointUnavailableError as e:
|
|
174
|
-
|
|
173
|
+
logger.info("Could not get version info from server: {}{}".format(e.__class__, e))
|
|
175
174
|
version = self._get_legacy_version()
|
|
176
175
|
except Exception as e:
|
|
177
|
-
|
|
176
|
+
logger.info("Could not get version info from server: {}{}".format(e.__class__, e))
|
|
178
177
|
version = None
|
|
179
|
-
|
|
178
|
+
logger.info("versions: {}, {}".format(version, old_version))
|
|
180
179
|
return version or old_version
|
|
181
180
|
|
|
182
181
|
def use_server_version(self):
|
|
@@ -184,7 +183,7 @@ class Server(object):
|
|
|
184
183
|
|
|
185
184
|
def use_highest_version(self):
|
|
186
185
|
self.use_server_version()
|
|
187
|
-
|
|
186
|
+
logger.info("use use_server_version instead", DeprecationWarning)
|
|
188
187
|
|
|
189
188
|
def check_at_least_version(self, target: str):
|
|
190
189
|
server_version = Version(self.version or "2.4")
|
{tableauserverclient-0.25.dist-info → tableauserverclient-0.27.post0.dev1.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tableauserverclient
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.27.post0.dev1
|
|
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)
|
|
@@ -28,26 +28,28 @@ License: The MIT License (MIT)
|
|
|
28
28
|
Project-URL: repository, https://github.com/tableau/server-client-python
|
|
29
29
|
Classifier: Programming Language :: Python
|
|
30
30
|
Classifier: Programming Language :: Python :: 3
|
|
31
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
32
31
|
Classifier: Programming Language :: Python :: 3.8
|
|
33
32
|
Classifier: Programming Language :: Python :: 3.9
|
|
34
33
|
Classifier: Programming Language :: Python :: 3.10
|
|
34
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
35
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
35
36
|
Requires-Python: >=3.7
|
|
36
37
|
Description-Content-Type: text/markdown
|
|
37
38
|
License-File: LICENSE
|
|
38
39
|
License-File: LICENSE.versioneer
|
|
39
|
-
Requires-Dist: defusedxml
|
|
40
|
-
Requires-Dist: packaging
|
|
41
|
-
Requires-Dist: requests
|
|
42
|
-
Requires-Dist: urllib3
|
|
40
|
+
Requires-Dist: defusedxml >=0.7.1
|
|
41
|
+
Requires-Dist: packaging >=23.1
|
|
42
|
+
Requires-Dist: requests >=2.31
|
|
43
|
+
Requires-Dist: urllib3 ==2.0.6
|
|
43
44
|
Provides-Extra: test
|
|
44
45
|
Requires-Dist: argparse ; extra == 'test'
|
|
45
|
-
Requires-Dist: black ; extra == 'test'
|
|
46
|
+
Requires-Dist: black ==23.7 ; extra == 'test'
|
|
46
47
|
Requires-Dist: mock ; extra == 'test'
|
|
47
|
-
Requires-Dist: mypy ; extra == 'test'
|
|
48
|
-
Requires-Dist: pytest
|
|
48
|
+
Requires-Dist: mypy ==1.4 ; extra == 'test'
|
|
49
|
+
Requires-Dist: pytest >=7.0 ; extra == 'test'
|
|
50
|
+
Requires-Dist: pytest-cov ; extra == 'test'
|
|
49
51
|
Requires-Dist: pytest-subtests ; extra == 'test'
|
|
50
|
-
Requires-Dist: requests-mock
|
|
52
|
+
Requires-Dist: requests-mock <2.0,>=1.0 ; extra == 'test'
|
|
51
53
|
|
|
52
54
|
# Tableau Server Client (Python)
|
|
53
55
|
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
tableauserverclient/__init__.py,sha256=hDjLTdwXPmQj4BQBRdUcnP7XdhT7apJ_c7JAPyyYZ7Y,1096
|
|
2
|
+
tableauserverclient/_version.py,sha256=u6OV2jbIuAhyTwq20Kp2iHVdde_-g21ptmxwMeEyBAQ,507
|
|
3
|
+
tableauserverclient/config.py,sha256=u9YnTDv0XnFR0sUY6AdeSuP5Zi2WKmcgJGGdehuaoO0,429
|
|
4
|
+
tableauserverclient/datetime_helpers.py,sha256=_-gWz5I2_KHT5AzW_boD8meH6loTTKdK-_62h1MA6ko,884
|
|
5
|
+
tableauserverclient/exponential_backoff.py,sha256=HtAfbbVnYtiOe2_ZzKqZmsml40EDZBaC3bttif5qeG8,1474
|
|
6
|
+
tableauserverclient/filesys_helpers.py,sha256=hosTm9fpc9B9_VCDcAuyHA0A-f-MWs9_2utyRweuZ5I,1667
|
|
7
|
+
tableauserverclient/namespace.py,sha256=i0o0T0xO0vd1RX98o54xmIrqCkeVfhtQOGDMGRx_F_o,971
|
|
8
|
+
tableauserverclient/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
tableauserverclient/helpers/__init__.py,sha256=llpqF9zV5dsP5hQt8dyop33Op5OzGmxW0BZibaSlCcM,23
|
|
10
|
+
tableauserverclient/helpers/logging.py,sha256=5q_oR3wERHVXFXY6XDnLYML5-HdAPJTmqhH9IZg4VfY,113
|
|
11
|
+
tableauserverclient/helpers/strings.py,sha256=dnfm_2s75WvXnkcU8JFGRlLbSZdarRPyHpRYOi19APs,1682
|
|
12
|
+
tableauserverclient/models/__init__.py,sha256=NfVfRDeU8b6zTQ7wzkorhvuGIPabym8lXvNiyEX_AVg,1620
|
|
13
|
+
tableauserverclient/models/column_item.py,sha256=gV2r7xOVmcn9UnMXFOe9_ORZ85oha1KtIH-crKUhgN4,1972
|
|
14
|
+
tableauserverclient/models/connection_credentials.py,sha256=8Wa8B_-cB3INFUup-Pyd5znsUD5opgYYH5TfipCzKTU,1559
|
|
15
|
+
tableauserverclient/models/connection_item.py,sha256=BiLrjWY42EtkAyh2_3juo31rYW9YZN1e3uOXMXIaslY,4743
|
|
16
|
+
tableauserverclient/models/custom_view_item.py,sha256=Gr2lYgBU1zUfCoaXHhqTzWDspmL33UqOxlt48Y8yaGg,5782
|
|
17
|
+
tableauserverclient/models/data_acceleration_report_item.py,sha256=5Z18-fppR_lnAyPKHwxi4gOP6kqcYX3Q3RdwiD4Zy94,3402
|
|
18
|
+
tableauserverclient/models/data_alert_item.py,sha256=sJpncsKY1BY-tFJKDpX7xaHy6aGvELWrorsILJxr3lI,6458
|
|
19
|
+
tableauserverclient/models/database_item.py,sha256=SAwoxsgeowwFN20zGt3-226kJabk0M2tqbVLQthvmRs,8043
|
|
20
|
+
tableauserverclient/models/datasource_item.py,sha256=ZZZvYfzg6gD7DlZWzfEJ3VBQBMYADJ9GeoWV02F7Z8E,11944
|
|
21
|
+
tableauserverclient/models/dqw_item.py,sha256=MFpxSP6vSzpjh5GLNrom--Sbi8iLwuGLuAda8KHiIa8,3718
|
|
22
|
+
tableauserverclient/models/exceptions.py,sha256=pQu5DS4jNMT9A0wEBWv2vANAQU1vgNpFatVr8sGE4zk,105
|
|
23
|
+
tableauserverclient/models/favorites_item.py,sha256=AfQOraRaZ_c2lY9XzxOeeg0N89WHOOYW3CREsCuACNs,3140
|
|
24
|
+
tableauserverclient/models/fileupload_item.py,sha256=tx3LfgRxVqeHGpCN6kTDPkdBY5i1H-u1RVaPf0hQx_4,750
|
|
25
|
+
tableauserverclient/models/flow_item.py,sha256=rPIVDe8_tHied8TDRiGpg2gyTyQWlNiGb3vGhqF9YJw,7320
|
|
26
|
+
tableauserverclient/models/flow_run_item.py,sha256=pwJNz0m7l--Sb6z0o83ebWfAmTVFYSr-0apMxHWt0Vs,3139
|
|
27
|
+
tableauserverclient/models/group_item.py,sha256=1KP_KmIG1veJJGyte82aFvMAiU_tvzYtaP2vLEReLoo,3621
|
|
28
|
+
tableauserverclient/models/interval_item.py,sha256=h0mAFnR3rOj9nNOT237sPHQrdkN3NyonnGX10Chbx9k,5747
|
|
29
|
+
tableauserverclient/models/job_item.py,sha256=PMt7G2qu8WAxe-b3f_0BtQ9JcCSvk-g5L5EcOUpYFCY,8619
|
|
30
|
+
tableauserverclient/models/metric_item.py,sha256=Zrzi_Un43p2jzE_4OhetxhjfeSUYzotMfm8Hjd5WOhI,5397
|
|
31
|
+
tableauserverclient/models/pagination_item.py,sha256=Hdr2EIKWkXfrjWOr-Ao_vzQTWB2akUfxxtaupFKLrlQ,1432
|
|
32
|
+
tableauserverclient/models/permissions_item.py,sha256=2WlJOc1Vxkxl-WnAkFaacWsGxUXU9_d85AetSKrKwP0,3731
|
|
33
|
+
tableauserverclient/models/project_item.py,sha256=Mf5maEdKJqk5ojhT_DNmLqL50Ib6u1OKYEDq0oJpeGs,7056
|
|
34
|
+
tableauserverclient/models/property_decorators.py,sha256=eXaYxzXYuHdftlcnqSQOzHYM7OAilETWK8Td2Dtmmuc,4726
|
|
35
|
+
tableauserverclient/models/reference_item.py,sha256=HddG1loGNJU7gB7hBccCjnhagnSEbk4_wY2kuPbNhRQ,534
|
|
36
|
+
tableauserverclient/models/revision_item.py,sha256=fLkcScAgBBiVMCyDPk4aboyZNxrykIavzJP2vkn6Rq0,2787
|
|
37
|
+
tableauserverclient/models/schedule_item.py,sha256=AmodNmh9iKdlGzyEm0pRjdy8-yFSXsIe7xf0Y6oVFVc,10569
|
|
38
|
+
tableauserverclient/models/server_info_item.py,sha256=pR_fqqPuiBwpLn0wr4rQ4vxK7gxGJVTtaswzwjslheE,1880
|
|
39
|
+
tableauserverclient/models/site_item.py,sha256=xvXpsR0eEz2ypS-94KJTMS-gusHV1bLomKIhWX7GXrU,42256
|
|
40
|
+
tableauserverclient/models/subscription_item.py,sha256=XkQiAi_gWPBnxtTaB8TgrFa-IDVDtai9H00Ilay0T64,4744
|
|
41
|
+
tableauserverclient/models/table_item.py,sha256=WgXrHCgmA5djpA7k2tNuZ8A3PPK6GEKfj9RQZ27RsNk,4583
|
|
42
|
+
tableauserverclient/models/tableau_auth.py,sha256=TdkOtRnNRi4p0w_WhBsWqUunNVG9nxKl6NPO2AQ08zU,3723
|
|
43
|
+
tableauserverclient/models/tableau_types.py,sha256=1iq1034K1W9ugLAxON_t8n2UxSouiWV_ZEwoHiNM94c,918
|
|
44
|
+
tableauserverclient/models/tag_item.py,sha256=mVfJGZG8PspPM8hBxX38heEQ_Rnp5sSwfwWdLNA-UV0,619
|
|
45
|
+
tableauserverclient/models/target.py,sha256=dVc1SHwo9ZASR8250MhAPODXX_G5UqA4BnK8hykRE6E,263
|
|
46
|
+
tableauserverclient/models/task_item.py,sha256=0DSOZ3aQ6nppD-zVeeK-GKdAxLE0-d-sSazXs7ybH6Q,3466
|
|
47
|
+
tableauserverclient/models/user_item.py,sha256=vaQD3nvU7bJVD6t0nkWQFse8UDz8HTp8wh_6WmCjKtM,15776
|
|
48
|
+
tableauserverclient/models/view_item.py,sha256=7OLTLpLXDiYAWi7Tc6vSCkh2Krl7-cvKUwA7iMWZspQ,6777
|
|
49
|
+
tableauserverclient/models/webhook_item.py,sha256=LLf2HQ2Y50Rw-c4dSYyv6MXLbXdij9Iyy261gu9zpv4,2650
|
|
50
|
+
tableauserverclient/models/workbook_item.py,sha256=x-qRFLAkVKQzd-PFYTkfuzYBkMcW3EOvc6Zx-iVWa3U,12974
|
|
51
|
+
tableauserverclient/server/__init__.py,sha256=ZyvucBvBQMPyTVW7oDHl4W9NWuaSVSMfN9cTcSQRmKw,406
|
|
52
|
+
tableauserverclient/server/exceptions.py,sha256=l-O4lcoEeXJC7fLWUanIcZM_Mf8m54uK3NQuKNj3RCg,183
|
|
53
|
+
tableauserverclient/server/filter.py,sha256=WZ_dIBuADRZf8VTYcRgn1rulSGUOJq8_uUltq05KkRI,1119
|
|
54
|
+
tableauserverclient/server/pager.py,sha256=rd6rKkoTxP0u3RiOZ3HY9oWKyOcf8aowbHPcs-Ul4D0,2725
|
|
55
|
+
tableauserverclient/server/query.py,sha256=qMweo-N5P_V9z2Or4u_QrStaBbGL6HOg4Y4EDg8uh44,5735
|
|
56
|
+
tableauserverclient/server/request_factory.py,sha256=u8h2EtGKBAN5ELR9Cg_v3bSKvRsMmy4IXVkYp4OZqzQ,59190
|
|
57
|
+
tableauserverclient/server/request_options.py,sha256=xilsnYTsNObCZfwB5ydfzYq7XBkhpvIMWHM67yWQSKY,7105
|
|
58
|
+
tableauserverclient/server/server.py,sha256=LhbQOk-lvIBAOF5tTAghYNPFsKJN4Z95SJbuHLAxdKo,8401
|
|
59
|
+
tableauserverclient/server/sort.py,sha256=ikndqXW2r2FeacJzybC2TVcJGn4ktviWgXwPyK-AX-0,208
|
|
60
|
+
tableauserverclient/server/endpoint/__init__.py,sha256=9KGDtgBWlWsWbBQvQV2cbIU-VmHmMqcgtSM7PonpIzg,1141
|
|
61
|
+
tableauserverclient/server/endpoint/auth_endpoint.py,sha256=EOGGlGHWUZRN0SFBlYnEWUSwCH1lrB0Zfv4VWdd7HQs,5139
|
|
62
|
+
tableauserverclient/server/endpoint/custom_views_endpoint.py,sha256=SShsI8TnDe3tPXCrCsjs3Oy5Ym4j-QrcDXUfZ7rF9Y4,4542
|
|
63
|
+
tableauserverclient/server/endpoint/data_acceleration_report_endpoint.py,sha256=nfC2gXoCke-YXGTiMWGDRBK_lDlLa9Y6hts7w3Zs8cI,1170
|
|
64
|
+
tableauserverclient/server/endpoint/data_alert_endpoint.py,sha256=c6-ICGRVDRQN7ClAgCeJsk6JK4HyBvtQGQVLOzNc4eo,5358
|
|
65
|
+
tableauserverclient/server/endpoint/databases_endpoint.py,sha256=0V6cHwF5E1K1oQ9JKT-rb7t1EFPNwlSKMC2HyqEqYPw,5366
|
|
66
|
+
tableauserverclient/server/endpoint/datasources_endpoint.py,sha256=f51jAj3yr6TssOLygEBmJIZo8y__fRNKbjxnV_yBTDo,20299
|
|
67
|
+
tableauserverclient/server/endpoint/default_permissions_endpoint.py,sha256=HQSYPIJwVCimuWo4YGYvsc41_-rweLHmJ-tQrWdH-Y8,4386
|
|
68
|
+
tableauserverclient/server/endpoint/dqw_endpoint.py,sha256=TvzjonvIiGtp4EisoBKms1lHOkVTjagQACw6unyY9_8,2418
|
|
69
|
+
tableauserverclient/server/endpoint/endpoint.py,sha256=IZtHZia7aSr2sc1iV8bdtg39kX-IBDsXLoAxKa3y5v8,14425
|
|
70
|
+
tableauserverclient/server/endpoint/exceptions.py,sha256=fh4fFYasqiKd3EPTxriVsmLkRL24wz9UvX94BMRfyLY,2534
|
|
71
|
+
tableauserverclient/server/endpoint/favorites_endpoint.py,sha256=D0MCco9kxaeCShfWOnVt3UpttJRgczJmJKXb3w0jpw4,6701
|
|
72
|
+
tableauserverclient/server/endpoint/fileuploads_endpoint.py,sha256=fh2xH6a8mMcBI14QzodWPBMabK1_9SMDbzZbawz-ZJc,2553
|
|
73
|
+
tableauserverclient/server/endpoint/flow_runs_endpoint.py,sha256=1vwkOrb574natWl-njFOij8xaV32e9RU3-rFbu4bML0,3338
|
|
74
|
+
tableauserverclient/server/endpoint/flows_endpoint.py,sha256=97S15UatgSzdw22Q5ZfhtlVVTvahp7fAtrXt7L28OWg,12898
|
|
75
|
+
tableauserverclient/server/endpoint/groups_endpoint.py,sha256=_aSTVy7m3NXSEqgC0cPfJt6KOaPoWprxzz0MD8CsiiY,6640
|
|
76
|
+
tableauserverclient/server/endpoint/jobs_endpoint.py,sha256=P5Hdv1hsNVxd5KdrcNCfR9ZtJ7v3UgrfATCBItVdAxY,3239
|
|
77
|
+
tableauserverclient/server/endpoint/metadata_endpoint.py,sha256=AKnmRNj9U85p__igiuY_vhhipsxNXpQ_9zzNUtTuU9o,5203
|
|
78
|
+
tableauserverclient/server/endpoint/metrics_endpoint.py,sha256=pW7ZOmRrsk_d1afITrQKhYdDDo3zqw1Vq-FnhBnSM24,3264
|
|
79
|
+
tableauserverclient/server/endpoint/permissions_endpoint.py,sha256=K-AZ1VPTHfiuyEwLo4qQLVTacwYFgNEGrYpCtgO9nmY,3879
|
|
80
|
+
tableauserverclient/server/endpoint/projects_endpoint.py,sha256=cbW-VTtrG1dt2kQy5vGCmurB8w3ethuNQvyaWViSpIE,7323
|
|
81
|
+
tableauserverclient/server/endpoint/resource_tagger.py,sha256=NJ64WySE7RWIR3JNltyWbErwwdaw9L_Wi7TLWdNas_4,2248
|
|
82
|
+
tableauserverclient/server/endpoint/schedules_endpoint.py,sha256=VKlAqTqMtxkvkG2UgZQ6VrBkiAgpjgffRZFzdzV9LtM,6462
|
|
83
|
+
tableauserverclient/server/endpoint/server_info_endpoint.py,sha256=4TtCc7oIp6iEuiZYGC_1NDIBsWetKk7b0rNemoA2VXI,1453
|
|
84
|
+
tableauserverclient/server/endpoint/sites_endpoint.py,sha256=lMeVXxm1k32HZK84u7aTys9hUQekb4PE1hlhKFxaZ8c,6694
|
|
85
|
+
tableauserverclient/server/endpoint/subscriptions_endpoint.py,sha256=mMo9M6DF6tAZIab6UY8f_duETezELl9VXEYs5ocAcGY,3280
|
|
86
|
+
tableauserverclient/server/endpoint/tables_endpoint.py,sha256=OJQIarL-IC9mjeu1jfNh9B3UEkB41O51Q53TQNeSJ78,5376
|
|
87
|
+
tableauserverclient/server/endpoint/tasks_endpoint.py,sha256=jHz-d3q-hoxmv9Xg2qPAOzAz9mv0ahHtPSW8IXon0sw,3707
|
|
88
|
+
tableauserverclient/server/endpoint/users_endpoint.py,sha256=QRoApMyP53nF-AqvC7oLHNcT4VJE8s5ykjUnI5ojmPY,7274
|
|
89
|
+
tableauserverclient/server/endpoint/views_endpoint.py,sha256=GIYPftL5B0YUOb_SisFtfLP0LPIAbbUv24XCi15UH_M,7118
|
|
90
|
+
tableauserverclient/server/endpoint/webhooks_endpoint.py,sha256=-HsbAuKECNcx5EZkqp097PfGHLCNwPRnxbrdzreTpnM,2835
|
|
91
|
+
tableauserverclient/server/endpoint/workbooks_endpoint.py,sha256=65Zv-b0yd4yuh1JAoqbhNlEJM6k2LD6nh1nPQGTdKRc,21734
|
|
92
|
+
tableauserverclient-0.27.post0.dev1.dist-info/LICENSE,sha256=MMkY7MguOb4L-WCmmqrVcwg2iwSGaz-RfAMFvXRXwsQ,1074
|
|
93
|
+
tableauserverclient-0.27.post0.dev1.dist-info/LICENSE.versioneer,sha256=OYaGozOXk7bUNSm1z577iDYpti8a40XIqqR4lyQ47D8,334
|
|
94
|
+
tableauserverclient-0.27.post0.dev1.dist-info/METADATA,sha256=90XNnucPkxyix1Qw7QZzEF4hDQ_2syELl3HVnlMc0wM,4084
|
|
95
|
+
tableauserverclient-0.27.post0.dev1.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
96
|
+
tableauserverclient-0.27.post0.dev1.dist-info/top_level.txt,sha256=kBnL39G2RlGqxJSsShDBWG4WZ3NFcWJkv1EGiOfZh4Q,20
|
|
97
|
+
tableauserverclient-0.27.post0.dev1.dist-info/RECORD,,
|
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
tableauserverclient/__init__.py,sha256=ftQXEg_7wXOMqiUdFG14rOgMoKELODvkszHmsQELU4w,378
|
|
2
|
-
tableauserverclient/_version.py,sha256=YKukcxRjL104DLfBIlLT4XFm7NOvUvp4czKlTuItA7M,496
|
|
3
|
-
tableauserverclient/datetime_helpers.py,sha256=sEaLPDHrK00Oa3uP7pFnlNl2DA9FBq_n-gSZZxUE8_Y,809
|
|
4
|
-
tableauserverclient/exponential_backoff.py,sha256=HtAfbbVnYtiOe2_ZzKqZmsml40EDZBaC3bttif5qeG8,1474
|
|
5
|
-
tableauserverclient/filesys_helpers.py,sha256=hosTm9fpc9B9_VCDcAuyHA0A-f-MWs9_2utyRweuZ5I,1667
|
|
6
|
-
tableauserverclient/namespace.py,sha256=i0o0T0xO0vd1RX98o54xmIrqCkeVfhtQOGDMGRx_F_o,971
|
|
7
|
-
tableauserverclient/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
tableauserverclient/helpers/__init__.py,sha256=llpqF9zV5dsP5hQt8dyop33Op5OzGmxW0BZibaSlCcM,23
|
|
9
|
-
tableauserverclient/helpers/strings.py,sha256=dnfm_2s75WvXnkcU8JFGRlLbSZdarRPyHpRYOi19APs,1682
|
|
10
|
-
tableauserverclient/models/__init__.py,sha256=jAjXNMIPLV9gZho5LRT1BzKmR3IMnGz8-bnj5CWEW9Q,1611
|
|
11
|
-
tableauserverclient/models/column_item.py,sha256=H-SaHQuSgW4VQmB2IYlJbG-uHGXIoCykBLkNfytRbTM,1859
|
|
12
|
-
tableauserverclient/models/connection_credentials.py,sha256=hMrlfInBu35t5IMZMXiLjSvJIAPZKB8BS7XuzdVClzk,1317
|
|
13
|
-
tableauserverclient/models/connection_item.py,sha256=xzU494_8CEmfbB9wyHIiXxRVFYbikzC9vAWTZ8H6Qew,4773
|
|
14
|
-
tableauserverclient/models/custom_view_item.py,sha256=GpCWN87-9S6c2Tpg5JYCL7ZU2DvsOOFL3WMw6gh_0no,5613
|
|
15
|
-
tableauserverclient/models/data_acceleration_report_item.py,sha256=QKdxbTla8FudecIX7w74bV9QyEDc-L1F5YkUk2-DopQ,3283
|
|
16
|
-
tableauserverclient/models/data_alert_item.py,sha256=sJpncsKY1BY-tFJKDpX7xaHy6aGvELWrorsILJxr3lI,6458
|
|
17
|
-
tableauserverclient/models/database_item.py,sha256=SAwoxsgeowwFN20zGt3-226kJabk0M2tqbVLQthvmRs,8043
|
|
18
|
-
tableauserverclient/models/datasource_item.py,sha256=p4iXgpjjrRI6mcCSA_hRrBlE51mcpfp4HTYLELslVIw,13475
|
|
19
|
-
tableauserverclient/models/dqw_item.py,sha256=MFpxSP6vSzpjh5GLNrom--Sbi8iLwuGLuAda8KHiIa8,3718
|
|
20
|
-
tableauserverclient/models/exceptions.py,sha256=pQu5DS4jNMT9A0wEBWv2vANAQU1vgNpFatVr8sGE4zk,105
|
|
21
|
-
tableauserverclient/models/favorites_item.py,sha256=dZRm5DbCdmZ1Aim-q8-gTK0ZeIxFgG4kzCcMD1LsiwY,2561
|
|
22
|
-
tableauserverclient/models/fileupload_item.py,sha256=jPGMYfbkhzNj5bDy_OtsWnsOKhbjwqprVUJZss8KQfA,738
|
|
23
|
-
tableauserverclient/models/flow_item.py,sha256=wD42G5mFOxSjQ8TzSRgIoVlGgLXlgLaot3qy6BZMYVI,7275
|
|
24
|
-
tableauserverclient/models/flow_run_item.py,sha256=pwJNz0m7l--Sb6z0o83ebWfAmTVFYSr-0apMxHWt0Vs,3139
|
|
25
|
-
tableauserverclient/models/group_item.py,sha256=pILM_5gFQL_KNu4eIc-pHaYkVC967usdltBm9nyLvjQ,3668
|
|
26
|
-
tableauserverclient/models/interval_item.py,sha256=uXIQX8xzjvsdoKneW1Az2KurLPx1BoRmSR-yh5wg3Vg,5247
|
|
27
|
-
tableauserverclient/models/job_item.py,sha256=oDQQwNezb7AnzisaGYi0kcGNtsuq1_6Nh4IbUrsb91U,8264
|
|
28
|
-
tableauserverclient/models/metric_item.py,sha256=p_bIHJUL8nbCajtt-2H-1t0uNIDvx53WWAjj9i9RYAc,5075
|
|
29
|
-
tableauserverclient/models/pagination_item.py,sha256=Uo2fem9I_yvyTWWMZy9UYQWyhKX5pGxAp3C2ghmDSVo,1282
|
|
30
|
-
tableauserverclient/models/permissions_item.py,sha256=oRamK4az7uZfhoMlrA2UvohH75J__qH3687Gz5aXofg,3568
|
|
31
|
-
tableauserverclient/models/project_item.py,sha256=RkhhUyzn8-tkriXJ2b-09zvlXU3v0jNqqSK5AglFKqE,7063
|
|
32
|
-
tableauserverclient/models/property_decorators.py,sha256=eXaYxzXYuHdftlcnqSQOzHYM7OAilETWK8Td2Dtmmuc,4726
|
|
33
|
-
tableauserverclient/models/reference_item.py,sha256=HddG1loGNJU7gB7hBccCjnhagnSEbk4_wY2kuPbNhRQ,534
|
|
34
|
-
tableauserverclient/models/revision_item.py,sha256=fLkcScAgBBiVMCyDPk4aboyZNxrykIavzJP2vkn6Rq0,2787
|
|
35
|
-
tableauserverclient/models/schedule_item.py,sha256=irbbUm41mB2hAYJWU0YjdXLEXQWtbDUSHQ_d8nR-qw4,10514
|
|
36
|
-
tableauserverclient/models/server_info_item.py,sha256=vf2S_5zf7pJByifai7OHARWiDvVIdbiR3TFu44uGNgQ,1877
|
|
37
|
-
tableauserverclient/models/site_item.py,sha256=-b5o40xBSeY7pRQ3ANkpCex8SFBa0oYDkr6bDzFRfxk,42123
|
|
38
|
-
tableauserverclient/models/subscription_item.py,sha256=E0jHnaRe9GG_a5Gcaq7ATuZJlM5C5h_-rhVaL9HbE_0,4421
|
|
39
|
-
tableauserverclient/models/table_item.py,sha256=YWnjMOMLOCsi_BnCQfJLTkPmA5TfracWkGjpvWhLPzE,4355
|
|
40
|
-
tableauserverclient/models/tableau_auth.py,sha256=t-Ocn3R8azPlrBVPYmG-5VTlC1qODMd1KUpWgGLwtLs,2512
|
|
41
|
-
tableauserverclient/models/tableau_types.py,sha256=ZJ7xTvuhSU9O0ORtnPiwpuZpNfJtfJcKrUnSIowEOlU,767
|
|
42
|
-
tableauserverclient/models/tag_item.py,sha256=mVfJGZG8PspPM8hBxX38heEQ_Rnp5sSwfwWdLNA-UV0,619
|
|
43
|
-
tableauserverclient/models/target.py,sha256=dVc1SHwo9ZASR8250MhAPODXX_G5UqA4BnK8hykRE6E,263
|
|
44
|
-
tableauserverclient/models/task_item.py,sha256=0DSOZ3aQ6nppD-zVeeK-GKdAxLE0-d-sSazXs7ybH6Q,3466
|
|
45
|
-
tableauserverclient/models/user_item.py,sha256=j3RD9WQQJFhv-oT91RqHkd9DIwNDYe5pCIMZx1u4jl0,15598
|
|
46
|
-
tableauserverclient/models/view_item.py,sha256=Wpugomcb5YxrVImEjrVTqJhCNykLgoCS67MhTY3mjAg,6547
|
|
47
|
-
tableauserverclient/models/webhook_item.py,sha256=LLf2HQ2Y50Rw-c4dSYyv6MXLbXdij9Iyy261gu9zpv4,2650
|
|
48
|
-
tableauserverclient/models/workbook_item.py,sha256=s2-CZq4GGEyMQ3W2Xds-He_jRdl_BCfAaOGfHu80WxY,13590
|
|
49
|
-
tableauserverclient/server/__init__.py,sha256=KL2Ib5HzLVvRvuRWqbiOZr8PwOKNqZDPbyJ_Hy70sAQ,444
|
|
50
|
-
tableauserverclient/server/exceptions.py,sha256=xgSr3HcDdq8T-gmVUWAFuyTVzj72YVLd9NTzSBtrw6c,44
|
|
51
|
-
tableauserverclient/server/filter.py,sha256=A1qPQwLPt-Ehq7I5jDIQHJMqf3_dKn_wJg5qhMkCQIQ,864
|
|
52
|
-
tableauserverclient/server/pager.py,sha256=rd6rKkoTxP0u3RiOZ3HY9oWKyOcf8aowbHPcs-Ul4D0,2725
|
|
53
|
-
tableauserverclient/server/query.py,sha256=qMweo-N5P_V9z2Or4u_QrStaBbGL6HOg4Y4EDg8uh44,5735
|
|
54
|
-
tableauserverclient/server/request_factory.py,sha256=jPVqs65tRqx8Raxu1NDffBrq6VEaICcyBFGWgiEHDj0,56937
|
|
55
|
-
tableauserverclient/server/request_options.py,sha256=ayX3P6GzmI54NR1Zp2L6BpAcUOirElXqOUCPZnHlLks,7028
|
|
56
|
-
tableauserverclient/server/server.py,sha256=tPIiNj7yHUowzQMovMq1ys-InFU82-aDUAJRrAzDE4g,8398
|
|
57
|
-
tableauserverclient/server/sort.py,sha256=ikndqXW2r2FeacJzybC2TVcJGn4ktviWgXwPyK-AX-0,208
|
|
58
|
-
tableauserverclient/server/endpoint/__init__.py,sha256=AgGArwgJivCCEp_46h6G4JOd0U0f2MIR2iwEe9FJHvw,1191
|
|
59
|
-
tableauserverclient/server/endpoint/auth_endpoint.py,sha256=utiqrV4To37bKKnlc2klG-gfWqxovYxTqxqV0SQ1zD8,4108
|
|
60
|
-
tableauserverclient/server/endpoint/custom_views_endpoint.py,sha256=UFFO9eGnmWRqIr9AlkAREvNXoDW6S_nCK55H1d-gGhc,4547
|
|
61
|
-
tableauserverclient/server/endpoint/data_acceleration_report_endpoint.py,sha256=2Pir8TRPr1p2pylHtt3Kzj2yG9HIvImCotfjkPecSio,1187
|
|
62
|
-
tableauserverclient/server/endpoint/data_alert_endpoint.py,sha256=eVN3M1efcrDNEtE0cZypEojYzhpx7lYHoc8LX1SIKLs,5361
|
|
63
|
-
tableauserverclient/server/endpoint/databases_endpoint.py,sha256=A3cVcZd59U0cj1N6hE4N-bYwZjyDySnY_IyIpyr5cpA,5368
|
|
64
|
-
tableauserverclient/server/endpoint/datasources_endpoint.py,sha256=Wly4p_gxuuSrgyCvj4Yf2ag-34rIfOiujNUNpsLovRk,19892
|
|
65
|
-
tableauserverclient/server/endpoint/default_permissions_endpoint.py,sha256=o6VCCFQ1BGAVF6JhQ9rnaPua-E_vmQz1251AfvmLHDA,4368
|
|
66
|
-
tableauserverclient/server/endpoint/dqw_endpoint.py,sha256=twer5X5xktKnZeIAkdNbdl1l40QAvV0ofInSXzAo3Wg,2400
|
|
67
|
-
tableauserverclient/server/endpoint/endpoint.py,sha256=GeuYReKwBlLCmGJTv2QTTDTJh0vJZ1_Ha_NUO__mWT8,10157
|
|
68
|
-
tableauserverclient/server/endpoint/exceptions.py,sha256=J3f8w8w6l3xLSDDj_jztDuQcsIeTiS2nNV3YzV94oMg,2606
|
|
69
|
-
tableauserverclient/server/endpoint/favorites_endpoint.py,sha256=rrtAfnzH7DvdzsqYu2f_pdfn0OjQEQ3pjz6CLzKZ-Gg,4910
|
|
70
|
-
tableauserverclient/server/endpoint/fileuploads_endpoint.py,sha256=8HX8cPnB8bb20hKXumSuckr2HfcG7ReXH4K1ctOFvjM,2313
|
|
71
|
-
tableauserverclient/server/endpoint/flow_runs_endpoint.py,sha256=CZb5z-1bhxQYX6QT13nxYVXrWCIzCCUELJpAvFTz-Ig,3339
|
|
72
|
-
tableauserverclient/server/endpoint/flows_endpoint.py,sha256=KimWd5uMbRc9tEM4UH4zp1TXQMSwipEHGLfNIgD61RA,12795
|
|
73
|
-
tableauserverclient/server/endpoint/groups_endpoint.py,sha256=x3eYiH6GhYP1KZGfvYvzx-fYDApVoAYUUXXQZaxHbSk,6569
|
|
74
|
-
tableauserverclient/server/endpoint/jobs_endpoint.py,sha256=XV-Px-4G-BWBPtGRPLJC3q4n9OY5NOxgJhDod3tct5k,3236
|
|
75
|
-
tableauserverclient/server/endpoint/metadata_endpoint.py,sha256=snMYZzzO5j4czhcT9fZOtafB3pj-KXs9jyt0P8S7Oms,5204
|
|
76
|
-
tableauserverclient/server/endpoint/metrics_endpoint.py,sha256=l5tiXIWrXRSeq0std9ZDWjzucrKWNUqAqU7ZbrOLxXA,3264
|
|
77
|
-
tableauserverclient/server/endpoint/permissions_endpoint.py,sha256=cmBZ3x7XgnYfxS7ZwqtgcXlAhCEmiHcWWprxwXdHQrg,3861
|
|
78
|
-
tableauserverclient/server/endpoint/projects_endpoint.py,sha256=uRWhDfwH8eskLq8qpoYPlA8VaG9OZi4Jlvbl684yC34,7203
|
|
79
|
-
tableauserverclient/server/endpoint/resource_tagger.py,sha256=5Zf-WBeWbKp0lYeEqytdd-P1wuG3_Q57UZu2dfMVTgQ,2247
|
|
80
|
-
tableauserverclient/server/endpoint/schedules_endpoint.py,sha256=P1JzBT-c7jQoCoqxRQ39JrT_i1Xk3Bba8cVupMnJ5Us,6463
|
|
81
|
-
tableauserverclient/server/endpoint/server_info_endpoint.py,sha256=9BZK04KMpQyrin8ybS4LXY-6kIhbnCFbRtf_vKp2Lxc,1493
|
|
82
|
-
tableauserverclient/server/endpoint/sites_endpoint.py,sha256=cg_xE6P8uzSevXrBCiA6q1PgrgRbMaxRHCCwcE4YW8w,6692
|
|
83
|
-
tableauserverclient/server/endpoint/subscriptions_endpoint.py,sha256=Rdl9-1Lzc2GaJi-Sf6M4DYd8QMpv5UipmGbOO4L16K0,3286
|
|
84
|
-
tableauserverclient/server/endpoint/tables_endpoint.py,sha256=gbqtXa3AGTdudBsz4_euB9_JtcaI7kBx3s_QTu0I3oY,5375
|
|
85
|
-
tableauserverclient/server/endpoint/tasks_endpoint.py,sha256=NY23HzVVpV58TUsgZOWoOEORyG6tI8WW0nG-U0gMLlw,3152
|
|
86
|
-
tableauserverclient/server/endpoint/users_endpoint.py,sha256=-PAHjqpTfaC9DHYJ6Atsh7iefvS9KcfFgj4N5HwDdWc,7272
|
|
87
|
-
tableauserverclient/server/endpoint/views_endpoint.py,sha256=zspyFd_0O-AACWfYfiJ1YSISLEO-sTuiL-Vp3u2U-UU,7116
|
|
88
|
-
tableauserverclient/server/endpoint/webhooks_endpoint.py,sha256=LodBt0sVq9Gdc26VR6P4VNnP1XCZJlUKtBYQLnKpIK0,2836
|
|
89
|
-
tableauserverclient/server/endpoint/workbooks_endpoint.py,sha256=p6YeUyzJhfZPfAmMfuo-84P4-SNaqzky0TcvIyOZDQU,21698
|
|
90
|
-
tableauserverclient-0.25.dist-info/LICENSE,sha256=MMkY7MguOb4L-WCmmqrVcwg2iwSGaz-RfAMFvXRXwsQ,1074
|
|
91
|
-
tableauserverclient-0.25.dist-info/LICENSE.versioneer,sha256=OYaGozOXk7bUNSm1z577iDYpti8a40XIqqR4lyQ47D8,334
|
|
92
|
-
tableauserverclient-0.25.dist-info/METADATA,sha256=KpkrP0T-cxODEr26xqRrpXN18ILCJSVYbFr96ifTcn0,3977
|
|
93
|
-
tableauserverclient-0.25.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
94
|
-
tableauserverclient-0.25.dist-info/top_level.txt,sha256=kBnL39G2RlGqxJSsShDBWG4WZ3NFcWJkv1EGiOfZh4Q,20
|
|
95
|
-
tableauserverclient-0.25.dist-info/RECORD,,
|
{tableauserverclient-0.25.dist-info → tableauserverclient-0.27.post0.dev1.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
{tableauserverclient-0.25.dist-info → tableauserverclient-0.27.post0.dev1.dist-info}/top_level.txt
RENAMED
|
File without changes
|