-
Notifications
You must be signed in to change notification settings - Fork 442
Expand file tree
/
Copy path_models.py
More file actions
61 lines (58 loc) · 1.3 KB
/
Copy path_models.py
File metadata and controls
61 lines (58 loc) · 1.3 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from tableauserverclient import *
# mmm. why aren't these available in the tsc namespace?
from tableauserverclient.models import (
DataAccelerationReportItem,
FavoriteItem,
Credentials,
ServerInfoItem,
Resource,
TableauItem,
plural_type,
)
def get_defined_models():
# not clever: copied from tsc/models/__init__.py
return [
ColumnItem,
ConnectionCredentials,
ConnectionItem,
DataAccelerationReportItem,
DataAlertItem,
DatabaseItem,
DatasourceItem,
DQWItem,
UnpopulatedPropertyError,
FavoriteItem,
FlowItem,
FlowRunItem,
GroupItem,
IntervalItem,
DailyInterval,
WeeklyInterval,
MonthlyInterval,
HourlyInterval,
JobItem,
BackgroundJobItem,
MetricItem,
PaginationItem,
PermissionsRule,
Permission,
ProjectItem,
RevisionItem,
ScheduleItem,
ServerInfoItem,
SiteItem,
SubscriptionItem,
TableItem,
Credentials,
TableauAuth,
PersonalAccessTokenAuth,
Resource,
TableauItem,
plural_type,
Target,
TaskItem,
UserItem,
ViewItem,
WebhookItem,
WorkbookItem,
]