@aws-sdk/client-opensearchserverless 3.969.0 → 3.971.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 +250 -10
- 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 +157 -10
- 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 +12 -12
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { createAggregatedClient } from "@smithy/smithy-client";
|
|
2
2
|
import { BatchGetCollectionCommand, } from "./commands/BatchGetCollectionCommand";
|
|
3
|
+
import { BatchGetCollectionGroupCommand, } from "./commands/BatchGetCollectionGroupCommand";
|
|
3
4
|
import { BatchGetEffectiveLifecyclePolicyCommand, } from "./commands/BatchGetEffectiveLifecyclePolicyCommand";
|
|
4
5
|
import { BatchGetLifecyclePolicyCommand, } from "./commands/BatchGetLifecyclePolicyCommand";
|
|
5
6
|
import { BatchGetVpcEndpointCommand, } from "./commands/BatchGetVpcEndpointCommand";
|
|
6
7
|
import { CreateAccessPolicyCommand, } from "./commands/CreateAccessPolicyCommand";
|
|
7
8
|
import { CreateCollectionCommand, } from "./commands/CreateCollectionCommand";
|
|
9
|
+
import { CreateCollectionGroupCommand, } from "./commands/CreateCollectionGroupCommand";
|
|
8
10
|
import { CreateIndexCommand } from "./commands/CreateIndexCommand";
|
|
9
11
|
import { CreateLifecyclePolicyCommand, } from "./commands/CreateLifecyclePolicyCommand";
|
|
10
12
|
import { CreateSecurityConfigCommand, } from "./commands/CreateSecurityConfigCommand";
|
|
@@ -12,6 +14,7 @@ import { CreateSecurityPolicyCommand, } from "./commands/CreateSecurityPolicyCom
|
|
|
12
14
|
import { CreateVpcEndpointCommand, } from "./commands/CreateVpcEndpointCommand";
|
|
13
15
|
import { DeleteAccessPolicyCommand, } from "./commands/DeleteAccessPolicyCommand";
|
|
14
16
|
import { DeleteCollectionCommand, } from "./commands/DeleteCollectionCommand";
|
|
17
|
+
import { DeleteCollectionGroupCommand, } from "./commands/DeleteCollectionGroupCommand";
|
|
15
18
|
import { DeleteIndexCommand } from "./commands/DeleteIndexCommand";
|
|
16
19
|
import { DeleteLifecyclePolicyCommand, } from "./commands/DeleteLifecyclePolicyCommand";
|
|
17
20
|
import { DeleteSecurityConfigCommand, } from "./commands/DeleteSecurityConfigCommand";
|
|
@@ -24,6 +27,7 @@ import { GetPoliciesStatsCommand, } from "./commands/GetPoliciesStatsCommand";
|
|
|
24
27
|
import { GetSecurityConfigCommand, } from "./commands/GetSecurityConfigCommand";
|
|
25
28
|
import { GetSecurityPolicyCommand, } from "./commands/GetSecurityPolicyCommand";
|
|
26
29
|
import { ListAccessPoliciesCommand, } from "./commands/ListAccessPoliciesCommand";
|
|
30
|
+
import { ListCollectionGroupsCommand, } from "./commands/ListCollectionGroupsCommand";
|
|
27
31
|
import { ListCollectionsCommand, } from "./commands/ListCollectionsCommand";
|
|
28
32
|
import { ListLifecyclePoliciesCommand, } from "./commands/ListLifecyclePoliciesCommand";
|
|
29
33
|
import { ListSecurityConfigsCommand, } from "./commands/ListSecurityConfigsCommand";
|
|
@@ -35,6 +39,7 @@ import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
|
35
39
|
import { UpdateAccessPolicyCommand, } from "./commands/UpdateAccessPolicyCommand";
|
|
36
40
|
import { UpdateAccountSettingsCommand, } from "./commands/UpdateAccountSettingsCommand";
|
|
37
41
|
import { UpdateCollectionCommand, } from "./commands/UpdateCollectionCommand";
|
|
42
|
+
import { UpdateCollectionGroupCommand, } from "./commands/UpdateCollectionGroupCommand";
|
|
38
43
|
import { UpdateIndexCommand } from "./commands/UpdateIndexCommand";
|
|
39
44
|
import { UpdateLifecyclePolicyCommand, } from "./commands/UpdateLifecyclePolicyCommand";
|
|
40
45
|
import { UpdateSecurityConfigCommand, } from "./commands/UpdateSecurityConfigCommand";
|
|
@@ -43,11 +48,13 @@ import { UpdateVpcEndpointCommand, } from "./commands/UpdateVpcEndpointCommand";
|
|
|
43
48
|
import { OpenSearchServerlessClient } from "./OpenSearchServerlessClient";
|
|
44
49
|
const commands = {
|
|
45
50
|
BatchGetCollectionCommand,
|
|
51
|
+
BatchGetCollectionGroupCommand,
|
|
46
52
|
BatchGetEffectiveLifecyclePolicyCommand,
|
|
47
53
|
BatchGetLifecyclePolicyCommand,
|
|
48
54
|
BatchGetVpcEndpointCommand,
|
|
49
55
|
CreateAccessPolicyCommand,
|
|
50
56
|
CreateCollectionCommand,
|
|
57
|
+
CreateCollectionGroupCommand,
|
|
51
58
|
CreateIndexCommand,
|
|
52
59
|
CreateLifecyclePolicyCommand,
|
|
53
60
|
CreateSecurityConfigCommand,
|
|
@@ -55,6 +62,7 @@ const commands = {
|
|
|
55
62
|
CreateVpcEndpointCommand,
|
|
56
63
|
DeleteAccessPolicyCommand,
|
|
57
64
|
DeleteCollectionCommand,
|
|
65
|
+
DeleteCollectionGroupCommand,
|
|
58
66
|
DeleteIndexCommand,
|
|
59
67
|
DeleteLifecyclePolicyCommand,
|
|
60
68
|
DeleteSecurityConfigCommand,
|
|
@@ -67,6 +75,7 @@ const commands = {
|
|
|
67
75
|
GetSecurityConfigCommand,
|
|
68
76
|
GetSecurityPolicyCommand,
|
|
69
77
|
ListAccessPoliciesCommand,
|
|
78
|
+
ListCollectionGroupsCommand,
|
|
70
79
|
ListCollectionsCommand,
|
|
71
80
|
ListLifecyclePoliciesCommand,
|
|
72
81
|
ListSecurityConfigsCommand,
|
|
@@ -78,6 +87,7 @@ const commands = {
|
|
|
78
87
|
UpdateAccessPolicyCommand,
|
|
79
88
|
UpdateAccountSettingsCommand,
|
|
80
89
|
UpdateCollectionCommand,
|
|
90
|
+
UpdateCollectionGroupCommand,
|
|
81
91
|
UpdateIndexCommand,
|
|
82
92
|
UpdateLifecyclePolicyCommand,
|
|
83
93
|
UpdateSecurityConfigCommand,
|
|
@@ -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 { BatchGetCollectionGroup$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class BatchGetCollectionGroupCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("OpenSearchServerless", "BatchGetCollectionGroup", {})
|
|
13
|
+
.n("OpenSearchServerlessClient", "BatchGetCollectionGroupCommand")
|
|
14
|
+
.sc(BatchGetCollectionGroup$)
|
|
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 { CreateCollectionGroup$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateCollectionGroupCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("OpenSearchServerless", "CreateCollectionGroup", {})
|
|
13
|
+
.n("OpenSearchServerlessClient", "CreateCollectionGroupCommand")
|
|
14
|
+
.sc(CreateCollectionGroup$)
|
|
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 { DeleteCollectionGroup$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteCollectionGroupCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("OpenSearchServerless", "DeleteCollectionGroup", {})
|
|
13
|
+
.n("OpenSearchServerlessClient", "DeleteCollectionGroupCommand")
|
|
14
|
+
.sc(DeleteCollectionGroup$)
|
|
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 { ListCollectionGroups$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListCollectionGroupsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("OpenSearchServerless", "ListCollectionGroups", {})
|
|
13
|
+
.n("OpenSearchServerlessClient", "ListCollectionGroupsCommand")
|
|
14
|
+
.sc(ListCollectionGroups$)
|
|
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 { UpdateCollectionGroup$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateCollectionGroupCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("OpenSearchServerless", "UpdateCollectionGroup", {})
|
|
13
|
+
.n("OpenSearchServerlessClient", "UpdateCollectionGroupCommand")
|
|
14
|
+
.sc(UpdateCollectionGroup$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
export * from "./BatchGetCollectionCommand";
|
|
2
|
+
export * from "./BatchGetCollectionGroupCommand";
|
|
2
3
|
export * from "./BatchGetEffectiveLifecyclePolicyCommand";
|
|
3
4
|
export * from "./BatchGetLifecyclePolicyCommand";
|
|
4
5
|
export * from "./BatchGetVpcEndpointCommand";
|
|
5
6
|
export * from "./CreateAccessPolicyCommand";
|
|
6
7
|
export * from "./CreateCollectionCommand";
|
|
8
|
+
export * from "./CreateCollectionGroupCommand";
|
|
7
9
|
export * from "./CreateIndexCommand";
|
|
8
10
|
export * from "./CreateLifecyclePolicyCommand";
|
|
9
11
|
export * from "./CreateSecurityConfigCommand";
|
|
@@ -11,6 +13,7 @@ export * from "./CreateSecurityPolicyCommand";
|
|
|
11
13
|
export * from "./CreateVpcEndpointCommand";
|
|
12
14
|
export * from "./DeleteAccessPolicyCommand";
|
|
13
15
|
export * from "./DeleteCollectionCommand";
|
|
16
|
+
export * from "./DeleteCollectionGroupCommand";
|
|
14
17
|
export * from "./DeleteIndexCommand";
|
|
15
18
|
export * from "./DeleteLifecyclePolicyCommand";
|
|
16
19
|
export * from "./DeleteSecurityConfigCommand";
|
|
@@ -23,6 +26,7 @@ export * from "./GetPoliciesStatsCommand";
|
|
|
23
26
|
export * from "./GetSecurityConfigCommand";
|
|
24
27
|
export * from "./GetSecurityPolicyCommand";
|
|
25
28
|
export * from "./ListAccessPoliciesCommand";
|
|
29
|
+
export * from "./ListCollectionGroupsCommand";
|
|
26
30
|
export * from "./ListCollectionsCommand";
|
|
27
31
|
export * from "./ListLifecyclePoliciesCommand";
|
|
28
32
|
export * from "./ListSecurityConfigsCommand";
|
|
@@ -34,6 +38,7 @@ export * from "./UntagResourceCommand";
|
|
|
34
38
|
export * from "./UpdateAccessPolicyCommand";
|
|
35
39
|
export * from "./UpdateAccountSettingsCommand";
|
|
36
40
|
export * from "./UpdateCollectionCommand";
|
|
41
|
+
export * from "./UpdateCollectionGroupCommand";
|
|
37
42
|
export * from "./UpdateIndexCommand";
|
|
38
43
|
export * from "./UpdateLifecyclePolicyCommand";
|
|
39
44
|
export * from "./UpdateSecurityConfigCommand";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListCollectionGroupsCommand, } from "../commands/ListCollectionGroupsCommand";
|
|
3
|
+
import { OpenSearchServerlessClient } from "../OpenSearchServerlessClient";
|
|
4
|
+
export const paginateListCollectionGroups = createPaginator(OpenSearchServerlessClient, ListCollectionGroupsCommand, "nextToken", "nextToken", "");
|
|
@@ -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";
|
|
@@ -4,6 +4,9 @@ const _APSc = "AccessPolicySummary";
|
|
|
4
4
|
const _APScc = "AccessPolicySummaries";
|
|
5
5
|
const _ASD = "AccountSettingsDetail";
|
|
6
6
|
const _BGC = "BatchGetCollection";
|
|
7
|
+
const _BGCG = "BatchGetCollectionGroup";
|
|
8
|
+
const _BGCGR = "BatchGetCollectionGroupRequest";
|
|
9
|
+
const _BGCGRa = "BatchGetCollectionGroupResponse";
|
|
7
10
|
const _BGCR = "BatchGetCollectionRequest";
|
|
8
11
|
const _BGCRa = "BatchGetCollectionResponse";
|
|
9
12
|
const _BGELP = "BatchGetEffectiveLifecyclePolicy";
|
|
@@ -20,6 +23,10 @@ const _CAPR = "CreateAccessPolicyRequest";
|
|
|
20
23
|
const _CAPRr = "CreateAccessPolicyResponse";
|
|
21
24
|
const _CC = "CreateCollection";
|
|
22
25
|
const _CCD = "CreateCollectionDetail";
|
|
26
|
+
const _CCG = "CreateCollectionGroup";
|
|
27
|
+
const _CCGD = "CreateCollectionGroupDetail";
|
|
28
|
+
const _CCGR = "CreateCollectionGroupRequest";
|
|
29
|
+
const _CCGRr = "CreateCollectionGroupResponse";
|
|
23
30
|
const _CCR = "CreateCollectionRequest";
|
|
24
31
|
const _CCRr = "CreateCollectionResponse";
|
|
25
32
|
const _CD = "CollectionDetail";
|
|
@@ -28,6 +35,13 @@ const _CE = "ConflictException";
|
|
|
28
35
|
const _CED = "CollectionErrorDetail";
|
|
29
36
|
const _CEDo = "CollectionErrorDetails";
|
|
30
37
|
const _CF = "CollectionFilters";
|
|
38
|
+
const _CGCL = "CollectionGroupCapacityLimits";
|
|
39
|
+
const _CGD = "CollectionGroupDetail";
|
|
40
|
+
const _CGDo = "CollectionGroupDetails";
|
|
41
|
+
const _CGED = "CollectionGroupErrorDetail";
|
|
42
|
+
const _CGEDo = "CollectionGroupErrorDetails";
|
|
43
|
+
const _CGS = "CollectionGroupSummary";
|
|
44
|
+
const _CGSo = "CollectionGroupSummaries";
|
|
31
45
|
const _CI = "CreateIndex";
|
|
32
46
|
const _CIICCO = "CreateIamIdentityCenterConfigOptions";
|
|
33
47
|
const _CIR = "CreateIndexRequest";
|
|
@@ -53,6 +67,9 @@ const _DAPR = "DeleteAccessPolicyRequest";
|
|
|
53
67
|
const _DAPRe = "DeleteAccessPolicyResponse";
|
|
54
68
|
const _DC = "DeleteCollection";
|
|
55
69
|
const _DCD = "DeleteCollectionDetail";
|
|
70
|
+
const _DCG = "DeleteCollectionGroup";
|
|
71
|
+
const _DCGR = "DeleteCollectionGroupRequest";
|
|
72
|
+
const _DCGRe = "DeleteCollectionGroupResponse";
|
|
56
73
|
const _DCR = "DeleteCollectionRequest";
|
|
57
74
|
const _DCRe = "DeleteCollectionResponse";
|
|
58
75
|
const _DI = "DeleteIndex";
|
|
@@ -72,6 +89,7 @@ const _DVE = "DeleteVpcEndpoint";
|
|
|
72
89
|
const _DVED = "DeleteVpcEndpointDetail";
|
|
73
90
|
const _DVER = "DeleteVpcEndpointRequest";
|
|
74
91
|
const _DVERe = "DeleteVpcEndpointResponse";
|
|
92
|
+
const _EC = "EncryptionConfig";
|
|
75
93
|
const _ELPD = "EffectiveLifecyclePolicyDetail";
|
|
76
94
|
const _ELPDf = "EffectiveLifecyclePolicyDetails";
|
|
77
95
|
const _ELPED = "EffectiveLifecyclePolicyErrorDetail";
|
|
@@ -103,6 +121,9 @@ const _LAP = "ListAccessPolicies";
|
|
|
103
121
|
const _LAPR = "ListAccessPoliciesRequest";
|
|
104
122
|
const _LAPRi = "ListAccessPoliciesResponse";
|
|
105
123
|
const _LC = "ListCollections";
|
|
124
|
+
const _LCG = "ListCollectionGroups";
|
|
125
|
+
const _LCGR = "ListCollectionGroupsRequest";
|
|
126
|
+
const _LCGRi = "ListCollectionGroupsResponse";
|
|
106
127
|
const _LCR = "ListCollectionsRequest";
|
|
107
128
|
const _LCRi = "ListCollectionsResponse";
|
|
108
129
|
const _LLP = "ListLifecyclePolicies";
|
|
@@ -161,6 +182,10 @@ const _UASR = "UpdateAccountSettingsRequest";
|
|
|
161
182
|
const _UASRp = "UpdateAccountSettingsResponse";
|
|
162
183
|
const _UC = "UpdateCollection";
|
|
163
184
|
const _UCD = "UpdateCollectionDetail";
|
|
185
|
+
const _UCG = "UpdateCollectionGroup";
|
|
186
|
+
const _UCGD = "UpdateCollectionGroupDetail";
|
|
187
|
+
const _UCGR = "UpdateCollectionGroupRequest";
|
|
188
|
+
const _UCGRp = "UpdateCollectionGroupResponse";
|
|
164
189
|
const _UCR = "UpdateCollectionRequest";
|
|
165
190
|
const _UCRp = "UpdateCollectionResponse";
|
|
166
191
|
const _UI = "UpdateIndex";
|
|
@@ -201,13 +226,19 @@ const _aPS = "accessPolicySummaries";
|
|
|
201
226
|
const _aSD = "accountSettingsDetail";
|
|
202
227
|
const _aSGI = "addSecurityGroupIds";
|
|
203
228
|
const _aSI = "addSubnetIds";
|
|
229
|
+
const _aWSOK = "aWSOwnedKey";
|
|
204
230
|
const _c = "client";
|
|
205
231
|
const _cCD = "createCollectionDetail";
|
|
232
|
+
const _cCGD = "createCollectionGroupDetail";
|
|
206
233
|
const _cD = "createdDate";
|
|
207
234
|
const _cDo = "collectionDetails";
|
|
208
235
|
const _cE = "collectionEndpoint";
|
|
209
236
|
const _cED = "collectionErrorDetails";
|
|
210
237
|
const _cF = "collectionFilters";
|
|
238
|
+
const _cGD = "collectionGroupDetails";
|
|
239
|
+
const _cGED = "collectionGroupErrorDetails";
|
|
240
|
+
const _cGN = "collectionGroupName";
|
|
241
|
+
const _cGS = "collectionGroupSummaries";
|
|
211
242
|
const _cL = "capacityLimits";
|
|
212
243
|
const _cS = "collectionSummaries";
|
|
213
244
|
const _cT = "clientToken";
|
|
@@ -219,6 +250,7 @@ const _dE = "dashboardEndpoint";
|
|
|
219
250
|
const _dVED = "deleteVpcEndpointDetail";
|
|
220
251
|
const _e = "error";
|
|
221
252
|
const _eC = "errorCode";
|
|
253
|
+
const _eCn = "encryptionConfig";
|
|
222
254
|
const _eLPD = "effectiveLifecyclePolicyDetails";
|
|
223
255
|
const _eLPED = "effectiveLifecyclePolicyErrorDetails";
|
|
224
256
|
const _eM = "errorMessage";
|
|
@@ -245,11 +277,14 @@ const _lPED = "lifecyclePolicyErrorDetails";
|
|
|
245
277
|
const _lPS = "lifecyclePolicySummaries";
|
|
246
278
|
const _m = "message";
|
|
247
279
|
const _mICIOCU = "maxIndexingCapacityInOCU";
|
|
280
|
+
const _mICIOCUi = "minIndexingCapacityInOCU";
|
|
248
281
|
const _mR = "maxResults";
|
|
249
282
|
const _mSCIOCU = "maxSearchCapacityInOCU";
|
|
283
|
+
const _mSCIOCUi = "minSearchCapacityInOCU";
|
|
250
284
|
const _me = "metadata";
|
|
251
285
|
const _n = "name";
|
|
252
286
|
const _nMRP = "noMinRetentionPeriod";
|
|
287
|
+
const _nOC = "numberOfCollections";
|
|
253
288
|
const _nT = "nextToken";
|
|
254
289
|
const _na = "names";
|
|
255
290
|
const _oSSEI = "openSearchServerlessEntityId";
|
|
@@ -284,6 +319,7 @@ const _tK = "tagKeys";
|
|
|
284
319
|
const _ta = "tags";
|
|
285
320
|
const _uA = "userAttribute";
|
|
286
321
|
const _uCD = "updateCollectionDetail";
|
|
322
|
+
const _uCGD = "updateCollectionGroupDetail";
|
|
287
323
|
const _v = "value";
|
|
288
324
|
const _vED = "vpcEndpointDetails";
|
|
289
325
|
const _vEED = "vpcEndpointErrorDetails";
|
|
@@ -315,6 +351,16 @@ export var AccountSettingsDetail$ = [3, n0, _ASD,
|
|
|
315
351
|
[_cL],
|
|
316
352
|
[() => CapacityLimits$]
|
|
317
353
|
];
|
|
354
|
+
export var BatchGetCollectionGroupRequest$ = [3, n0, _BGCGR,
|
|
355
|
+
0,
|
|
356
|
+
[_i, _na],
|
|
357
|
+
[64 | 0, 64 | 0]
|
|
358
|
+
];
|
|
359
|
+
export var BatchGetCollectionGroupResponse$ = [3, n0, _BGCGRa,
|
|
360
|
+
0,
|
|
361
|
+
[_cGD, _cGED],
|
|
362
|
+
[() => CollectionGroupDetails, () => CollectionGroupErrorDetails]
|
|
363
|
+
];
|
|
318
364
|
export var BatchGetCollectionRequest$ = [3, n0, _BGCR,
|
|
319
365
|
0,
|
|
320
366
|
[_i, _na],
|
|
@@ -362,8 +408,8 @@ export var CapacityLimits$ = [3, n0, _CL,
|
|
|
362
408
|
];
|
|
363
409
|
export var CollectionDetail$ = [3, n0, _CD,
|
|
364
410
|
0,
|
|
365
|
-
[_id_, _n, _s, _t, _d, _a, _kKA, _sR, _vO, _cD, _lMD, _cE, _dE, _fE, _fC, _fM],
|
|
366
|
-
[0, 0, 0, 0, 0, 0, 0, 0, () => VectorOptions$, 1, 1, 0, 0, () => FipsEndpoints$, 0, 0]
|
|
411
|
+
[_id_, _n, _s, _t, _d, _a, _kKA, _sR, _vO, _cD, _lMD, _cE, _dE, _fE, _fC, _fM, _cGN],
|
|
412
|
+
[0, 0, 0, 0, 0, 0, 0, 0, () => VectorOptions$, 1, 1, 0, 0, () => FipsEndpoints$, 0, 0, 0]
|
|
367
413
|
];
|
|
368
414
|
export var CollectionErrorDetail$ = [3, n0, _CED,
|
|
369
415
|
0,
|
|
@@ -372,14 +418,34 @@ export var CollectionErrorDetail$ = [3, n0, _CED,
|
|
|
372
418
|
];
|
|
373
419
|
export var CollectionFilters$ = [3, n0, _CF,
|
|
374
420
|
0,
|
|
375
|
-
[_n, _s],
|
|
376
|
-
[0, 0]
|
|
421
|
+
[_n, _s, _cGN],
|
|
422
|
+
[0, 0, 0]
|
|
377
423
|
];
|
|
378
|
-
export var
|
|
424
|
+
export var CollectionGroupCapacityLimits$ = [3, n0, _CGCL,
|
|
425
|
+
0,
|
|
426
|
+
[_mICIOCU, _mSCIOCU, _mICIOCUi, _mSCIOCUi],
|
|
427
|
+
[1, 1, 1, 1]
|
|
428
|
+
];
|
|
429
|
+
export var CollectionGroupDetail$ = [3, n0, _CGD,
|
|
379
430
|
0,
|
|
380
|
-
[_id_, _n,
|
|
431
|
+
[_id_, _a, _n, _sR, _d, _ta, _cD, _cL, _nOC],
|
|
432
|
+
[0, 0, 0, 0, 0, () => Tags, 1, () => CollectionGroupCapacityLimits$, 1]
|
|
433
|
+
];
|
|
434
|
+
export var CollectionGroupErrorDetail$ = [3, n0, _CGED,
|
|
435
|
+
0,
|
|
436
|
+
[_id_, _n, _eM, _eC],
|
|
381
437
|
[0, 0, 0, 0]
|
|
382
438
|
];
|
|
439
|
+
export var CollectionGroupSummary$ = [3, n0, _CGS,
|
|
440
|
+
0,
|
|
441
|
+
[_id_, _a, _n, _nOC, _cD, _cL],
|
|
442
|
+
[0, 0, 0, 1, 1, () => CollectionGroupCapacityLimits$]
|
|
443
|
+
];
|
|
444
|
+
export var CollectionSummary$ = [3, n0, _CS,
|
|
445
|
+
0,
|
|
446
|
+
[_id_, _n, _s, _a, _kKA, _cGN],
|
|
447
|
+
[0, 0, 0, 0, 0, 0]
|
|
448
|
+
];
|
|
383
449
|
export var ConflictException$ = [-3, n0, _CE,
|
|
384
450
|
{ [_e]: _c, [_hE]: 409 },
|
|
385
451
|
[_m],
|
|
@@ -398,13 +464,28 @@ export var CreateAccessPolicyResponse$ = [3, n0, _CAPRr,
|
|
|
398
464
|
];
|
|
399
465
|
export var CreateCollectionDetail$ = [3, n0, _CCD,
|
|
400
466
|
0,
|
|
401
|
-
[_id_, _n, _s, _t, _d, _a, _kKA, _sR, _vO, _cD, _lMD],
|
|
402
|
-
[0, 0, 0, 0, 0, 0, 0, 0, () => VectorOptions$, 1, 1]
|
|
467
|
+
[_id_, _n, _s, _t, _d, _a, _kKA, _sR, _vO, _cD, _lMD, _cGN],
|
|
468
|
+
[0, 0, 0, 0, 0, 0, 0, 0, () => VectorOptions$, 1, 1, 0]
|
|
469
|
+
];
|
|
470
|
+
export var CreateCollectionGroupDetail$ = [3, n0, _CCGD,
|
|
471
|
+
0,
|
|
472
|
+
[_id_, _a, _n, _sR, _d, _ta, _cD, _cL],
|
|
473
|
+
[0, 0, 0, 0, 0, () => Tags, 1, () => CollectionGroupCapacityLimits$]
|
|
474
|
+
];
|
|
475
|
+
export var CreateCollectionGroupRequest$ = [3, n0, _CCGR,
|
|
476
|
+
0,
|
|
477
|
+
[_n, _sR, _d, _ta, _cL, _cT],
|
|
478
|
+
[0, 0, 0, () => Tags, () => CollectionGroupCapacityLimits$, [0, 4]], 2
|
|
479
|
+
];
|
|
480
|
+
export var CreateCollectionGroupResponse$ = [3, n0, _CCGRr,
|
|
481
|
+
0,
|
|
482
|
+
[_cCGD],
|
|
483
|
+
[() => CreateCollectionGroupDetail$]
|
|
403
484
|
];
|
|
404
485
|
export var CreateCollectionRequest$ = [3, n0, _CCR,
|
|
405
486
|
0,
|
|
406
|
-
[_n, _t, _d, _ta, _sR, _vO, _cT],
|
|
407
|
-
[0, 0, 0, () => Tags, 0, () => VectorOptions$, [0, 4]], 1
|
|
487
|
+
[_n, _t, _d, _ta, _sR, _vO, _cGN, _eCn, _cT],
|
|
488
|
+
[0, 0, 0, () => Tags, 0, () => VectorOptions$, 0, () => EncryptionConfig$, [0, 4]], 1
|
|
408
489
|
];
|
|
409
490
|
export var CreateCollectionResponse$ = [3, n0, _CCRr,
|
|
410
491
|
0,
|
|
@@ -486,6 +567,16 @@ export var DeleteCollectionDetail$ = [3, n0, _DCD,
|
|
|
486
567
|
[_id_, _n, _s],
|
|
487
568
|
[0, 0, 0]
|
|
488
569
|
];
|
|
570
|
+
export var DeleteCollectionGroupRequest$ = [3, n0, _DCGR,
|
|
571
|
+
0,
|
|
572
|
+
[_id_, _cT],
|
|
573
|
+
[0, [0, 4]], 1
|
|
574
|
+
];
|
|
575
|
+
export var DeleteCollectionGroupResponse$ = [3, n0, _DCGRe,
|
|
576
|
+
0,
|
|
577
|
+
[],
|
|
578
|
+
[]
|
|
579
|
+
];
|
|
489
580
|
export var DeleteCollectionRequest$ = [3, n0, _DCR,
|
|
490
581
|
0,
|
|
491
582
|
[_id_, _cT],
|
|
@@ -561,6 +652,11 @@ export var EffectiveLifecyclePolicyErrorDetail$ = [3, n0, _ELPED,
|
|
|
561
652
|
[_t, _r, _eM, _eC],
|
|
562
653
|
[0, 0, 0, 0]
|
|
563
654
|
];
|
|
655
|
+
export var EncryptionConfig$ = [3, n0, _EC,
|
|
656
|
+
0,
|
|
657
|
+
[_aWSOK, _kKA],
|
|
658
|
+
[2, 0]
|
|
659
|
+
];
|
|
564
660
|
export var FipsEndpoints$ = [3, n0, _FE,
|
|
565
661
|
0,
|
|
566
662
|
[_cE, _dE],
|
|
@@ -682,6 +778,16 @@ export var ListAccessPoliciesResponse$ = [3, n0, _LAPRi,
|
|
|
682
778
|
[_aPS, _nT],
|
|
683
779
|
[() => AccessPolicySummaries, 0]
|
|
684
780
|
];
|
|
781
|
+
export var ListCollectionGroupsRequest$ = [3, n0, _LCGR,
|
|
782
|
+
0,
|
|
783
|
+
[_nT, _mR],
|
|
784
|
+
[0, 1]
|
|
785
|
+
];
|
|
786
|
+
export var ListCollectionGroupsResponse$ = [3, n0, _LCGRi,
|
|
787
|
+
0,
|
|
788
|
+
[_cGS, _nT],
|
|
789
|
+
[() => CollectionGroupSummaries, 0]
|
|
790
|
+
];
|
|
685
791
|
export var ListCollectionsRequest$ = [3, n0, _LCR,
|
|
686
792
|
0,
|
|
687
793
|
[_cF, _nT, _mR],
|
|
@@ -845,6 +951,21 @@ export var UpdateCollectionDetail$ = [3, n0, _UCD,
|
|
|
845
951
|
[_id_, _n, _s, _t, _d, _a, _cD, _lMD],
|
|
846
952
|
[0, 0, 0, 0, 0, 0, 1, 1]
|
|
847
953
|
];
|
|
954
|
+
export var UpdateCollectionGroupDetail$ = [3, n0, _UCGD,
|
|
955
|
+
0,
|
|
956
|
+
[_id_, _a, _n, _d, _cL, _cD, _lMD],
|
|
957
|
+
[0, 0, 0, 0, () => CollectionGroupCapacityLimits$, 1, 1]
|
|
958
|
+
];
|
|
959
|
+
export var UpdateCollectionGroupRequest$ = [3, n0, _UCGR,
|
|
960
|
+
0,
|
|
961
|
+
[_id_, _d, _cL, _cT],
|
|
962
|
+
[0, 0, () => CollectionGroupCapacityLimits$, [0, 4]], 1
|
|
963
|
+
];
|
|
964
|
+
export var UpdateCollectionGroupResponse$ = [3, n0, _UCGRp,
|
|
965
|
+
0,
|
|
966
|
+
[_uCGD],
|
|
967
|
+
[() => UpdateCollectionGroupDetail$]
|
|
968
|
+
];
|
|
848
969
|
export var UpdateCollectionRequest$ = [3, n0, _UCR,
|
|
849
970
|
0,
|
|
850
971
|
[_id_, _d, _cT],
|
|
@@ -957,6 +1078,17 @@ var CollectionDetails = [1, n0, _CDo,
|
|
|
957
1078
|
var CollectionErrorDetails = [1, n0, _CEDo,
|
|
958
1079
|
0, () => CollectionErrorDetail$
|
|
959
1080
|
];
|
|
1081
|
+
var CollectionGroupDetails = [1, n0, _CGDo,
|
|
1082
|
+
0, () => CollectionGroupDetail$
|
|
1083
|
+
];
|
|
1084
|
+
var CollectionGroupErrorDetails = [1, n0, _CGEDo,
|
|
1085
|
+
0, () => CollectionGroupErrorDetail$
|
|
1086
|
+
];
|
|
1087
|
+
var CollectionGroupIds = 64 | 0;
|
|
1088
|
+
var CollectionGroupNames = 64 | 0;
|
|
1089
|
+
var CollectionGroupSummaries = [1, n0, _CGSo,
|
|
1090
|
+
0, () => CollectionGroupSummary$
|
|
1091
|
+
];
|
|
960
1092
|
var CollectionIds = 64 | 0;
|
|
961
1093
|
var CollectionNames = 64 | 0;
|
|
962
1094
|
var CollectionSummaries = [1, n0, _CSo,
|
|
@@ -1010,6 +1142,9 @@ var VpcEndpointSummaries = [1, n0, _VESp,
|
|
|
1010
1142
|
export var BatchGetCollection$ = [9, n0, _BGC,
|
|
1011
1143
|
0, () => BatchGetCollectionRequest$, () => BatchGetCollectionResponse$
|
|
1012
1144
|
];
|
|
1145
|
+
export var BatchGetCollectionGroup$ = [9, n0, _BGCG,
|
|
1146
|
+
0, () => BatchGetCollectionGroupRequest$, () => BatchGetCollectionGroupResponse$
|
|
1147
|
+
];
|
|
1013
1148
|
export var BatchGetEffectiveLifecyclePolicy$ = [9, n0, _BGELP,
|
|
1014
1149
|
0, () => BatchGetEffectiveLifecyclePolicyRequest$, () => BatchGetEffectiveLifecyclePolicyResponse$
|
|
1015
1150
|
];
|
|
@@ -1025,6 +1160,9 @@ export var CreateAccessPolicy$ = [9, n0, _CAP,
|
|
|
1025
1160
|
export var CreateCollection$ = [9, n0, _CC,
|
|
1026
1161
|
2, () => CreateCollectionRequest$, () => CreateCollectionResponse$
|
|
1027
1162
|
];
|
|
1163
|
+
export var CreateCollectionGroup$ = [9, n0, _CCG,
|
|
1164
|
+
2, () => CreateCollectionGroupRequest$, () => CreateCollectionGroupResponse$
|
|
1165
|
+
];
|
|
1028
1166
|
export var CreateIndex$ = [9, n0, _CI,
|
|
1029
1167
|
2, () => CreateIndexRequest$, () => CreateIndexResponse$
|
|
1030
1168
|
];
|
|
@@ -1046,6 +1184,9 @@ export var DeleteAccessPolicy$ = [9, n0, _DAP,
|
|
|
1046
1184
|
export var DeleteCollection$ = [9, n0, _DC,
|
|
1047
1185
|
2, () => DeleteCollectionRequest$, () => DeleteCollectionResponse$
|
|
1048
1186
|
];
|
|
1187
|
+
export var DeleteCollectionGroup$ = [9, n0, _DCG,
|
|
1188
|
+
2, () => DeleteCollectionGroupRequest$, () => DeleteCollectionGroupResponse$
|
|
1189
|
+
];
|
|
1049
1190
|
export var DeleteIndex$ = [9, n0, _DI,
|
|
1050
1191
|
2, () => DeleteIndexRequest$, () => DeleteIndexResponse$
|
|
1051
1192
|
];
|
|
@@ -1082,6 +1223,9 @@ export var GetSecurityPolicy$ = [9, n0, _GSP,
|
|
|
1082
1223
|
export var ListAccessPolicies$ = [9, n0, _LAP,
|
|
1083
1224
|
0, () => ListAccessPoliciesRequest$, () => ListAccessPoliciesResponse$
|
|
1084
1225
|
];
|
|
1226
|
+
export var ListCollectionGroups$ = [9, n0, _LCG,
|
|
1227
|
+
0, () => ListCollectionGroupsRequest$, () => ListCollectionGroupsResponse$
|
|
1228
|
+
];
|
|
1085
1229
|
export var ListCollections$ = [9, n0, _LC,
|
|
1086
1230
|
0, () => ListCollectionsRequest$, () => ListCollectionsResponse$
|
|
1087
1231
|
];
|
|
@@ -1115,6 +1259,9 @@ export var UpdateAccountSettings$ = [9, n0, _UAS,
|
|
|
1115
1259
|
export var UpdateCollection$ = [9, n0, _UC,
|
|
1116
1260
|
2, () => UpdateCollectionRequest$, () => UpdateCollectionResponse$
|
|
1117
1261
|
];
|
|
1262
|
+
export var UpdateCollectionGroup$ = [9, n0, _UCG,
|
|
1263
|
+
2, () => UpdateCollectionGroupRequest$, () => UpdateCollectionGroupResponse$
|
|
1264
|
+
];
|
|
1118
1265
|
export var UpdateIndex$ = [9, n0, _UI,
|
|
1119
1266
|
2, () => UpdateIndexRequest$, () => UpdateIndexResponse$
|
|
1120
1267
|
];
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
2
|
import { BatchGetCollectionCommandInput, BatchGetCollectionCommandOutput } from "./commands/BatchGetCollectionCommand";
|
|
3
|
+
import { BatchGetCollectionGroupCommandInput, BatchGetCollectionGroupCommandOutput } from "./commands/BatchGetCollectionGroupCommand";
|
|
3
4
|
import { BatchGetEffectiveLifecyclePolicyCommandInput, BatchGetEffectiveLifecyclePolicyCommandOutput } from "./commands/BatchGetEffectiveLifecyclePolicyCommand";
|
|
4
5
|
import { BatchGetLifecyclePolicyCommandInput, BatchGetLifecyclePolicyCommandOutput } from "./commands/BatchGetLifecyclePolicyCommand";
|
|
5
6
|
import { BatchGetVpcEndpointCommandInput, BatchGetVpcEndpointCommandOutput } from "./commands/BatchGetVpcEndpointCommand";
|
|
6
7
|
import { CreateAccessPolicyCommandInput, CreateAccessPolicyCommandOutput } from "./commands/CreateAccessPolicyCommand";
|
|
7
8
|
import { CreateCollectionCommandInput, CreateCollectionCommandOutput } from "./commands/CreateCollectionCommand";
|
|
9
|
+
import { CreateCollectionGroupCommandInput, CreateCollectionGroupCommandOutput } from "./commands/CreateCollectionGroupCommand";
|
|
8
10
|
import { CreateIndexCommandInput, CreateIndexCommandOutput } from "./commands/CreateIndexCommand";
|
|
9
11
|
import { CreateLifecyclePolicyCommandInput, CreateLifecyclePolicyCommandOutput } from "./commands/CreateLifecyclePolicyCommand";
|
|
10
12
|
import { CreateSecurityConfigCommandInput, CreateSecurityConfigCommandOutput } from "./commands/CreateSecurityConfigCommand";
|
|
@@ -12,6 +14,7 @@ import { CreateSecurityPolicyCommandInput, CreateSecurityPolicyCommandOutput } f
|
|
|
12
14
|
import { CreateVpcEndpointCommandInput, CreateVpcEndpointCommandOutput } from "./commands/CreateVpcEndpointCommand";
|
|
13
15
|
import { DeleteAccessPolicyCommandInput, DeleteAccessPolicyCommandOutput } from "./commands/DeleteAccessPolicyCommand";
|
|
14
16
|
import { DeleteCollectionCommandInput, DeleteCollectionCommandOutput } from "./commands/DeleteCollectionCommand";
|
|
17
|
+
import { DeleteCollectionGroupCommandInput, DeleteCollectionGroupCommandOutput } from "./commands/DeleteCollectionGroupCommand";
|
|
15
18
|
import { DeleteIndexCommandInput, DeleteIndexCommandOutput } from "./commands/DeleteIndexCommand";
|
|
16
19
|
import { DeleteLifecyclePolicyCommandInput, DeleteLifecyclePolicyCommandOutput } from "./commands/DeleteLifecyclePolicyCommand";
|
|
17
20
|
import { DeleteSecurityConfigCommandInput, DeleteSecurityConfigCommandOutput } from "./commands/DeleteSecurityConfigCommand";
|
|
@@ -24,6 +27,7 @@ import { GetPoliciesStatsCommandInput, GetPoliciesStatsCommandOutput } from "./c
|
|
|
24
27
|
import { GetSecurityConfigCommandInput, GetSecurityConfigCommandOutput } from "./commands/GetSecurityConfigCommand";
|
|
25
28
|
import { GetSecurityPolicyCommandInput, GetSecurityPolicyCommandOutput } from "./commands/GetSecurityPolicyCommand";
|
|
26
29
|
import { ListAccessPoliciesCommandInput, ListAccessPoliciesCommandOutput } from "./commands/ListAccessPoliciesCommand";
|
|
30
|
+
import { ListCollectionGroupsCommandInput, ListCollectionGroupsCommandOutput } from "./commands/ListCollectionGroupsCommand";
|
|
27
31
|
import { ListCollectionsCommandInput, ListCollectionsCommandOutput } from "./commands/ListCollectionsCommand";
|
|
28
32
|
import { ListLifecyclePoliciesCommandInput, ListLifecyclePoliciesCommandOutput } from "./commands/ListLifecyclePoliciesCommand";
|
|
29
33
|
import { ListSecurityConfigsCommandInput, ListSecurityConfigsCommandOutput } from "./commands/ListSecurityConfigsCommand";
|
|
@@ -35,6 +39,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
35
39
|
import { UpdateAccessPolicyCommandInput, UpdateAccessPolicyCommandOutput } from "./commands/UpdateAccessPolicyCommand";
|
|
36
40
|
import { UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput } from "./commands/UpdateAccountSettingsCommand";
|
|
37
41
|
import { UpdateCollectionCommandInput, UpdateCollectionCommandOutput } from "./commands/UpdateCollectionCommand";
|
|
42
|
+
import { UpdateCollectionGroupCommandInput, UpdateCollectionGroupCommandOutput } from "./commands/UpdateCollectionGroupCommand";
|
|
38
43
|
import { UpdateIndexCommandInput, UpdateIndexCommandOutput } from "./commands/UpdateIndexCommand";
|
|
39
44
|
import { UpdateLifecyclePolicyCommandInput, UpdateLifecyclePolicyCommandOutput } from "./commands/UpdateLifecyclePolicyCommand";
|
|
40
45
|
import { UpdateSecurityConfigCommandInput, UpdateSecurityConfigCommandOutput } from "./commands/UpdateSecurityConfigCommand";
|
|
@@ -49,6 +54,13 @@ export interface OpenSearchServerless {
|
|
|
49
54
|
batchGetCollection(args: BatchGetCollectionCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetCollectionCommandOutput>;
|
|
50
55
|
batchGetCollection(args: BatchGetCollectionCommandInput, cb: (err: any, data?: BatchGetCollectionCommandOutput) => void): void;
|
|
51
56
|
batchGetCollection(args: BatchGetCollectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetCollectionCommandOutput) => void): void;
|
|
57
|
+
/**
|
|
58
|
+
* @see {@link BatchGetCollectionGroupCommand}
|
|
59
|
+
*/
|
|
60
|
+
batchGetCollectionGroup(): Promise<BatchGetCollectionGroupCommandOutput>;
|
|
61
|
+
batchGetCollectionGroup(args: BatchGetCollectionGroupCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetCollectionGroupCommandOutput>;
|
|
62
|
+
batchGetCollectionGroup(args: BatchGetCollectionGroupCommandInput, cb: (err: any, data?: BatchGetCollectionGroupCommandOutput) => void): void;
|
|
63
|
+
batchGetCollectionGroup(args: BatchGetCollectionGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetCollectionGroupCommandOutput) => void): void;
|
|
52
64
|
/**
|
|
53
65
|
* @see {@link BatchGetEffectiveLifecyclePolicyCommand}
|
|
54
66
|
*/
|
|
@@ -79,6 +91,12 @@ export interface OpenSearchServerless {
|
|
|
79
91
|
createCollection(args: CreateCollectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateCollectionCommandOutput>;
|
|
80
92
|
createCollection(args: CreateCollectionCommandInput, cb: (err: any, data?: CreateCollectionCommandOutput) => void): void;
|
|
81
93
|
createCollection(args: CreateCollectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCollectionCommandOutput) => void): void;
|
|
94
|
+
/**
|
|
95
|
+
* @see {@link CreateCollectionGroupCommand}
|
|
96
|
+
*/
|
|
97
|
+
createCollectionGroup(args: CreateCollectionGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateCollectionGroupCommandOutput>;
|
|
98
|
+
createCollectionGroup(args: CreateCollectionGroupCommandInput, cb: (err: any, data?: CreateCollectionGroupCommandOutput) => void): void;
|
|
99
|
+
createCollectionGroup(args: CreateCollectionGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCollectionGroupCommandOutput) => void): void;
|
|
82
100
|
/**
|
|
83
101
|
* @see {@link CreateIndexCommand}
|
|
84
102
|
*/
|
|
@@ -121,6 +139,12 @@ export interface OpenSearchServerless {
|
|
|
121
139
|
deleteCollection(args: DeleteCollectionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCollectionCommandOutput>;
|
|
122
140
|
deleteCollection(args: DeleteCollectionCommandInput, cb: (err: any, data?: DeleteCollectionCommandOutput) => void): void;
|
|
123
141
|
deleteCollection(args: DeleteCollectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCollectionCommandOutput) => void): void;
|
|
142
|
+
/**
|
|
143
|
+
* @see {@link DeleteCollectionGroupCommand}
|
|
144
|
+
*/
|
|
145
|
+
deleteCollectionGroup(args: DeleteCollectionGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCollectionGroupCommandOutput>;
|
|
146
|
+
deleteCollectionGroup(args: DeleteCollectionGroupCommandInput, cb: (err: any, data?: DeleteCollectionGroupCommandOutput) => void): void;
|
|
147
|
+
deleteCollectionGroup(args: DeleteCollectionGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCollectionGroupCommandOutput) => void): void;
|
|
124
148
|
/**
|
|
125
149
|
* @see {@link DeleteIndexCommand}
|
|
126
150
|
*/
|
|
@@ -195,6 +219,13 @@ export interface OpenSearchServerless {
|
|
|
195
219
|
listAccessPolicies(args: ListAccessPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<ListAccessPoliciesCommandOutput>;
|
|
196
220
|
listAccessPolicies(args: ListAccessPoliciesCommandInput, cb: (err: any, data?: ListAccessPoliciesCommandOutput) => void): void;
|
|
197
221
|
listAccessPolicies(args: ListAccessPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAccessPoliciesCommandOutput) => void): void;
|
|
222
|
+
/**
|
|
223
|
+
* @see {@link ListCollectionGroupsCommand}
|
|
224
|
+
*/
|
|
225
|
+
listCollectionGroups(): Promise<ListCollectionGroupsCommandOutput>;
|
|
226
|
+
listCollectionGroups(args: ListCollectionGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListCollectionGroupsCommandOutput>;
|
|
227
|
+
listCollectionGroups(args: ListCollectionGroupsCommandInput, cb: (err: any, data?: ListCollectionGroupsCommandOutput) => void): void;
|
|
228
|
+
listCollectionGroups(args: ListCollectionGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCollectionGroupsCommandOutput) => void): void;
|
|
198
229
|
/**
|
|
199
230
|
* @see {@link ListCollectionsCommand}
|
|
200
231
|
*/
|
|
@@ -264,6 +295,12 @@ export interface OpenSearchServerless {
|
|
|
264
295
|
updateCollection(args: UpdateCollectionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCollectionCommandOutput>;
|
|
265
296
|
updateCollection(args: UpdateCollectionCommandInput, cb: (err: any, data?: UpdateCollectionCommandOutput) => void): void;
|
|
266
297
|
updateCollection(args: UpdateCollectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCollectionCommandOutput) => void): void;
|
|
298
|
+
/**
|
|
299
|
+
* @see {@link UpdateCollectionGroupCommand}
|
|
300
|
+
*/
|
|
301
|
+
updateCollectionGroup(args: UpdateCollectionGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCollectionGroupCommandOutput>;
|
|
302
|
+
updateCollectionGroup(args: UpdateCollectionGroupCommandInput, cb: (err: any, data?: UpdateCollectionGroupCommandOutput) => void): void;
|
|
303
|
+
updateCollectionGroup(args: UpdateCollectionGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCollectionGroupCommandOutput) => void): void;
|
|
267
304
|
/**
|
|
268
305
|
* @see {@link UpdateIndexCommand}
|
|
269
306
|
*/
|