@aws-sdk/client-opensearchserverless 3.220.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/LICENSE +201 -0
- package/README.md +214 -0
- package/dist-cjs/OpenSearchServerless.js +472 -0
- package/dist-cjs/OpenSearchServerlessClient.js +40 -0
- package/dist-cjs/commands/BatchGetCollectionCommand.js +46 -0
- package/dist-cjs/commands/BatchGetVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/CreateAccessPolicyCommand.js +46 -0
- package/dist-cjs/commands/CreateCollectionCommand.js +46 -0
- package/dist-cjs/commands/CreateSecurityConfigCommand.js +46 -0
- package/dist-cjs/commands/CreateSecurityPolicyCommand.js +46 -0
- package/dist-cjs/commands/CreateVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/DeleteAccessPolicyCommand.js +46 -0
- package/dist-cjs/commands/DeleteCollectionCommand.js +46 -0
- package/dist-cjs/commands/DeleteSecurityConfigCommand.js +46 -0
- package/dist-cjs/commands/DeleteSecurityPolicyCommand.js +46 -0
- package/dist-cjs/commands/DeleteVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/GetAccessPolicyCommand.js +46 -0
- package/dist-cjs/commands/GetAccountSettingsCommand.js +46 -0
- package/dist-cjs/commands/GetPoliciesStatsCommand.js +46 -0
- package/dist-cjs/commands/GetSecurityConfigCommand.js +46 -0
- package/dist-cjs/commands/GetSecurityPolicyCommand.js +46 -0
- package/dist-cjs/commands/ListAccessPoliciesCommand.js +46 -0
- package/dist-cjs/commands/ListCollectionsCommand.js +46 -0
- package/dist-cjs/commands/ListSecurityConfigsCommand.js +46 -0
- package/dist-cjs/commands/ListSecurityPoliciesCommand.js +46 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-cjs/commands/ListVpcEndpointsCommand.js +46 -0
- package/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/dist-cjs/commands/UpdateAccessPolicyCommand.js +46 -0
- package/dist-cjs/commands/UpdateAccountSettingsCommand.js +46 -0
- package/dist-cjs/commands/UpdateCollectionCommand.js +46 -0
- package/dist-cjs/commands/UpdateSecurityConfigCommand.js +46 -0
- package/dist-cjs/commands/UpdateSecurityPolicyCommand.js +46 -0
- package/dist-cjs/commands/UpdateVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/index.js +34 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +312 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/OpenSearchServerlessServiceException.js +11 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +445 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListAccessPoliciesPaginator.js +35 -0
- package/dist-cjs/pagination/ListCollectionsPaginator.js +35 -0
- package/dist-cjs/pagination/ListSecurityConfigsPaginator.js +35 -0
- package/dist-cjs/pagination/ListSecurityPoliciesPaginator.js +35 -0
- package/dist-cjs/pagination/ListVpcEndpointsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +9 -0
- package/dist-cjs/protocols/Aws_json1_0.js +2572 -0
- package/dist-cjs/runtimeConfig.browser.js +42 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +18 -0
- package/dist-es/OpenSearchServerless.js +468 -0
- package/dist-es/OpenSearchServerlessClient.js +36 -0
- package/dist-es/commands/BatchGetCollectionCommand.js +42 -0
- package/dist-es/commands/BatchGetVpcEndpointCommand.js +42 -0
- package/dist-es/commands/CreateAccessPolicyCommand.js +42 -0
- package/dist-es/commands/CreateCollectionCommand.js +42 -0
- package/dist-es/commands/CreateSecurityConfigCommand.js +42 -0
- package/dist-es/commands/CreateSecurityPolicyCommand.js +42 -0
- package/dist-es/commands/CreateVpcEndpointCommand.js +42 -0
- package/dist-es/commands/DeleteAccessPolicyCommand.js +42 -0
- package/dist-es/commands/DeleteCollectionCommand.js +42 -0
- package/dist-es/commands/DeleteSecurityConfigCommand.js +42 -0
- package/dist-es/commands/DeleteSecurityPolicyCommand.js +42 -0
- package/dist-es/commands/DeleteVpcEndpointCommand.js +42 -0
- package/dist-es/commands/GetAccessPolicyCommand.js +42 -0
- package/dist-es/commands/GetAccountSettingsCommand.js +42 -0
- package/dist-es/commands/GetPoliciesStatsCommand.js +42 -0
- package/dist-es/commands/GetSecurityConfigCommand.js +42 -0
- package/dist-es/commands/GetSecurityPolicyCommand.js +42 -0
- package/dist-es/commands/ListAccessPoliciesCommand.js +42 -0
- package/dist-es/commands/ListCollectionsCommand.js +42 -0
- package/dist-es/commands/ListSecurityConfigsCommand.js +42 -0
- package/dist-es/commands/ListSecurityPoliciesCommand.js +42 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/dist-es/commands/ListVpcEndpointsCommand.js +42 -0
- package/dist-es/commands/TagResourceCommand.js +42 -0
- package/dist-es/commands/UntagResourceCommand.js +42 -0
- package/dist-es/commands/UpdateAccessPolicyCommand.js +42 -0
- package/dist-es/commands/UpdateAccountSettingsCommand.js +42 -0
- package/dist-es/commands/UpdateCollectionCommand.js +42 -0
- package/dist-es/commands/UpdateSecurityConfigCommand.js +42 -0
- package/dist-es/commands/UpdateSecurityPolicyCommand.js +42 -0
- package/dist-es/commands/UpdateVpcEndpointCommand.js +42 -0
- package/dist-es/commands/index.js +31 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +309 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/OpenSearchServerlessServiceException.js +7 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +348 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAccessPoliciesPaginator.js +31 -0
- package/dist-es/pagination/ListCollectionsPaginator.js +31 -0
- package/dist-es/pagination/ListSecurityConfigsPaginator.js +31 -0
- package/dist-es/pagination/ListSecurityPoliciesPaginator.js +31 -0
- package/dist-es/pagination/ListVpcEndpointsPaginator.js +31 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/protocols/Aws_json1_0.js +2506 -0
- package/dist-es/runtimeConfig.browser.js +37 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +14 -0
- package/dist-types/OpenSearchServerless.d.ts +276 -0
- package/dist-types/OpenSearchServerlessClient.d.ts +181 -0
- package/dist-types/commands/BatchGetCollectionCommand.d.ts +39 -0
- package/dist-types/commands/BatchGetVpcEndpointCommand.d.ts +39 -0
- package/dist-types/commands/CreateAccessPolicyCommand.d.ts +40 -0
- package/dist-types/commands/CreateCollectionCommand.d.ts +38 -0
- package/dist-types/commands/CreateSecurityConfigCommand.d.ts +39 -0
- package/dist-types/commands/CreateSecurityPolicyCommand.d.ts +42 -0
- package/dist-types/commands/CreateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/commands/DeleteAccessPolicyCommand.d.ts +38 -0
- package/dist-types/commands/DeleteCollectionCommand.d.ts +38 -0
- package/dist-types/commands/DeleteSecurityConfigCommand.d.ts +39 -0
- package/dist-types/commands/DeleteSecurityPolicyCommand.d.ts +37 -0
- package/dist-types/commands/DeleteVpcEndpointCommand.d.ts +38 -0
- package/dist-types/commands/GetAccessPolicyCommand.d.ts +38 -0
- package/dist-types/commands/GetAccountSettingsCommand.d.ts +37 -0
- package/dist-types/commands/GetPoliciesStatsCommand.d.ts +38 -0
- package/dist-types/commands/GetSecurityConfigCommand.d.ts +39 -0
- package/dist-types/commands/GetSecurityPolicyCommand.d.ts +39 -0
- package/dist-types/commands/ListAccessPoliciesCommand.d.ts +37 -0
- package/dist-types/commands/ListCollectionsCommand.d.ts +42 -0
- package/dist-types/commands/ListSecurityConfigsCommand.d.ts +39 -0
- package/dist-types/commands/ListSecurityPoliciesCommand.d.ts +37 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
- package/dist-types/commands/ListVpcEndpointsCommand.d.ts +39 -0
- package/dist-types/commands/TagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UpdateAccessPolicyCommand.d.ts +38 -0
- package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +38 -0
- package/dist-types/commands/UpdateCollectionCommand.d.ts +37 -0
- package/dist-types/commands/UpdateSecurityConfigCommand.d.ts +39 -0
- package/dist-types/commands/UpdateSecurityPolicyCommand.d.ts +39 -0
- package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/commands/index.d.ts +31 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +6 -0
- package/dist-types/models/OpenSearchServerlessServiceException.d.ts +10 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1802 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListAccessPoliciesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListCollectionsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSecurityConfigsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSecurityPoliciesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListVpcEndpointsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +95 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +16 -0
- package/dist-types/ts3.4/OpenSearchServerless.d.ts +531 -0
- package/dist-types/ts3.4/OpenSearchServerlessClient.d.ts +298 -0
- package/dist-types/ts3.4/commands/BatchGetCollectionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/BatchGetVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateAccessPolicyCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateCollectionCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/CreateSecurityConfigCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateSecurityPolicyCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteAccessPolicyCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteCollectionCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteSecurityConfigCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteSecurityPolicyCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetAccessPolicyCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetPoliciesStatsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetSecurityConfigCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetSecurityPolicyCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListAccessPoliciesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListCollectionsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListSecurityConfigsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListSecurityPoliciesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListVpcEndpointsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateAccessPolicyCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateAccountSettingsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateCollectionCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateSecurityConfigCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateSecurityPolicyCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +31 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/OpenSearchServerlessServiceException.d.ts +7 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +740 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
- package/dist-types/ts3.4/pagination/ListAccessPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCollectionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSecurityConfigsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSecurityPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListVpcEndpointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +377 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +90 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +90 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +79 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
- package/package.json +103 -0
|
@@ -0,0 +1,531 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
BatchGetCollectionCommandInput,
|
|
4
|
+
BatchGetCollectionCommandOutput,
|
|
5
|
+
} from "./commands/BatchGetCollectionCommand";
|
|
6
|
+
import {
|
|
7
|
+
BatchGetVpcEndpointCommandInput,
|
|
8
|
+
BatchGetVpcEndpointCommandOutput,
|
|
9
|
+
} from "./commands/BatchGetVpcEndpointCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateAccessPolicyCommandInput,
|
|
12
|
+
CreateAccessPolicyCommandOutput,
|
|
13
|
+
} from "./commands/CreateAccessPolicyCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateCollectionCommandInput,
|
|
16
|
+
CreateCollectionCommandOutput,
|
|
17
|
+
} from "./commands/CreateCollectionCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateSecurityConfigCommandInput,
|
|
20
|
+
CreateSecurityConfigCommandOutput,
|
|
21
|
+
} from "./commands/CreateSecurityConfigCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateSecurityPolicyCommandInput,
|
|
24
|
+
CreateSecurityPolicyCommandOutput,
|
|
25
|
+
} from "./commands/CreateSecurityPolicyCommand";
|
|
26
|
+
import {
|
|
27
|
+
CreateVpcEndpointCommandInput,
|
|
28
|
+
CreateVpcEndpointCommandOutput,
|
|
29
|
+
} from "./commands/CreateVpcEndpointCommand";
|
|
30
|
+
import {
|
|
31
|
+
DeleteAccessPolicyCommandInput,
|
|
32
|
+
DeleteAccessPolicyCommandOutput,
|
|
33
|
+
} from "./commands/DeleteAccessPolicyCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteCollectionCommandInput,
|
|
36
|
+
DeleteCollectionCommandOutput,
|
|
37
|
+
} from "./commands/DeleteCollectionCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteSecurityConfigCommandInput,
|
|
40
|
+
DeleteSecurityConfigCommandOutput,
|
|
41
|
+
} from "./commands/DeleteSecurityConfigCommand";
|
|
42
|
+
import {
|
|
43
|
+
DeleteSecurityPolicyCommandInput,
|
|
44
|
+
DeleteSecurityPolicyCommandOutput,
|
|
45
|
+
} from "./commands/DeleteSecurityPolicyCommand";
|
|
46
|
+
import {
|
|
47
|
+
DeleteVpcEndpointCommandInput,
|
|
48
|
+
DeleteVpcEndpointCommandOutput,
|
|
49
|
+
} from "./commands/DeleteVpcEndpointCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetAccessPolicyCommandInput,
|
|
52
|
+
GetAccessPolicyCommandOutput,
|
|
53
|
+
} from "./commands/GetAccessPolicyCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetAccountSettingsCommandInput,
|
|
56
|
+
GetAccountSettingsCommandOutput,
|
|
57
|
+
} from "./commands/GetAccountSettingsCommand";
|
|
58
|
+
import {
|
|
59
|
+
GetPoliciesStatsCommandInput,
|
|
60
|
+
GetPoliciesStatsCommandOutput,
|
|
61
|
+
} from "./commands/GetPoliciesStatsCommand";
|
|
62
|
+
import {
|
|
63
|
+
GetSecurityConfigCommandInput,
|
|
64
|
+
GetSecurityConfigCommandOutput,
|
|
65
|
+
} from "./commands/GetSecurityConfigCommand";
|
|
66
|
+
import {
|
|
67
|
+
GetSecurityPolicyCommandInput,
|
|
68
|
+
GetSecurityPolicyCommandOutput,
|
|
69
|
+
} from "./commands/GetSecurityPolicyCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListAccessPoliciesCommandInput,
|
|
72
|
+
ListAccessPoliciesCommandOutput,
|
|
73
|
+
} from "./commands/ListAccessPoliciesCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListCollectionsCommandInput,
|
|
76
|
+
ListCollectionsCommandOutput,
|
|
77
|
+
} from "./commands/ListCollectionsCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListSecurityConfigsCommandInput,
|
|
80
|
+
ListSecurityConfigsCommandOutput,
|
|
81
|
+
} from "./commands/ListSecurityConfigsCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListSecurityPoliciesCommandInput,
|
|
84
|
+
ListSecurityPoliciesCommandOutput,
|
|
85
|
+
} from "./commands/ListSecurityPoliciesCommand";
|
|
86
|
+
import {
|
|
87
|
+
ListTagsForResourceCommandInput,
|
|
88
|
+
ListTagsForResourceCommandOutput,
|
|
89
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
90
|
+
import {
|
|
91
|
+
ListVpcEndpointsCommandInput,
|
|
92
|
+
ListVpcEndpointsCommandOutput,
|
|
93
|
+
} from "./commands/ListVpcEndpointsCommand";
|
|
94
|
+
import {
|
|
95
|
+
TagResourceCommandInput,
|
|
96
|
+
TagResourceCommandOutput,
|
|
97
|
+
} from "./commands/TagResourceCommand";
|
|
98
|
+
import {
|
|
99
|
+
UntagResourceCommandInput,
|
|
100
|
+
UntagResourceCommandOutput,
|
|
101
|
+
} from "./commands/UntagResourceCommand";
|
|
102
|
+
import {
|
|
103
|
+
UpdateAccessPolicyCommandInput,
|
|
104
|
+
UpdateAccessPolicyCommandOutput,
|
|
105
|
+
} from "./commands/UpdateAccessPolicyCommand";
|
|
106
|
+
import {
|
|
107
|
+
UpdateAccountSettingsCommandInput,
|
|
108
|
+
UpdateAccountSettingsCommandOutput,
|
|
109
|
+
} from "./commands/UpdateAccountSettingsCommand";
|
|
110
|
+
import {
|
|
111
|
+
UpdateCollectionCommandInput,
|
|
112
|
+
UpdateCollectionCommandOutput,
|
|
113
|
+
} from "./commands/UpdateCollectionCommand";
|
|
114
|
+
import {
|
|
115
|
+
UpdateSecurityConfigCommandInput,
|
|
116
|
+
UpdateSecurityConfigCommandOutput,
|
|
117
|
+
} from "./commands/UpdateSecurityConfigCommand";
|
|
118
|
+
import {
|
|
119
|
+
UpdateSecurityPolicyCommandInput,
|
|
120
|
+
UpdateSecurityPolicyCommandOutput,
|
|
121
|
+
} from "./commands/UpdateSecurityPolicyCommand";
|
|
122
|
+
import {
|
|
123
|
+
UpdateVpcEndpointCommandInput,
|
|
124
|
+
UpdateVpcEndpointCommandOutput,
|
|
125
|
+
} from "./commands/UpdateVpcEndpointCommand";
|
|
126
|
+
import { OpenSearchServerlessClient } from "./OpenSearchServerlessClient";
|
|
127
|
+
export declare class OpenSearchServerless extends OpenSearchServerlessClient {
|
|
128
|
+
batchGetCollection(
|
|
129
|
+
args: BatchGetCollectionCommandInput,
|
|
130
|
+
options?: __HttpHandlerOptions
|
|
131
|
+
): Promise<BatchGetCollectionCommandOutput>;
|
|
132
|
+
batchGetCollection(
|
|
133
|
+
args: BatchGetCollectionCommandInput,
|
|
134
|
+
cb: (err: any, data?: BatchGetCollectionCommandOutput) => void
|
|
135
|
+
): void;
|
|
136
|
+
batchGetCollection(
|
|
137
|
+
args: BatchGetCollectionCommandInput,
|
|
138
|
+
options: __HttpHandlerOptions,
|
|
139
|
+
cb: (err: any, data?: BatchGetCollectionCommandOutput) => void
|
|
140
|
+
): void;
|
|
141
|
+
batchGetVpcEndpoint(
|
|
142
|
+
args: BatchGetVpcEndpointCommandInput,
|
|
143
|
+
options?: __HttpHandlerOptions
|
|
144
|
+
): Promise<BatchGetVpcEndpointCommandOutput>;
|
|
145
|
+
batchGetVpcEndpoint(
|
|
146
|
+
args: BatchGetVpcEndpointCommandInput,
|
|
147
|
+
cb: (err: any, data?: BatchGetVpcEndpointCommandOutput) => void
|
|
148
|
+
): void;
|
|
149
|
+
batchGetVpcEndpoint(
|
|
150
|
+
args: BatchGetVpcEndpointCommandInput,
|
|
151
|
+
options: __HttpHandlerOptions,
|
|
152
|
+
cb: (err: any, data?: BatchGetVpcEndpointCommandOutput) => void
|
|
153
|
+
): void;
|
|
154
|
+
createAccessPolicy(
|
|
155
|
+
args: CreateAccessPolicyCommandInput,
|
|
156
|
+
options?: __HttpHandlerOptions
|
|
157
|
+
): Promise<CreateAccessPolicyCommandOutput>;
|
|
158
|
+
createAccessPolicy(
|
|
159
|
+
args: CreateAccessPolicyCommandInput,
|
|
160
|
+
cb: (err: any, data?: CreateAccessPolicyCommandOutput) => void
|
|
161
|
+
): void;
|
|
162
|
+
createAccessPolicy(
|
|
163
|
+
args: CreateAccessPolicyCommandInput,
|
|
164
|
+
options: __HttpHandlerOptions,
|
|
165
|
+
cb: (err: any, data?: CreateAccessPolicyCommandOutput) => void
|
|
166
|
+
): void;
|
|
167
|
+
createCollection(
|
|
168
|
+
args: CreateCollectionCommandInput,
|
|
169
|
+
options?: __HttpHandlerOptions
|
|
170
|
+
): Promise<CreateCollectionCommandOutput>;
|
|
171
|
+
createCollection(
|
|
172
|
+
args: CreateCollectionCommandInput,
|
|
173
|
+
cb: (err: any, data?: CreateCollectionCommandOutput) => void
|
|
174
|
+
): void;
|
|
175
|
+
createCollection(
|
|
176
|
+
args: CreateCollectionCommandInput,
|
|
177
|
+
options: __HttpHandlerOptions,
|
|
178
|
+
cb: (err: any, data?: CreateCollectionCommandOutput) => void
|
|
179
|
+
): void;
|
|
180
|
+
createSecurityConfig(
|
|
181
|
+
args: CreateSecurityConfigCommandInput,
|
|
182
|
+
options?: __HttpHandlerOptions
|
|
183
|
+
): Promise<CreateSecurityConfigCommandOutput>;
|
|
184
|
+
createSecurityConfig(
|
|
185
|
+
args: CreateSecurityConfigCommandInput,
|
|
186
|
+
cb: (err: any, data?: CreateSecurityConfigCommandOutput) => void
|
|
187
|
+
): void;
|
|
188
|
+
createSecurityConfig(
|
|
189
|
+
args: CreateSecurityConfigCommandInput,
|
|
190
|
+
options: __HttpHandlerOptions,
|
|
191
|
+
cb: (err: any, data?: CreateSecurityConfigCommandOutput) => void
|
|
192
|
+
): void;
|
|
193
|
+
createSecurityPolicy(
|
|
194
|
+
args: CreateSecurityPolicyCommandInput,
|
|
195
|
+
options?: __HttpHandlerOptions
|
|
196
|
+
): Promise<CreateSecurityPolicyCommandOutput>;
|
|
197
|
+
createSecurityPolicy(
|
|
198
|
+
args: CreateSecurityPolicyCommandInput,
|
|
199
|
+
cb: (err: any, data?: CreateSecurityPolicyCommandOutput) => void
|
|
200
|
+
): void;
|
|
201
|
+
createSecurityPolicy(
|
|
202
|
+
args: CreateSecurityPolicyCommandInput,
|
|
203
|
+
options: __HttpHandlerOptions,
|
|
204
|
+
cb: (err: any, data?: CreateSecurityPolicyCommandOutput) => void
|
|
205
|
+
): void;
|
|
206
|
+
createVpcEndpoint(
|
|
207
|
+
args: CreateVpcEndpointCommandInput,
|
|
208
|
+
options?: __HttpHandlerOptions
|
|
209
|
+
): Promise<CreateVpcEndpointCommandOutput>;
|
|
210
|
+
createVpcEndpoint(
|
|
211
|
+
args: CreateVpcEndpointCommandInput,
|
|
212
|
+
cb: (err: any, data?: CreateVpcEndpointCommandOutput) => void
|
|
213
|
+
): void;
|
|
214
|
+
createVpcEndpoint(
|
|
215
|
+
args: CreateVpcEndpointCommandInput,
|
|
216
|
+
options: __HttpHandlerOptions,
|
|
217
|
+
cb: (err: any, data?: CreateVpcEndpointCommandOutput) => void
|
|
218
|
+
): void;
|
|
219
|
+
deleteAccessPolicy(
|
|
220
|
+
args: DeleteAccessPolicyCommandInput,
|
|
221
|
+
options?: __HttpHandlerOptions
|
|
222
|
+
): Promise<DeleteAccessPolicyCommandOutput>;
|
|
223
|
+
deleteAccessPolicy(
|
|
224
|
+
args: DeleteAccessPolicyCommandInput,
|
|
225
|
+
cb: (err: any, data?: DeleteAccessPolicyCommandOutput) => void
|
|
226
|
+
): void;
|
|
227
|
+
deleteAccessPolicy(
|
|
228
|
+
args: DeleteAccessPolicyCommandInput,
|
|
229
|
+
options: __HttpHandlerOptions,
|
|
230
|
+
cb: (err: any, data?: DeleteAccessPolicyCommandOutput) => void
|
|
231
|
+
): void;
|
|
232
|
+
deleteCollection(
|
|
233
|
+
args: DeleteCollectionCommandInput,
|
|
234
|
+
options?: __HttpHandlerOptions
|
|
235
|
+
): Promise<DeleteCollectionCommandOutput>;
|
|
236
|
+
deleteCollection(
|
|
237
|
+
args: DeleteCollectionCommandInput,
|
|
238
|
+
cb: (err: any, data?: DeleteCollectionCommandOutput) => void
|
|
239
|
+
): void;
|
|
240
|
+
deleteCollection(
|
|
241
|
+
args: DeleteCollectionCommandInput,
|
|
242
|
+
options: __HttpHandlerOptions,
|
|
243
|
+
cb: (err: any, data?: DeleteCollectionCommandOutput) => void
|
|
244
|
+
): void;
|
|
245
|
+
deleteSecurityConfig(
|
|
246
|
+
args: DeleteSecurityConfigCommandInput,
|
|
247
|
+
options?: __HttpHandlerOptions
|
|
248
|
+
): Promise<DeleteSecurityConfigCommandOutput>;
|
|
249
|
+
deleteSecurityConfig(
|
|
250
|
+
args: DeleteSecurityConfigCommandInput,
|
|
251
|
+
cb: (err: any, data?: DeleteSecurityConfigCommandOutput) => void
|
|
252
|
+
): void;
|
|
253
|
+
deleteSecurityConfig(
|
|
254
|
+
args: DeleteSecurityConfigCommandInput,
|
|
255
|
+
options: __HttpHandlerOptions,
|
|
256
|
+
cb: (err: any, data?: DeleteSecurityConfigCommandOutput) => void
|
|
257
|
+
): void;
|
|
258
|
+
deleteSecurityPolicy(
|
|
259
|
+
args: DeleteSecurityPolicyCommandInput,
|
|
260
|
+
options?: __HttpHandlerOptions
|
|
261
|
+
): Promise<DeleteSecurityPolicyCommandOutput>;
|
|
262
|
+
deleteSecurityPolicy(
|
|
263
|
+
args: DeleteSecurityPolicyCommandInput,
|
|
264
|
+
cb: (err: any, data?: DeleteSecurityPolicyCommandOutput) => void
|
|
265
|
+
): void;
|
|
266
|
+
deleteSecurityPolicy(
|
|
267
|
+
args: DeleteSecurityPolicyCommandInput,
|
|
268
|
+
options: __HttpHandlerOptions,
|
|
269
|
+
cb: (err: any, data?: DeleteSecurityPolicyCommandOutput) => void
|
|
270
|
+
): void;
|
|
271
|
+
deleteVpcEndpoint(
|
|
272
|
+
args: DeleteVpcEndpointCommandInput,
|
|
273
|
+
options?: __HttpHandlerOptions
|
|
274
|
+
): Promise<DeleteVpcEndpointCommandOutput>;
|
|
275
|
+
deleteVpcEndpoint(
|
|
276
|
+
args: DeleteVpcEndpointCommandInput,
|
|
277
|
+
cb: (err: any, data?: DeleteVpcEndpointCommandOutput) => void
|
|
278
|
+
): void;
|
|
279
|
+
deleteVpcEndpoint(
|
|
280
|
+
args: DeleteVpcEndpointCommandInput,
|
|
281
|
+
options: __HttpHandlerOptions,
|
|
282
|
+
cb: (err: any, data?: DeleteVpcEndpointCommandOutput) => void
|
|
283
|
+
): void;
|
|
284
|
+
getAccessPolicy(
|
|
285
|
+
args: GetAccessPolicyCommandInput,
|
|
286
|
+
options?: __HttpHandlerOptions
|
|
287
|
+
): Promise<GetAccessPolicyCommandOutput>;
|
|
288
|
+
getAccessPolicy(
|
|
289
|
+
args: GetAccessPolicyCommandInput,
|
|
290
|
+
cb: (err: any, data?: GetAccessPolicyCommandOutput) => void
|
|
291
|
+
): void;
|
|
292
|
+
getAccessPolicy(
|
|
293
|
+
args: GetAccessPolicyCommandInput,
|
|
294
|
+
options: __HttpHandlerOptions,
|
|
295
|
+
cb: (err: any, data?: GetAccessPolicyCommandOutput) => void
|
|
296
|
+
): void;
|
|
297
|
+
getAccountSettings(
|
|
298
|
+
args: GetAccountSettingsCommandInput,
|
|
299
|
+
options?: __HttpHandlerOptions
|
|
300
|
+
): Promise<GetAccountSettingsCommandOutput>;
|
|
301
|
+
getAccountSettings(
|
|
302
|
+
args: GetAccountSettingsCommandInput,
|
|
303
|
+
cb: (err: any, data?: GetAccountSettingsCommandOutput) => void
|
|
304
|
+
): void;
|
|
305
|
+
getAccountSettings(
|
|
306
|
+
args: GetAccountSettingsCommandInput,
|
|
307
|
+
options: __HttpHandlerOptions,
|
|
308
|
+
cb: (err: any, data?: GetAccountSettingsCommandOutput) => void
|
|
309
|
+
): void;
|
|
310
|
+
getPoliciesStats(
|
|
311
|
+
args: GetPoliciesStatsCommandInput,
|
|
312
|
+
options?: __HttpHandlerOptions
|
|
313
|
+
): Promise<GetPoliciesStatsCommandOutput>;
|
|
314
|
+
getPoliciesStats(
|
|
315
|
+
args: GetPoliciesStatsCommandInput,
|
|
316
|
+
cb: (err: any, data?: GetPoliciesStatsCommandOutput) => void
|
|
317
|
+
): void;
|
|
318
|
+
getPoliciesStats(
|
|
319
|
+
args: GetPoliciesStatsCommandInput,
|
|
320
|
+
options: __HttpHandlerOptions,
|
|
321
|
+
cb: (err: any, data?: GetPoliciesStatsCommandOutput) => void
|
|
322
|
+
): void;
|
|
323
|
+
getSecurityConfig(
|
|
324
|
+
args: GetSecurityConfigCommandInput,
|
|
325
|
+
options?: __HttpHandlerOptions
|
|
326
|
+
): Promise<GetSecurityConfigCommandOutput>;
|
|
327
|
+
getSecurityConfig(
|
|
328
|
+
args: GetSecurityConfigCommandInput,
|
|
329
|
+
cb: (err: any, data?: GetSecurityConfigCommandOutput) => void
|
|
330
|
+
): void;
|
|
331
|
+
getSecurityConfig(
|
|
332
|
+
args: GetSecurityConfigCommandInput,
|
|
333
|
+
options: __HttpHandlerOptions,
|
|
334
|
+
cb: (err: any, data?: GetSecurityConfigCommandOutput) => void
|
|
335
|
+
): void;
|
|
336
|
+
getSecurityPolicy(
|
|
337
|
+
args: GetSecurityPolicyCommandInput,
|
|
338
|
+
options?: __HttpHandlerOptions
|
|
339
|
+
): Promise<GetSecurityPolicyCommandOutput>;
|
|
340
|
+
getSecurityPolicy(
|
|
341
|
+
args: GetSecurityPolicyCommandInput,
|
|
342
|
+
cb: (err: any, data?: GetSecurityPolicyCommandOutput) => void
|
|
343
|
+
): void;
|
|
344
|
+
getSecurityPolicy(
|
|
345
|
+
args: GetSecurityPolicyCommandInput,
|
|
346
|
+
options: __HttpHandlerOptions,
|
|
347
|
+
cb: (err: any, data?: GetSecurityPolicyCommandOutput) => void
|
|
348
|
+
): void;
|
|
349
|
+
listAccessPolicies(
|
|
350
|
+
args: ListAccessPoliciesCommandInput,
|
|
351
|
+
options?: __HttpHandlerOptions
|
|
352
|
+
): Promise<ListAccessPoliciesCommandOutput>;
|
|
353
|
+
listAccessPolicies(
|
|
354
|
+
args: ListAccessPoliciesCommandInput,
|
|
355
|
+
cb: (err: any, data?: ListAccessPoliciesCommandOutput) => void
|
|
356
|
+
): void;
|
|
357
|
+
listAccessPolicies(
|
|
358
|
+
args: ListAccessPoliciesCommandInput,
|
|
359
|
+
options: __HttpHandlerOptions,
|
|
360
|
+
cb: (err: any, data?: ListAccessPoliciesCommandOutput) => void
|
|
361
|
+
): void;
|
|
362
|
+
listCollections(
|
|
363
|
+
args: ListCollectionsCommandInput,
|
|
364
|
+
options?: __HttpHandlerOptions
|
|
365
|
+
): Promise<ListCollectionsCommandOutput>;
|
|
366
|
+
listCollections(
|
|
367
|
+
args: ListCollectionsCommandInput,
|
|
368
|
+
cb: (err: any, data?: ListCollectionsCommandOutput) => void
|
|
369
|
+
): void;
|
|
370
|
+
listCollections(
|
|
371
|
+
args: ListCollectionsCommandInput,
|
|
372
|
+
options: __HttpHandlerOptions,
|
|
373
|
+
cb: (err: any, data?: ListCollectionsCommandOutput) => void
|
|
374
|
+
): void;
|
|
375
|
+
listSecurityConfigs(
|
|
376
|
+
args: ListSecurityConfigsCommandInput,
|
|
377
|
+
options?: __HttpHandlerOptions
|
|
378
|
+
): Promise<ListSecurityConfigsCommandOutput>;
|
|
379
|
+
listSecurityConfigs(
|
|
380
|
+
args: ListSecurityConfigsCommandInput,
|
|
381
|
+
cb: (err: any, data?: ListSecurityConfigsCommandOutput) => void
|
|
382
|
+
): void;
|
|
383
|
+
listSecurityConfigs(
|
|
384
|
+
args: ListSecurityConfigsCommandInput,
|
|
385
|
+
options: __HttpHandlerOptions,
|
|
386
|
+
cb: (err: any, data?: ListSecurityConfigsCommandOutput) => void
|
|
387
|
+
): void;
|
|
388
|
+
listSecurityPolicies(
|
|
389
|
+
args: ListSecurityPoliciesCommandInput,
|
|
390
|
+
options?: __HttpHandlerOptions
|
|
391
|
+
): Promise<ListSecurityPoliciesCommandOutput>;
|
|
392
|
+
listSecurityPolicies(
|
|
393
|
+
args: ListSecurityPoliciesCommandInput,
|
|
394
|
+
cb: (err: any, data?: ListSecurityPoliciesCommandOutput) => void
|
|
395
|
+
): void;
|
|
396
|
+
listSecurityPolicies(
|
|
397
|
+
args: ListSecurityPoliciesCommandInput,
|
|
398
|
+
options: __HttpHandlerOptions,
|
|
399
|
+
cb: (err: any, data?: ListSecurityPoliciesCommandOutput) => void
|
|
400
|
+
): void;
|
|
401
|
+
listTagsForResource(
|
|
402
|
+
args: ListTagsForResourceCommandInput,
|
|
403
|
+
options?: __HttpHandlerOptions
|
|
404
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
405
|
+
listTagsForResource(
|
|
406
|
+
args: ListTagsForResourceCommandInput,
|
|
407
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
408
|
+
): void;
|
|
409
|
+
listTagsForResource(
|
|
410
|
+
args: ListTagsForResourceCommandInput,
|
|
411
|
+
options: __HttpHandlerOptions,
|
|
412
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
413
|
+
): void;
|
|
414
|
+
listVpcEndpoints(
|
|
415
|
+
args: ListVpcEndpointsCommandInput,
|
|
416
|
+
options?: __HttpHandlerOptions
|
|
417
|
+
): Promise<ListVpcEndpointsCommandOutput>;
|
|
418
|
+
listVpcEndpoints(
|
|
419
|
+
args: ListVpcEndpointsCommandInput,
|
|
420
|
+
cb: (err: any, data?: ListVpcEndpointsCommandOutput) => void
|
|
421
|
+
): void;
|
|
422
|
+
listVpcEndpoints(
|
|
423
|
+
args: ListVpcEndpointsCommandInput,
|
|
424
|
+
options: __HttpHandlerOptions,
|
|
425
|
+
cb: (err: any, data?: ListVpcEndpointsCommandOutput) => void
|
|
426
|
+
): void;
|
|
427
|
+
tagResource(
|
|
428
|
+
args: TagResourceCommandInput,
|
|
429
|
+
options?: __HttpHandlerOptions
|
|
430
|
+
): Promise<TagResourceCommandOutput>;
|
|
431
|
+
tagResource(
|
|
432
|
+
args: TagResourceCommandInput,
|
|
433
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
434
|
+
): void;
|
|
435
|
+
tagResource(
|
|
436
|
+
args: TagResourceCommandInput,
|
|
437
|
+
options: __HttpHandlerOptions,
|
|
438
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
439
|
+
): void;
|
|
440
|
+
untagResource(
|
|
441
|
+
args: UntagResourceCommandInput,
|
|
442
|
+
options?: __HttpHandlerOptions
|
|
443
|
+
): Promise<UntagResourceCommandOutput>;
|
|
444
|
+
untagResource(
|
|
445
|
+
args: UntagResourceCommandInput,
|
|
446
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
447
|
+
): void;
|
|
448
|
+
untagResource(
|
|
449
|
+
args: UntagResourceCommandInput,
|
|
450
|
+
options: __HttpHandlerOptions,
|
|
451
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
452
|
+
): void;
|
|
453
|
+
updateAccessPolicy(
|
|
454
|
+
args: UpdateAccessPolicyCommandInput,
|
|
455
|
+
options?: __HttpHandlerOptions
|
|
456
|
+
): Promise<UpdateAccessPolicyCommandOutput>;
|
|
457
|
+
updateAccessPolicy(
|
|
458
|
+
args: UpdateAccessPolicyCommandInput,
|
|
459
|
+
cb: (err: any, data?: UpdateAccessPolicyCommandOutput) => void
|
|
460
|
+
): void;
|
|
461
|
+
updateAccessPolicy(
|
|
462
|
+
args: UpdateAccessPolicyCommandInput,
|
|
463
|
+
options: __HttpHandlerOptions,
|
|
464
|
+
cb: (err: any, data?: UpdateAccessPolicyCommandOutput) => void
|
|
465
|
+
): void;
|
|
466
|
+
updateAccountSettings(
|
|
467
|
+
args: UpdateAccountSettingsCommandInput,
|
|
468
|
+
options?: __HttpHandlerOptions
|
|
469
|
+
): Promise<UpdateAccountSettingsCommandOutput>;
|
|
470
|
+
updateAccountSettings(
|
|
471
|
+
args: UpdateAccountSettingsCommandInput,
|
|
472
|
+
cb: (err: any, data?: UpdateAccountSettingsCommandOutput) => void
|
|
473
|
+
): void;
|
|
474
|
+
updateAccountSettings(
|
|
475
|
+
args: UpdateAccountSettingsCommandInput,
|
|
476
|
+
options: __HttpHandlerOptions,
|
|
477
|
+
cb: (err: any, data?: UpdateAccountSettingsCommandOutput) => void
|
|
478
|
+
): void;
|
|
479
|
+
updateCollection(
|
|
480
|
+
args: UpdateCollectionCommandInput,
|
|
481
|
+
options?: __HttpHandlerOptions
|
|
482
|
+
): Promise<UpdateCollectionCommandOutput>;
|
|
483
|
+
updateCollection(
|
|
484
|
+
args: UpdateCollectionCommandInput,
|
|
485
|
+
cb: (err: any, data?: UpdateCollectionCommandOutput) => void
|
|
486
|
+
): void;
|
|
487
|
+
updateCollection(
|
|
488
|
+
args: UpdateCollectionCommandInput,
|
|
489
|
+
options: __HttpHandlerOptions,
|
|
490
|
+
cb: (err: any, data?: UpdateCollectionCommandOutput) => void
|
|
491
|
+
): void;
|
|
492
|
+
updateSecurityConfig(
|
|
493
|
+
args: UpdateSecurityConfigCommandInput,
|
|
494
|
+
options?: __HttpHandlerOptions
|
|
495
|
+
): Promise<UpdateSecurityConfigCommandOutput>;
|
|
496
|
+
updateSecurityConfig(
|
|
497
|
+
args: UpdateSecurityConfigCommandInput,
|
|
498
|
+
cb: (err: any, data?: UpdateSecurityConfigCommandOutput) => void
|
|
499
|
+
): void;
|
|
500
|
+
updateSecurityConfig(
|
|
501
|
+
args: UpdateSecurityConfigCommandInput,
|
|
502
|
+
options: __HttpHandlerOptions,
|
|
503
|
+
cb: (err: any, data?: UpdateSecurityConfigCommandOutput) => void
|
|
504
|
+
): void;
|
|
505
|
+
updateSecurityPolicy(
|
|
506
|
+
args: UpdateSecurityPolicyCommandInput,
|
|
507
|
+
options?: __HttpHandlerOptions
|
|
508
|
+
): Promise<UpdateSecurityPolicyCommandOutput>;
|
|
509
|
+
updateSecurityPolicy(
|
|
510
|
+
args: UpdateSecurityPolicyCommandInput,
|
|
511
|
+
cb: (err: any, data?: UpdateSecurityPolicyCommandOutput) => void
|
|
512
|
+
): void;
|
|
513
|
+
updateSecurityPolicy(
|
|
514
|
+
args: UpdateSecurityPolicyCommandInput,
|
|
515
|
+
options: __HttpHandlerOptions,
|
|
516
|
+
cb: (err: any, data?: UpdateSecurityPolicyCommandOutput) => void
|
|
517
|
+
): void;
|
|
518
|
+
updateVpcEndpoint(
|
|
519
|
+
args: UpdateVpcEndpointCommandInput,
|
|
520
|
+
options?: __HttpHandlerOptions
|
|
521
|
+
): Promise<UpdateVpcEndpointCommandOutput>;
|
|
522
|
+
updateVpcEndpoint(
|
|
523
|
+
args: UpdateVpcEndpointCommandInput,
|
|
524
|
+
cb: (err: any, data?: UpdateVpcEndpointCommandOutput) => void
|
|
525
|
+
): void;
|
|
526
|
+
updateVpcEndpoint(
|
|
527
|
+
args: UpdateVpcEndpointCommandInput,
|
|
528
|
+
options: __HttpHandlerOptions,
|
|
529
|
+
cb: (err: any, data?: UpdateVpcEndpointCommandOutput) => void
|
|
530
|
+
): void;
|
|
531
|
+
}
|