@aws-sdk/client-finspace 3.934.0 → 3.935.0
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/dist-cjs/index.js +138 -137
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +137 -0
- package/dist-es/models/errors.js +123 -0
- package/dist-es/models/models_0.js +1 -260
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +321 -0
- package/dist-types/models/errors.d.ts +129 -0
- package/dist-types/models/models_0.d.ts +1 -450
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +171 -0
- package/dist-types/ts3.4/models/errors.d.ts +71 -0
- package/dist-types/ts3.4/models/models_0.d.ts +25 -242
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,260 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
constructor(opts) {
|
|
6
|
-
super({
|
|
7
|
-
name: "AccessDeniedException",
|
|
8
|
-
$fault: "client",
|
|
9
|
-
...opts,
|
|
10
|
-
});
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
export const AutoScalingMetric = {
|
|
15
|
-
CPU_UTILIZATION_PERCENTAGE: "CPU_UTILIZATION_PERCENTAGE",
|
|
16
|
-
};
|
|
17
|
-
export const FederationMode = {
|
|
18
|
-
FEDERATED: "FEDERATED",
|
|
19
|
-
LOCAL: "LOCAL",
|
|
20
|
-
};
|
|
21
|
-
export class InternalServerException extends __BaseException {
|
|
22
|
-
name = "InternalServerException";
|
|
23
|
-
$fault = "server";
|
|
24
|
-
constructor(opts) {
|
|
25
|
-
super({
|
|
26
|
-
name: "InternalServerException",
|
|
27
|
-
$fault: "server",
|
|
28
|
-
...opts,
|
|
29
|
-
});
|
|
30
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
export class LimitExceededException extends __BaseException {
|
|
34
|
-
name = "LimitExceededException";
|
|
35
|
-
$fault = "client";
|
|
36
|
-
constructor(opts) {
|
|
37
|
-
super({
|
|
38
|
-
name: "LimitExceededException",
|
|
39
|
-
$fault: "client",
|
|
40
|
-
...opts,
|
|
41
|
-
});
|
|
42
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
46
|
-
name = "ServiceQuotaExceededException";
|
|
47
|
-
$fault = "client";
|
|
48
|
-
constructor(opts) {
|
|
49
|
-
super({
|
|
50
|
-
name: "ServiceQuotaExceededException",
|
|
51
|
-
$fault: "client",
|
|
52
|
-
...opts,
|
|
53
|
-
});
|
|
54
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
export class ThrottlingException extends __BaseException {
|
|
58
|
-
name = "ThrottlingException";
|
|
59
|
-
$fault = "client";
|
|
60
|
-
constructor(opts) {
|
|
61
|
-
super({
|
|
62
|
-
name: "ThrottlingException",
|
|
63
|
-
$fault: "client",
|
|
64
|
-
...opts,
|
|
65
|
-
});
|
|
66
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
export class ValidationException extends __BaseException {
|
|
70
|
-
name = "ValidationException";
|
|
71
|
-
$fault = "client";
|
|
72
|
-
constructor(opts) {
|
|
73
|
-
super({
|
|
74
|
-
name: "ValidationException",
|
|
75
|
-
$fault: "client",
|
|
76
|
-
...opts,
|
|
77
|
-
});
|
|
78
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
export class ConflictException extends __BaseException {
|
|
82
|
-
name = "ConflictException";
|
|
83
|
-
$fault = "client";
|
|
84
|
-
reason;
|
|
85
|
-
constructor(opts) {
|
|
86
|
-
super({
|
|
87
|
-
name: "ConflictException",
|
|
88
|
-
$fault: "client",
|
|
89
|
-
...opts,
|
|
90
|
-
});
|
|
91
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
92
|
-
this.reason = opts.reason;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
export const ChangeType = {
|
|
96
|
-
DELETE: "DELETE",
|
|
97
|
-
PUT: "PUT",
|
|
98
|
-
};
|
|
99
|
-
export const ErrorDetails = {
|
|
100
|
-
ACCESS_DENIED: "Missing required permission to perform this request.",
|
|
101
|
-
CANCELLED: "Cancelled",
|
|
102
|
-
INTERNAL_SERVICE_EXCEPTION: "An internal error has occurred.",
|
|
103
|
-
RESOURCE_NOT_FOUND: "One or more inputs to this request were not found.",
|
|
104
|
-
SERVICE_QUOTA_EXCEEDED: "Service limits have been exceeded.",
|
|
105
|
-
THROTTLING: "The system temporarily lacks sufficient resources to process the request.",
|
|
106
|
-
USER_RECOVERABLE: "A user recoverable error has occurred",
|
|
107
|
-
VALIDATION: "The inputs to this request are invalid.",
|
|
108
|
-
};
|
|
109
|
-
export const ChangesetStatus = {
|
|
110
|
-
COMPLETED: "COMPLETED",
|
|
111
|
-
FAILED: "FAILED",
|
|
112
|
-
PENDING: "PENDING",
|
|
113
|
-
PROCESSING: "PROCESSING",
|
|
114
|
-
};
|
|
115
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
116
|
-
name = "ResourceNotFoundException";
|
|
117
|
-
$fault = "client";
|
|
118
|
-
constructor(opts) {
|
|
119
|
-
super({
|
|
120
|
-
name: "ResourceNotFoundException",
|
|
121
|
-
$fault: "client",
|
|
122
|
-
...opts,
|
|
123
|
-
});
|
|
124
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
export const KxAzMode = {
|
|
128
|
-
MULTI: "MULTI",
|
|
129
|
-
SINGLE: "SINGLE",
|
|
130
|
-
};
|
|
131
|
-
export const KxClusterType = {
|
|
132
|
-
GATEWAY: "GATEWAY",
|
|
133
|
-
GP: "GP",
|
|
134
|
-
HDB: "HDB",
|
|
135
|
-
RDB: "RDB",
|
|
136
|
-
TICKERPLANT: "TICKERPLANT",
|
|
137
|
-
};
|
|
138
|
-
export const KxSavedownStorageType = {
|
|
139
|
-
SDS01: "SDS01",
|
|
140
|
-
};
|
|
141
|
-
export const IPAddressType = {
|
|
142
|
-
IP_V4: "IP_V4",
|
|
143
|
-
};
|
|
144
|
-
export const KxClusterStatus = {
|
|
145
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
146
|
-
CREATING: "CREATING",
|
|
147
|
-
DELETED: "DELETED",
|
|
148
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
149
|
-
DELETING: "DELETING",
|
|
150
|
-
PENDING: "PENDING",
|
|
151
|
-
RUNNING: "RUNNING",
|
|
152
|
-
UPDATING: "UPDATING",
|
|
153
|
-
};
|
|
154
|
-
export const VolumeType = {
|
|
155
|
-
NAS_1: "NAS_1",
|
|
156
|
-
};
|
|
157
|
-
export class ResourceAlreadyExistsException extends __BaseException {
|
|
158
|
-
name = "ResourceAlreadyExistsException";
|
|
159
|
-
$fault = "client";
|
|
160
|
-
constructor(opts) {
|
|
161
|
-
super({
|
|
162
|
-
name: "ResourceAlreadyExistsException",
|
|
163
|
-
$fault: "client",
|
|
164
|
-
...opts,
|
|
165
|
-
});
|
|
166
|
-
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
export const KxDataviewStatus = {
|
|
170
|
-
ACTIVE: "ACTIVE",
|
|
171
|
-
CREATING: "CREATING",
|
|
172
|
-
DELETING: "DELETING",
|
|
173
|
-
FAILED: "FAILED",
|
|
174
|
-
UPDATING: "UPDATING",
|
|
175
|
-
};
|
|
176
|
-
export const EnvironmentStatus = {
|
|
177
|
-
CREATED: "CREATED",
|
|
178
|
-
CREATE_REQUESTED: "CREATE_REQUESTED",
|
|
179
|
-
CREATING: "CREATING",
|
|
180
|
-
DELETED: "DELETED",
|
|
181
|
-
DELETE_REQUESTED: "DELETE_REQUESTED",
|
|
182
|
-
DELETING: "DELETING",
|
|
183
|
-
FAILED_CREATION: "FAILED_CREATION",
|
|
184
|
-
FAILED_DELETION: "FAILED_DELETION",
|
|
185
|
-
FAILED_UPDATING_NETWORK: "FAILED_UPDATING_NETWORK",
|
|
186
|
-
RETRY_DELETION: "RETRY_DELETION",
|
|
187
|
-
SUSPENDED: "SUSPENDED",
|
|
188
|
-
UPDATE_NETWORK_REQUESTED: "UPDATE_NETWORK_REQUESTED",
|
|
189
|
-
UPDATING_NETWORK: "UPDATING_NETWORK",
|
|
190
|
-
};
|
|
191
|
-
export const KxScalingGroupStatus = {
|
|
192
|
-
ACTIVE: "ACTIVE",
|
|
193
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
194
|
-
CREATING: "CREATING",
|
|
195
|
-
DELETED: "DELETED",
|
|
196
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
197
|
-
DELETING: "DELETING",
|
|
198
|
-
};
|
|
199
|
-
export const KxNAS1Type = {
|
|
200
|
-
HDD_12: "HDD_12",
|
|
201
|
-
SSD_1000: "SSD_1000",
|
|
202
|
-
SSD_250: "SSD_250",
|
|
203
|
-
};
|
|
204
|
-
export const KxVolumeType = {
|
|
205
|
-
NAS_1: "NAS_1",
|
|
206
|
-
};
|
|
207
|
-
export const KxVolumeStatus = {
|
|
208
|
-
ACTIVE: "ACTIVE",
|
|
209
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
210
|
-
CREATING: "CREATING",
|
|
211
|
-
DELETED: "DELETED",
|
|
212
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
213
|
-
DELETING: "DELETING",
|
|
214
|
-
UPDATED: "UPDATED",
|
|
215
|
-
UPDATE_FAILED: "UPDATE_FAILED",
|
|
216
|
-
UPDATING: "UPDATING",
|
|
217
|
-
};
|
|
218
|
-
export const DnsStatus = {
|
|
219
|
-
FAILED_UPDATE: "FAILED_UPDATE",
|
|
220
|
-
NONE: "NONE",
|
|
221
|
-
SUCCESSFULLY_UPDATED: "SUCCESSFULLY_UPDATED",
|
|
222
|
-
UPDATE_REQUESTED: "UPDATE_REQUESTED",
|
|
223
|
-
UPDATING: "UPDATING",
|
|
224
|
-
};
|
|
225
|
-
export const TgwStatus = {
|
|
226
|
-
FAILED_UPDATE: "FAILED_UPDATE",
|
|
227
|
-
NONE: "NONE",
|
|
228
|
-
SUCCESSFULLY_UPDATED: "SUCCESSFULLY_UPDATED",
|
|
229
|
-
UPDATE_REQUESTED: "UPDATE_REQUESTED",
|
|
230
|
-
UPDATING: "UPDATING",
|
|
231
|
-
};
|
|
232
|
-
export const RuleAction = {
|
|
233
|
-
ALLOW: "allow",
|
|
234
|
-
DENY: "deny",
|
|
235
|
-
};
|
|
236
|
-
export const KxNodeStatus = {
|
|
237
|
-
PROVISIONING: "PROVISIONING",
|
|
238
|
-
RUNNING: "RUNNING",
|
|
239
|
-
};
|
|
240
|
-
export class InvalidRequestException extends __BaseException {
|
|
241
|
-
name = "InvalidRequestException";
|
|
242
|
-
$fault = "client";
|
|
243
|
-
constructor(opts) {
|
|
244
|
-
super({
|
|
245
|
-
name: "InvalidRequestException",
|
|
246
|
-
$fault: "client",
|
|
247
|
-
...opts,
|
|
248
|
-
});
|
|
249
|
-
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
250
|
-
}
|
|
251
|
-
}
|
|
252
|
-
export const KxClusterCodeDeploymentStrategy = {
|
|
253
|
-
FORCE: "FORCE",
|
|
254
|
-
NO_RESTART: "NO_RESTART",
|
|
255
|
-
ROLLING: "ROLLING",
|
|
256
|
-
};
|
|
257
|
-
export const KxDeploymentStrategy = {
|
|
258
|
-
NO_RESTART: "NO_RESTART",
|
|
259
|
-
ROLLING: "ROLLING",
|
|
260
|
-
};
|
|
1
|
+
export {};
|
|
@@ -382,8 +382,8 @@ const _vT = "volumeType";
|
|
|
382
382
|
const _va = "value";
|
|
383
383
|
const n0 = "com.amazonaws.finspace";
|
|
384
384
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
385
|
+
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, InvalidRequestException as __InvalidRequestException, LimitExceededException as __LimitExceededException, ResourceAlreadyExistsException as __ResourceAlreadyExistsException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
|
|
385
386
|
import { FinspaceServiceException as __FinspaceServiceException } from "../models/FinspaceServiceException";
|
|
386
|
-
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, InvalidRequestException as __InvalidRequestException, LimitExceededException as __LimitExceededException, ResourceAlreadyExistsException as __ResourceAlreadyExistsException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/index";
|
|
387
387
|
export var EmailId = [0, n0, _EI, 8, 0];
|
|
388
388
|
export var SignedKxConnectionString = [0, n0, _SKCS, 8, 0];
|
|
389
389
|
export var AccessDeniedException = [
|
package/dist-types/index.d.ts
CHANGED
|
@@ -10,5 +10,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
10
10
|
export type { FinspaceExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
12
|
export * from "./pagination";
|
|
13
|
-
export * from "./models";
|
|
13
|
+
export * from "./models/enums";
|
|
14
|
+
export * from "./models/errors";
|
|
15
|
+
export type * from "./models/models_0";
|
|
14
16
|
export { FinspaceServiceException } from "./models/FinspaceServiceException";
|
|
@@ -0,0 +1,321 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const AutoScalingMetric: {
|
|
6
|
+
readonly CPU_UTILIZATION_PERCENTAGE: "CPU_UTILIZATION_PERCENTAGE";
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
export type AutoScalingMetric = (typeof AutoScalingMetric)[keyof typeof AutoScalingMetric];
|
|
12
|
+
/**
|
|
13
|
+
* @public
|
|
14
|
+
* @enum
|
|
15
|
+
*/
|
|
16
|
+
export declare const FederationMode: {
|
|
17
|
+
readonly FEDERATED: "FEDERATED";
|
|
18
|
+
readonly LOCAL: "LOCAL";
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
export type FederationMode = (typeof FederationMode)[keyof typeof FederationMode];
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* @enum
|
|
27
|
+
*/
|
|
28
|
+
export declare const ChangeType: {
|
|
29
|
+
readonly DELETE: "DELETE";
|
|
30
|
+
readonly PUT: "PUT";
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
* @enum
|
|
39
|
+
*/
|
|
40
|
+
export declare const ErrorDetails: {
|
|
41
|
+
readonly ACCESS_DENIED: "Missing required permission to perform this request.";
|
|
42
|
+
readonly CANCELLED: "Cancelled";
|
|
43
|
+
readonly INTERNAL_SERVICE_EXCEPTION: "An internal error has occurred.";
|
|
44
|
+
readonly RESOURCE_NOT_FOUND: "One or more inputs to this request were not found.";
|
|
45
|
+
readonly SERVICE_QUOTA_EXCEEDED: "Service limits have been exceeded.";
|
|
46
|
+
readonly THROTTLING: "The system temporarily lacks sufficient resources to process the request.";
|
|
47
|
+
readonly USER_RECOVERABLE: "A user recoverable error has occurred";
|
|
48
|
+
readonly VALIDATION: "The inputs to this request are invalid.";
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
export type ErrorDetails = (typeof ErrorDetails)[keyof typeof ErrorDetails];
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
* @enum
|
|
57
|
+
*/
|
|
58
|
+
export declare const ChangesetStatus: {
|
|
59
|
+
readonly COMPLETED: "COMPLETED";
|
|
60
|
+
readonly FAILED: "FAILED";
|
|
61
|
+
readonly PENDING: "PENDING";
|
|
62
|
+
readonly PROCESSING: "PROCESSING";
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export type ChangesetStatus = (typeof ChangesetStatus)[keyof typeof ChangesetStatus];
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
* @enum
|
|
71
|
+
*/
|
|
72
|
+
export declare const KxAzMode: {
|
|
73
|
+
readonly MULTI: "MULTI";
|
|
74
|
+
readonly SINGLE: "SINGLE";
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export type KxAzMode = (typeof KxAzMode)[keyof typeof KxAzMode];
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
* @enum
|
|
83
|
+
*/
|
|
84
|
+
export declare const KxClusterType: {
|
|
85
|
+
readonly GATEWAY: "GATEWAY";
|
|
86
|
+
readonly GP: "GP";
|
|
87
|
+
readonly HDB: "HDB";
|
|
88
|
+
readonly RDB: "RDB";
|
|
89
|
+
readonly TICKERPLANT: "TICKERPLANT";
|
|
90
|
+
};
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
export type KxClusterType = (typeof KxClusterType)[keyof typeof KxClusterType];
|
|
95
|
+
/**
|
|
96
|
+
* @public
|
|
97
|
+
* @enum
|
|
98
|
+
*/
|
|
99
|
+
export declare const KxSavedownStorageType: {
|
|
100
|
+
readonly SDS01: "SDS01";
|
|
101
|
+
};
|
|
102
|
+
/**
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
export type KxSavedownStorageType = (typeof KxSavedownStorageType)[keyof typeof KxSavedownStorageType];
|
|
106
|
+
/**
|
|
107
|
+
* @public
|
|
108
|
+
* @enum
|
|
109
|
+
*/
|
|
110
|
+
export declare const IPAddressType: {
|
|
111
|
+
readonly IP_V4: "IP_V4";
|
|
112
|
+
};
|
|
113
|
+
/**
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
export type IPAddressType = (typeof IPAddressType)[keyof typeof IPAddressType];
|
|
117
|
+
/**
|
|
118
|
+
* @public
|
|
119
|
+
* @enum
|
|
120
|
+
*/
|
|
121
|
+
export declare const KxClusterStatus: {
|
|
122
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
123
|
+
readonly CREATING: "CREATING";
|
|
124
|
+
readonly DELETED: "DELETED";
|
|
125
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
126
|
+
readonly DELETING: "DELETING";
|
|
127
|
+
readonly PENDING: "PENDING";
|
|
128
|
+
readonly RUNNING: "RUNNING";
|
|
129
|
+
readonly UPDATING: "UPDATING";
|
|
130
|
+
};
|
|
131
|
+
/**
|
|
132
|
+
* @public
|
|
133
|
+
*/
|
|
134
|
+
export type KxClusterStatus = (typeof KxClusterStatus)[keyof typeof KxClusterStatus];
|
|
135
|
+
/**
|
|
136
|
+
* @public
|
|
137
|
+
* @enum
|
|
138
|
+
*/
|
|
139
|
+
export declare const VolumeType: {
|
|
140
|
+
readonly NAS_1: "NAS_1";
|
|
141
|
+
};
|
|
142
|
+
/**
|
|
143
|
+
* @public
|
|
144
|
+
*/
|
|
145
|
+
export type VolumeType = (typeof VolumeType)[keyof typeof VolumeType];
|
|
146
|
+
/**
|
|
147
|
+
* @public
|
|
148
|
+
* @enum
|
|
149
|
+
*/
|
|
150
|
+
export declare const KxDataviewStatus: {
|
|
151
|
+
readonly ACTIVE: "ACTIVE";
|
|
152
|
+
readonly CREATING: "CREATING";
|
|
153
|
+
readonly DELETING: "DELETING";
|
|
154
|
+
readonly FAILED: "FAILED";
|
|
155
|
+
readonly UPDATING: "UPDATING";
|
|
156
|
+
};
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
160
|
+
export type KxDataviewStatus = (typeof KxDataviewStatus)[keyof typeof KxDataviewStatus];
|
|
161
|
+
/**
|
|
162
|
+
* @public
|
|
163
|
+
* @enum
|
|
164
|
+
*/
|
|
165
|
+
export declare const EnvironmentStatus: {
|
|
166
|
+
readonly CREATED: "CREATED";
|
|
167
|
+
readonly CREATE_REQUESTED: "CREATE_REQUESTED";
|
|
168
|
+
readonly CREATING: "CREATING";
|
|
169
|
+
readonly DELETED: "DELETED";
|
|
170
|
+
readonly DELETE_REQUESTED: "DELETE_REQUESTED";
|
|
171
|
+
readonly DELETING: "DELETING";
|
|
172
|
+
readonly FAILED_CREATION: "FAILED_CREATION";
|
|
173
|
+
readonly FAILED_DELETION: "FAILED_DELETION";
|
|
174
|
+
readonly FAILED_UPDATING_NETWORK: "FAILED_UPDATING_NETWORK";
|
|
175
|
+
readonly RETRY_DELETION: "RETRY_DELETION";
|
|
176
|
+
readonly SUSPENDED: "SUSPENDED";
|
|
177
|
+
readonly UPDATE_NETWORK_REQUESTED: "UPDATE_NETWORK_REQUESTED";
|
|
178
|
+
readonly UPDATING_NETWORK: "UPDATING_NETWORK";
|
|
179
|
+
};
|
|
180
|
+
/**
|
|
181
|
+
* @public
|
|
182
|
+
*/
|
|
183
|
+
export type EnvironmentStatus = (typeof EnvironmentStatus)[keyof typeof EnvironmentStatus];
|
|
184
|
+
/**
|
|
185
|
+
* @public
|
|
186
|
+
* @enum
|
|
187
|
+
*/
|
|
188
|
+
export declare const KxScalingGroupStatus: {
|
|
189
|
+
readonly ACTIVE: "ACTIVE";
|
|
190
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
191
|
+
readonly CREATING: "CREATING";
|
|
192
|
+
readonly DELETED: "DELETED";
|
|
193
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
194
|
+
readonly DELETING: "DELETING";
|
|
195
|
+
};
|
|
196
|
+
/**
|
|
197
|
+
* @public
|
|
198
|
+
*/
|
|
199
|
+
export type KxScalingGroupStatus = (typeof KxScalingGroupStatus)[keyof typeof KxScalingGroupStatus];
|
|
200
|
+
/**
|
|
201
|
+
* @public
|
|
202
|
+
* @enum
|
|
203
|
+
*/
|
|
204
|
+
export declare const KxNAS1Type: {
|
|
205
|
+
readonly HDD_12: "HDD_12";
|
|
206
|
+
readonly SSD_1000: "SSD_1000";
|
|
207
|
+
readonly SSD_250: "SSD_250";
|
|
208
|
+
};
|
|
209
|
+
/**
|
|
210
|
+
* @public
|
|
211
|
+
*/
|
|
212
|
+
export type KxNAS1Type = (typeof KxNAS1Type)[keyof typeof KxNAS1Type];
|
|
213
|
+
/**
|
|
214
|
+
* @public
|
|
215
|
+
* @enum
|
|
216
|
+
*/
|
|
217
|
+
export declare const KxVolumeType: {
|
|
218
|
+
readonly NAS_1: "NAS_1";
|
|
219
|
+
};
|
|
220
|
+
/**
|
|
221
|
+
* @public
|
|
222
|
+
*/
|
|
223
|
+
export type KxVolumeType = (typeof KxVolumeType)[keyof typeof KxVolumeType];
|
|
224
|
+
/**
|
|
225
|
+
* @public
|
|
226
|
+
* @enum
|
|
227
|
+
*/
|
|
228
|
+
export declare const KxVolumeStatus: {
|
|
229
|
+
readonly ACTIVE: "ACTIVE";
|
|
230
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
231
|
+
readonly CREATING: "CREATING";
|
|
232
|
+
readonly DELETED: "DELETED";
|
|
233
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
234
|
+
readonly DELETING: "DELETING";
|
|
235
|
+
readonly UPDATED: "UPDATED";
|
|
236
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
237
|
+
readonly UPDATING: "UPDATING";
|
|
238
|
+
};
|
|
239
|
+
/**
|
|
240
|
+
* @public
|
|
241
|
+
*/
|
|
242
|
+
export type KxVolumeStatus = (typeof KxVolumeStatus)[keyof typeof KxVolumeStatus];
|
|
243
|
+
/**
|
|
244
|
+
* @public
|
|
245
|
+
* @enum
|
|
246
|
+
*/
|
|
247
|
+
export declare const DnsStatus: {
|
|
248
|
+
readonly FAILED_UPDATE: "FAILED_UPDATE";
|
|
249
|
+
readonly NONE: "NONE";
|
|
250
|
+
readonly SUCCESSFULLY_UPDATED: "SUCCESSFULLY_UPDATED";
|
|
251
|
+
readonly UPDATE_REQUESTED: "UPDATE_REQUESTED";
|
|
252
|
+
readonly UPDATING: "UPDATING";
|
|
253
|
+
};
|
|
254
|
+
/**
|
|
255
|
+
* @public
|
|
256
|
+
*/
|
|
257
|
+
export type DnsStatus = (typeof DnsStatus)[keyof typeof DnsStatus];
|
|
258
|
+
/**
|
|
259
|
+
* @public
|
|
260
|
+
* @enum
|
|
261
|
+
*/
|
|
262
|
+
export declare const TgwStatus: {
|
|
263
|
+
readonly FAILED_UPDATE: "FAILED_UPDATE";
|
|
264
|
+
readonly NONE: "NONE";
|
|
265
|
+
readonly SUCCESSFULLY_UPDATED: "SUCCESSFULLY_UPDATED";
|
|
266
|
+
readonly UPDATE_REQUESTED: "UPDATE_REQUESTED";
|
|
267
|
+
readonly UPDATING: "UPDATING";
|
|
268
|
+
};
|
|
269
|
+
/**
|
|
270
|
+
* @public
|
|
271
|
+
*/
|
|
272
|
+
export type TgwStatus = (typeof TgwStatus)[keyof typeof TgwStatus];
|
|
273
|
+
/**
|
|
274
|
+
* @public
|
|
275
|
+
* @enum
|
|
276
|
+
*/
|
|
277
|
+
export declare const RuleAction: {
|
|
278
|
+
readonly ALLOW: "allow";
|
|
279
|
+
readonly DENY: "deny";
|
|
280
|
+
};
|
|
281
|
+
/**
|
|
282
|
+
* @public
|
|
283
|
+
*/
|
|
284
|
+
export type RuleAction = (typeof RuleAction)[keyof typeof RuleAction];
|
|
285
|
+
/**
|
|
286
|
+
* @public
|
|
287
|
+
* @enum
|
|
288
|
+
*/
|
|
289
|
+
export declare const KxNodeStatus: {
|
|
290
|
+
readonly PROVISIONING: "PROVISIONING";
|
|
291
|
+
readonly RUNNING: "RUNNING";
|
|
292
|
+
};
|
|
293
|
+
/**
|
|
294
|
+
* @public
|
|
295
|
+
*/
|
|
296
|
+
export type KxNodeStatus = (typeof KxNodeStatus)[keyof typeof KxNodeStatus];
|
|
297
|
+
/**
|
|
298
|
+
* @public
|
|
299
|
+
* @enum
|
|
300
|
+
*/
|
|
301
|
+
export declare const KxClusterCodeDeploymentStrategy: {
|
|
302
|
+
readonly FORCE: "FORCE";
|
|
303
|
+
readonly NO_RESTART: "NO_RESTART";
|
|
304
|
+
readonly ROLLING: "ROLLING";
|
|
305
|
+
};
|
|
306
|
+
/**
|
|
307
|
+
* @public
|
|
308
|
+
*/
|
|
309
|
+
export type KxClusterCodeDeploymentStrategy = (typeof KxClusterCodeDeploymentStrategy)[keyof typeof KxClusterCodeDeploymentStrategy];
|
|
310
|
+
/**
|
|
311
|
+
* @public
|
|
312
|
+
* @enum
|
|
313
|
+
*/
|
|
314
|
+
export declare const KxDeploymentStrategy: {
|
|
315
|
+
readonly NO_RESTART: "NO_RESTART";
|
|
316
|
+
readonly ROLLING: "ROLLING";
|
|
317
|
+
};
|
|
318
|
+
/**
|
|
319
|
+
* @public
|
|
320
|
+
*/
|
|
321
|
+
export type KxDeploymentStrategy = (typeof KxDeploymentStrategy)[keyof typeof KxDeploymentStrategy];
|