@aws-sdk/client-opensearch 3.932.0 → 3.933.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 +32 -0
- package/dist-cjs/index.js +171 -1
- package/dist-es/OpenSearch.js +8 -0
- package/dist-es/commands/CreateIndexCommand.js +16 -0
- package/dist-es/commands/DeleteIndexCommand.js +16 -0
- package/dist-es/commands/GetIndexCommand.js +16 -0
- package/dist-es/commands/UpdateIndexCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +17 -4
- package/dist-es/models/models_1.js +4 -0
- package/dist-es/schemas/schemas_0.js +96 -1
- package/dist-types/OpenSearch.d.ts +28 -0
- package/dist-types/OpenSearchClient.d.ts +6 -2
- package/dist-types/commands/CreateIndexCommand.d.ts +100 -0
- package/dist-types/commands/CreateOutboundConnectionCommand.d.ts +3 -2
- package/dist-types/commands/DeleteIndexCommand.d.ts +96 -0
- package/dist-types/commands/DissociatePackagesCommand.d.ts +1 -1
- package/dist-types/commands/GetDirectQueryDataSourceCommand.d.ts +1 -1
- package/dist-types/commands/GetIndexCommand.d.ts +96 -0
- package/dist-types/commands/GetPackageVersionHistoryCommand.d.ts +4 -4
- package/dist-types/commands/GetUpgradeHistoryCommand.d.ts +2 -2
- package/dist-types/commands/GetUpgradeStatusCommand.d.ts +2 -2
- package/dist-types/commands/ListDataSourcesCommand.d.ts +2 -1
- package/dist-types/commands/ListDirectQueryDataSourcesCommand.d.ts +1 -1
- package/dist-types/commands/ListDomainMaintenancesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateIndexCommand.d.ts +97 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +229 -329
- package/dist-types/models/models_1.d.ts +231 -5
- package/dist-types/schemas/schemas_0.d.ts +13 -0
- package/dist-types/ts3.4/OpenSearch.d.ts +68 -0
- package/dist-types/ts3.4/OpenSearchClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateIndexCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteIndexCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetIndexCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListDataSourcesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListDirectQueryDataSourcesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDomainMaintenancesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateIndexCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +36 -44
- package/dist-types/ts3.4/models/models_1.d.ts +56 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +13 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -294,6 +294,14 @@ CreateDomain
|
|
|
294
294
|
|
|
295
295
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/opensearch/command/CreateDomainCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-opensearch/Interface/CreateDomainCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-opensearch/Interface/CreateDomainCommandOutput/)
|
|
296
296
|
|
|
297
|
+
</details>
|
|
298
|
+
<details>
|
|
299
|
+
<summary>
|
|
300
|
+
CreateIndex
|
|
301
|
+
</summary>
|
|
302
|
+
|
|
303
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/opensearch/command/CreateIndexCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-opensearch/Interface/CreateIndexCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-opensearch/Interface/CreateIndexCommandOutput/)
|
|
304
|
+
|
|
297
305
|
</details>
|
|
298
306
|
<details>
|
|
299
307
|
<summary>
|
|
@@ -358,6 +366,14 @@ DeleteInboundConnection
|
|
|
358
366
|
|
|
359
367
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/opensearch/command/DeleteInboundConnectionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-opensearch/Interface/DeleteInboundConnectionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-opensearch/Interface/DeleteInboundConnectionCommandOutput/)
|
|
360
368
|
|
|
369
|
+
</details>
|
|
370
|
+
<details>
|
|
371
|
+
<summary>
|
|
372
|
+
DeleteIndex
|
|
373
|
+
</summary>
|
|
374
|
+
|
|
375
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/opensearch/command/DeleteIndexCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-opensearch/Interface/DeleteIndexCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-opensearch/Interface/DeleteIndexCommandOutput/)
|
|
376
|
+
|
|
361
377
|
</details>
|
|
362
378
|
<details>
|
|
363
379
|
<summary>
|
|
@@ -566,6 +582,14 @@ GetDomainMaintenanceStatus
|
|
|
566
582
|
|
|
567
583
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/opensearch/command/GetDomainMaintenanceStatusCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-opensearch/Interface/GetDomainMaintenanceStatusCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-opensearch/Interface/GetDomainMaintenanceStatusCommandOutput/)
|
|
568
584
|
|
|
585
|
+
</details>
|
|
586
|
+
<details>
|
|
587
|
+
<summary>
|
|
588
|
+
GetIndex
|
|
589
|
+
</summary>
|
|
590
|
+
|
|
591
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/opensearch/command/GetIndexCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-opensearch/Interface/GetIndexCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-opensearch/Interface/GetIndexCommandOutput/)
|
|
592
|
+
|
|
569
593
|
</details>
|
|
570
594
|
<details>
|
|
571
595
|
<summary>
|
|
@@ -790,6 +814,14 @@ UpdateDomainConfig
|
|
|
790
814
|
|
|
791
815
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/opensearch/command/UpdateDomainConfigCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-opensearch/Interface/UpdateDomainConfigCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-opensearch/Interface/UpdateDomainConfigCommandOutput/)
|
|
792
816
|
|
|
817
|
+
</details>
|
|
818
|
+
<details>
|
|
819
|
+
<summary>
|
|
820
|
+
UpdateIndex
|
|
821
|
+
</summary>
|
|
822
|
+
|
|
823
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/opensearch/command/UpdateIndexCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-opensearch/Interface/UpdateIndexCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-opensearch/Interface/UpdateIndexCommandOutput/)
|
|
824
|
+
|
|
793
825
|
</details>
|
|
794
826
|
<details>
|
|
795
827
|
<summary>
|
package/dist-cjs/index.js
CHANGED
|
@@ -518,6 +518,23 @@ let ResourceAlreadyExistsException$1 = class ResourceAlreadyExistsException exte
|
|
|
518
518
|
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
519
519
|
}
|
|
520
520
|
};
|
|
521
|
+
const IndexStatus = {
|
|
522
|
+
CREATED: "CREATED",
|
|
523
|
+
DELETED: "DELETED",
|
|
524
|
+
UPDATED: "UPDATED",
|
|
525
|
+
};
|
|
526
|
+
let ThrottlingException$1 = class ThrottlingException extends OpenSearchServiceException$1 {
|
|
527
|
+
name = "ThrottlingException";
|
|
528
|
+
$fault = "client";
|
|
529
|
+
constructor(opts) {
|
|
530
|
+
super({
|
|
531
|
+
name: "ThrottlingException",
|
|
532
|
+
$fault: "client",
|
|
533
|
+
...opts,
|
|
534
|
+
});
|
|
535
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
536
|
+
}
|
|
537
|
+
};
|
|
521
538
|
const SkipUnavailableStatus = {
|
|
522
539
|
DISABLED: "DISABLED",
|
|
523
540
|
ENABLED: "ENABLED",
|
|
@@ -673,11 +690,11 @@ const UpgradeStatus = {
|
|
|
673
690
|
SUCCEEDED: "SUCCEEDED",
|
|
674
691
|
SUCCEEDED_WITH_ISSUES: "SUCCEEDED_WITH_ISSUES",
|
|
675
692
|
};
|
|
693
|
+
|
|
676
694
|
const EngineType = {
|
|
677
695
|
Elasticsearch: "Elasticsearch",
|
|
678
696
|
OpenSearch: "OpenSearch",
|
|
679
697
|
};
|
|
680
|
-
|
|
681
698
|
const ScheduledBy = {
|
|
682
699
|
CUSTOMER: "CUSTOMER",
|
|
683
700
|
SYSTEM: "SYSTEM",
|
|
@@ -826,7 +843,10 @@ const _CEo = "CognitoEnabled";
|
|
|
826
843
|
const _CEu = "CustomEndpoint";
|
|
827
844
|
const _CH = "ClusterHealth";
|
|
828
845
|
const _CI = "ConnectionId";
|
|
846
|
+
const _CIR = "CreateIndexRequest";
|
|
847
|
+
const _CIRr = "CreateIndexResponse";
|
|
829
848
|
const _CIh = "ChangeId";
|
|
849
|
+
const _CIr = "CreateIndex";
|
|
830
850
|
const _CM = "ConnectionMode";
|
|
831
851
|
const _CMo = "CommitMessage";
|
|
832
852
|
const _CN = "ClassName";
|
|
@@ -921,9 +941,12 @@ const _DICResc = "DescribeInboundConnectionsResponse";
|
|
|
921
941
|
const _DICe = "DeleteInboundConnection";
|
|
922
942
|
const _DICes = "DescribeInboundConnections";
|
|
923
943
|
const _DIL = "DomainInfoList";
|
|
944
|
+
const _DIR = "DeleteIndexRequest";
|
|
945
|
+
const _DIRe = "DeleteIndexResponse";
|
|
924
946
|
const _DITL = "DescribeInstanceTypeLimits";
|
|
925
947
|
const _DITLR = "DescribeInstanceTypeLimitsRequest";
|
|
926
948
|
const _DITLRe = "DescribeInstanceTypeLimitsResponse";
|
|
949
|
+
const _DIe = "DeleteIndex";
|
|
927
950
|
const _DIo = "DomainId";
|
|
928
951
|
const _DM = "DedicatedMaster";
|
|
929
952
|
const _DMC = "DedicatedMasterCount";
|
|
@@ -1045,6 +1068,9 @@ const _GDQDSRe = "GetDirectQueryDataSourceResponse";
|
|
|
1045
1068
|
const _GDS = "GetDataSource";
|
|
1046
1069
|
const _GDSR = "GetDataSourceRequest";
|
|
1047
1070
|
const _GDSRe = "GetDataSourceResponse";
|
|
1071
|
+
const _GI = "GetIndex";
|
|
1072
|
+
const _GIR = "GetIndexRequest";
|
|
1073
|
+
const _GIRe = "GetIndexResponse";
|
|
1048
1074
|
const _GPVH = "GetPackageVersionHistory";
|
|
1049
1075
|
const _GPVHR = "GetPackageVersionHistoryRequest";
|
|
1050
1076
|
const _GPVHRe = "GetPackageVersionHistoryResponse";
|
|
@@ -1074,11 +1100,13 @@ const _IE = "InternalException";
|
|
|
1074
1100
|
const _IICO = "IamIdentityCenterOptions";
|
|
1075
1101
|
const _IICOI = "IamIdentityCenterOptionsInput";
|
|
1076
1102
|
const _IL = "InstanceLimits";
|
|
1103
|
+
const _IN = "IndexName";
|
|
1077
1104
|
const _IPAT = "IPAddressType";
|
|
1078
1105
|
const _IPATS = "IPAddressTypeStatus";
|
|
1079
1106
|
const _IPI = "IdentityPoolId";
|
|
1080
1107
|
const _IPTE = "InvalidPaginationTokenException";
|
|
1081
1108
|
const _IR = "InstanceRole";
|
|
1109
|
+
const _IS = "IndexSchema";
|
|
1082
1110
|
const _ISI = "IdentityStoreId";
|
|
1083
1111
|
const _IT = "InstanceType";
|
|
1084
1112
|
const _ITD = "InstanceTypeDetails";
|
|
@@ -1331,6 +1359,7 @@ const _Se = "Service";
|
|
|
1331
1359
|
const _Sev = "Severity";
|
|
1332
1360
|
const _St = "State";
|
|
1333
1361
|
const _T = "Throughput";
|
|
1362
|
+
const _TE = "ThrottlingException";
|
|
1334
1363
|
const _TK = "TagKeys";
|
|
1335
1364
|
const _TL = "TagList";
|
|
1336
1365
|
const _TLSSP = "TLSSecurityPolicy";
|
|
@@ -1364,6 +1393,9 @@ const _UH = "UpgradeHistories";
|
|
|
1364
1393
|
const _UHL = "UpgradeHistoryList";
|
|
1365
1394
|
const _UHp = "UpgradeHistory";
|
|
1366
1395
|
const _UI = "UpgradeId";
|
|
1396
|
+
const _UIR = "UpdateIndexRequest";
|
|
1397
|
+
const _UIRp = "UpdateIndexResponse";
|
|
1398
|
+
const _UIp = "UpdateIndex";
|
|
1367
1399
|
const _UN = "UpgradeName";
|
|
1368
1400
|
const _UOPW = "UseOffPeakWindow";
|
|
1369
1401
|
const _UP = "UpgradeProcessing";
|
|
@@ -1826,6 +1858,8 @@ var CreateDomainRequest = [
|
|
|
1826
1858
|
],
|
|
1827
1859
|
];
|
|
1828
1860
|
var CreateDomainResponse = [3, n0, _CDRr, 0, [_DSo], [() => DomainStatus]];
|
|
1861
|
+
var CreateIndexRequest = [3, n0, _CIR, 0, [_DN, _IN, _IS], [[0, 1], 0, 15]];
|
|
1862
|
+
var CreateIndexResponse = [3, n0, _CIRr, 0, [_S], [0]];
|
|
1829
1863
|
var CreateOutboundConnectionRequest = [
|
|
1830
1864
|
3,
|
|
1831
1865
|
n0,
|
|
@@ -1906,6 +1940,18 @@ var DeleteDomainRequest = [3, n0, _DDR, 0, [_DN], [[0, 1]]];
|
|
|
1906
1940
|
var DeleteDomainResponse = [3, n0, _DDRe, 0, [_DSo], [() => DomainStatus]];
|
|
1907
1941
|
var DeleteInboundConnectionRequest = [3, n0, _DICR, 0, [_CI], [[0, 1]]];
|
|
1908
1942
|
var DeleteInboundConnectionResponse = [3, n0, _DICRe, 0, [_C], [() => InboundConnection]];
|
|
1943
|
+
var DeleteIndexRequest = [
|
|
1944
|
+
3,
|
|
1945
|
+
n0,
|
|
1946
|
+
_DIR,
|
|
1947
|
+
0,
|
|
1948
|
+
[_DN, _IN],
|
|
1949
|
+
[
|
|
1950
|
+
[0, 1],
|
|
1951
|
+
[0, 1],
|
|
1952
|
+
],
|
|
1953
|
+
];
|
|
1954
|
+
var DeleteIndexResponse = [3, n0, _DIRe, 0, [_S], [0]];
|
|
1909
1955
|
var DeleteOutboundConnectionRequest = [3, n0, _DOCR, 0, [_CI], [[0, 1]]];
|
|
1910
1956
|
var DeleteOutboundConnectionResponse = [
|
|
1911
1957
|
3,
|
|
@@ -2501,6 +2547,18 @@ var GetDomainMaintenanceStatusResponse = [
|
|
|
2501
2547
|
[_S, _SM, _NI, _Ac, _CAr, _UA],
|
|
2502
2548
|
[0, 0, 0, 0, 4, 4],
|
|
2503
2549
|
];
|
|
2550
|
+
var GetIndexRequest = [
|
|
2551
|
+
3,
|
|
2552
|
+
n0,
|
|
2553
|
+
_GIR,
|
|
2554
|
+
0,
|
|
2555
|
+
[_DN, _IN],
|
|
2556
|
+
[
|
|
2557
|
+
[0, 1],
|
|
2558
|
+
[0, 1],
|
|
2559
|
+
],
|
|
2560
|
+
];
|
|
2561
|
+
var GetIndexResponse = [3, n0, _GIRe, 0, [_IS], [15]];
|
|
2504
2562
|
var GetPackageVersionHistoryRequest = [
|
|
2505
2563
|
3,
|
|
2506
2564
|
n0,
|
|
@@ -3321,6 +3379,18 @@ var StorageType = [
|
|
|
3321
3379
|
];
|
|
3322
3380
|
var StorageTypeLimit = [3, n0, _STLt, 0, [_LN, _LV], [0, 64 | 0]];
|
|
3323
3381
|
var Tag = [3, n0, _Ta, 0, [_K, _V], [0, 0]];
|
|
3382
|
+
var ThrottlingException = [
|
|
3383
|
+
-3,
|
|
3384
|
+
n0,
|
|
3385
|
+
_TE,
|
|
3386
|
+
{
|
|
3387
|
+
[_e]: _c,
|
|
3388
|
+
[_hE]: 429,
|
|
3389
|
+
},
|
|
3390
|
+
[_m],
|
|
3391
|
+
[0],
|
|
3392
|
+
];
|
|
3393
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
3324
3394
|
var UpdateApplicationRequest = [
|
|
3325
3395
|
3,
|
|
3326
3396
|
n0,
|
|
@@ -3415,6 +3485,8 @@ var UpdateDomainConfigResponse = [
|
|
|
3415
3485
|
[_DC, _DRR, _DRPS],
|
|
3416
3486
|
[() => DomainConfig, () => DryRunResults, () => DryRunProgressStatus],
|
|
3417
3487
|
];
|
|
3488
|
+
var UpdateIndexRequest = [3, n0, _UIR, 0, [_DN, _IN, _IS], [[0, 1], [0, 1], 15]];
|
|
3489
|
+
var UpdateIndexResponse = [3, n0, _UIRp, 0, [_S], [0]];
|
|
3418
3490
|
var UpdatePackageRequest = [
|
|
3419
3491
|
3,
|
|
3420
3492
|
n0,
|
|
@@ -3686,6 +3758,16 @@ var CreateDomain = [
|
|
|
3686
3758
|
() => CreateDomainRequest,
|
|
3687
3759
|
() => CreateDomainResponse,
|
|
3688
3760
|
];
|
|
3761
|
+
var CreateIndex = [
|
|
3762
|
+
9,
|
|
3763
|
+
n0,
|
|
3764
|
+
_CIr,
|
|
3765
|
+
{
|
|
3766
|
+
[_h]: ["POST", "/2021-01-01/opensearch/domain/{DomainName}/index", 200],
|
|
3767
|
+
},
|
|
3768
|
+
() => CreateIndexRequest,
|
|
3769
|
+
() => CreateIndexResponse,
|
|
3770
|
+
];
|
|
3689
3771
|
var CreateOutboundConnection = [
|
|
3690
3772
|
9,
|
|
3691
3773
|
n0,
|
|
@@ -3766,6 +3848,16 @@ var DeleteInboundConnection = [
|
|
|
3766
3848
|
() => DeleteInboundConnectionRequest,
|
|
3767
3849
|
() => DeleteInboundConnectionResponse,
|
|
3768
3850
|
];
|
|
3851
|
+
var DeleteIndex = [
|
|
3852
|
+
9,
|
|
3853
|
+
n0,
|
|
3854
|
+
_DIe,
|
|
3855
|
+
{
|
|
3856
|
+
[_h]: ["DELETE", "/2021-01-01/opensearch/domain/{DomainName}/index/{IndexName}", 200],
|
|
3857
|
+
},
|
|
3858
|
+
() => DeleteIndexRequest,
|
|
3859
|
+
() => DeleteIndexResponse,
|
|
3860
|
+
];
|
|
3769
3861
|
var DeleteOutboundConnection = [
|
|
3770
3862
|
9,
|
|
3771
3863
|
n0,
|
|
@@ -4026,6 +4118,16 @@ var GetDomainMaintenanceStatus = [
|
|
|
4026
4118
|
() => GetDomainMaintenanceStatusRequest,
|
|
4027
4119
|
() => GetDomainMaintenanceStatusResponse,
|
|
4028
4120
|
];
|
|
4121
|
+
var GetIndex = [
|
|
4122
|
+
9,
|
|
4123
|
+
n0,
|
|
4124
|
+
_GI,
|
|
4125
|
+
{
|
|
4126
|
+
[_h]: ["GET", "/2021-01-01/opensearch/domain/{DomainName}/index/{IndexName}", 200],
|
|
4127
|
+
},
|
|
4128
|
+
() => GetIndexRequest,
|
|
4129
|
+
() => GetIndexResponse,
|
|
4130
|
+
];
|
|
4029
4131
|
var GetPackageVersionHistory = [
|
|
4030
4132
|
9,
|
|
4031
4133
|
n0,
|
|
@@ -4306,6 +4408,16 @@ var UpdateDomainConfig = [
|
|
|
4306
4408
|
() => UpdateDomainConfigRequest,
|
|
4307
4409
|
() => UpdateDomainConfigResponse,
|
|
4308
4410
|
];
|
|
4411
|
+
var UpdateIndex = [
|
|
4412
|
+
9,
|
|
4413
|
+
n0,
|
|
4414
|
+
_UIp,
|
|
4415
|
+
{
|
|
4416
|
+
[_h]: ["PUT", "/2021-01-01/opensearch/domain/{DomainName}/index/{IndexName}", 200],
|
|
4417
|
+
},
|
|
4418
|
+
() => UpdateIndexRequest,
|
|
4419
|
+
() => UpdateIndexResponse,
|
|
4420
|
+
];
|
|
4309
4421
|
var UpdatePackage = [
|
|
4310
4422
|
9,
|
|
4311
4423
|
n0,
|
|
@@ -4489,6 +4601,18 @@ class CreateDomainCommand extends smithyClient.Command
|
|
|
4489
4601
|
.build() {
|
|
4490
4602
|
}
|
|
4491
4603
|
|
|
4604
|
+
class CreateIndexCommand extends smithyClient.Command
|
|
4605
|
+
.classBuilder()
|
|
4606
|
+
.ep(commonParams)
|
|
4607
|
+
.m(function (Command, cs, config, o) {
|
|
4608
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
4609
|
+
})
|
|
4610
|
+
.s("AmazonOpenSearchService", "CreateIndex", {})
|
|
4611
|
+
.n("OpenSearchClient", "CreateIndexCommand")
|
|
4612
|
+
.sc(CreateIndex)
|
|
4613
|
+
.build() {
|
|
4614
|
+
}
|
|
4615
|
+
|
|
4492
4616
|
class CreateOutboundConnectionCommand extends smithyClient.Command
|
|
4493
4617
|
.classBuilder()
|
|
4494
4618
|
.ep(commonParams)
|
|
@@ -4585,6 +4709,18 @@ class DeleteInboundConnectionCommand extends smithyClient.Command
|
|
|
4585
4709
|
.build() {
|
|
4586
4710
|
}
|
|
4587
4711
|
|
|
4712
|
+
class DeleteIndexCommand extends smithyClient.Command
|
|
4713
|
+
.classBuilder()
|
|
4714
|
+
.ep(commonParams)
|
|
4715
|
+
.m(function (Command, cs, config, o) {
|
|
4716
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
4717
|
+
})
|
|
4718
|
+
.s("AmazonOpenSearchService", "DeleteIndex", {})
|
|
4719
|
+
.n("OpenSearchClient", "DeleteIndexCommand")
|
|
4720
|
+
.sc(DeleteIndex)
|
|
4721
|
+
.build() {
|
|
4722
|
+
}
|
|
4723
|
+
|
|
4588
4724
|
class DeleteOutboundConnectionCommand extends smithyClient.Command
|
|
4589
4725
|
.classBuilder()
|
|
4590
4726
|
.ep(commonParams)
|
|
@@ -4897,6 +5033,18 @@ class GetDomainMaintenanceStatusCommand extends smithyClient.Command
|
|
|
4897
5033
|
.build() {
|
|
4898
5034
|
}
|
|
4899
5035
|
|
|
5036
|
+
class GetIndexCommand extends smithyClient.Command
|
|
5037
|
+
.classBuilder()
|
|
5038
|
+
.ep(commonParams)
|
|
5039
|
+
.m(function (Command, cs, config, o) {
|
|
5040
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5041
|
+
})
|
|
5042
|
+
.s("AmazonOpenSearchService", "GetIndex", {})
|
|
5043
|
+
.n("OpenSearchClient", "GetIndexCommand")
|
|
5044
|
+
.sc(GetIndex)
|
|
5045
|
+
.build() {
|
|
5046
|
+
}
|
|
5047
|
+
|
|
4900
5048
|
class GetPackageVersionHistoryCommand extends smithyClient.Command
|
|
4901
5049
|
.classBuilder()
|
|
4902
5050
|
.ep(commonParams)
|
|
@@ -5233,6 +5381,18 @@ class UpdateDomainConfigCommand extends smithyClient.Command
|
|
|
5233
5381
|
.build() {
|
|
5234
5382
|
}
|
|
5235
5383
|
|
|
5384
|
+
class UpdateIndexCommand extends smithyClient.Command
|
|
5385
|
+
.classBuilder()
|
|
5386
|
+
.ep(commonParams)
|
|
5387
|
+
.m(function (Command, cs, config, o) {
|
|
5388
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5389
|
+
})
|
|
5390
|
+
.s("AmazonOpenSearchService", "UpdateIndex", {})
|
|
5391
|
+
.n("OpenSearchClient", "UpdateIndexCommand")
|
|
5392
|
+
.sc(UpdateIndex)
|
|
5393
|
+
.build() {
|
|
5394
|
+
}
|
|
5395
|
+
|
|
5236
5396
|
class UpdatePackageCommand extends smithyClient.Command
|
|
5237
5397
|
.classBuilder()
|
|
5238
5398
|
.ep(commonParams)
|
|
@@ -5305,6 +5465,7 @@ const commands = {
|
|
|
5305
5465
|
CancelServiceSoftwareUpdateCommand,
|
|
5306
5466
|
CreateApplicationCommand,
|
|
5307
5467
|
CreateDomainCommand,
|
|
5468
|
+
CreateIndexCommand,
|
|
5308
5469
|
CreateOutboundConnectionCommand,
|
|
5309
5470
|
CreatePackageCommand,
|
|
5310
5471
|
CreateVpcEndpointCommand,
|
|
@@ -5313,6 +5474,7 @@ const commands = {
|
|
|
5313
5474
|
DeleteDirectQueryDataSourceCommand,
|
|
5314
5475
|
DeleteDomainCommand,
|
|
5315
5476
|
DeleteInboundConnectionCommand,
|
|
5477
|
+
DeleteIndexCommand,
|
|
5316
5478
|
DeleteOutboundConnectionCommand,
|
|
5317
5479
|
DeletePackageCommand,
|
|
5318
5480
|
DeleteVpcEndpointCommand,
|
|
@@ -5339,6 +5501,7 @@ const commands = {
|
|
|
5339
5501
|
GetDefaultApplicationSettingCommand,
|
|
5340
5502
|
GetDirectQueryDataSourceCommand,
|
|
5341
5503
|
GetDomainMaintenanceStatusCommand,
|
|
5504
|
+
GetIndexCommand,
|
|
5342
5505
|
GetPackageVersionHistoryCommand,
|
|
5343
5506
|
GetUpgradeHistoryCommand,
|
|
5344
5507
|
GetUpgradeStatusCommand,
|
|
@@ -5367,6 +5530,7 @@ const commands = {
|
|
|
5367
5530
|
UpdateDataSourceCommand,
|
|
5368
5531
|
UpdateDirectQueryDataSourceCommand,
|
|
5369
5532
|
UpdateDomainConfigCommand,
|
|
5533
|
+
UpdateIndexCommand,
|
|
5370
5534
|
UpdatePackageCommand,
|
|
5371
5535
|
UpdatePackageScopeCommand,
|
|
5372
5536
|
UpdateScheduledActionCommand,
|
|
@@ -5440,6 +5604,7 @@ exports.ConflictException = ConflictException$1;
|
|
|
5440
5604
|
exports.ConnectionMode = ConnectionMode;
|
|
5441
5605
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
5442
5606
|
exports.CreateDomainCommand = CreateDomainCommand;
|
|
5607
|
+
exports.CreateIndexCommand = CreateIndexCommand;
|
|
5443
5608
|
exports.CreateOutboundConnectionCommand = CreateOutboundConnectionCommand;
|
|
5444
5609
|
exports.CreatePackageCommand = CreatePackageCommand;
|
|
5445
5610
|
exports.CreateVpcEndpointCommand = CreateVpcEndpointCommand;
|
|
@@ -5449,6 +5614,7 @@ exports.DeleteDataSourceCommand = DeleteDataSourceCommand;
|
|
|
5449
5614
|
exports.DeleteDirectQueryDataSourceCommand = DeleteDirectQueryDataSourceCommand;
|
|
5450
5615
|
exports.DeleteDomainCommand = DeleteDomainCommand;
|
|
5451
5616
|
exports.DeleteInboundConnectionCommand = DeleteInboundConnectionCommand;
|
|
5617
|
+
exports.DeleteIndexCommand = DeleteIndexCommand;
|
|
5452
5618
|
exports.DeleteOutboundConnectionCommand = DeleteOutboundConnectionCommand;
|
|
5453
5619
|
exports.DeletePackageCommand = DeletePackageCommand;
|
|
5454
5620
|
exports.DeleteVpcEndpointCommand = DeleteVpcEndpointCommand;
|
|
@@ -5485,11 +5651,13 @@ exports.GetDataSourceCommand = GetDataSourceCommand;
|
|
|
5485
5651
|
exports.GetDefaultApplicationSettingCommand = GetDefaultApplicationSettingCommand;
|
|
5486
5652
|
exports.GetDirectQueryDataSourceCommand = GetDirectQueryDataSourceCommand;
|
|
5487
5653
|
exports.GetDomainMaintenanceStatusCommand = GetDomainMaintenanceStatusCommand;
|
|
5654
|
+
exports.GetIndexCommand = GetIndexCommand;
|
|
5488
5655
|
exports.GetPackageVersionHistoryCommand = GetPackageVersionHistoryCommand;
|
|
5489
5656
|
exports.GetUpgradeHistoryCommand = GetUpgradeHistoryCommand;
|
|
5490
5657
|
exports.GetUpgradeStatusCommand = GetUpgradeStatusCommand;
|
|
5491
5658
|
exports.IPAddressType = IPAddressType;
|
|
5492
5659
|
exports.InboundConnectionStatusCode = InboundConnectionStatusCode;
|
|
5660
|
+
exports.IndexStatus = IndexStatus;
|
|
5493
5661
|
exports.InitiatedBy = InitiatedBy;
|
|
5494
5662
|
exports.InternalException = InternalException$1;
|
|
5495
5663
|
exports.InvalidPaginationTokenException = InvalidPaginationTokenException$1;
|
|
@@ -5552,11 +5720,13 @@ exports.StartDomainMaintenanceCommand = StartDomainMaintenanceCommand;
|
|
|
5552
5720
|
exports.StartServiceSoftwareUpdateCommand = StartServiceSoftwareUpdateCommand;
|
|
5553
5721
|
exports.SubjectKeyIdCOption = SubjectKeyIdCOption;
|
|
5554
5722
|
exports.TLSSecurityPolicy = TLSSecurityPolicy;
|
|
5723
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
5555
5724
|
exports.TimeUnit = TimeUnit;
|
|
5556
5725
|
exports.UpdateApplicationCommand = UpdateApplicationCommand;
|
|
5557
5726
|
exports.UpdateDataSourceCommand = UpdateDataSourceCommand;
|
|
5558
5727
|
exports.UpdateDirectQueryDataSourceCommand = UpdateDirectQueryDataSourceCommand;
|
|
5559
5728
|
exports.UpdateDomainConfigCommand = UpdateDomainConfigCommand;
|
|
5729
|
+
exports.UpdateIndexCommand = UpdateIndexCommand;
|
|
5560
5730
|
exports.UpdatePackageCommand = UpdatePackageCommand;
|
|
5561
5731
|
exports.UpdatePackageScopeCommand = UpdatePackageScopeCommand;
|
|
5562
5732
|
exports.UpdateScheduledActionCommand = UpdateScheduledActionCommand;
|
package/dist-es/OpenSearch.js
CHANGED
|
@@ -10,6 +10,7 @@ import { CancelDomainConfigChangeCommand, } from "./commands/CancelDomainConfigC
|
|
|
10
10
|
import { CancelServiceSoftwareUpdateCommand, } from "./commands/CancelServiceSoftwareUpdateCommand";
|
|
11
11
|
import { CreateApplicationCommand, } from "./commands/CreateApplicationCommand";
|
|
12
12
|
import { CreateDomainCommand, } from "./commands/CreateDomainCommand";
|
|
13
|
+
import { CreateIndexCommand } from "./commands/CreateIndexCommand";
|
|
13
14
|
import { CreateOutboundConnectionCommand, } from "./commands/CreateOutboundConnectionCommand";
|
|
14
15
|
import { CreatePackageCommand, } from "./commands/CreatePackageCommand";
|
|
15
16
|
import { CreateVpcEndpointCommand, } from "./commands/CreateVpcEndpointCommand";
|
|
@@ -18,6 +19,7 @@ import { DeleteDataSourceCommand, } from "./commands/DeleteDataSourceCommand";
|
|
|
18
19
|
import { DeleteDirectQueryDataSourceCommand, } from "./commands/DeleteDirectQueryDataSourceCommand";
|
|
19
20
|
import { DeleteDomainCommand, } from "./commands/DeleteDomainCommand";
|
|
20
21
|
import { DeleteInboundConnectionCommand, } from "./commands/DeleteInboundConnectionCommand";
|
|
22
|
+
import { DeleteIndexCommand } from "./commands/DeleteIndexCommand";
|
|
21
23
|
import { DeleteOutboundConnectionCommand, } from "./commands/DeleteOutboundConnectionCommand";
|
|
22
24
|
import { DeletePackageCommand, } from "./commands/DeletePackageCommand";
|
|
23
25
|
import { DeleteVpcEndpointCommand, } from "./commands/DeleteVpcEndpointCommand";
|
|
@@ -44,6 +46,7 @@ import { GetDataSourceCommand, } from "./commands/GetDataSourceCommand";
|
|
|
44
46
|
import { GetDefaultApplicationSettingCommand, } from "./commands/GetDefaultApplicationSettingCommand";
|
|
45
47
|
import { GetDirectQueryDataSourceCommand, } from "./commands/GetDirectQueryDataSourceCommand";
|
|
46
48
|
import { GetDomainMaintenanceStatusCommand, } from "./commands/GetDomainMaintenanceStatusCommand";
|
|
49
|
+
import { GetIndexCommand } from "./commands/GetIndexCommand";
|
|
47
50
|
import { GetPackageVersionHistoryCommand, } from "./commands/GetPackageVersionHistoryCommand";
|
|
48
51
|
import { GetUpgradeHistoryCommand, } from "./commands/GetUpgradeHistoryCommand";
|
|
49
52
|
import { GetUpgradeStatusCommand, } from "./commands/GetUpgradeStatusCommand";
|
|
@@ -72,6 +75,7 @@ import { UpdateApplicationCommand, } from "./commands/UpdateApplicationCommand";
|
|
|
72
75
|
import { UpdateDataSourceCommand, } from "./commands/UpdateDataSourceCommand";
|
|
73
76
|
import { UpdateDirectQueryDataSourceCommand, } from "./commands/UpdateDirectQueryDataSourceCommand";
|
|
74
77
|
import { UpdateDomainConfigCommand, } from "./commands/UpdateDomainConfigCommand";
|
|
78
|
+
import { UpdateIndexCommand } from "./commands/UpdateIndexCommand";
|
|
75
79
|
import { UpdatePackageCommand, } from "./commands/UpdatePackageCommand";
|
|
76
80
|
import { UpdatePackageScopeCommand, } from "./commands/UpdatePackageScopeCommand";
|
|
77
81
|
import { UpdateScheduledActionCommand, } from "./commands/UpdateScheduledActionCommand";
|
|
@@ -90,6 +94,7 @@ const commands = {
|
|
|
90
94
|
CancelServiceSoftwareUpdateCommand,
|
|
91
95
|
CreateApplicationCommand,
|
|
92
96
|
CreateDomainCommand,
|
|
97
|
+
CreateIndexCommand,
|
|
93
98
|
CreateOutboundConnectionCommand,
|
|
94
99
|
CreatePackageCommand,
|
|
95
100
|
CreateVpcEndpointCommand,
|
|
@@ -98,6 +103,7 @@ const commands = {
|
|
|
98
103
|
DeleteDirectQueryDataSourceCommand,
|
|
99
104
|
DeleteDomainCommand,
|
|
100
105
|
DeleteInboundConnectionCommand,
|
|
106
|
+
DeleteIndexCommand,
|
|
101
107
|
DeleteOutboundConnectionCommand,
|
|
102
108
|
DeletePackageCommand,
|
|
103
109
|
DeleteVpcEndpointCommand,
|
|
@@ -124,6 +130,7 @@ const commands = {
|
|
|
124
130
|
GetDefaultApplicationSettingCommand,
|
|
125
131
|
GetDirectQueryDataSourceCommand,
|
|
126
132
|
GetDomainMaintenanceStatusCommand,
|
|
133
|
+
GetIndexCommand,
|
|
127
134
|
GetPackageVersionHistoryCommand,
|
|
128
135
|
GetUpgradeHistoryCommand,
|
|
129
136
|
GetUpgradeStatusCommand,
|
|
@@ -152,6 +159,7 @@ const commands = {
|
|
|
152
159
|
UpdateDataSourceCommand,
|
|
153
160
|
UpdateDirectQueryDataSourceCommand,
|
|
154
161
|
UpdateDomainConfigCommand,
|
|
162
|
+
UpdateIndexCommand,
|
|
155
163
|
UpdatePackageCommand,
|
|
156
164
|
UpdatePackageScopeCommand,
|
|
157
165
|
UpdateScheduledActionCommand,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateIndex } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateIndexCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonOpenSearchService", "CreateIndex", {})
|
|
13
|
+
.n("OpenSearchClient", "CreateIndexCommand")
|
|
14
|
+
.sc(CreateIndex)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteIndex } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteIndexCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonOpenSearchService", "DeleteIndex", {})
|
|
13
|
+
.n("OpenSearchClient", "DeleteIndexCommand")
|
|
14
|
+
.sc(DeleteIndex)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetIndex } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetIndexCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonOpenSearchService", "GetIndex", {})
|
|
13
|
+
.n("OpenSearchClient", "GetIndexCommand")
|
|
14
|
+
.sc(GetIndex)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateIndex } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateIndexCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonOpenSearchService", "UpdateIndex", {})
|
|
13
|
+
.n("OpenSearchClient", "UpdateIndexCommand")
|
|
14
|
+
.sc(UpdateIndex)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -9,6 +9,7 @@ export * from "./CancelDomainConfigChangeCommand";
|
|
|
9
9
|
export * from "./CancelServiceSoftwareUpdateCommand";
|
|
10
10
|
export * from "./CreateApplicationCommand";
|
|
11
11
|
export * from "./CreateDomainCommand";
|
|
12
|
+
export * from "./CreateIndexCommand";
|
|
12
13
|
export * from "./CreateOutboundConnectionCommand";
|
|
13
14
|
export * from "./CreatePackageCommand";
|
|
14
15
|
export * from "./CreateVpcEndpointCommand";
|
|
@@ -17,6 +18,7 @@ export * from "./DeleteDataSourceCommand";
|
|
|
17
18
|
export * from "./DeleteDirectQueryDataSourceCommand";
|
|
18
19
|
export * from "./DeleteDomainCommand";
|
|
19
20
|
export * from "./DeleteInboundConnectionCommand";
|
|
21
|
+
export * from "./DeleteIndexCommand";
|
|
20
22
|
export * from "./DeleteOutboundConnectionCommand";
|
|
21
23
|
export * from "./DeletePackageCommand";
|
|
22
24
|
export * from "./DeleteVpcEndpointCommand";
|
|
@@ -43,6 +45,7 @@ export * from "./GetDataSourceCommand";
|
|
|
43
45
|
export * from "./GetDefaultApplicationSettingCommand";
|
|
44
46
|
export * from "./GetDirectQueryDataSourceCommand";
|
|
45
47
|
export * from "./GetDomainMaintenanceStatusCommand";
|
|
48
|
+
export * from "./GetIndexCommand";
|
|
46
49
|
export * from "./GetPackageVersionHistoryCommand";
|
|
47
50
|
export * from "./GetUpgradeHistoryCommand";
|
|
48
51
|
export * from "./GetUpgradeStatusCommand";
|
|
@@ -71,6 +74,7 @@ export * from "./UpdateApplicationCommand";
|
|
|
71
74
|
export * from "./UpdateDataSourceCommand";
|
|
72
75
|
export * from "./UpdateDirectQueryDataSourceCommand";
|
|
73
76
|
export * from "./UpdateDomainConfigCommand";
|
|
77
|
+
export * from "./UpdateIndexCommand";
|
|
74
78
|
export * from "./UpdatePackageCommand";
|
|
75
79
|
export * from "./UpdatePackageScopeCommand";
|
|
76
80
|
export * from "./UpdateScheduledActionCommand";
|
|
@@ -400,6 +400,23 @@ export class ResourceAlreadyExistsException extends __BaseException {
|
|
|
400
400
|
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
401
401
|
}
|
|
402
402
|
}
|
|
403
|
+
export const IndexStatus = {
|
|
404
|
+
CREATED: "CREATED",
|
|
405
|
+
DELETED: "DELETED",
|
|
406
|
+
UPDATED: "UPDATED",
|
|
407
|
+
};
|
|
408
|
+
export class ThrottlingException extends __BaseException {
|
|
409
|
+
name = "ThrottlingException";
|
|
410
|
+
$fault = "client";
|
|
411
|
+
constructor(opts) {
|
|
412
|
+
super({
|
|
413
|
+
name: "ThrottlingException",
|
|
414
|
+
$fault: "client",
|
|
415
|
+
...opts,
|
|
416
|
+
});
|
|
417
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
418
|
+
}
|
|
419
|
+
}
|
|
403
420
|
export const SkipUnavailableStatus = {
|
|
404
421
|
DISABLED: "DISABLED",
|
|
405
422
|
ENABLED: "ENABLED",
|
|
@@ -555,7 +572,3 @@ export const UpgradeStatus = {
|
|
|
555
572
|
SUCCEEDED: "SUCCEEDED",
|
|
556
573
|
SUCCEEDED_WITH_ISSUES: "SUCCEEDED_WITH_ISSUES",
|
|
557
574
|
};
|
|
558
|
-
export const EngineType = {
|
|
559
|
-
Elasticsearch: "Elasticsearch",
|
|
560
|
-
OpenSearch: "OpenSearch",
|
|
561
|
-
};
|