@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,28 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { FinspaceServiceException as __BaseException } from "./FinspaceServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
/**
|
|
11
|
-
* @internal
|
|
12
|
-
*/
|
|
13
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* @public
|
|
17
|
-
* @enum
|
|
18
|
-
*/
|
|
19
|
-
export declare const AutoScalingMetric: {
|
|
20
|
-
readonly CPU_UTILIZATION_PERCENTAGE: "CPU_UTILIZATION_PERCENTAGE";
|
|
21
|
-
};
|
|
22
|
-
/**
|
|
23
|
-
* @public
|
|
24
|
-
*/
|
|
25
|
-
export type AutoScalingMetric = (typeof AutoScalingMetric)[keyof typeof AutoScalingMetric];
|
|
1
|
+
import { AutoScalingMetric, ChangesetStatus, ChangeType, DnsStatus, EnvironmentStatus, ErrorDetails, FederationMode, IPAddressType, KxAzMode, KxClusterCodeDeploymentStrategy, KxClusterStatus, KxClusterType, KxDataviewStatus, KxDeploymentStrategy, KxNAS1Type, KxNodeStatus, KxSavedownStorageType, KxScalingGroupStatus, KxVolumeStatus, KxVolumeType, RuleAction, TgwStatus, VolumeType } from "./enums";
|
|
26
2
|
/**
|
|
27
3
|
* <p>The configuration based on which FinSpace will scale in or scale out nodes in your cluster. </p>
|
|
28
4
|
* @public
|
|
@@ -59,18 +35,6 @@ export interface AutoScalingConfiguration {
|
|
|
59
35
|
*/
|
|
60
36
|
scaleOutCooldownSeconds?: number | undefined;
|
|
61
37
|
}
|
|
62
|
-
/**
|
|
63
|
-
* @public
|
|
64
|
-
* @enum
|
|
65
|
-
*/
|
|
66
|
-
export declare const FederationMode: {
|
|
67
|
-
readonly FEDERATED: "FEDERATED";
|
|
68
|
-
readonly LOCAL: "LOCAL";
|
|
69
|
-
};
|
|
70
|
-
/**
|
|
71
|
-
* @public
|
|
72
|
-
*/
|
|
73
|
-
export type FederationMode = (typeof FederationMode)[keyof typeof FederationMode];
|
|
74
38
|
/**
|
|
75
39
|
* <p>Configuration information when authentication mode is FEDERATED.</p>
|
|
76
40
|
* @public
|
|
@@ -217,97 +181,6 @@ export interface CreateEnvironmentResponse {
|
|
|
217
181
|
*/
|
|
218
182
|
environmentUrl?: string | undefined;
|
|
219
183
|
}
|
|
220
|
-
/**
|
|
221
|
-
* <p>The request processing has failed because of an unknown error, exception or
|
|
222
|
-
* failure.</p>
|
|
223
|
-
* @public
|
|
224
|
-
*/
|
|
225
|
-
export declare class InternalServerException extends __BaseException {
|
|
226
|
-
readonly name: "InternalServerException";
|
|
227
|
-
readonly $fault: "server";
|
|
228
|
-
/**
|
|
229
|
-
* @internal
|
|
230
|
-
*/
|
|
231
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
232
|
-
}
|
|
233
|
-
/**
|
|
234
|
-
* <p>A service limit or quota is exceeded.</p>
|
|
235
|
-
* @public
|
|
236
|
-
*/
|
|
237
|
-
export declare class LimitExceededException extends __BaseException {
|
|
238
|
-
readonly name: "LimitExceededException";
|
|
239
|
-
readonly $fault: "client";
|
|
240
|
-
/**
|
|
241
|
-
* @internal
|
|
242
|
-
*/
|
|
243
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
244
|
-
}
|
|
245
|
-
/**
|
|
246
|
-
* <p> You have exceeded your service quota. To perform the requested action,
|
|
247
|
-
* remove some of the relevant resources, or use Service Quotas to request a service quota increase.</p>
|
|
248
|
-
* @public
|
|
249
|
-
*/
|
|
250
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
251
|
-
readonly name: "ServiceQuotaExceededException";
|
|
252
|
-
readonly $fault: "client";
|
|
253
|
-
/**
|
|
254
|
-
* @internal
|
|
255
|
-
*/
|
|
256
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
257
|
-
}
|
|
258
|
-
/**
|
|
259
|
-
* <p>The request was denied due to request throttling.</p>
|
|
260
|
-
* @public
|
|
261
|
-
*/
|
|
262
|
-
export declare class ThrottlingException extends __BaseException {
|
|
263
|
-
readonly name: "ThrottlingException";
|
|
264
|
-
readonly $fault: "client";
|
|
265
|
-
/**
|
|
266
|
-
* @internal
|
|
267
|
-
*/
|
|
268
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
269
|
-
}
|
|
270
|
-
/**
|
|
271
|
-
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
272
|
-
* @public
|
|
273
|
-
*/
|
|
274
|
-
export declare class ValidationException extends __BaseException {
|
|
275
|
-
readonly name: "ValidationException";
|
|
276
|
-
readonly $fault: "client";
|
|
277
|
-
/**
|
|
278
|
-
* @internal
|
|
279
|
-
*/
|
|
280
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
281
|
-
}
|
|
282
|
-
/**
|
|
283
|
-
* <p>There was a conflict with this action, and it could not be completed.</p>
|
|
284
|
-
* @public
|
|
285
|
-
*/
|
|
286
|
-
export declare class ConflictException extends __BaseException {
|
|
287
|
-
readonly name: "ConflictException";
|
|
288
|
-
readonly $fault: "client";
|
|
289
|
-
/**
|
|
290
|
-
* <p>The reason for the conflict exception.</p>
|
|
291
|
-
* @public
|
|
292
|
-
*/
|
|
293
|
-
reason?: string | undefined;
|
|
294
|
-
/**
|
|
295
|
-
* @internal
|
|
296
|
-
*/
|
|
297
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
298
|
-
}
|
|
299
|
-
/**
|
|
300
|
-
* @public
|
|
301
|
-
* @enum
|
|
302
|
-
*/
|
|
303
|
-
export declare const ChangeType: {
|
|
304
|
-
readonly DELETE: "DELETE";
|
|
305
|
-
readonly PUT: "PUT";
|
|
306
|
-
};
|
|
307
|
-
/**
|
|
308
|
-
* @public
|
|
309
|
-
*/
|
|
310
|
-
export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
|
|
311
184
|
/**
|
|
312
185
|
* <p>A list of change request objects.</p>
|
|
313
186
|
* @public
|
|
@@ -418,24 +291,6 @@ export interface CreateKxChangesetRequest {
|
|
|
418
291
|
*/
|
|
419
292
|
clientToken?: string | undefined;
|
|
420
293
|
}
|
|
421
|
-
/**
|
|
422
|
-
* @public
|
|
423
|
-
* @enum
|
|
424
|
-
*/
|
|
425
|
-
export declare const ErrorDetails: {
|
|
426
|
-
readonly ACCESS_DENIED: "Missing required permission to perform this request.";
|
|
427
|
-
readonly CANCELLED: "Cancelled";
|
|
428
|
-
readonly INTERNAL_SERVICE_EXCEPTION: "An internal error has occurred.";
|
|
429
|
-
readonly RESOURCE_NOT_FOUND: "One or more inputs to this request were not found.";
|
|
430
|
-
readonly SERVICE_QUOTA_EXCEEDED: "Service limits have been exceeded.";
|
|
431
|
-
readonly THROTTLING: "The system temporarily lacks sufficient resources to process the request.";
|
|
432
|
-
readonly USER_RECOVERABLE: "A user recoverable error has occurred";
|
|
433
|
-
readonly VALIDATION: "The inputs to this request are invalid.";
|
|
434
|
-
};
|
|
435
|
-
/**
|
|
436
|
-
* @public
|
|
437
|
-
*/
|
|
438
|
-
export type ErrorDetails = (typeof ErrorDetails)[keyof typeof ErrorDetails];
|
|
439
294
|
/**
|
|
440
295
|
* <p>Provides details in the event of a failed flow, including the error type and the related error message.</p>
|
|
441
296
|
* @public
|
|
@@ -452,20 +307,6 @@ export interface ErrorInfo {
|
|
|
452
307
|
*/
|
|
453
308
|
errorType?: ErrorDetails | undefined;
|
|
454
309
|
}
|
|
455
|
-
/**
|
|
456
|
-
* @public
|
|
457
|
-
* @enum
|
|
458
|
-
*/
|
|
459
|
-
export declare const ChangesetStatus: {
|
|
460
|
-
readonly COMPLETED: "COMPLETED";
|
|
461
|
-
readonly FAILED: "FAILED";
|
|
462
|
-
readonly PENDING: "PENDING";
|
|
463
|
-
readonly PROCESSING: "PROCESSING";
|
|
464
|
-
};
|
|
465
|
-
/**
|
|
466
|
-
* @public
|
|
467
|
-
*/
|
|
468
|
-
export type ChangesetStatus = (typeof ChangesetStatus)[keyof typeof ChangesetStatus];
|
|
469
310
|
/**
|
|
470
311
|
* @public
|
|
471
312
|
*/
|
|
@@ -525,30 +366,6 @@ export interface CreateKxChangesetResponse {
|
|
|
525
366
|
*/
|
|
526
367
|
errorInfo?: ErrorInfo | undefined;
|
|
527
368
|
}
|
|
528
|
-
/**
|
|
529
|
-
* <p>One or more resources can't be found.</p>
|
|
530
|
-
* @public
|
|
531
|
-
*/
|
|
532
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
533
|
-
readonly name: "ResourceNotFoundException";
|
|
534
|
-
readonly $fault: "client";
|
|
535
|
-
/**
|
|
536
|
-
* @internal
|
|
537
|
-
*/
|
|
538
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
539
|
-
}
|
|
540
|
-
/**
|
|
541
|
-
* @public
|
|
542
|
-
* @enum
|
|
543
|
-
*/
|
|
544
|
-
export declare const KxAzMode: {
|
|
545
|
-
readonly MULTI: "MULTI";
|
|
546
|
-
readonly SINGLE: "SINGLE";
|
|
547
|
-
};
|
|
548
|
-
/**
|
|
549
|
-
* @public
|
|
550
|
-
*/
|
|
551
|
-
export type KxAzMode = (typeof KxAzMode)[keyof typeof KxAzMode];
|
|
552
369
|
/**
|
|
553
370
|
* <p>The configuration for read only disk cache associated with a cluster.</p>
|
|
554
371
|
* @public
|
|
@@ -624,21 +441,6 @@ export interface CapacityConfiguration {
|
|
|
624
441
|
*/
|
|
625
442
|
nodeCount?: number | undefined;
|
|
626
443
|
}
|
|
627
|
-
/**
|
|
628
|
-
* @public
|
|
629
|
-
* @enum
|
|
630
|
-
*/
|
|
631
|
-
export declare const KxClusterType: {
|
|
632
|
-
readonly GATEWAY: "GATEWAY";
|
|
633
|
-
readonly GP: "GP";
|
|
634
|
-
readonly HDB: "HDB";
|
|
635
|
-
readonly RDB: "RDB";
|
|
636
|
-
readonly TICKERPLANT: "TICKERPLANT";
|
|
637
|
-
};
|
|
638
|
-
/**
|
|
639
|
-
* @public
|
|
640
|
-
*/
|
|
641
|
-
export type KxClusterType = (typeof KxClusterType)[keyof typeof KxClusterType];
|
|
642
444
|
/**
|
|
643
445
|
* <p>The structure of the customer code available within the running cluster.</p>
|
|
644
446
|
* @public
|
|
@@ -801,17 +603,6 @@ export interface KxDatabaseConfiguration {
|
|
|
801
603
|
*/
|
|
802
604
|
dataviewConfiguration?: KxDataviewConfiguration | undefined;
|
|
803
605
|
}
|
|
804
|
-
/**
|
|
805
|
-
* @public
|
|
806
|
-
* @enum
|
|
807
|
-
*/
|
|
808
|
-
export declare const KxSavedownStorageType: {
|
|
809
|
-
readonly SDS01: "SDS01";
|
|
810
|
-
};
|
|
811
|
-
/**
|
|
812
|
-
* @public
|
|
813
|
-
*/
|
|
814
|
-
export type KxSavedownStorageType = (typeof KxSavedownStorageType)[keyof typeof KxSavedownStorageType];
|
|
815
606
|
/**
|
|
816
607
|
* <p>The size and type of temporary storage that is used to hold data during the savedown process. All the data written to this storage space is lost when the cluster node is restarted.</p>
|
|
817
608
|
* @public
|
|
@@ -900,17 +691,6 @@ export interface TickerplantLogConfiguration {
|
|
|
900
691
|
*/
|
|
901
692
|
tickerplantLogVolumes?: string[] | undefined;
|
|
902
693
|
}
|
|
903
|
-
/**
|
|
904
|
-
* @public
|
|
905
|
-
* @enum
|
|
906
|
-
*/
|
|
907
|
-
export declare const IPAddressType: {
|
|
908
|
-
readonly IP_V4: "IP_V4";
|
|
909
|
-
};
|
|
910
|
-
/**
|
|
911
|
-
* @public
|
|
912
|
-
*/
|
|
913
|
-
export type IPAddressType = (typeof IPAddressType)[keyof typeof IPAddressType];
|
|
914
694
|
/**
|
|
915
695
|
* <p>Configuration details about the network where the Privatelink endpoint of the cluster resides.</p>
|
|
916
696
|
* @public
|
|
@@ -1085,35 +865,6 @@ export interface CreateKxClusterRequest {
|
|
|
1085
865
|
*/
|
|
1086
866
|
scalingGroupConfiguration?: KxScalingGroupConfiguration | undefined;
|
|
1087
867
|
}
|
|
1088
|
-
/**
|
|
1089
|
-
* @public
|
|
1090
|
-
* @enum
|
|
1091
|
-
*/
|
|
1092
|
-
export declare const KxClusterStatus: {
|
|
1093
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
1094
|
-
readonly CREATING: "CREATING";
|
|
1095
|
-
readonly DELETED: "DELETED";
|
|
1096
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
1097
|
-
readonly DELETING: "DELETING";
|
|
1098
|
-
readonly PENDING: "PENDING";
|
|
1099
|
-
readonly RUNNING: "RUNNING";
|
|
1100
|
-
readonly UPDATING: "UPDATING";
|
|
1101
|
-
};
|
|
1102
|
-
/**
|
|
1103
|
-
* @public
|
|
1104
|
-
*/
|
|
1105
|
-
export type KxClusterStatus = (typeof KxClusterStatus)[keyof typeof KxClusterStatus];
|
|
1106
|
-
/**
|
|
1107
|
-
* @public
|
|
1108
|
-
* @enum
|
|
1109
|
-
*/
|
|
1110
|
-
export declare const VolumeType: {
|
|
1111
|
-
readonly NAS_1: "NAS_1";
|
|
1112
|
-
};
|
|
1113
|
-
/**
|
|
1114
|
-
* @public
|
|
1115
|
-
*/
|
|
1116
|
-
export type VolumeType = (typeof VolumeType)[keyof typeof VolumeType];
|
|
1117
868
|
/**
|
|
1118
869
|
* <p>
|
|
1119
870
|
* The structure that consists of name and type of volume.</p>
|
|
@@ -1388,18 +1139,6 @@ export interface CreateKxDatabaseResponse {
|
|
|
1388
1139
|
*/
|
|
1389
1140
|
lastModifiedTimestamp?: Date | undefined;
|
|
1390
1141
|
}
|
|
1391
|
-
/**
|
|
1392
|
-
* <p>The specified resource group already exists.</p>
|
|
1393
|
-
* @public
|
|
1394
|
-
*/
|
|
1395
|
-
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
1396
|
-
readonly name: "ResourceAlreadyExistsException";
|
|
1397
|
-
readonly $fault: "client";
|
|
1398
|
-
/**
|
|
1399
|
-
* @internal
|
|
1400
|
-
*/
|
|
1401
|
-
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
1402
|
-
}
|
|
1403
1142
|
/**
|
|
1404
1143
|
* @public
|
|
1405
1144
|
*/
|
|
@@ -1495,21 +1234,6 @@ export interface CreateKxDataviewRequest {
|
|
|
1495
1234
|
*/
|
|
1496
1235
|
clientToken?: string | undefined;
|
|
1497
1236
|
}
|
|
1498
|
-
/**
|
|
1499
|
-
* @public
|
|
1500
|
-
* @enum
|
|
1501
|
-
*/
|
|
1502
|
-
export declare const KxDataviewStatus: {
|
|
1503
|
-
readonly ACTIVE: "ACTIVE";
|
|
1504
|
-
readonly CREATING: "CREATING";
|
|
1505
|
-
readonly DELETING: "DELETING";
|
|
1506
|
-
readonly FAILED: "FAILED";
|
|
1507
|
-
readonly UPDATING: "UPDATING";
|
|
1508
|
-
};
|
|
1509
|
-
/**
|
|
1510
|
-
* @public
|
|
1511
|
-
*/
|
|
1512
|
-
export type KxDataviewStatus = (typeof KxDataviewStatus)[keyof typeof KxDataviewStatus];
|
|
1513
1237
|
/**
|
|
1514
1238
|
* @public
|
|
1515
1239
|
*/
|
|
@@ -1630,29 +1354,6 @@ export interface CreateKxEnvironmentRequest {
|
|
|
1630
1354
|
*/
|
|
1631
1355
|
clientToken?: string | undefined;
|
|
1632
1356
|
}
|
|
1633
|
-
/**
|
|
1634
|
-
* @public
|
|
1635
|
-
* @enum
|
|
1636
|
-
*/
|
|
1637
|
-
export declare const EnvironmentStatus: {
|
|
1638
|
-
readonly CREATED: "CREATED";
|
|
1639
|
-
readonly CREATE_REQUESTED: "CREATE_REQUESTED";
|
|
1640
|
-
readonly CREATING: "CREATING";
|
|
1641
|
-
readonly DELETED: "DELETED";
|
|
1642
|
-
readonly DELETE_REQUESTED: "DELETE_REQUESTED";
|
|
1643
|
-
readonly DELETING: "DELETING";
|
|
1644
|
-
readonly FAILED_CREATION: "FAILED_CREATION";
|
|
1645
|
-
readonly FAILED_DELETION: "FAILED_DELETION";
|
|
1646
|
-
readonly FAILED_UPDATING_NETWORK: "FAILED_UPDATING_NETWORK";
|
|
1647
|
-
readonly RETRY_DELETION: "RETRY_DELETION";
|
|
1648
|
-
readonly SUSPENDED: "SUSPENDED";
|
|
1649
|
-
readonly UPDATE_NETWORK_REQUESTED: "UPDATE_NETWORK_REQUESTED";
|
|
1650
|
-
readonly UPDATING_NETWORK: "UPDATING_NETWORK";
|
|
1651
|
-
};
|
|
1652
|
-
/**
|
|
1653
|
-
* @public
|
|
1654
|
-
*/
|
|
1655
|
-
export type EnvironmentStatus = (typeof EnvironmentStatus)[keyof typeof EnvironmentStatus];
|
|
1656
1357
|
/**
|
|
1657
1358
|
* @public
|
|
1658
1359
|
*/
|
|
@@ -1773,22 +1474,6 @@ export interface CreateKxScalingGroupRequest {
|
|
|
1773
1474
|
*/
|
|
1774
1475
|
tags?: Record<string, string> | undefined;
|
|
1775
1476
|
}
|
|
1776
|
-
/**
|
|
1777
|
-
* @public
|
|
1778
|
-
* @enum
|
|
1779
|
-
*/
|
|
1780
|
-
export declare const KxScalingGroupStatus: {
|
|
1781
|
-
readonly ACTIVE: "ACTIVE";
|
|
1782
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
1783
|
-
readonly CREATING: "CREATING";
|
|
1784
|
-
readonly DELETED: "DELETED";
|
|
1785
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
1786
|
-
readonly DELETING: "DELETING";
|
|
1787
|
-
};
|
|
1788
|
-
/**
|
|
1789
|
-
* @public
|
|
1790
|
-
*/
|
|
1791
|
-
export type KxScalingGroupStatus = (typeof KxScalingGroupStatus)[keyof typeof KxScalingGroupStatus];
|
|
1792
1477
|
/**
|
|
1793
1478
|
* @public
|
|
1794
1479
|
*/
|
|
@@ -1917,19 +1602,6 @@ export interface CreateKxUserResponse {
|
|
|
1917
1602
|
*/
|
|
1918
1603
|
iamRole?: string | undefined;
|
|
1919
1604
|
}
|
|
1920
|
-
/**
|
|
1921
|
-
* @public
|
|
1922
|
-
* @enum
|
|
1923
|
-
*/
|
|
1924
|
-
export declare const KxNAS1Type: {
|
|
1925
|
-
readonly HDD_12: "HDD_12";
|
|
1926
|
-
readonly SSD_1000: "SSD_1000";
|
|
1927
|
-
readonly SSD_250: "SSD_250";
|
|
1928
|
-
};
|
|
1929
|
-
/**
|
|
1930
|
-
* @public
|
|
1931
|
-
*/
|
|
1932
|
-
export type KxNAS1Type = (typeof KxNAS1Type)[keyof typeof KxNAS1Type];
|
|
1933
1605
|
/**
|
|
1934
1606
|
* <p>
|
|
1935
1607
|
* The structure containing the size and type of the network attached storage (NAS_1) file system volume.
|
|
@@ -1955,17 +1627,6 @@ export interface KxNAS1Configuration {
|
|
|
1955
1627
|
*/
|
|
1956
1628
|
size?: number | undefined;
|
|
1957
1629
|
}
|
|
1958
|
-
/**
|
|
1959
|
-
* @public
|
|
1960
|
-
* @enum
|
|
1961
|
-
*/
|
|
1962
|
-
export declare const KxVolumeType: {
|
|
1963
|
-
readonly NAS_1: "NAS_1";
|
|
1964
|
-
};
|
|
1965
|
-
/**
|
|
1966
|
-
* @public
|
|
1967
|
-
*/
|
|
1968
|
-
export type KxVolumeType = (typeof KxVolumeType)[keyof typeof KxVolumeType];
|
|
1969
1630
|
/**
|
|
1970
1631
|
* @public
|
|
1971
1632
|
*/
|
|
@@ -2024,25 +1685,6 @@ export interface CreateKxVolumeRequest {
|
|
|
2024
1685
|
*/
|
|
2025
1686
|
tags?: Record<string, string> | undefined;
|
|
2026
1687
|
}
|
|
2027
|
-
/**
|
|
2028
|
-
* @public
|
|
2029
|
-
* @enum
|
|
2030
|
-
*/
|
|
2031
|
-
export declare const KxVolumeStatus: {
|
|
2032
|
-
readonly ACTIVE: "ACTIVE";
|
|
2033
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
2034
|
-
readonly CREATING: "CREATING";
|
|
2035
|
-
readonly DELETED: "DELETED";
|
|
2036
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
2037
|
-
readonly DELETING: "DELETING";
|
|
2038
|
-
readonly UPDATED: "UPDATED";
|
|
2039
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
2040
|
-
readonly UPDATING: "UPDATING";
|
|
2041
|
-
};
|
|
2042
|
-
/**
|
|
2043
|
-
* @public
|
|
2044
|
-
*/
|
|
2045
|
-
export type KxVolumeStatus = (typeof KxVolumeStatus)[keyof typeof KxVolumeStatus];
|
|
2046
1688
|
/**
|
|
2047
1689
|
* @public
|
|
2048
1690
|
*/
|
|
@@ -3024,36 +2666,6 @@ export interface CustomDNSServer {
|
|
|
3024
2666
|
*/
|
|
3025
2667
|
customDNSServerIP: string | undefined;
|
|
3026
2668
|
}
|
|
3027
|
-
/**
|
|
3028
|
-
* @public
|
|
3029
|
-
* @enum
|
|
3030
|
-
*/
|
|
3031
|
-
export declare const DnsStatus: {
|
|
3032
|
-
readonly FAILED_UPDATE: "FAILED_UPDATE";
|
|
3033
|
-
readonly NONE: "NONE";
|
|
3034
|
-
readonly SUCCESSFULLY_UPDATED: "SUCCESSFULLY_UPDATED";
|
|
3035
|
-
readonly UPDATE_REQUESTED: "UPDATE_REQUESTED";
|
|
3036
|
-
readonly UPDATING: "UPDATING";
|
|
3037
|
-
};
|
|
3038
|
-
/**
|
|
3039
|
-
* @public
|
|
3040
|
-
*/
|
|
3041
|
-
export type DnsStatus = (typeof DnsStatus)[keyof typeof DnsStatus];
|
|
3042
|
-
/**
|
|
3043
|
-
* @public
|
|
3044
|
-
* @enum
|
|
3045
|
-
*/
|
|
3046
|
-
export declare const TgwStatus: {
|
|
3047
|
-
readonly FAILED_UPDATE: "FAILED_UPDATE";
|
|
3048
|
-
readonly NONE: "NONE";
|
|
3049
|
-
readonly SUCCESSFULLY_UPDATED: "SUCCESSFULLY_UPDATED";
|
|
3050
|
-
readonly UPDATE_REQUESTED: "UPDATE_REQUESTED";
|
|
3051
|
-
readonly UPDATING: "UPDATING";
|
|
3052
|
-
};
|
|
3053
|
-
/**
|
|
3054
|
-
* @public
|
|
3055
|
-
*/
|
|
3056
|
-
export type TgwStatus = (typeof TgwStatus)[keyof typeof TgwStatus];
|
|
3057
2669
|
/**
|
|
3058
2670
|
* <p>
|
|
3059
2671
|
* Defines the ICMP protocol that consists of the ICMP type and code.
|
|
@@ -3097,18 +2709,6 @@ export interface PortRange {
|
|
|
3097
2709
|
*/
|
|
3098
2710
|
to: number | undefined;
|
|
3099
2711
|
}
|
|
3100
|
-
/**
|
|
3101
|
-
* @public
|
|
3102
|
-
* @enum
|
|
3103
|
-
*/
|
|
3104
|
-
export declare const RuleAction: {
|
|
3105
|
-
readonly ALLOW: "allow";
|
|
3106
|
-
readonly DENY: "deny";
|
|
3107
|
-
};
|
|
3108
|
-
/**
|
|
3109
|
-
* @public
|
|
3110
|
-
*/
|
|
3111
|
-
export type RuleAction = (typeof RuleAction)[keyof typeof RuleAction];
|
|
3112
2712
|
/**
|
|
3113
2713
|
* <p>
|
|
3114
2714
|
* The network access control list (ACL) is an optional layer of security for your VPC that acts as a firewall for controlling traffic in and out of one or more subnets. The entry is a set of numbered ingress and egress rules that determine whether a packet should be allowed in or out of a subnet associated with the ACL. We process the entries in the ACL according to the rule numbers, in ascending order.
|
|
@@ -3779,18 +3379,6 @@ export interface ListKxClusterNodesRequest {
|
|
|
3779
3379
|
*/
|
|
3780
3380
|
maxResults?: number | undefined;
|
|
3781
3381
|
}
|
|
3782
|
-
/**
|
|
3783
|
-
* @public
|
|
3784
|
-
* @enum
|
|
3785
|
-
*/
|
|
3786
|
-
export declare const KxNodeStatus: {
|
|
3787
|
-
readonly PROVISIONING: "PROVISIONING";
|
|
3788
|
-
readonly RUNNING: "RUNNING";
|
|
3789
|
-
};
|
|
3790
|
-
/**
|
|
3791
|
-
* @public
|
|
3792
|
-
*/
|
|
3793
|
-
export type KxNodeStatus = (typeof KxNodeStatus)[keyof typeof KxNodeStatus];
|
|
3794
3382
|
/**
|
|
3795
3383
|
* <p>A structure that stores metadata for a kdb node.</p>
|
|
3796
3384
|
* @public
|
|
@@ -4724,18 +4312,6 @@ export interface ListKxVolumesResponse {
|
|
|
4724
4312
|
*/
|
|
4725
4313
|
nextToken?: string | undefined;
|
|
4726
4314
|
}
|
|
4727
|
-
/**
|
|
4728
|
-
* <p>The request is invalid. Something is wrong with the input to the request.</p>
|
|
4729
|
-
* @public
|
|
4730
|
-
*/
|
|
4731
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
4732
|
-
readonly name: "InvalidRequestException";
|
|
4733
|
-
readonly $fault: "client";
|
|
4734
|
-
/**
|
|
4735
|
-
* @internal
|
|
4736
|
-
*/
|
|
4737
|
-
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
4738
|
-
}
|
|
4739
4315
|
/**
|
|
4740
4316
|
* @public
|
|
4741
4317
|
*/
|
|
@@ -4847,19 +4423,6 @@ export interface UpdateEnvironmentResponse {
|
|
|
4847
4423
|
*/
|
|
4848
4424
|
environment?: Environment | undefined;
|
|
4849
4425
|
}
|
|
4850
|
-
/**
|
|
4851
|
-
* @public
|
|
4852
|
-
* @enum
|
|
4853
|
-
*/
|
|
4854
|
-
export declare const KxClusterCodeDeploymentStrategy: {
|
|
4855
|
-
readonly FORCE: "FORCE";
|
|
4856
|
-
readonly NO_RESTART: "NO_RESTART";
|
|
4857
|
-
readonly ROLLING: "ROLLING";
|
|
4858
|
-
};
|
|
4859
|
-
/**
|
|
4860
|
-
* @public
|
|
4861
|
-
*/
|
|
4862
|
-
export type KxClusterCodeDeploymentStrategy = (typeof KxClusterCodeDeploymentStrategy)[keyof typeof KxClusterCodeDeploymentStrategy];
|
|
4863
4426
|
/**
|
|
4864
4427
|
* <p>
|
|
4865
4428
|
* The configuration that allows you to choose how you want to update code on a cluster. Depending on the option you choose, you can reduce the time it takes to update the cluster.
|
|
@@ -4942,18 +4505,6 @@ export interface UpdateKxClusterCodeConfigurationRequest {
|
|
|
4942
4505
|
*/
|
|
4943
4506
|
export interface UpdateKxClusterCodeConfigurationResponse {
|
|
4944
4507
|
}
|
|
4945
|
-
/**
|
|
4946
|
-
* @public
|
|
4947
|
-
* @enum
|
|
4948
|
-
*/
|
|
4949
|
-
export declare const KxDeploymentStrategy: {
|
|
4950
|
-
readonly NO_RESTART: "NO_RESTART";
|
|
4951
|
-
readonly ROLLING: "ROLLING";
|
|
4952
|
-
};
|
|
4953
|
-
/**
|
|
4954
|
-
* @public
|
|
4955
|
-
*/
|
|
4956
|
-
export type KxDeploymentStrategy = (typeof KxDeploymentStrategy)[keyof typeof KxDeploymentStrategy];
|
|
4957
4508
|
/**
|
|
4958
4509
|
* <p>
|
|
4959
4510
|
* The configuration that allows you to choose how you want to update the databases on a cluster. Depending on the option you choose, you can reduce the time it takes to update the cluster.
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { FinspaceExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { FinspaceServiceException } from "./models/FinspaceServiceException";
|