qovery-ws-typescript-axios 0.1.418 → 0.1.420
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.ts +91 -2
- package/dist/api.d.ts +79 -2
- package/dist/api.js +27 -1
- package/dist/esm/api.d.ts +79 -2
- package/dist/esm/api.js +25 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -567,10 +567,10 @@ export interface EnvironmentStatusDto {
|
|
|
567
567
|
'state': ServiceStateDto;
|
|
568
568
|
/**
|
|
569
569
|
*
|
|
570
|
-
* @type {Array<
|
|
570
|
+
* @type {Array<TerraformStatusDto>}
|
|
571
571
|
* @memberof EnvironmentStatusDto
|
|
572
572
|
*/
|
|
573
|
-
'terraform': Array<
|
|
573
|
+
'terraform': Array<TerraformStatusDto>;
|
|
574
574
|
}
|
|
575
575
|
|
|
576
576
|
|
|
@@ -1575,6 +1575,44 @@ export const ResourceStatusDto = {
|
|
|
1575
1575
|
export type ResourceStatusDto = typeof ResourceStatusDto[keyof typeof ResourceStatusDto];
|
|
1576
1576
|
|
|
1577
1577
|
|
|
1578
|
+
/**
|
|
1579
|
+
*
|
|
1580
|
+
* @export
|
|
1581
|
+
* @interface ServiceActionDetailsDto
|
|
1582
|
+
*/
|
|
1583
|
+
export interface ServiceActionDetailsDto {
|
|
1584
|
+
/**
|
|
1585
|
+
*
|
|
1586
|
+
* @type {ServiceActionDto}
|
|
1587
|
+
* @memberof ServiceActionDetailsDto
|
|
1588
|
+
*/
|
|
1589
|
+
'action': ServiceActionDto;
|
|
1590
|
+
/**
|
|
1591
|
+
*
|
|
1592
|
+
* @type {ServiceSubActionDto}
|
|
1593
|
+
* @memberof ServiceActionDetailsDto
|
|
1594
|
+
*/
|
|
1595
|
+
'sub_action': ServiceSubActionDto;
|
|
1596
|
+
}
|
|
1597
|
+
|
|
1598
|
+
|
|
1599
|
+
/**
|
|
1600
|
+
*
|
|
1601
|
+
* @export
|
|
1602
|
+
* @enum {string}
|
|
1603
|
+
*/
|
|
1604
|
+
|
|
1605
|
+
export const ServiceActionDto = {
|
|
1606
|
+
DEPLOY: 'DEPLOY',
|
|
1607
|
+
RESTART: 'RESTART',
|
|
1608
|
+
STOP: 'STOP',
|
|
1609
|
+
DELETE: 'DELETE',
|
|
1610
|
+
DELETE_RESOURCES_ONLY: 'DELETE_RESOURCES_ONLY'
|
|
1611
|
+
} as const;
|
|
1612
|
+
|
|
1613
|
+
export type ServiceActionDto = typeof ServiceActionDto[keyof typeof ServiceActionDto];
|
|
1614
|
+
|
|
1615
|
+
|
|
1578
1616
|
/**
|
|
1579
1617
|
*
|
|
1580
1618
|
* @export
|
|
@@ -1744,6 +1782,24 @@ export interface ServiceStatusDto {
|
|
|
1744
1782
|
*/
|
|
1745
1783
|
'environments': Array<EnvironmentStatusDto>;
|
|
1746
1784
|
}
|
|
1785
|
+
/**
|
|
1786
|
+
*
|
|
1787
|
+
* @export
|
|
1788
|
+
* @enum {string}
|
|
1789
|
+
*/
|
|
1790
|
+
|
|
1791
|
+
export const ServiceSubActionDto = {
|
|
1792
|
+
NONE: 'NONE',
|
|
1793
|
+
TERRAFORM_PLAN_ONLY: 'TERRAFORM_PLAN_ONLY',
|
|
1794
|
+
TERRAFORM_PLAN_AND_APPLY: 'TERRAFORM_PLAN_AND_APPLY',
|
|
1795
|
+
TERRAFORM_DESTROY: 'TERRAFORM_DESTROY',
|
|
1796
|
+
TERRAFORM_FORCE_UNLOCK_STATE: 'TERRAFORM_FORCE_UNLOCK_STATE',
|
|
1797
|
+
TERRAFORM_MIGRATE_STATE: 'TERRAFORM_MIGRATE_STATE'
|
|
1798
|
+
} as const;
|
|
1799
|
+
|
|
1800
|
+
export type ServiceSubActionDto = typeof ServiceSubActionDto[keyof typeof ServiceSubActionDto];
|
|
1801
|
+
|
|
1802
|
+
|
|
1747
1803
|
/**
|
|
1748
1804
|
*
|
|
1749
1805
|
* @export
|
|
@@ -1762,6 +1818,39 @@ export const ServiceType = {
|
|
|
1762
1818
|
export type ServiceType = typeof ServiceType[keyof typeof ServiceType];
|
|
1763
1819
|
|
|
1764
1820
|
|
|
1821
|
+
/**
|
|
1822
|
+
*
|
|
1823
|
+
* @export
|
|
1824
|
+
* @interface TerraformStatusDto
|
|
1825
|
+
*/
|
|
1826
|
+
export interface TerraformStatusDto {
|
|
1827
|
+
/**
|
|
1828
|
+
*
|
|
1829
|
+
* @type {string}
|
|
1830
|
+
* @memberof TerraformStatusDto
|
|
1831
|
+
*/
|
|
1832
|
+
'id': string;
|
|
1833
|
+
/**
|
|
1834
|
+
*
|
|
1835
|
+
* @type {Array<PodStatusDto>}
|
|
1836
|
+
* @memberof TerraformStatusDto
|
|
1837
|
+
*/
|
|
1838
|
+
'pods': Array<PodStatusDto>;
|
|
1839
|
+
/**
|
|
1840
|
+
*
|
|
1841
|
+
* @type {ServiceStateDto}
|
|
1842
|
+
* @memberof TerraformStatusDto
|
|
1843
|
+
*/
|
|
1844
|
+
'state': ServiceStateDto;
|
|
1845
|
+
/**
|
|
1846
|
+
*
|
|
1847
|
+
* @type {ServiceActionDetailsDto}
|
|
1848
|
+
* @memberof TerraformStatusDto
|
|
1849
|
+
*/
|
|
1850
|
+
'triggered_action': ServiceActionDetailsDto;
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
|
|
1765
1854
|
/**
|
|
1766
1855
|
*
|
|
1767
1856
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -545,10 +545,10 @@ export interface EnvironmentStatusDto {
|
|
|
545
545
|
'state': ServiceStateDto;
|
|
546
546
|
/**
|
|
547
547
|
*
|
|
548
|
-
* @type {Array<
|
|
548
|
+
* @type {Array<TerraformStatusDto>}
|
|
549
549
|
* @memberof EnvironmentStatusDto
|
|
550
550
|
*/
|
|
551
|
-
'terraform': Array<
|
|
551
|
+
'terraform': Array<TerraformStatusDto>;
|
|
552
552
|
}
|
|
553
553
|
/**
|
|
554
554
|
*
|
|
@@ -1537,6 +1537,38 @@ export declare const ResourceStatusDto: {
|
|
|
1537
1537
|
readonly ALERT: "ALERT";
|
|
1538
1538
|
};
|
|
1539
1539
|
export type ResourceStatusDto = typeof ResourceStatusDto[keyof typeof ResourceStatusDto];
|
|
1540
|
+
/**
|
|
1541
|
+
*
|
|
1542
|
+
* @export
|
|
1543
|
+
* @interface ServiceActionDetailsDto
|
|
1544
|
+
*/
|
|
1545
|
+
export interface ServiceActionDetailsDto {
|
|
1546
|
+
/**
|
|
1547
|
+
*
|
|
1548
|
+
* @type {ServiceActionDto}
|
|
1549
|
+
* @memberof ServiceActionDetailsDto
|
|
1550
|
+
*/
|
|
1551
|
+
'action': ServiceActionDto;
|
|
1552
|
+
/**
|
|
1553
|
+
*
|
|
1554
|
+
* @type {ServiceSubActionDto}
|
|
1555
|
+
* @memberof ServiceActionDetailsDto
|
|
1556
|
+
*/
|
|
1557
|
+
'sub_action': ServiceSubActionDto;
|
|
1558
|
+
}
|
|
1559
|
+
/**
|
|
1560
|
+
*
|
|
1561
|
+
* @export
|
|
1562
|
+
* @enum {string}
|
|
1563
|
+
*/
|
|
1564
|
+
export declare const ServiceActionDto: {
|
|
1565
|
+
readonly DEPLOY: "DEPLOY";
|
|
1566
|
+
readonly RESTART: "RESTART";
|
|
1567
|
+
readonly STOP: "STOP";
|
|
1568
|
+
readonly DELETE: "DELETE";
|
|
1569
|
+
readonly DELETE_RESOURCES_ONLY: "DELETE_RESOURCES_ONLY";
|
|
1570
|
+
};
|
|
1571
|
+
export type ServiceActionDto = typeof ServiceActionDto[keyof typeof ServiceActionDto];
|
|
1540
1572
|
/**
|
|
1541
1573
|
*
|
|
1542
1574
|
* @export
|
|
@@ -1704,6 +1736,20 @@ export interface ServiceStatusDto {
|
|
|
1704
1736
|
*/
|
|
1705
1737
|
'environments': Array<EnvironmentStatusDto>;
|
|
1706
1738
|
}
|
|
1739
|
+
/**
|
|
1740
|
+
*
|
|
1741
|
+
* @export
|
|
1742
|
+
* @enum {string}
|
|
1743
|
+
*/
|
|
1744
|
+
export declare const ServiceSubActionDto: {
|
|
1745
|
+
readonly NONE: "NONE";
|
|
1746
|
+
readonly TERRAFORM_PLAN_ONLY: "TERRAFORM_PLAN_ONLY";
|
|
1747
|
+
readonly TERRAFORM_PLAN_AND_APPLY: "TERRAFORM_PLAN_AND_APPLY";
|
|
1748
|
+
readonly TERRAFORM_DESTROY: "TERRAFORM_DESTROY";
|
|
1749
|
+
readonly TERRAFORM_FORCE_UNLOCK_STATE: "TERRAFORM_FORCE_UNLOCK_STATE";
|
|
1750
|
+
readonly TERRAFORM_MIGRATE_STATE: "TERRAFORM_MIGRATE_STATE";
|
|
1751
|
+
};
|
|
1752
|
+
export type ServiceSubActionDto = typeof ServiceSubActionDto[keyof typeof ServiceSubActionDto];
|
|
1707
1753
|
/**
|
|
1708
1754
|
*
|
|
1709
1755
|
* @export
|
|
@@ -1718,6 +1764,37 @@ export declare const ServiceType: {
|
|
|
1718
1764
|
readonly TERRAFORM: "TERRAFORM";
|
|
1719
1765
|
};
|
|
1720
1766
|
export type ServiceType = typeof ServiceType[keyof typeof ServiceType];
|
|
1767
|
+
/**
|
|
1768
|
+
*
|
|
1769
|
+
* @export
|
|
1770
|
+
* @interface TerraformStatusDto
|
|
1771
|
+
*/
|
|
1772
|
+
export interface TerraformStatusDto {
|
|
1773
|
+
/**
|
|
1774
|
+
*
|
|
1775
|
+
* @type {string}
|
|
1776
|
+
* @memberof TerraformStatusDto
|
|
1777
|
+
*/
|
|
1778
|
+
'id': string;
|
|
1779
|
+
/**
|
|
1780
|
+
*
|
|
1781
|
+
* @type {Array<PodStatusDto>}
|
|
1782
|
+
* @memberof TerraformStatusDto
|
|
1783
|
+
*/
|
|
1784
|
+
'pods': Array<PodStatusDto>;
|
|
1785
|
+
/**
|
|
1786
|
+
*
|
|
1787
|
+
* @type {ServiceStateDto}
|
|
1788
|
+
* @memberof TerraformStatusDto
|
|
1789
|
+
*/
|
|
1790
|
+
'state': ServiceStateDto;
|
|
1791
|
+
/**
|
|
1792
|
+
*
|
|
1793
|
+
* @type {ServiceActionDetailsDto}
|
|
1794
|
+
* @memberof TerraformStatusDto
|
|
1795
|
+
*/
|
|
1796
|
+
'triggered_action': ServiceActionDetailsDto;
|
|
1797
|
+
}
|
|
1721
1798
|
/**
|
|
1722
1799
|
*
|
|
1723
1800
|
* @export
|
package/dist/api.js
CHANGED
|
@@ -22,7 +22,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.
|
|
25
|
+
exports.ShellApiFactory = exports.ShellApiFp = exports.ShellApiAxiosParamCreator = exports.ServiceStatusApi = exports.ServiceStatusApiFactory = exports.ServiceStatusApiFp = exports.ServiceStatusApiAxiosParamCreator = exports.ServiceMetricsApi = exports.ServiceMetricsApiFactory = exports.ServiceMetricsApiFp = exports.ServiceMetricsApiAxiosParamCreator = exports.ServiceListPodsApi = exports.ServiceListPodsApiFactory = exports.ServiceListPodsApiFp = exports.ServiceListPodsApiAxiosParamCreator = exports.RemoteDebugApi = exports.RemoteDebugApiFactory = exports.RemoteDebugApiFp = exports.RemoteDebugApiAxiosParamCreator = exports.LogsApi = exports.LogsApiFactory = exports.LogsApiFp = exports.LogsApiAxiosParamCreator = exports.DeploymentApi = exports.DeploymentApiFactory = exports.DeploymentApiFp = exports.DeploymentApiAxiosParamCreator = exports.ClusterStatusApi = exports.ClusterStatusApiFactory = exports.ClusterStatusApiFp = exports.ClusterStatusApiAxiosParamCreator = exports.ClusterMetricsApi = exports.ClusterMetricsApiFactory = exports.ClusterMetricsApiFp = exports.ClusterMetricsApiAxiosParamCreator = exports.ClusterListNodesApi = exports.ClusterListNodesApiFactory = exports.ClusterListNodesApiFp = exports.ClusterListNodesApiAxiosParamCreator = exports.UnitDto = exports.ServiceType = exports.ServiceSubActionDto = exports.ServiceStateDto = exports.ServiceActionDto = exports.ResourceStatusDto = exports.QoveryComponentStatus = exports.QoveryComponentContainerStatusLevel = exports.PodStatusPhase = exports.DebugFlavor = exports.ClusterStatusGlobalStatus = void 0;
|
|
26
|
+
exports.ShellApi = void 0;
|
|
26
27
|
const axios_1 = require("axios");
|
|
27
28
|
// Some imports not used depending on template conditions
|
|
28
29
|
// @ts-ignore
|
|
@@ -88,6 +89,18 @@ exports.ResourceStatusDto = {
|
|
|
88
89
|
WARNING: 'WARNING',
|
|
89
90
|
ALERT: 'ALERT'
|
|
90
91
|
};
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @export
|
|
95
|
+
* @enum {string}
|
|
96
|
+
*/
|
|
97
|
+
exports.ServiceActionDto = {
|
|
98
|
+
DEPLOY: 'DEPLOY',
|
|
99
|
+
RESTART: 'RESTART',
|
|
100
|
+
STOP: 'STOP',
|
|
101
|
+
DELETE: 'DELETE',
|
|
102
|
+
DELETE_RESOURCES_ONLY: 'DELETE_RESOURCES_ONLY'
|
|
103
|
+
};
|
|
91
104
|
/**
|
|
92
105
|
*
|
|
93
106
|
* @export
|
|
@@ -102,6 +115,19 @@ exports.ServiceStateDto = {
|
|
|
102
115
|
COMPLETED: 'COMPLETED',
|
|
103
116
|
WARNING: 'WARNING'
|
|
104
117
|
};
|
|
118
|
+
/**
|
|
119
|
+
*
|
|
120
|
+
* @export
|
|
121
|
+
* @enum {string}
|
|
122
|
+
*/
|
|
123
|
+
exports.ServiceSubActionDto = {
|
|
124
|
+
NONE: 'NONE',
|
|
125
|
+
TERRAFORM_PLAN_ONLY: 'TERRAFORM_PLAN_ONLY',
|
|
126
|
+
TERRAFORM_PLAN_AND_APPLY: 'TERRAFORM_PLAN_AND_APPLY',
|
|
127
|
+
TERRAFORM_DESTROY: 'TERRAFORM_DESTROY',
|
|
128
|
+
TERRAFORM_FORCE_UNLOCK_STATE: 'TERRAFORM_FORCE_UNLOCK_STATE',
|
|
129
|
+
TERRAFORM_MIGRATE_STATE: 'TERRAFORM_MIGRATE_STATE'
|
|
130
|
+
};
|
|
105
131
|
/**
|
|
106
132
|
*
|
|
107
133
|
* @export
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -545,10 +545,10 @@ export interface EnvironmentStatusDto {
|
|
|
545
545
|
'state': ServiceStateDto;
|
|
546
546
|
/**
|
|
547
547
|
*
|
|
548
|
-
* @type {Array<
|
|
548
|
+
* @type {Array<TerraformStatusDto>}
|
|
549
549
|
* @memberof EnvironmentStatusDto
|
|
550
550
|
*/
|
|
551
|
-
'terraform': Array<
|
|
551
|
+
'terraform': Array<TerraformStatusDto>;
|
|
552
552
|
}
|
|
553
553
|
/**
|
|
554
554
|
*
|
|
@@ -1537,6 +1537,38 @@ export declare const ResourceStatusDto: {
|
|
|
1537
1537
|
readonly ALERT: "ALERT";
|
|
1538
1538
|
};
|
|
1539
1539
|
export type ResourceStatusDto = typeof ResourceStatusDto[keyof typeof ResourceStatusDto];
|
|
1540
|
+
/**
|
|
1541
|
+
*
|
|
1542
|
+
* @export
|
|
1543
|
+
* @interface ServiceActionDetailsDto
|
|
1544
|
+
*/
|
|
1545
|
+
export interface ServiceActionDetailsDto {
|
|
1546
|
+
/**
|
|
1547
|
+
*
|
|
1548
|
+
* @type {ServiceActionDto}
|
|
1549
|
+
* @memberof ServiceActionDetailsDto
|
|
1550
|
+
*/
|
|
1551
|
+
'action': ServiceActionDto;
|
|
1552
|
+
/**
|
|
1553
|
+
*
|
|
1554
|
+
* @type {ServiceSubActionDto}
|
|
1555
|
+
* @memberof ServiceActionDetailsDto
|
|
1556
|
+
*/
|
|
1557
|
+
'sub_action': ServiceSubActionDto;
|
|
1558
|
+
}
|
|
1559
|
+
/**
|
|
1560
|
+
*
|
|
1561
|
+
* @export
|
|
1562
|
+
* @enum {string}
|
|
1563
|
+
*/
|
|
1564
|
+
export declare const ServiceActionDto: {
|
|
1565
|
+
readonly DEPLOY: "DEPLOY";
|
|
1566
|
+
readonly RESTART: "RESTART";
|
|
1567
|
+
readonly STOP: "STOP";
|
|
1568
|
+
readonly DELETE: "DELETE";
|
|
1569
|
+
readonly DELETE_RESOURCES_ONLY: "DELETE_RESOURCES_ONLY";
|
|
1570
|
+
};
|
|
1571
|
+
export type ServiceActionDto = typeof ServiceActionDto[keyof typeof ServiceActionDto];
|
|
1540
1572
|
/**
|
|
1541
1573
|
*
|
|
1542
1574
|
* @export
|
|
@@ -1704,6 +1736,20 @@ export interface ServiceStatusDto {
|
|
|
1704
1736
|
*/
|
|
1705
1737
|
'environments': Array<EnvironmentStatusDto>;
|
|
1706
1738
|
}
|
|
1739
|
+
/**
|
|
1740
|
+
*
|
|
1741
|
+
* @export
|
|
1742
|
+
* @enum {string}
|
|
1743
|
+
*/
|
|
1744
|
+
export declare const ServiceSubActionDto: {
|
|
1745
|
+
readonly NONE: "NONE";
|
|
1746
|
+
readonly TERRAFORM_PLAN_ONLY: "TERRAFORM_PLAN_ONLY";
|
|
1747
|
+
readonly TERRAFORM_PLAN_AND_APPLY: "TERRAFORM_PLAN_AND_APPLY";
|
|
1748
|
+
readonly TERRAFORM_DESTROY: "TERRAFORM_DESTROY";
|
|
1749
|
+
readonly TERRAFORM_FORCE_UNLOCK_STATE: "TERRAFORM_FORCE_UNLOCK_STATE";
|
|
1750
|
+
readonly TERRAFORM_MIGRATE_STATE: "TERRAFORM_MIGRATE_STATE";
|
|
1751
|
+
};
|
|
1752
|
+
export type ServiceSubActionDto = typeof ServiceSubActionDto[keyof typeof ServiceSubActionDto];
|
|
1707
1753
|
/**
|
|
1708
1754
|
*
|
|
1709
1755
|
* @export
|
|
@@ -1718,6 +1764,37 @@ export declare const ServiceType: {
|
|
|
1718
1764
|
readonly TERRAFORM: "TERRAFORM";
|
|
1719
1765
|
};
|
|
1720
1766
|
export type ServiceType = typeof ServiceType[keyof typeof ServiceType];
|
|
1767
|
+
/**
|
|
1768
|
+
*
|
|
1769
|
+
* @export
|
|
1770
|
+
* @interface TerraformStatusDto
|
|
1771
|
+
*/
|
|
1772
|
+
export interface TerraformStatusDto {
|
|
1773
|
+
/**
|
|
1774
|
+
*
|
|
1775
|
+
* @type {string}
|
|
1776
|
+
* @memberof TerraformStatusDto
|
|
1777
|
+
*/
|
|
1778
|
+
'id': string;
|
|
1779
|
+
/**
|
|
1780
|
+
*
|
|
1781
|
+
* @type {Array<PodStatusDto>}
|
|
1782
|
+
* @memberof TerraformStatusDto
|
|
1783
|
+
*/
|
|
1784
|
+
'pods': Array<PodStatusDto>;
|
|
1785
|
+
/**
|
|
1786
|
+
*
|
|
1787
|
+
* @type {ServiceStateDto}
|
|
1788
|
+
* @memberof TerraformStatusDto
|
|
1789
|
+
*/
|
|
1790
|
+
'state': ServiceStateDto;
|
|
1791
|
+
/**
|
|
1792
|
+
*
|
|
1793
|
+
* @type {ServiceActionDetailsDto}
|
|
1794
|
+
* @memberof TerraformStatusDto
|
|
1795
|
+
*/
|
|
1796
|
+
'triggered_action': ServiceActionDetailsDto;
|
|
1797
|
+
}
|
|
1721
1798
|
/**
|
|
1722
1799
|
*
|
|
1723
1800
|
* @export
|
package/dist/esm/api.js
CHANGED
|
@@ -85,6 +85,18 @@ export const ResourceStatusDto = {
|
|
|
85
85
|
WARNING: 'WARNING',
|
|
86
86
|
ALERT: 'ALERT'
|
|
87
87
|
};
|
|
88
|
+
/**
|
|
89
|
+
*
|
|
90
|
+
* @export
|
|
91
|
+
* @enum {string}
|
|
92
|
+
*/
|
|
93
|
+
export const ServiceActionDto = {
|
|
94
|
+
DEPLOY: 'DEPLOY',
|
|
95
|
+
RESTART: 'RESTART',
|
|
96
|
+
STOP: 'STOP',
|
|
97
|
+
DELETE: 'DELETE',
|
|
98
|
+
DELETE_RESOURCES_ONLY: 'DELETE_RESOURCES_ONLY'
|
|
99
|
+
};
|
|
88
100
|
/**
|
|
89
101
|
*
|
|
90
102
|
* @export
|
|
@@ -99,6 +111,19 @@ export const ServiceStateDto = {
|
|
|
99
111
|
COMPLETED: 'COMPLETED',
|
|
100
112
|
WARNING: 'WARNING'
|
|
101
113
|
};
|
|
114
|
+
/**
|
|
115
|
+
*
|
|
116
|
+
* @export
|
|
117
|
+
* @enum {string}
|
|
118
|
+
*/
|
|
119
|
+
export const ServiceSubActionDto = {
|
|
120
|
+
NONE: 'NONE',
|
|
121
|
+
TERRAFORM_PLAN_ONLY: 'TERRAFORM_PLAN_ONLY',
|
|
122
|
+
TERRAFORM_PLAN_AND_APPLY: 'TERRAFORM_PLAN_AND_APPLY',
|
|
123
|
+
TERRAFORM_DESTROY: 'TERRAFORM_DESTROY',
|
|
124
|
+
TERRAFORM_FORCE_UNLOCK_STATE: 'TERRAFORM_FORCE_UNLOCK_STATE',
|
|
125
|
+
TERRAFORM_MIGRATE_STATE: 'TERRAFORM_MIGRATE_STATE'
|
|
126
|
+
};
|
|
102
127
|
/**
|
|
103
128
|
*
|
|
104
129
|
* @export
|