@aws-sdk/client-opensearchserverless 3.968.0 → 3.970.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 +35 -0
- package/dist-cjs/index.js +296 -56
- package/dist-es/OpenSearchServerless.js +10 -0
- package/dist-es/commands/BatchGetCollectionGroupCommand.js +16 -0
- package/dist-es/commands/CreateCollectionGroupCommand.js +16 -0
- package/dist-es/commands/DeleteCollectionGroupCommand.js +16 -0
- package/dist-es/commands/ListCollectionGroupsCommand.js +16 -0
- package/dist-es/commands/UpdateCollectionGroupCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/pagination/ListCollectionGroupsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +203 -56
- package/dist-types/OpenSearchServerless.d.ts +37 -0
- package/dist-types/OpenSearchServerlessClient.d.ts +7 -2
- package/dist-types/commands/BatchGetCollectionCommand.d.ts +1 -0
- package/dist-types/commands/BatchGetCollectionGroupCommand.d.ts +115 -0
- package/dist-types/commands/CreateAccessPolicyCommand.d.ts +1 -1
- package/dist-types/commands/CreateCollectionCommand.d.ts +7 -1
- package/dist-types/commands/CreateCollectionGroupCommand.d.ts +120 -0
- package/dist-types/commands/CreateIndexCommand.d.ts +1 -1
- package/dist-types/commands/CreateLifecyclePolicyCommand.d.ts +1 -1
- package/dist-types/commands/CreateSecurityConfigCommand.d.ts +1 -1
- package/dist-types/commands/CreateSecurityPolicyCommand.d.ts +1 -1
- package/dist-types/commands/CreateVpcEndpointCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAccessPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCollectionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCollectionGroupCommand.d.ts +85 -0
- package/dist-types/commands/DeleteLifecyclePolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSecurityConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSecurityPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVpcEndpointCommand.d.ts +1 -1
- package/dist-types/commands/ListCollectionGroupsCommand.d.ts +96 -0
- package/dist-types/commands/ListCollectionsCommand.d.ts +3 -0
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAccessPolicyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCollectionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCollectionGroupCommand.d.ts +107 -0
- package/dist-types/commands/UpdateLifecyclePolicyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSecurityConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSecurityPolicyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/errors.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +445 -8
- package/dist-types/pagination/ListCollectionGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +22 -0
- package/dist-types/ts3.4/OpenSearchServerless.d.ts +87 -0
- package/dist-types/ts3.4/OpenSearchServerlessClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/BatchGetCollectionGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateCollectionGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteCollectionGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCollectionGroupsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateCollectionGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +105 -3
- package/dist-types/ts3.4/pagination/ListCollectionGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +22 -0
- package/package.json +33 -33
|
@@ -417,6 +417,11 @@ export interface CollectionDetail {
|
|
|
417
417
|
* @public
|
|
418
418
|
*/
|
|
419
419
|
failureMessage?: string | undefined;
|
|
420
|
+
/**
|
|
421
|
+
* <p>The name of the collection group that contains this collection.</p>
|
|
422
|
+
* @public
|
|
423
|
+
*/
|
|
424
|
+
collectionGroupName?: string | undefined;
|
|
420
425
|
}
|
|
421
426
|
/**
|
|
422
427
|
* <p>Error information for an OpenSearch Serverless request.</p>
|
|
@@ -459,6 +464,155 @@ export interface BatchGetCollectionResponse {
|
|
|
459
464
|
*/
|
|
460
465
|
collectionErrorDetails?: CollectionErrorDetail[] | undefined;
|
|
461
466
|
}
|
|
467
|
+
/**
|
|
468
|
+
* @public
|
|
469
|
+
*/
|
|
470
|
+
export interface BatchGetCollectionGroupRequest {
|
|
471
|
+
/**
|
|
472
|
+
* <p>A list of collection group IDs. You can't provide names and IDs in the same request.</p>
|
|
473
|
+
* @public
|
|
474
|
+
*/
|
|
475
|
+
ids?: string[] | undefined;
|
|
476
|
+
/**
|
|
477
|
+
* <p>A list of collection group names. You can't provide names and IDs in the same request.</p>
|
|
478
|
+
* @public
|
|
479
|
+
*/
|
|
480
|
+
names?: string[] | undefined;
|
|
481
|
+
}
|
|
482
|
+
/**
|
|
483
|
+
* <p>Capacity limits for a collection group. These limits define the minimum and maximum OpenSearch Compute Units (OCUs) for indexing and search operations that can be used by collections in the group.</p>
|
|
484
|
+
* @public
|
|
485
|
+
*/
|
|
486
|
+
export interface CollectionGroupCapacityLimits {
|
|
487
|
+
/**
|
|
488
|
+
* <p>The maximum indexing capacity for collections in the group.</p>
|
|
489
|
+
* @public
|
|
490
|
+
*/
|
|
491
|
+
maxIndexingCapacityInOCU?: number | undefined;
|
|
492
|
+
/**
|
|
493
|
+
* <p>The maximum search capacity for collections in the group.</p>
|
|
494
|
+
* @public
|
|
495
|
+
*/
|
|
496
|
+
maxSearchCapacityInOCU?: number | undefined;
|
|
497
|
+
/**
|
|
498
|
+
* <p>The minimum indexing capacity for collections in the group.</p>
|
|
499
|
+
* @public
|
|
500
|
+
*/
|
|
501
|
+
minIndexingCapacityInOCU?: number | undefined;
|
|
502
|
+
/**
|
|
503
|
+
* <p>The minimum search capacity for collections in the group.</p>
|
|
504
|
+
* @public
|
|
505
|
+
*/
|
|
506
|
+
minSearchCapacityInOCU?: number | undefined;
|
|
507
|
+
}
|
|
508
|
+
/**
|
|
509
|
+
* <p>A map of key-value pairs associated to an OpenSearch Serverless resource.</p>
|
|
510
|
+
* @public
|
|
511
|
+
*/
|
|
512
|
+
export interface Tag {
|
|
513
|
+
/**
|
|
514
|
+
* <p>The key to use in the tag.</p>
|
|
515
|
+
* @public
|
|
516
|
+
*/
|
|
517
|
+
key: string | undefined;
|
|
518
|
+
/**
|
|
519
|
+
* <p>The value of the tag.</p>
|
|
520
|
+
* @public
|
|
521
|
+
*/
|
|
522
|
+
value: string | undefined;
|
|
523
|
+
}
|
|
524
|
+
/**
|
|
525
|
+
* <p>Details about a collection group.</p>
|
|
526
|
+
* @public
|
|
527
|
+
*/
|
|
528
|
+
export interface CollectionGroupDetail {
|
|
529
|
+
/**
|
|
530
|
+
* <p>The unique identifier of the collection group.</p>
|
|
531
|
+
* @public
|
|
532
|
+
*/
|
|
533
|
+
id?: string | undefined;
|
|
534
|
+
/**
|
|
535
|
+
* <p>The Amazon Resource Name (ARN) of the collection group.</p>
|
|
536
|
+
* @public
|
|
537
|
+
*/
|
|
538
|
+
arn?: string | undefined;
|
|
539
|
+
/**
|
|
540
|
+
* <p>The name of the collection group.</p>
|
|
541
|
+
* @public
|
|
542
|
+
*/
|
|
543
|
+
name?: string | undefined;
|
|
544
|
+
/**
|
|
545
|
+
* <p>Indicates whether standby replicas are used for the collection group.</p>
|
|
546
|
+
* @public
|
|
547
|
+
*/
|
|
548
|
+
standbyReplicas?: StandbyReplicas | undefined;
|
|
549
|
+
/**
|
|
550
|
+
* <p>The description of the collection group.</p>
|
|
551
|
+
* @public
|
|
552
|
+
*/
|
|
553
|
+
description?: string | undefined;
|
|
554
|
+
/**
|
|
555
|
+
* <p>A map of key-value pairs associated with the collection group.</p>
|
|
556
|
+
* @public
|
|
557
|
+
*/
|
|
558
|
+
tags?: Tag[] | undefined;
|
|
559
|
+
/**
|
|
560
|
+
* <p>The Epoch time when the collection group was created.</p>
|
|
561
|
+
* @public
|
|
562
|
+
*/
|
|
563
|
+
createdDate?: number | undefined;
|
|
564
|
+
/**
|
|
565
|
+
* <p>The capacity limits for the collection group, in OpenSearch Compute Units (OCUs).</p>
|
|
566
|
+
* @public
|
|
567
|
+
*/
|
|
568
|
+
capacityLimits?: CollectionGroupCapacityLimits | undefined;
|
|
569
|
+
/**
|
|
570
|
+
* <p>The number of collections associated with the collection group.</p>
|
|
571
|
+
* @public
|
|
572
|
+
*/
|
|
573
|
+
numberOfCollections?: number | undefined;
|
|
574
|
+
}
|
|
575
|
+
/**
|
|
576
|
+
* <p>Error details for a collection group operation.</p>
|
|
577
|
+
* @public
|
|
578
|
+
*/
|
|
579
|
+
export interface CollectionGroupErrorDetail {
|
|
580
|
+
/**
|
|
581
|
+
* <p>If the request contains collection group IDs, the response includes the IDs provided in the request.</p>
|
|
582
|
+
* @public
|
|
583
|
+
*/
|
|
584
|
+
id?: string | undefined;
|
|
585
|
+
/**
|
|
586
|
+
* <p>If the request contains collection group names, the response includes the names provided in the request.</p>
|
|
587
|
+
* @public
|
|
588
|
+
*/
|
|
589
|
+
name?: string | undefined;
|
|
590
|
+
/**
|
|
591
|
+
* <p>A description of the error. For example, <code>The specified Collection Group is not found.</code> </p>
|
|
592
|
+
* @public
|
|
593
|
+
*/
|
|
594
|
+
errorMessage?: string | undefined;
|
|
595
|
+
/**
|
|
596
|
+
* <p>The error code for the request. For example, <code>NOT_FOUND</code>.</p>
|
|
597
|
+
* @public
|
|
598
|
+
*/
|
|
599
|
+
errorCode?: string | undefined;
|
|
600
|
+
}
|
|
601
|
+
/**
|
|
602
|
+
* @public
|
|
603
|
+
*/
|
|
604
|
+
export interface BatchGetCollectionGroupResponse {
|
|
605
|
+
/**
|
|
606
|
+
* <p>Details about each collection group.</p>
|
|
607
|
+
* @public
|
|
608
|
+
*/
|
|
609
|
+
collectionGroupDetails?: CollectionGroupDetail[] | undefined;
|
|
610
|
+
/**
|
|
611
|
+
* <p>Error information for the request.</p>
|
|
612
|
+
* @public
|
|
613
|
+
*/
|
|
614
|
+
collectionGroupErrorDetails?: CollectionGroupErrorDetail[] | undefined;
|
|
615
|
+
}
|
|
462
616
|
/**
|
|
463
617
|
* <p>The unique identifiers of policy types and resource names.</p>
|
|
464
618
|
* @public
|
|
@@ -768,20 +922,20 @@ export interface BatchGetVpcEndpointResponse {
|
|
|
768
922
|
vpcEndpointErrorDetails?: VpcEndpointErrorDetail[] | undefined;
|
|
769
923
|
}
|
|
770
924
|
/**
|
|
771
|
-
* <p>
|
|
925
|
+
* <p>Encryption settings for a collection.</p>
|
|
772
926
|
* @public
|
|
773
927
|
*/
|
|
774
|
-
export interface
|
|
928
|
+
export interface EncryptionConfig {
|
|
775
929
|
/**
|
|
776
|
-
* <p>
|
|
930
|
+
* <p>Indicates whether to use an Amazon Web Services-owned key for encryption.</p>
|
|
777
931
|
* @public
|
|
778
932
|
*/
|
|
779
|
-
|
|
933
|
+
aWSOwnedKey?: boolean | undefined;
|
|
780
934
|
/**
|
|
781
|
-
* <p>The
|
|
935
|
+
* <p>The ARN of the Amazon Web Services Key Management Service key used to encrypt the collection.</p>
|
|
782
936
|
* @public
|
|
783
937
|
*/
|
|
784
|
-
|
|
938
|
+
kmsKeyArn?: string | undefined;
|
|
785
939
|
}
|
|
786
940
|
/**
|
|
787
941
|
* @public
|
|
@@ -817,6 +971,16 @@ export interface CreateCollectionRequest {
|
|
|
817
971
|
* @public
|
|
818
972
|
*/
|
|
819
973
|
vectorOptions?: VectorOptions | undefined;
|
|
974
|
+
/**
|
|
975
|
+
* <p>The name of the collection group to associate with the collection.</p>
|
|
976
|
+
* @public
|
|
977
|
+
*/
|
|
978
|
+
collectionGroupName?: string | undefined;
|
|
979
|
+
/**
|
|
980
|
+
* <p>Encryption settings for the collection.</p>
|
|
981
|
+
* @public
|
|
982
|
+
*/
|
|
983
|
+
encryptionConfig?: EncryptionConfig | undefined;
|
|
820
984
|
/**
|
|
821
985
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
822
986
|
* @public
|
|
@@ -883,6 +1047,11 @@ export interface CreateCollectionDetail {
|
|
|
883
1047
|
* @public
|
|
884
1048
|
*/
|
|
885
1049
|
lastModifiedDate?: number | undefined;
|
|
1050
|
+
/**
|
|
1051
|
+
* <p>The name of the collection group that contains this collection.</p>
|
|
1052
|
+
* @public
|
|
1053
|
+
*/
|
|
1054
|
+
collectionGroupName?: string | undefined;
|
|
886
1055
|
}
|
|
887
1056
|
/**
|
|
888
1057
|
* @public
|
|
@@ -955,6 +1124,11 @@ export interface CollectionFilters {
|
|
|
955
1124
|
* @public
|
|
956
1125
|
*/
|
|
957
1126
|
status?: CollectionStatus | undefined;
|
|
1127
|
+
/**
|
|
1128
|
+
* <p>The name of the collection group to filter by.</p>
|
|
1129
|
+
* @public
|
|
1130
|
+
*/
|
|
1131
|
+
collectionGroupName?: string | undefined;
|
|
958
1132
|
}
|
|
959
1133
|
/**
|
|
960
1134
|
* @public
|
|
@@ -1001,6 +1175,16 @@ export interface CollectionSummary {
|
|
|
1001
1175
|
* @public
|
|
1002
1176
|
*/
|
|
1003
1177
|
arn?: string | undefined;
|
|
1178
|
+
/**
|
|
1179
|
+
* <p>The ARN of the Amazon Web Services Key Management Service key used to encrypt the collection.</p>
|
|
1180
|
+
* @public
|
|
1181
|
+
*/
|
|
1182
|
+
kmsKeyArn?: string | undefined;
|
|
1183
|
+
/**
|
|
1184
|
+
* <p>The name of the collection group that contains this collection.</p>
|
|
1185
|
+
* @public
|
|
1186
|
+
*/
|
|
1187
|
+
collectionGroupName?: string | undefined;
|
|
1004
1188
|
}
|
|
1005
1189
|
/**
|
|
1006
1190
|
* @public
|
|
@@ -1093,6 +1277,259 @@ export interface UpdateCollectionResponse {
|
|
|
1093
1277
|
*/
|
|
1094
1278
|
updateCollectionDetail?: UpdateCollectionDetail | undefined;
|
|
1095
1279
|
}
|
|
1280
|
+
/**
|
|
1281
|
+
* @public
|
|
1282
|
+
*/
|
|
1283
|
+
export interface CreateCollectionGroupRequest {
|
|
1284
|
+
/**
|
|
1285
|
+
* <p>The name of the collection group.</p>
|
|
1286
|
+
* @public
|
|
1287
|
+
*/
|
|
1288
|
+
name: string | undefined;
|
|
1289
|
+
/**
|
|
1290
|
+
* <p>Indicates whether standby replicas should be used for a collection group.</p>
|
|
1291
|
+
* @public
|
|
1292
|
+
*/
|
|
1293
|
+
standbyReplicas: StandbyReplicas | undefined;
|
|
1294
|
+
/**
|
|
1295
|
+
* <p>A description of the collection group.</p>
|
|
1296
|
+
* @public
|
|
1297
|
+
*/
|
|
1298
|
+
description?: string | undefined;
|
|
1299
|
+
/**
|
|
1300
|
+
* <p>An arbitrary set of tags (key–value pairs) to associate with the OpenSearch Serverless collection group.</p>
|
|
1301
|
+
* @public
|
|
1302
|
+
*/
|
|
1303
|
+
tags?: Tag[] | undefined;
|
|
1304
|
+
/**
|
|
1305
|
+
* <p>The capacity limits for the collection group, in OpenSearch Compute Units (OCUs). These limits control the maximum and minimum capacity for collections within the group.</p>
|
|
1306
|
+
* @public
|
|
1307
|
+
*/
|
|
1308
|
+
capacityLimits?: CollectionGroupCapacityLimits | undefined;
|
|
1309
|
+
/**
|
|
1310
|
+
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1311
|
+
* @public
|
|
1312
|
+
*/
|
|
1313
|
+
clientToken?: string | undefined;
|
|
1314
|
+
}
|
|
1315
|
+
/**
|
|
1316
|
+
* <p>Details about the created collection group.</p>
|
|
1317
|
+
* @public
|
|
1318
|
+
*/
|
|
1319
|
+
export interface CreateCollectionGroupDetail {
|
|
1320
|
+
/**
|
|
1321
|
+
* <p>The unique identifier of the collection group.</p>
|
|
1322
|
+
* @public
|
|
1323
|
+
*/
|
|
1324
|
+
id?: string | undefined;
|
|
1325
|
+
/**
|
|
1326
|
+
* <p>The Amazon Resource Name (ARN) of the collection group.</p>
|
|
1327
|
+
* @public
|
|
1328
|
+
*/
|
|
1329
|
+
arn?: string | undefined;
|
|
1330
|
+
/**
|
|
1331
|
+
* <p>The name of the collection group.</p>
|
|
1332
|
+
* @public
|
|
1333
|
+
*/
|
|
1334
|
+
name?: string | undefined;
|
|
1335
|
+
/**
|
|
1336
|
+
* <p>Indicates whether standby replicas are used for the collection group.</p>
|
|
1337
|
+
* @public
|
|
1338
|
+
*/
|
|
1339
|
+
standbyReplicas?: StandbyReplicas | undefined;
|
|
1340
|
+
/**
|
|
1341
|
+
* <p>The description of the collection group.</p>
|
|
1342
|
+
* @public
|
|
1343
|
+
*/
|
|
1344
|
+
description?: string | undefined;
|
|
1345
|
+
/**
|
|
1346
|
+
* <p>A map of key-value pairs associated with the collection group.</p>
|
|
1347
|
+
* @public
|
|
1348
|
+
*/
|
|
1349
|
+
tags?: Tag[] | undefined;
|
|
1350
|
+
/**
|
|
1351
|
+
* <p>The Epoch time when the collection group was created.</p>
|
|
1352
|
+
* @public
|
|
1353
|
+
*/
|
|
1354
|
+
createdDate?: number | undefined;
|
|
1355
|
+
/**
|
|
1356
|
+
* <p>The capacity limits for the collection group, in OpenSearch Compute Units (OCUs).</p>
|
|
1357
|
+
* @public
|
|
1358
|
+
*/
|
|
1359
|
+
capacityLimits?: CollectionGroupCapacityLimits | undefined;
|
|
1360
|
+
}
|
|
1361
|
+
/**
|
|
1362
|
+
* @public
|
|
1363
|
+
*/
|
|
1364
|
+
export interface CreateCollectionGroupResponse {
|
|
1365
|
+
/**
|
|
1366
|
+
* <p>Details about the created collection group.</p>
|
|
1367
|
+
* @public
|
|
1368
|
+
*/
|
|
1369
|
+
createCollectionGroupDetail?: CreateCollectionGroupDetail | undefined;
|
|
1370
|
+
}
|
|
1371
|
+
/**
|
|
1372
|
+
* @public
|
|
1373
|
+
*/
|
|
1374
|
+
export interface DeleteCollectionGroupRequest {
|
|
1375
|
+
/**
|
|
1376
|
+
* <p>The unique identifier of the collection group to delete.</p>
|
|
1377
|
+
* @public
|
|
1378
|
+
*/
|
|
1379
|
+
id: string | undefined;
|
|
1380
|
+
/**
|
|
1381
|
+
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1382
|
+
* @public
|
|
1383
|
+
*/
|
|
1384
|
+
clientToken?: string | undefined;
|
|
1385
|
+
}
|
|
1386
|
+
/**
|
|
1387
|
+
* @public
|
|
1388
|
+
*/
|
|
1389
|
+
export interface DeleteCollectionGroupResponse {
|
|
1390
|
+
}
|
|
1391
|
+
/**
|
|
1392
|
+
* @public
|
|
1393
|
+
*/
|
|
1394
|
+
export interface ListCollectionGroupsRequest {
|
|
1395
|
+
/**
|
|
1396
|
+
* <p>If your initial <code>ListCollectionGroups</code> operation returns a <code>nextToken</code>, you can include the returned <code>nextToken</code> in subsequent <code>ListCollectionGroups</code> operations, which returns results in the next page.</p>
|
|
1397
|
+
* @public
|
|
1398
|
+
*/
|
|
1399
|
+
nextToken?: string | undefined;
|
|
1400
|
+
/**
|
|
1401
|
+
* <p>The maximum number of results to return. Default is 20. You can use <code>nextToken</code> to get the next page of results.</p>
|
|
1402
|
+
* @public
|
|
1403
|
+
*/
|
|
1404
|
+
maxResults?: number | undefined;
|
|
1405
|
+
}
|
|
1406
|
+
/**
|
|
1407
|
+
* <p>Summary information about a collection group.</p>
|
|
1408
|
+
* @public
|
|
1409
|
+
*/
|
|
1410
|
+
export interface CollectionGroupSummary {
|
|
1411
|
+
/**
|
|
1412
|
+
* <p>The unique identifier of the collection group.</p>
|
|
1413
|
+
* @public
|
|
1414
|
+
*/
|
|
1415
|
+
id?: string | undefined;
|
|
1416
|
+
/**
|
|
1417
|
+
* <p>The Amazon Resource Name (ARN) of the collection group.</p>
|
|
1418
|
+
* @public
|
|
1419
|
+
*/
|
|
1420
|
+
arn?: string | undefined;
|
|
1421
|
+
/**
|
|
1422
|
+
* <p>The name of the collection group.</p>
|
|
1423
|
+
* @public
|
|
1424
|
+
*/
|
|
1425
|
+
name?: string | undefined;
|
|
1426
|
+
/**
|
|
1427
|
+
* <p>The number of collections within the collection group.</p>
|
|
1428
|
+
* @public
|
|
1429
|
+
*/
|
|
1430
|
+
numberOfCollections?: number | undefined;
|
|
1431
|
+
/**
|
|
1432
|
+
* <p>The Epoch time when the collection group was created.</p>
|
|
1433
|
+
* @public
|
|
1434
|
+
*/
|
|
1435
|
+
createdDate?: number | undefined;
|
|
1436
|
+
/**
|
|
1437
|
+
* <p>Capacity limits for a collection group. These limits define the minimum and maximum OpenSearch Compute Units (OCUs) for indexing and search operations that can be used by collections in the group.</p>
|
|
1438
|
+
* @public
|
|
1439
|
+
*/
|
|
1440
|
+
capacityLimits?: CollectionGroupCapacityLimits | undefined;
|
|
1441
|
+
}
|
|
1442
|
+
/**
|
|
1443
|
+
* @public
|
|
1444
|
+
*/
|
|
1445
|
+
export interface ListCollectionGroupsResponse {
|
|
1446
|
+
/**
|
|
1447
|
+
* <p>Details about each collection group.</p>
|
|
1448
|
+
* @public
|
|
1449
|
+
*/
|
|
1450
|
+
collectionGroupSummaries?: CollectionGroupSummary[] | undefined;
|
|
1451
|
+
/**
|
|
1452
|
+
* <p>When <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.</p>
|
|
1453
|
+
* @public
|
|
1454
|
+
*/
|
|
1455
|
+
nextToken?: string | undefined;
|
|
1456
|
+
}
|
|
1457
|
+
/**
|
|
1458
|
+
* @public
|
|
1459
|
+
*/
|
|
1460
|
+
export interface UpdateCollectionGroupRequest {
|
|
1461
|
+
/**
|
|
1462
|
+
* <p>The unique identifier of the collection group to update.</p>
|
|
1463
|
+
* @public
|
|
1464
|
+
*/
|
|
1465
|
+
id: string | undefined;
|
|
1466
|
+
/**
|
|
1467
|
+
* <p>A new description for the collection group.</p>
|
|
1468
|
+
* @public
|
|
1469
|
+
*/
|
|
1470
|
+
description?: string | undefined;
|
|
1471
|
+
/**
|
|
1472
|
+
* <p>Updated capacity limits for the collection group, in OpenSearch Compute Units (OCUs).</p>
|
|
1473
|
+
* @public
|
|
1474
|
+
*/
|
|
1475
|
+
capacityLimits?: CollectionGroupCapacityLimits | undefined;
|
|
1476
|
+
/**
|
|
1477
|
+
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1478
|
+
* @public
|
|
1479
|
+
*/
|
|
1480
|
+
clientToken?: string | undefined;
|
|
1481
|
+
}
|
|
1482
|
+
/**
|
|
1483
|
+
* <p>Details about the updated collection group.</p>
|
|
1484
|
+
* @public
|
|
1485
|
+
*/
|
|
1486
|
+
export interface UpdateCollectionGroupDetail {
|
|
1487
|
+
/**
|
|
1488
|
+
* <p>The unique identifier of the collection group.</p>
|
|
1489
|
+
* @public
|
|
1490
|
+
*/
|
|
1491
|
+
id?: string | undefined;
|
|
1492
|
+
/**
|
|
1493
|
+
* <p>The Amazon Resource Name (ARN) of the collection group.</p>
|
|
1494
|
+
* @public
|
|
1495
|
+
*/
|
|
1496
|
+
arn?: string | undefined;
|
|
1497
|
+
/**
|
|
1498
|
+
* <p>The name of the collection group.</p>
|
|
1499
|
+
* @public
|
|
1500
|
+
*/
|
|
1501
|
+
name?: string | undefined;
|
|
1502
|
+
/**
|
|
1503
|
+
* <p>The description of the collection group.</p>
|
|
1504
|
+
* @public
|
|
1505
|
+
*/
|
|
1506
|
+
description?: string | undefined;
|
|
1507
|
+
/**
|
|
1508
|
+
* <p>The capacity limits for the collection group, in OpenSearch Compute Units (OCUs).</p>
|
|
1509
|
+
* @public
|
|
1510
|
+
*/
|
|
1511
|
+
capacityLimits?: CollectionGroupCapacityLimits | undefined;
|
|
1512
|
+
/**
|
|
1513
|
+
* <p>The Epoch time when the collection group was created.</p>
|
|
1514
|
+
* @public
|
|
1515
|
+
*/
|
|
1516
|
+
createdDate?: number | undefined;
|
|
1517
|
+
/**
|
|
1518
|
+
* <p>The date and time when the collection group was last modified.</p>
|
|
1519
|
+
* @public
|
|
1520
|
+
*/
|
|
1521
|
+
lastModifiedDate?: number | undefined;
|
|
1522
|
+
}
|
|
1523
|
+
/**
|
|
1524
|
+
* @public
|
|
1525
|
+
*/
|
|
1526
|
+
export interface UpdateCollectionGroupResponse {
|
|
1527
|
+
/**
|
|
1528
|
+
* <p>Details about the updated collection group.</p>
|
|
1529
|
+
* @public
|
|
1530
|
+
*/
|
|
1531
|
+
updateCollectionGroupDetail?: UpdateCollectionGroupDetail | undefined;
|
|
1532
|
+
}
|
|
1096
1533
|
/**
|
|
1097
1534
|
* <p>Describes IAM Identity Center options for creating an OpenSearch Serverless security configuration in the form of a key-value map.</p>
|
|
1098
1535
|
* @public
|
|
@@ -1246,12 +1683,12 @@ export interface CreateSecurityConfigRequest {
|
|
|
1246
1683
|
*/
|
|
1247
1684
|
description?: string | undefined;
|
|
1248
1685
|
/**
|
|
1249
|
-
* <p>Describes SAML options in
|
|
1686
|
+
* <p>Describes SAML options in the form of a key-value map. This field is required if you specify <code>SAML</code> for the <code>type</code> parameter.</p>
|
|
1250
1687
|
* @public
|
|
1251
1688
|
*/
|
|
1252
1689
|
samlOptions?: SamlConfigOptions | undefined;
|
|
1253
1690
|
/**
|
|
1254
|
-
* <p>Describes IAM Identity Center options in the form of a key-value map. This field is required if you specify iamidentitycenter for the type parameter.</p>
|
|
1691
|
+
* <p>Describes IAM Identity Center options in the form of a key-value map. This field is required if you specify <code>iamidentitycenter</code> for the <code>type</code> parameter.</p>
|
|
1255
1692
|
* @public
|
|
1256
1693
|
*/
|
|
1257
1694
|
iamIdentityCenterOptions?: CreateIamIdentityCenterConfigOptions | undefined;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListCollectionGroupsCommandInput, ListCollectionGroupsCommandOutput } from "../commands/ListCollectionGroupsCommand";
|
|
3
|
+
import { OpenSearchServerlessPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListCollectionGroups: (config: OpenSearchServerlessPaginationConfiguration, input: ListCollectionGroupsCommandInput, ...rest: any[]) => Paginator<ListCollectionGroupsCommandOutput>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListAccessPoliciesPaginator";
|
|
3
|
+
export * from "./ListCollectionGroupsPaginator";
|
|
3
4
|
export * from "./ListCollectionsPaginator";
|
|
4
5
|
export * from "./ListLifecyclePoliciesPaginator";
|
|
5
6
|
export * from "./ListSecurityConfigsPaginator";
|
|
@@ -3,6 +3,8 @@ export declare var AccessPolicyDetail$: StaticStructureSchema;
|
|
|
3
3
|
export declare var AccessPolicyStats$: StaticStructureSchema;
|
|
4
4
|
export declare var AccessPolicySummary$: StaticStructureSchema;
|
|
5
5
|
export declare var AccountSettingsDetail$: StaticStructureSchema;
|
|
6
|
+
export declare var BatchGetCollectionGroupRequest$: StaticStructureSchema;
|
|
7
|
+
export declare var BatchGetCollectionGroupResponse$: StaticStructureSchema;
|
|
6
8
|
export declare var BatchGetCollectionRequest$: StaticStructureSchema;
|
|
7
9
|
export declare var BatchGetCollectionResponse$: StaticStructureSchema;
|
|
8
10
|
export declare var BatchGetEffectiveLifecyclePolicyRequest$: StaticStructureSchema;
|
|
@@ -15,11 +17,18 @@ export declare var CapacityLimits$: StaticStructureSchema;
|
|
|
15
17
|
export declare var CollectionDetail$: StaticStructureSchema;
|
|
16
18
|
export declare var CollectionErrorDetail$: StaticStructureSchema;
|
|
17
19
|
export declare var CollectionFilters$: StaticStructureSchema;
|
|
20
|
+
export declare var CollectionGroupCapacityLimits$: StaticStructureSchema;
|
|
21
|
+
export declare var CollectionGroupDetail$: StaticStructureSchema;
|
|
22
|
+
export declare var CollectionGroupErrorDetail$: StaticStructureSchema;
|
|
23
|
+
export declare var CollectionGroupSummary$: StaticStructureSchema;
|
|
18
24
|
export declare var CollectionSummary$: StaticStructureSchema;
|
|
19
25
|
export declare var ConflictException$: StaticErrorSchema;
|
|
20
26
|
export declare var CreateAccessPolicyRequest$: StaticStructureSchema;
|
|
21
27
|
export declare var CreateAccessPolicyResponse$: StaticStructureSchema;
|
|
22
28
|
export declare var CreateCollectionDetail$: StaticStructureSchema;
|
|
29
|
+
export declare var CreateCollectionGroupDetail$: StaticStructureSchema;
|
|
30
|
+
export declare var CreateCollectionGroupRequest$: StaticStructureSchema;
|
|
31
|
+
export declare var CreateCollectionGroupResponse$: StaticStructureSchema;
|
|
23
32
|
export declare var CreateCollectionRequest$: StaticStructureSchema;
|
|
24
33
|
export declare var CreateCollectionResponse$: StaticStructureSchema;
|
|
25
34
|
export declare var CreateIamIdentityCenterConfigOptions$: StaticStructureSchema;
|
|
@@ -37,6 +46,8 @@ export declare var CreateVpcEndpointResponse$: StaticStructureSchema;
|
|
|
37
46
|
export declare var DeleteAccessPolicyRequest$: StaticStructureSchema;
|
|
38
47
|
export declare var DeleteAccessPolicyResponse$: StaticStructureSchema;
|
|
39
48
|
export declare var DeleteCollectionDetail$: StaticStructureSchema;
|
|
49
|
+
export declare var DeleteCollectionGroupRequest$: StaticStructureSchema;
|
|
50
|
+
export declare var DeleteCollectionGroupResponse$: StaticStructureSchema;
|
|
40
51
|
export declare var DeleteCollectionRequest$: StaticStructureSchema;
|
|
41
52
|
export declare var DeleteCollectionResponse$: StaticStructureSchema;
|
|
42
53
|
export declare var DeleteIndexRequest$: StaticStructureSchema;
|
|
@@ -52,6 +63,7 @@ export declare var DeleteVpcEndpointRequest$: StaticStructureSchema;
|
|
|
52
63
|
export declare var DeleteVpcEndpointResponse$: StaticStructureSchema;
|
|
53
64
|
export declare var EffectiveLifecyclePolicyDetail$: StaticStructureSchema;
|
|
54
65
|
export declare var EffectiveLifecyclePolicyErrorDetail$: StaticStructureSchema;
|
|
66
|
+
export declare var EncryptionConfig$: StaticStructureSchema;
|
|
55
67
|
export declare var FipsEndpoints$: StaticStructureSchema;
|
|
56
68
|
export declare var GetAccessPolicyRequest$: StaticStructureSchema;
|
|
57
69
|
export declare var GetAccessPolicyResponse$: StaticStructureSchema;
|
|
@@ -76,6 +88,8 @@ export declare var LifecyclePolicyStats$: StaticStructureSchema;
|
|
|
76
88
|
export declare var LifecyclePolicySummary$: StaticStructureSchema;
|
|
77
89
|
export declare var ListAccessPoliciesRequest$: StaticStructureSchema;
|
|
78
90
|
export declare var ListAccessPoliciesResponse$: StaticStructureSchema;
|
|
91
|
+
export declare var ListCollectionGroupsRequest$: StaticStructureSchema;
|
|
92
|
+
export declare var ListCollectionGroupsResponse$: StaticStructureSchema;
|
|
79
93
|
export declare var ListCollectionsRequest$: StaticStructureSchema;
|
|
80
94
|
export declare var ListCollectionsResponse$: StaticStructureSchema;
|
|
81
95
|
export declare var ListLifecyclePoliciesRequest$: StaticStructureSchema;
|
|
@@ -108,6 +122,9 @@ export declare var UpdateAccessPolicyResponse$: StaticStructureSchema;
|
|
|
108
122
|
export declare var UpdateAccountSettingsRequest$: StaticStructureSchema;
|
|
109
123
|
export declare var UpdateAccountSettingsResponse$: StaticStructureSchema;
|
|
110
124
|
export declare var UpdateCollectionDetail$: StaticStructureSchema;
|
|
125
|
+
export declare var UpdateCollectionGroupDetail$: StaticStructureSchema;
|
|
126
|
+
export declare var UpdateCollectionGroupRequest$: StaticStructureSchema;
|
|
127
|
+
export declare var UpdateCollectionGroupResponse$: StaticStructureSchema;
|
|
111
128
|
export declare var UpdateCollectionRequest$: StaticStructureSchema;
|
|
112
129
|
export declare var UpdateCollectionResponse$: StaticStructureSchema;
|
|
113
130
|
export declare var UpdateIamIdentityCenterConfigOptions$: StaticStructureSchema;
|
|
@@ -130,11 +147,13 @@ export declare var VpcEndpointFilters$: StaticStructureSchema;
|
|
|
130
147
|
export declare var VpcEndpointSummary$: StaticStructureSchema;
|
|
131
148
|
export declare var OpenSearchServerlessServiceException$: StaticErrorSchema;
|
|
132
149
|
export declare var BatchGetCollection$: StaticOperationSchema;
|
|
150
|
+
export declare var BatchGetCollectionGroup$: StaticOperationSchema;
|
|
133
151
|
export declare var BatchGetEffectiveLifecyclePolicy$: StaticOperationSchema;
|
|
134
152
|
export declare var BatchGetLifecyclePolicy$: StaticOperationSchema;
|
|
135
153
|
export declare var BatchGetVpcEndpoint$: StaticOperationSchema;
|
|
136
154
|
export declare var CreateAccessPolicy$: StaticOperationSchema;
|
|
137
155
|
export declare var CreateCollection$: StaticOperationSchema;
|
|
156
|
+
export declare var CreateCollectionGroup$: StaticOperationSchema;
|
|
138
157
|
export declare var CreateIndex$: StaticOperationSchema;
|
|
139
158
|
export declare var CreateLifecyclePolicy$: StaticOperationSchema;
|
|
140
159
|
export declare var CreateSecurityConfig$: StaticOperationSchema;
|
|
@@ -142,6 +161,7 @@ export declare var CreateSecurityPolicy$: StaticOperationSchema;
|
|
|
142
161
|
export declare var CreateVpcEndpoint$: StaticOperationSchema;
|
|
143
162
|
export declare var DeleteAccessPolicy$: StaticOperationSchema;
|
|
144
163
|
export declare var DeleteCollection$: StaticOperationSchema;
|
|
164
|
+
export declare var DeleteCollectionGroup$: StaticOperationSchema;
|
|
145
165
|
export declare var DeleteIndex$: StaticOperationSchema;
|
|
146
166
|
export declare var DeleteLifecyclePolicy$: StaticOperationSchema;
|
|
147
167
|
export declare var DeleteSecurityConfig$: StaticOperationSchema;
|
|
@@ -154,6 +174,7 @@ export declare var GetPoliciesStats$: StaticOperationSchema;
|
|
|
154
174
|
export declare var GetSecurityConfig$: StaticOperationSchema;
|
|
155
175
|
export declare var GetSecurityPolicy$: StaticOperationSchema;
|
|
156
176
|
export declare var ListAccessPolicies$: StaticOperationSchema;
|
|
177
|
+
export declare var ListCollectionGroups$: StaticOperationSchema;
|
|
157
178
|
export declare var ListCollections$: StaticOperationSchema;
|
|
158
179
|
export declare var ListLifecyclePolicies$: StaticOperationSchema;
|
|
159
180
|
export declare var ListSecurityConfigs$: StaticOperationSchema;
|
|
@@ -165,6 +186,7 @@ export declare var UntagResource$: StaticOperationSchema;
|
|
|
165
186
|
export declare var UpdateAccessPolicy$: StaticOperationSchema;
|
|
166
187
|
export declare var UpdateAccountSettings$: StaticOperationSchema;
|
|
167
188
|
export declare var UpdateCollection$: StaticOperationSchema;
|
|
189
|
+
export declare var UpdateCollectionGroup$: StaticOperationSchema;
|
|
168
190
|
export declare var UpdateIndex$: StaticOperationSchema;
|
|
169
191
|
export declare var UpdateLifecyclePolicy$: StaticOperationSchema;
|
|
170
192
|
export declare var UpdateSecurityConfig$: StaticOperationSchema;
|