|
| 1 | +import { DatabaseType } from "./enums/database-type" |
1 | 2 | import { AttributeStatus } from "./enums/attribute-status" |
| 3 | +import { ColumnStatus } from "./enums/column-status" |
2 | 4 | import { IndexStatus } from "./enums/index-status" |
3 | 5 | import { DeploymentStatus } from "./enums/deployment-status" |
4 | 6 | import { ExecutionTrigger } from "./enums/execution-trigger" |
@@ -531,7 +533,7 @@ export namespace Models { |
531 | 533 | /** |
532 | 534 | * Database type. |
533 | 535 | */ |
534 | | - type: string; |
| 536 | + type: DatabaseType; |
535 | 537 | } |
536 | 538 |
|
537 | 539 | /** |
@@ -1283,7 +1285,7 @@ export namespace Models { |
1283 | 1285 | /** |
1284 | 1286 | * Column status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed` |
1285 | 1287 | */ |
1286 | | - status: string; |
| 1288 | + status: ColumnStatus; |
1287 | 1289 | /** |
1288 | 1290 | * Error message. Displays error generated on failure of creating or deleting an column. |
1289 | 1291 | */ |
@@ -1333,7 +1335,7 @@ export namespace Models { |
1333 | 1335 | /** |
1334 | 1336 | * Column status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed` |
1335 | 1337 | */ |
1336 | | - status: string; |
| 1338 | + status: ColumnStatus; |
1337 | 1339 | /** |
1338 | 1340 | * Error message. Displays error generated on failure of creating or deleting an column. |
1339 | 1341 | */ |
@@ -1383,7 +1385,7 @@ export namespace Models { |
1383 | 1385 | /** |
1384 | 1386 | * Column status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed` |
1385 | 1387 | */ |
1386 | | - status: string; |
| 1388 | + status: ColumnStatus; |
1387 | 1389 | /** |
1388 | 1390 | * Error message. Displays error generated on failure of creating or deleting an column. |
1389 | 1391 | */ |
@@ -1433,7 +1435,7 @@ export namespace Models { |
1433 | 1435 | /** |
1434 | 1436 | * Column status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed` |
1435 | 1437 | */ |
1436 | | - status: string; |
| 1438 | + status: ColumnStatus; |
1437 | 1439 | /** |
1438 | 1440 | * Error message. Displays error generated on failure of creating or deleting an column. |
1439 | 1441 | */ |
@@ -1475,7 +1477,7 @@ export namespace Models { |
1475 | 1477 | /** |
1476 | 1478 | * Column status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed` |
1477 | 1479 | */ |
1478 | | - status: string; |
| 1480 | + status: ColumnStatus; |
1479 | 1481 | /** |
1480 | 1482 | * Error message. Displays error generated on failure of creating or deleting an column. |
1481 | 1483 | */ |
@@ -1521,7 +1523,7 @@ export namespace Models { |
1521 | 1523 | /** |
1522 | 1524 | * Column status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed` |
1523 | 1525 | */ |
1524 | | - status: string; |
| 1526 | + status: ColumnStatus; |
1525 | 1527 | /** |
1526 | 1528 | * Error message. Displays error generated on failure of creating or deleting an column. |
1527 | 1529 | */ |
@@ -1571,7 +1573,7 @@ export namespace Models { |
1571 | 1573 | /** |
1572 | 1574 | * Column status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed` |
1573 | 1575 | */ |
1574 | | - status: string; |
| 1576 | + status: ColumnStatus; |
1575 | 1577 | /** |
1576 | 1578 | * Error message. Displays error generated on failure of creating or deleting an column. |
1577 | 1579 | */ |
@@ -1617,7 +1619,7 @@ export namespace Models { |
1617 | 1619 | /** |
1618 | 1620 | * Column status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed` |
1619 | 1621 | */ |
1620 | | - status: string; |
| 1622 | + status: ColumnStatus; |
1621 | 1623 | /** |
1622 | 1624 | * Error message. Displays error generated on failure of creating or deleting an column. |
1623 | 1625 | */ |
@@ -1663,7 +1665,7 @@ export namespace Models { |
1663 | 1665 | /** |
1664 | 1666 | * Column status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed` |
1665 | 1667 | */ |
1666 | | - status: string; |
| 1668 | + status: ColumnStatus; |
1667 | 1669 | /** |
1668 | 1670 | * Error message. Displays error generated on failure of creating or deleting an column. |
1669 | 1671 | */ |
@@ -1709,7 +1711,7 @@ export namespace Models { |
1709 | 1711 | /** |
1710 | 1712 | * Column status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed` |
1711 | 1713 | */ |
1712 | | - status: string; |
| 1714 | + status: ColumnStatus; |
1713 | 1715 | /** |
1714 | 1716 | * Error message. Displays error generated on failure of creating or deleting an column. |
1715 | 1717 | */ |
@@ -1771,7 +1773,7 @@ export namespace Models { |
1771 | 1773 | /** |
1772 | 1774 | * Column status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed` |
1773 | 1775 | */ |
1774 | | - status: string; |
| 1776 | + status: ColumnStatus; |
1775 | 1777 | /** |
1776 | 1778 | * Error message. Displays error generated on failure of creating or deleting an column. |
1777 | 1779 | */ |
@@ -1813,7 +1815,7 @@ export namespace Models { |
1813 | 1815 | /** |
1814 | 1816 | * Column status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed` |
1815 | 1817 | */ |
1816 | | - status: string; |
| 1818 | + status: ColumnStatus; |
1817 | 1819 | /** |
1818 | 1820 | * Error message. Displays error generated on failure of creating or deleting an column. |
1819 | 1821 | */ |
@@ -1855,7 +1857,7 @@ export namespace Models { |
1855 | 1857 | /** |
1856 | 1858 | * Column status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed` |
1857 | 1859 | */ |
1858 | | - status: string; |
| 1860 | + status: ColumnStatus; |
1859 | 1861 | /** |
1860 | 1862 | * Error message. Displays error generated on failure of creating or deleting an column. |
1861 | 1863 | */ |
|
0 commit comments