|
27 | 27 | from amundsen_rds.models.updated_timestamp import UpdatedTimestamp |
28 | 28 | from amundsen_rds.models.user import User |
29 | 29 |
|
30 | | -__all__ = [ |
31 | | - 'Application', 'ApplicationTable', 'Badge', 'Cluster', |
32 | | - 'TableColumn', 'ColumnBadge', 'ColumnDescription', 'ColumnStat', |
33 | | - 'Dashboard', 'DashboardBadge', 'DashboardChart', 'DashboardCluster', |
34 | | - 'DashboardDescription', 'DashboardExecution', 'DashboardFollower', 'DashboardGroup', |
35 | | - 'DashboardGroupDescription', 'DashboardOwner', 'DashboardQuery', 'DashboardTable', |
36 | | - 'DashboardTag', 'DashboardTimestamp', 'DashboardUsage', 'Database', |
37 | | - 'Schema', 'SchemaDescription', 'SchemaProgrammaticDescription', 'Table', |
38 | | - 'TableBadge', 'TableDescription', 'TableFollower', 'TableOwner', |
39 | | - 'TableProgrammaticDescription', 'TableSource', 'TableTag', 'TableTimestamp', |
40 | | - 'TableUsage', 'TableWatermark', 'Tag', 'UpdatedTimestamp', |
41 | | - 'User' |
42 | | -] |
| 30 | +RDSModel = Union[Application, ApplicationTable, Badge, Cluster, |
| 31 | + TableColumn, ColumnBadge, ColumnDescription, ColumnStat, |
| 32 | + Dashboard, DashboardBadge, DashboardChart, DashboardCluster, |
| 33 | + DashboardDescription, DashboardExecution, DashboardFollower, DashboardGroup, |
| 34 | + DashboardGroupDescription, DashboardOwner, DashboardQuery, DashboardTable, |
| 35 | + DashboardTag, DashboardTimestamp, DashboardUsage, Database, |
| 36 | + Schema, SchemaDescription, SchemaProgrammaticDescription, Table, |
| 37 | + TableBadge, TableDescription, TableFollower, TableOwner, |
| 38 | + TableProgrammaticDescription, TableSource, TableTag, TableTimestamp, |
| 39 | + TableUsage, TableWatermark, Tag, UpdatedTimestamp, |
| 40 | + User] |
43 | 41 |
|
44 | | -RDSModel = Union[ |
| 42 | +__all__ = [ |
45 | 43 | 'Application', 'ApplicationTable', 'Badge', 'Cluster', |
46 | 44 | 'TableColumn', 'ColumnBadge', 'ColumnDescription', 'ColumnStat', |
47 | 45 | 'Dashboard', 'DashboardBadge', 'DashboardChart', 'DashboardCluster', |
|
52 | 50 | 'TableBadge', 'TableDescription', 'TableFollower', 'TableOwner', |
53 | 51 | 'TableProgrammaticDescription', 'TableSource', 'TableTag', 'TableTimestamp', |
54 | 52 | 'TableUsage', 'TableWatermark', 'Tag', 'UpdatedTimestamp', |
55 | | - 'User' |
| 53 | + 'User', 'RDSModel' |
56 | 54 | ] |
0 commit comments