@aws-sdk/client-finspace 3.468.0 → 3.470.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/README.md +112 -0
- package/dist-cjs/Finspace.js +28 -0
- package/dist-cjs/commands/CreateKxDataviewCommand.js +51 -0
- package/dist-cjs/commands/CreateKxScalingGroupCommand.js +51 -0
- package/dist-cjs/commands/CreateKxVolumeCommand.js +51 -0
- package/dist-cjs/commands/DeleteKxDataviewCommand.js +51 -0
- package/dist-cjs/commands/DeleteKxScalingGroupCommand.js +51 -0
- package/dist-cjs/commands/DeleteKxVolumeCommand.js +51 -0
- package/dist-cjs/commands/GetKxDataviewCommand.js +51 -0
- package/dist-cjs/commands/GetKxScalingGroupCommand.js +51 -0
- package/dist-cjs/commands/GetKxVolumeCommand.js +51 -0
- package/dist-cjs/commands/ListKxDataviewsCommand.js +51 -0
- package/dist-cjs/commands/ListKxScalingGroupsCommand.js +51 -0
- package/dist-cjs/commands/ListKxVolumesCommand.js +51 -0
- package/dist-cjs/commands/UpdateKxDataviewCommand.js +51 -0
- package/dist-cjs/commands/UpdateKxVolumeCommand.js +51 -0
- package/dist-cjs/commands/index.js +14 -0
- package/dist-cjs/models/models_0.js +39 -1
- package/dist-cjs/pagination/ListKxDataviewsPaginator.js +29 -0
- package/dist-cjs/pagination/ListKxScalingGroupsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1477 -207
- package/dist-es/Finspace.js +28 -0
- package/dist-es/commands/CreateKxDataviewCommand.js +47 -0
- package/dist-es/commands/CreateKxScalingGroupCommand.js +47 -0
- package/dist-es/commands/CreateKxVolumeCommand.js +47 -0
- package/dist-es/commands/DeleteKxDataviewCommand.js +47 -0
- package/dist-es/commands/DeleteKxScalingGroupCommand.js +47 -0
- package/dist-es/commands/DeleteKxVolumeCommand.js +47 -0
- package/dist-es/commands/GetKxDataviewCommand.js +47 -0
- package/dist-es/commands/GetKxScalingGroupCommand.js +47 -0
- package/dist-es/commands/GetKxVolumeCommand.js +47 -0
- package/dist-es/commands/ListKxDataviewsCommand.js +47 -0
- package/dist-es/commands/ListKxScalingGroupsCommand.js +47 -0
- package/dist-es/commands/ListKxVolumesCommand.js +47 -0
- package/dist-es/commands/UpdateKxDataviewCommand.js +47 -0
- package/dist-es/commands/UpdateKxVolumeCommand.js +47 -0
- package/dist-es/commands/index.js +14 -0
- package/dist-es/models/models_0.js +38 -0
- package/dist-es/pagination/ListKxDataviewsPaginator.js +25 -0
- package/dist-es/pagination/ListKxScalingGroupsPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +1397 -155
- package/dist-types/Finspace.d.ts +98 -0
- package/dist-types/FinspaceClient.d.ts +16 -2
- package/dist-types/commands/CreateKxClusterCommand.d.ts +68 -6
- package/dist-types/commands/CreateKxDataviewCommand.d.ts +136 -0
- package/dist-types/commands/CreateKxScalingGroupCommand.d.ts +108 -0
- package/dist-types/commands/CreateKxVolumeCommand.d.ts +129 -0
- package/dist-types/commands/DeleteKxDataviewCommand.d.ts +94 -0
- package/dist-types/commands/DeleteKxEnvironmentCommand.d.ts +4 -0
- package/dist-types/commands/DeleteKxScalingGroupCommand.d.ts +96 -0
- package/dist-types/commands/DeleteKxUserCommand.d.ts +4 -0
- package/dist-types/commands/DeleteKxVolumeCommand.d.ts +98 -0
- package/dist-types/commands/GetKxClusterCommand.d.ts +37 -3
- package/dist-types/commands/GetKxDataviewCommand.d.ts +130 -0
- package/dist-types/commands/GetKxEnvironmentCommand.d.ts +3 -0
- package/dist-types/commands/GetKxScalingGroupCommand.d.ts +107 -0
- package/dist-types/commands/GetKxVolumeCommand.d.ts +120 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +3 -0
- package/dist-types/commands/ListKxClustersCommand.d.ts +8 -2
- package/dist-types/commands/ListKxDataviewsCommand.d.ts +135 -0
- package/dist-types/commands/ListKxEnvironmentsCommand.d.ts +3 -0
- package/dist-types/commands/ListKxScalingGroupsCommand.d.ts +112 -0
- package/dist-types/commands/ListKxVolumesCommand.d.ts +115 -0
- package/dist-types/commands/UpdateKxClusterDatabasesCommand.d.ts +15 -0
- package/dist-types/commands/UpdateKxDataviewCommand.d.ts +145 -0
- package/dist-types/commands/UpdateKxVolumeCommand.d.ts +128 -0
- package/dist-types/commands/index.d.ts +14 -0
- package/dist-types/models/models_0.d.ts +2214 -214
- package/dist-types/pagination/ListKxDataviewsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListKxScalingGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +126 -0
- package/dist-types/ts3.4/Finspace.d.ts +238 -0
- package/dist-types/ts3.4/FinspaceClient.d.ts +86 -2
- package/dist-types/ts3.4/commands/CreateKxDataviewCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateKxScalingGroupCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateKxVolumeCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteKxDataviewCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteKxScalingGroupCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteKxVolumeCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetKxDataviewCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetKxScalingGroupCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetKxVolumeCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListKxDataviewsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListKxScalingGroupsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListKxVolumesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateKxDataviewCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateKxVolumeCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +14 -0
- package/dist-types/ts3.4/models/models_0.d.ts +360 -4
- package/dist-types/ts3.4/pagination/ListKxDataviewsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListKxScalingGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +168 -0
- package/package.json +13 -13
|
@@ -169,6 +169,7 @@ export declare const KxClusterType: {
|
|
|
169
169
|
readonly GP: "GP";
|
|
170
170
|
readonly HDB: "HDB";
|
|
171
171
|
readonly RDB: "RDB";
|
|
172
|
+
readonly TICKERPLANT: "TICKERPLANT";
|
|
172
173
|
};
|
|
173
174
|
export type KxClusterType = (typeof KxClusterType)[keyof typeof KxClusterType];
|
|
174
175
|
export interface CodeConfiguration {
|
|
@@ -183,11 +184,24 @@ export interface KxCommandLineArgument {
|
|
|
183
184
|
export interface KxDatabaseCacheConfiguration {
|
|
184
185
|
cacheType: string | undefined;
|
|
185
186
|
dbPaths: string[] | undefined;
|
|
187
|
+
dataviewName?: string;
|
|
188
|
+
}
|
|
189
|
+
export interface KxDataviewSegmentConfiguration {
|
|
190
|
+
dbPaths: string[] | undefined;
|
|
191
|
+
volumeName: string | undefined;
|
|
192
|
+
}
|
|
193
|
+
export interface KxDataviewConfiguration {
|
|
194
|
+
dataviewName?: string;
|
|
195
|
+
dataviewVersionId?: string;
|
|
196
|
+
changesetId?: string;
|
|
197
|
+
segmentConfigurations?: KxDataviewSegmentConfiguration[];
|
|
186
198
|
}
|
|
187
199
|
export interface KxDatabaseConfiguration {
|
|
188
200
|
databaseName: string | undefined;
|
|
189
201
|
cacheConfigurations?: KxDatabaseCacheConfiguration[];
|
|
190
202
|
changesetId?: string;
|
|
203
|
+
dataviewName?: string;
|
|
204
|
+
dataviewConfiguration?: KxDataviewConfiguration;
|
|
191
205
|
}
|
|
192
206
|
export declare const KxSavedownStorageType: {
|
|
193
207
|
readonly SDS01: "SDS01";
|
|
@@ -195,8 +209,19 @@ export declare const KxSavedownStorageType: {
|
|
|
195
209
|
export type KxSavedownStorageType =
|
|
196
210
|
(typeof KxSavedownStorageType)[keyof typeof KxSavedownStorageType];
|
|
197
211
|
export interface KxSavedownStorageConfiguration {
|
|
198
|
-
type
|
|
199
|
-
size
|
|
212
|
+
type?: KxSavedownStorageType;
|
|
213
|
+
size?: number;
|
|
214
|
+
volumeName?: string;
|
|
215
|
+
}
|
|
216
|
+
export interface KxScalingGroupConfiguration {
|
|
217
|
+
scalingGroupName: string | undefined;
|
|
218
|
+
memoryLimit?: number;
|
|
219
|
+
memoryReservation: number | undefined;
|
|
220
|
+
nodeCount: number | undefined;
|
|
221
|
+
cpu?: number;
|
|
222
|
+
}
|
|
223
|
+
export interface TickerplantLogConfiguration {
|
|
224
|
+
tickerplantLogVolumes?: string[];
|
|
200
225
|
}
|
|
201
226
|
export declare const IPAddressType: {
|
|
202
227
|
readonly IP_V4: "IP_V4";
|
|
@@ -213,13 +238,14 @@ export interface CreateKxClusterRequest {
|
|
|
213
238
|
environmentId: string | undefined;
|
|
214
239
|
clusterName: string | undefined;
|
|
215
240
|
clusterType: KxClusterType | undefined;
|
|
241
|
+
tickerplantLogConfiguration?: TickerplantLogConfiguration;
|
|
216
242
|
databases?: KxDatabaseConfiguration[];
|
|
217
243
|
cacheStorageConfigurations?: KxCacheStorageConfiguration[];
|
|
218
244
|
autoScalingConfiguration?: AutoScalingConfiguration;
|
|
219
245
|
clusterDescription?: string;
|
|
220
|
-
capacityConfiguration
|
|
246
|
+
capacityConfiguration?: CapacityConfiguration;
|
|
221
247
|
releaseLabel: string | undefined;
|
|
222
|
-
vpcConfiguration
|
|
248
|
+
vpcConfiguration: VpcConfiguration | undefined;
|
|
223
249
|
initializationScript?: string;
|
|
224
250
|
commandLineArguments?: KxCommandLineArgument[];
|
|
225
251
|
code?: CodeConfiguration;
|
|
@@ -228,6 +254,7 @@ export interface CreateKxClusterRequest {
|
|
|
228
254
|
azMode: KxAzMode | undefined;
|
|
229
255
|
availabilityZoneId?: string;
|
|
230
256
|
tags?: Record<string, string>;
|
|
257
|
+
scalingGroupConfiguration?: KxScalingGroupConfiguration;
|
|
231
258
|
}
|
|
232
259
|
export declare const KxClusterStatus: {
|
|
233
260
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
@@ -241,12 +268,22 @@ export declare const KxClusterStatus: {
|
|
|
241
268
|
};
|
|
242
269
|
export type KxClusterStatus =
|
|
243
270
|
(typeof KxClusterStatus)[keyof typeof KxClusterStatus];
|
|
271
|
+
export declare const VolumeType: {
|
|
272
|
+
readonly NAS_1: "NAS_1";
|
|
273
|
+
};
|
|
274
|
+
export type VolumeType = (typeof VolumeType)[keyof typeof VolumeType];
|
|
275
|
+
export interface Volume {
|
|
276
|
+
volumeName?: string;
|
|
277
|
+
volumeType?: VolumeType;
|
|
278
|
+
}
|
|
244
279
|
export interface CreateKxClusterResponse {
|
|
245
280
|
environmentId?: string;
|
|
246
281
|
status?: KxClusterStatus;
|
|
247
282
|
statusReason?: string;
|
|
248
283
|
clusterName?: string;
|
|
249
284
|
clusterType?: KxClusterType;
|
|
285
|
+
tickerplantLogConfiguration?: TickerplantLogConfiguration;
|
|
286
|
+
volumes?: Volume[];
|
|
250
287
|
databases?: KxDatabaseConfiguration[];
|
|
251
288
|
cacheStorageConfigurations?: KxCacheStorageConfiguration[];
|
|
252
289
|
autoScalingConfiguration?: AutoScalingConfiguration;
|
|
@@ -263,6 +300,7 @@ export interface CreateKxClusterResponse {
|
|
|
263
300
|
azMode?: KxAzMode;
|
|
264
301
|
availabilityZoneId?: string;
|
|
265
302
|
createdTimestamp?: Date;
|
|
303
|
+
scalingGroupConfiguration?: KxScalingGroupConfiguration;
|
|
266
304
|
}
|
|
267
305
|
export interface CreateKxDatabaseRequest {
|
|
268
306
|
environmentId: string | undefined;
|
|
@@ -286,6 +324,42 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
|
286
324
|
opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
|
|
287
325
|
);
|
|
288
326
|
}
|
|
327
|
+
export interface CreateKxDataviewRequest {
|
|
328
|
+
environmentId: string | undefined;
|
|
329
|
+
databaseName: string | undefined;
|
|
330
|
+
dataviewName: string | undefined;
|
|
331
|
+
azMode: KxAzMode | undefined;
|
|
332
|
+
availabilityZoneId?: string;
|
|
333
|
+
changesetId?: string;
|
|
334
|
+
segmentConfigurations?: KxDataviewSegmentConfiguration[];
|
|
335
|
+
autoUpdate?: boolean;
|
|
336
|
+
description?: string;
|
|
337
|
+
tags?: Record<string, string>;
|
|
338
|
+
clientToken?: string;
|
|
339
|
+
}
|
|
340
|
+
export declare const KxDataviewStatus: {
|
|
341
|
+
readonly ACTIVE: "ACTIVE";
|
|
342
|
+
readonly CREATING: "CREATING";
|
|
343
|
+
readonly DELETING: "DELETING";
|
|
344
|
+
readonly FAILED: "FAILED";
|
|
345
|
+
readonly UPDATING: "UPDATING";
|
|
346
|
+
};
|
|
347
|
+
export type KxDataviewStatus =
|
|
348
|
+
(typeof KxDataviewStatus)[keyof typeof KxDataviewStatus];
|
|
349
|
+
export interface CreateKxDataviewResponse {
|
|
350
|
+
dataviewName?: string;
|
|
351
|
+
databaseName?: string;
|
|
352
|
+
environmentId?: string;
|
|
353
|
+
azMode?: KxAzMode;
|
|
354
|
+
availabilityZoneId?: string;
|
|
355
|
+
changesetId?: string;
|
|
356
|
+
segmentConfigurations?: KxDataviewSegmentConfiguration[];
|
|
357
|
+
description?: string;
|
|
358
|
+
autoUpdate?: boolean;
|
|
359
|
+
createdTimestamp?: Date;
|
|
360
|
+
lastModifiedTimestamp?: Date;
|
|
361
|
+
status?: KxDataviewStatus;
|
|
362
|
+
}
|
|
289
363
|
export interface CreateKxEnvironmentRequest {
|
|
290
364
|
name: string | undefined;
|
|
291
365
|
description?: string;
|
|
@@ -319,6 +393,33 @@ export interface CreateKxEnvironmentResponse {
|
|
|
319
393
|
kmsKeyId?: string;
|
|
320
394
|
creationTimestamp?: Date;
|
|
321
395
|
}
|
|
396
|
+
export interface CreateKxScalingGroupRequest {
|
|
397
|
+
clientToken?: string;
|
|
398
|
+
environmentId: string | undefined;
|
|
399
|
+
scalingGroupName: string | undefined;
|
|
400
|
+
hostType: string | undefined;
|
|
401
|
+
availabilityZoneId: string | undefined;
|
|
402
|
+
tags?: Record<string, string>;
|
|
403
|
+
}
|
|
404
|
+
export declare const KxScalingGroupStatus: {
|
|
405
|
+
readonly ACTIVE: "ACTIVE";
|
|
406
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
407
|
+
readonly CREATING: "CREATING";
|
|
408
|
+
readonly DELETED: "DELETED";
|
|
409
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
410
|
+
readonly DELETING: "DELETING";
|
|
411
|
+
};
|
|
412
|
+
export type KxScalingGroupStatus =
|
|
413
|
+
(typeof KxScalingGroupStatus)[keyof typeof KxScalingGroupStatus];
|
|
414
|
+
export interface CreateKxScalingGroupResponse {
|
|
415
|
+
environmentId?: string;
|
|
416
|
+
scalingGroupName?: string;
|
|
417
|
+
hostType?: string;
|
|
418
|
+
availabilityZoneId?: string;
|
|
419
|
+
status?: KxScalingGroupStatus;
|
|
420
|
+
lastModifiedTimestamp?: Date;
|
|
421
|
+
createdTimestamp?: Date;
|
|
422
|
+
}
|
|
322
423
|
export interface CreateKxUserRequest {
|
|
323
424
|
environmentId: string | undefined;
|
|
324
425
|
userName: string | undefined;
|
|
@@ -332,6 +433,57 @@ export interface CreateKxUserResponse {
|
|
|
332
433
|
environmentId?: string;
|
|
333
434
|
iamRole?: string;
|
|
334
435
|
}
|
|
436
|
+
export declare const KxNAS1Type: {
|
|
437
|
+
readonly HDD_12: "HDD_12";
|
|
438
|
+
readonly SSD_1000: "SSD_1000";
|
|
439
|
+
readonly SSD_250: "SSD_250";
|
|
440
|
+
};
|
|
441
|
+
export type KxNAS1Type = (typeof KxNAS1Type)[keyof typeof KxNAS1Type];
|
|
442
|
+
export interface KxNAS1Configuration {
|
|
443
|
+
type?: KxNAS1Type;
|
|
444
|
+
size?: number;
|
|
445
|
+
}
|
|
446
|
+
export declare const KxVolumeType: {
|
|
447
|
+
readonly NAS_1: "NAS_1";
|
|
448
|
+
};
|
|
449
|
+
export type KxVolumeType = (typeof KxVolumeType)[keyof typeof KxVolumeType];
|
|
450
|
+
export interface CreateKxVolumeRequest {
|
|
451
|
+
clientToken?: string;
|
|
452
|
+
environmentId: string | undefined;
|
|
453
|
+
volumeType: KxVolumeType | undefined;
|
|
454
|
+
volumeName: string | undefined;
|
|
455
|
+
description?: string;
|
|
456
|
+
nas1Configuration?: KxNAS1Configuration;
|
|
457
|
+
azMode: KxAzMode | undefined;
|
|
458
|
+
availabilityZoneIds: string[] | undefined;
|
|
459
|
+
tags?: Record<string, string>;
|
|
460
|
+
}
|
|
461
|
+
export declare const KxVolumeStatus: {
|
|
462
|
+
readonly ACTIVE: "ACTIVE";
|
|
463
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
464
|
+
readonly CREATING: "CREATING";
|
|
465
|
+
readonly DELETED: "DELETED";
|
|
466
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
467
|
+
readonly DELETING: "DELETING";
|
|
468
|
+
readonly UPDATED: "UPDATED";
|
|
469
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
470
|
+
readonly UPDATING: "UPDATING";
|
|
471
|
+
};
|
|
472
|
+
export type KxVolumeStatus =
|
|
473
|
+
(typeof KxVolumeStatus)[keyof typeof KxVolumeStatus];
|
|
474
|
+
export interface CreateKxVolumeResponse {
|
|
475
|
+
environmentId?: string;
|
|
476
|
+
volumeName?: string;
|
|
477
|
+
volumeType?: KxVolumeType;
|
|
478
|
+
volumeArn?: string;
|
|
479
|
+
nas1Configuration?: KxNAS1Configuration;
|
|
480
|
+
status?: KxVolumeStatus;
|
|
481
|
+
statusReason?: string;
|
|
482
|
+
azMode?: KxAzMode;
|
|
483
|
+
description?: string;
|
|
484
|
+
availabilityZoneIds?: string[];
|
|
485
|
+
createdTimestamp?: Date;
|
|
486
|
+
}
|
|
335
487
|
export interface DeleteEnvironmentRequest {
|
|
336
488
|
environmentId: string | undefined;
|
|
337
489
|
}
|
|
@@ -348,15 +500,36 @@ export interface DeleteKxDatabaseRequest {
|
|
|
348
500
|
clientToken?: string;
|
|
349
501
|
}
|
|
350
502
|
export interface DeleteKxDatabaseResponse {}
|
|
503
|
+
export interface DeleteKxDataviewRequest {
|
|
504
|
+
environmentId: string | undefined;
|
|
505
|
+
databaseName: string | undefined;
|
|
506
|
+
dataviewName: string | undefined;
|
|
507
|
+
clientToken?: string;
|
|
508
|
+
}
|
|
509
|
+
export interface DeleteKxDataviewResponse {}
|
|
351
510
|
export interface DeleteKxEnvironmentRequest {
|
|
352
511
|
environmentId: string | undefined;
|
|
512
|
+
clientToken?: string;
|
|
353
513
|
}
|
|
354
514
|
export interface DeleteKxEnvironmentResponse {}
|
|
515
|
+
export interface DeleteKxScalingGroupRequest {
|
|
516
|
+
environmentId: string | undefined;
|
|
517
|
+
scalingGroupName: string | undefined;
|
|
518
|
+
clientToken?: string;
|
|
519
|
+
}
|
|
520
|
+
export interface DeleteKxScalingGroupResponse {}
|
|
355
521
|
export interface DeleteKxUserRequest {
|
|
356
522
|
userName: string | undefined;
|
|
357
523
|
environmentId: string | undefined;
|
|
524
|
+
clientToken?: string;
|
|
358
525
|
}
|
|
359
526
|
export interface DeleteKxUserResponse {}
|
|
527
|
+
export interface DeleteKxVolumeRequest {
|
|
528
|
+
environmentId: string | undefined;
|
|
529
|
+
volumeName: string | undefined;
|
|
530
|
+
clientToken?: string;
|
|
531
|
+
}
|
|
532
|
+
export interface DeleteKxVolumeResponse {}
|
|
360
533
|
export interface GetEnvironmentRequest {
|
|
361
534
|
environmentId: string | undefined;
|
|
362
535
|
}
|
|
@@ -402,6 +575,8 @@ export interface GetKxClusterResponse {
|
|
|
402
575
|
statusReason?: string;
|
|
403
576
|
clusterName?: string;
|
|
404
577
|
clusterType?: KxClusterType;
|
|
578
|
+
tickerplantLogConfiguration?: TickerplantLogConfiguration;
|
|
579
|
+
volumes?: Volume[];
|
|
405
580
|
databases?: KxDatabaseConfiguration[];
|
|
406
581
|
cacheStorageConfigurations?: KxCacheStorageConfiguration[];
|
|
407
582
|
autoScalingConfiguration?: AutoScalingConfiguration;
|
|
@@ -418,6 +593,7 @@ export interface GetKxClusterResponse {
|
|
|
418
593
|
azMode?: KxAzMode;
|
|
419
594
|
availabilityZoneId?: string;
|
|
420
595
|
createdTimestamp?: Date;
|
|
596
|
+
scalingGroupConfiguration?: KxScalingGroupConfiguration;
|
|
421
597
|
}
|
|
422
598
|
export interface GetKxConnectionStringRequest {
|
|
423
599
|
userArn: string | undefined;
|
|
@@ -443,6 +619,34 @@ export interface GetKxDatabaseResponse {
|
|
|
443
619
|
numChangesets?: number;
|
|
444
620
|
numFiles?: number;
|
|
445
621
|
}
|
|
622
|
+
export interface GetKxDataviewRequest {
|
|
623
|
+
environmentId: string | undefined;
|
|
624
|
+
databaseName: string | undefined;
|
|
625
|
+
dataviewName: string | undefined;
|
|
626
|
+
}
|
|
627
|
+
export interface KxDataviewActiveVersion {
|
|
628
|
+
changesetId?: string;
|
|
629
|
+
segmentConfigurations?: KxDataviewSegmentConfiguration[];
|
|
630
|
+
attachedClusters?: string[];
|
|
631
|
+
createdTimestamp?: Date;
|
|
632
|
+
versionId?: string;
|
|
633
|
+
}
|
|
634
|
+
export interface GetKxDataviewResponse {
|
|
635
|
+
databaseName?: string;
|
|
636
|
+
dataviewName?: string;
|
|
637
|
+
azMode?: KxAzMode;
|
|
638
|
+
availabilityZoneId?: string;
|
|
639
|
+
changesetId?: string;
|
|
640
|
+
segmentConfigurations?: KxDataviewSegmentConfiguration[];
|
|
641
|
+
activeVersions?: KxDataviewActiveVersion[];
|
|
642
|
+
description?: string;
|
|
643
|
+
autoUpdate?: boolean;
|
|
644
|
+
environmentId?: string;
|
|
645
|
+
createdTimestamp?: Date;
|
|
646
|
+
lastModifiedTimestamp?: Date;
|
|
647
|
+
status?: KxDataviewStatus;
|
|
648
|
+
statusReason?: string;
|
|
649
|
+
}
|
|
446
650
|
export interface GetKxEnvironmentRequest {
|
|
447
651
|
environmentId: string | undefined;
|
|
448
652
|
}
|
|
@@ -511,6 +715,21 @@ export interface GetKxEnvironmentResponse {
|
|
|
511
715
|
availabilityZoneIds?: string[];
|
|
512
716
|
certificateAuthorityArn?: string;
|
|
513
717
|
}
|
|
718
|
+
export interface GetKxScalingGroupRequest {
|
|
719
|
+
environmentId: string | undefined;
|
|
720
|
+
scalingGroupName: string | undefined;
|
|
721
|
+
}
|
|
722
|
+
export interface GetKxScalingGroupResponse {
|
|
723
|
+
scalingGroupName?: string;
|
|
724
|
+
scalingGroupArn?: string;
|
|
725
|
+
hostType?: string;
|
|
726
|
+
clusters?: string[];
|
|
727
|
+
availabilityZoneId?: string;
|
|
728
|
+
status?: KxScalingGroupStatus;
|
|
729
|
+
statusReason?: string;
|
|
730
|
+
lastModifiedTimestamp?: Date;
|
|
731
|
+
createdTimestamp?: Date;
|
|
732
|
+
}
|
|
514
733
|
export interface GetKxUserRequest {
|
|
515
734
|
userName: string | undefined;
|
|
516
735
|
environmentId: string | undefined;
|
|
@@ -521,6 +740,30 @@ export interface GetKxUserResponse {
|
|
|
521
740
|
environmentId?: string;
|
|
522
741
|
iamRole?: string;
|
|
523
742
|
}
|
|
743
|
+
export interface GetKxVolumeRequest {
|
|
744
|
+
environmentId: string | undefined;
|
|
745
|
+
volumeName: string | undefined;
|
|
746
|
+
}
|
|
747
|
+
export interface KxAttachedCluster {
|
|
748
|
+
clusterName?: string;
|
|
749
|
+
clusterType?: KxClusterType;
|
|
750
|
+
clusterStatus?: KxClusterStatus;
|
|
751
|
+
}
|
|
752
|
+
export interface GetKxVolumeResponse {
|
|
753
|
+
environmentId?: string;
|
|
754
|
+
volumeName?: string;
|
|
755
|
+
volumeType?: KxVolumeType;
|
|
756
|
+
volumeArn?: string;
|
|
757
|
+
nas1Configuration?: KxNAS1Configuration;
|
|
758
|
+
status?: KxVolumeStatus;
|
|
759
|
+
statusReason?: string;
|
|
760
|
+
createdTimestamp?: Date;
|
|
761
|
+
description?: string;
|
|
762
|
+
azMode?: KxAzMode;
|
|
763
|
+
availabilityZoneIds?: string[];
|
|
764
|
+
lastModifiedTimestamp?: Date;
|
|
765
|
+
attachedClusters?: KxAttachedCluster[];
|
|
766
|
+
}
|
|
524
767
|
export interface ListEnvironmentsRequest {
|
|
525
768
|
nextToken?: string;
|
|
526
769
|
maxResults?: number;
|
|
@@ -574,6 +817,7 @@ export interface KxCluster {
|
|
|
574
817
|
clusterType?: KxClusterType;
|
|
575
818
|
clusterDescription?: string;
|
|
576
819
|
releaseLabel?: string;
|
|
820
|
+
volumes?: Volume[];
|
|
577
821
|
initializationScript?: string;
|
|
578
822
|
executionRole?: string;
|
|
579
823
|
azMode?: KxAzMode;
|
|
@@ -599,6 +843,32 @@ export interface ListKxDatabasesResponse {
|
|
|
599
843
|
kxDatabases?: KxDatabaseListEntry[];
|
|
600
844
|
nextToken?: string;
|
|
601
845
|
}
|
|
846
|
+
export interface ListKxDataviewsRequest {
|
|
847
|
+
environmentId: string | undefined;
|
|
848
|
+
databaseName: string | undefined;
|
|
849
|
+
nextToken?: string;
|
|
850
|
+
maxResults?: number;
|
|
851
|
+
}
|
|
852
|
+
export interface KxDataviewListEntry {
|
|
853
|
+
environmentId?: string;
|
|
854
|
+
databaseName?: string;
|
|
855
|
+
dataviewName?: string;
|
|
856
|
+
azMode?: KxAzMode;
|
|
857
|
+
availabilityZoneId?: string;
|
|
858
|
+
changesetId?: string;
|
|
859
|
+
segmentConfigurations?: KxDataviewSegmentConfiguration[];
|
|
860
|
+
activeVersions?: KxDataviewActiveVersion[];
|
|
861
|
+
status?: KxDataviewStatus;
|
|
862
|
+
description?: string;
|
|
863
|
+
autoUpdate?: boolean;
|
|
864
|
+
createdTimestamp?: Date;
|
|
865
|
+
lastModifiedTimestamp?: Date;
|
|
866
|
+
statusReason?: string;
|
|
867
|
+
}
|
|
868
|
+
export interface ListKxDataviewsResponse {
|
|
869
|
+
kxDataviews?: KxDataviewListEntry[];
|
|
870
|
+
nextToken?: string;
|
|
871
|
+
}
|
|
602
872
|
export interface ListKxEnvironmentsRequest {
|
|
603
873
|
nextToken?: string;
|
|
604
874
|
maxResults?: number;
|
|
@@ -626,6 +896,25 @@ export interface ListKxEnvironmentsResponse {
|
|
|
626
896
|
environments?: KxEnvironment[];
|
|
627
897
|
nextToken?: string;
|
|
628
898
|
}
|
|
899
|
+
export interface ListKxScalingGroupsRequest {
|
|
900
|
+
environmentId: string | undefined;
|
|
901
|
+
maxResults?: number;
|
|
902
|
+
nextToken?: string;
|
|
903
|
+
}
|
|
904
|
+
export interface KxScalingGroup {
|
|
905
|
+
scalingGroupName?: string;
|
|
906
|
+
hostType?: string;
|
|
907
|
+
clusters?: string[];
|
|
908
|
+
availabilityZoneId?: string;
|
|
909
|
+
status?: KxScalingGroupStatus;
|
|
910
|
+
statusReason?: string;
|
|
911
|
+
lastModifiedTimestamp?: Date;
|
|
912
|
+
createdTimestamp?: Date;
|
|
913
|
+
}
|
|
914
|
+
export interface ListKxScalingGroupsResponse {
|
|
915
|
+
scalingGroups?: KxScalingGroup[];
|
|
916
|
+
nextToken?: string;
|
|
917
|
+
}
|
|
629
918
|
export interface ListKxUsersRequest {
|
|
630
919
|
environmentId: string | undefined;
|
|
631
920
|
nextToken?: string;
|
|
@@ -642,6 +931,27 @@ export interface ListKxUsersResponse {
|
|
|
642
931
|
users?: KxUser[];
|
|
643
932
|
nextToken?: string;
|
|
644
933
|
}
|
|
934
|
+
export interface ListKxVolumesRequest {
|
|
935
|
+
environmentId: string | undefined;
|
|
936
|
+
maxResults?: number;
|
|
937
|
+
nextToken?: string;
|
|
938
|
+
volumeType?: KxVolumeType;
|
|
939
|
+
}
|
|
940
|
+
export interface KxVolume {
|
|
941
|
+
volumeName?: string;
|
|
942
|
+
volumeType?: KxVolumeType;
|
|
943
|
+
status?: KxVolumeStatus;
|
|
944
|
+
description?: string;
|
|
945
|
+
statusReason?: string;
|
|
946
|
+
azMode?: KxAzMode;
|
|
947
|
+
availabilityZoneIds?: string[];
|
|
948
|
+
createdTimestamp?: Date;
|
|
949
|
+
lastModifiedTimestamp?: Date;
|
|
950
|
+
}
|
|
951
|
+
export interface ListKxVolumesResponse {
|
|
952
|
+
kxVolumeSummaries?: KxVolume[];
|
|
953
|
+
nextToken?: string;
|
|
954
|
+
}
|
|
645
955
|
export declare class InvalidRequestException extends __BaseException {
|
|
646
956
|
readonly name: "InvalidRequestException";
|
|
647
957
|
readonly $fault: "client";
|
|
@@ -724,6 +1034,30 @@ export interface UpdateKxDatabaseResponse {
|
|
|
724
1034
|
description?: string;
|
|
725
1035
|
lastModifiedTimestamp?: Date;
|
|
726
1036
|
}
|
|
1037
|
+
export interface UpdateKxDataviewRequest {
|
|
1038
|
+
environmentId: string | undefined;
|
|
1039
|
+
databaseName: string | undefined;
|
|
1040
|
+
dataviewName: string | undefined;
|
|
1041
|
+
description?: string;
|
|
1042
|
+
changesetId?: string;
|
|
1043
|
+
segmentConfigurations?: KxDataviewSegmentConfiguration[];
|
|
1044
|
+
clientToken?: string;
|
|
1045
|
+
}
|
|
1046
|
+
export interface UpdateKxDataviewResponse {
|
|
1047
|
+
environmentId?: string;
|
|
1048
|
+
databaseName?: string;
|
|
1049
|
+
dataviewName?: string;
|
|
1050
|
+
azMode?: KxAzMode;
|
|
1051
|
+
availabilityZoneId?: string;
|
|
1052
|
+
changesetId?: string;
|
|
1053
|
+
segmentConfigurations?: KxDataviewSegmentConfiguration[];
|
|
1054
|
+
activeVersions?: KxDataviewActiveVersion[];
|
|
1055
|
+
status?: KxDataviewStatus;
|
|
1056
|
+
autoUpdate?: boolean;
|
|
1057
|
+
description?: string;
|
|
1058
|
+
createdTimestamp?: Date;
|
|
1059
|
+
lastModifiedTimestamp?: Date;
|
|
1060
|
+
}
|
|
727
1061
|
export interface UpdateKxEnvironmentRequest {
|
|
728
1062
|
environmentId: string | undefined;
|
|
729
1063
|
name?: string;
|
|
@@ -784,6 +1118,28 @@ export interface UpdateKxUserResponse {
|
|
|
784
1118
|
environmentId?: string;
|
|
785
1119
|
iamRole?: string;
|
|
786
1120
|
}
|
|
1121
|
+
export interface UpdateKxVolumeRequest {
|
|
1122
|
+
environmentId: string | undefined;
|
|
1123
|
+
volumeName: string | undefined;
|
|
1124
|
+
description?: string;
|
|
1125
|
+
clientToken?: string;
|
|
1126
|
+
nas1Configuration?: KxNAS1Configuration;
|
|
1127
|
+
}
|
|
1128
|
+
export interface UpdateKxVolumeResponse {
|
|
1129
|
+
environmentId?: string;
|
|
1130
|
+
volumeName?: string;
|
|
1131
|
+
volumeType?: KxVolumeType;
|
|
1132
|
+
volumeArn?: string;
|
|
1133
|
+
nas1Configuration?: KxNAS1Configuration;
|
|
1134
|
+
status?: KxVolumeStatus;
|
|
1135
|
+
description?: string;
|
|
1136
|
+
statusReason?: string;
|
|
1137
|
+
createdTimestamp?: Date;
|
|
1138
|
+
azMode?: KxAzMode;
|
|
1139
|
+
availabilityZoneIds?: string[];
|
|
1140
|
+
lastModifiedTimestamp?: Date;
|
|
1141
|
+
attachedClusters?: KxAttachedCluster[];
|
|
1142
|
+
}
|
|
787
1143
|
export declare const SuperuserParametersFilterSensitiveLog: (
|
|
788
1144
|
obj: SuperuserParameters
|
|
789
1145
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListKxDataviewsCommandInput,
|
|
4
|
+
ListKxDataviewsCommandOutput,
|
|
5
|
+
} from "../commands/ListKxDataviewsCommand";
|
|
6
|
+
import { FinspacePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListKxDataviews(
|
|
8
|
+
config: FinspacePaginationConfiguration,
|
|
9
|
+
input: ListKxDataviewsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListKxDataviewsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListKxScalingGroupsCommandInput,
|
|
4
|
+
ListKxScalingGroupsCommandOutput,
|
|
5
|
+
} from "../commands/ListKxScalingGroupsCommand";
|
|
6
|
+
import { FinspacePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListKxScalingGroups(
|
|
8
|
+
config: FinspacePaginationConfiguration,
|
|
9
|
+
input: ListKxScalingGroupsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListKxScalingGroupsCommandOutput>;
|
|
@@ -2,4 +2,6 @@ export * from "./Interfaces";
|
|
|
2
2
|
export * from "./ListKxChangesetsPaginator";
|
|
3
3
|
export * from "./ListKxClusterNodesPaginator";
|
|
4
4
|
export * from "./ListKxDatabasesPaginator";
|
|
5
|
+
export * from "./ListKxDataviewsPaginator";
|
|
5
6
|
export * from "./ListKxEnvironmentsPaginator";
|
|
7
|
+
export * from "./ListKxScalingGroupsPaginator";
|