|
27 | 27 | UpdateHiveAuthSchema, |
28 | 28 | UpdateHiveConnectionSchema, |
29 | 29 | ) |
| 30 | +from syncmaster.schemas.v1.connections.mssql import ( |
| 31 | + CreateMSSQLAuthSchema, |
| 32 | + CreateMSSQLConnectionSchema, |
| 33 | + ReadMSSQLAuthSchema, |
| 34 | + ReadMSSQLConnectionSchema, |
| 35 | + UpdateMSSQLAuthSchema, |
| 36 | + UpdateMSSQLConnectionSchema, |
| 37 | +) |
30 | 38 | from syncmaster.schemas.v1.connections.oracle import ( |
31 | 39 | CreateOracleAuthSchema, |
32 | 40 | CreateOracleConnectionSchema, |
|
60 | 68 | | ReadOracleConnectionSchema |
61 | 69 | | ReadPostgresConnectionSchema |
62 | 70 | | ReadClickhouseConnectionSchema |
| 71 | + | ReadMSSQLConnectionSchema |
63 | 72 | | S3ReadConnectionSchema |
64 | 73 | ) |
65 | 74 | CreateConnectionDataSchema = ( |
66 | 75 | CreateHiveConnectionSchema |
67 | 76 | | CreateOracleConnectionSchema |
68 | 77 | | CreatePostgresConnectionSchema |
69 | 78 | | CreateClickhouseConnectionSchema |
| 79 | + | CreateMSSQLConnectionSchema |
70 | 80 | | HDFSCreateConnectionSchema |
71 | 81 | | S3CreateConnectionSchema |
72 | 82 | ) |
|
77 | 87 | | UpdateOracleConnectionSchema |
78 | 88 | | UpdatePostgresConnectionSchema |
79 | 89 | | UpdateClickhouseConnectionSchema |
| 90 | + | UpdateMSSQLConnectionSchema |
80 | 91 | ) |
81 | 92 | ReadConnectionAuthDataSchema = ( |
82 | 93 | ReadHiveAuthSchema |
83 | 94 | | ReadOracleAuthSchema |
84 | 95 | | ReadPostgresAuthSchema |
85 | 96 | | ReadClickhouseAuthSchema |
| 97 | + | ReadMSSQLAuthSchema |
86 | 98 | | S3ReadAuthSchema |
87 | 99 | | HDFSReadAuthSchema |
88 | 100 | ) |
|
91 | 103 | | CreateOracleAuthSchema |
92 | 104 | | CreatePostgresAuthSchema |
93 | 105 | | CreateClickhouseAuthSchema |
| 106 | + | CreateMSSQLAuthSchema |
94 | 107 | | S3CreateAuthSchema |
95 | 108 | | HDFSCreateAuthSchema |
96 | 109 | ) |
|
99 | 112 | | UpdateOracleAuthSchema |
100 | 113 | | UpdatePostgresAuthSchema |
101 | 114 | | UpdateClickhouseAuthSchema |
| 115 | + | UpdateMSSQLAuthSchema |
102 | 116 | | S3UpdateAuthSchema |
103 | 117 | | HDFSUpdateAuthSchema |
104 | 118 | ) |
|
0 commit comments