-
Notifications
You must be signed in to change notification settings - Fork 447
Expand file tree
/
Copy path_models.py
More file actions
37 lines (34 loc) · 1007 Bytes
/
_models.py
File metadata and controls
37 lines (34 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from tableauserverclient import *
# TODO why aren't these available in the tsc namespace? Probably a bug.
from tableauserverclient.models import (
DataAccelerationReportItem,
Credentials,
ServerInfoItem,
Resource,
TableauItem,
)
def get_unimplemented_models():
return [
# these items should have repr, please fix
CollectionItem,
DQWItem,
ExtensionsServer,
ExtensionsSiteSettings,
FileuploadItem,
FlowRunItem,
LinkedTaskFlowRunItem,
LinkedTaskItem,
LinkedTaskStepItem,
SafeExtension,
# these should be implemented together for consistency
CSVRequestOptions,
ExcelRequestOptions,
ImageRequestOptions,
PDFRequestOptions,
PPTXRequestOptions,
RequestOptions,
# these don't need it
FavoriteItem, # no repr because there is no state
Resource, # list of type names
TableauItem, # should be an interface
]