@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,298 @@
|
|
|
1
|
+
import {
|
|
2
|
+
RegionInputConfig,
|
|
3
|
+
RegionResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
9
|
+
import {
|
|
10
|
+
HostHeaderInputConfig,
|
|
11
|
+
HostHeaderResolvedConfig,
|
|
12
|
+
} from "@aws-sdk/middleware-host-header";
|
|
13
|
+
import {
|
|
14
|
+
RetryInputConfig,
|
|
15
|
+
RetryResolvedConfig,
|
|
16
|
+
} from "@aws-sdk/middleware-retry";
|
|
17
|
+
import {
|
|
18
|
+
AwsAuthInputConfig,
|
|
19
|
+
AwsAuthResolvedConfig,
|
|
20
|
+
} from "@aws-sdk/middleware-signing";
|
|
21
|
+
import {
|
|
22
|
+
UserAgentInputConfig,
|
|
23
|
+
UserAgentResolvedConfig,
|
|
24
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
25
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
26
|
+
import {
|
|
27
|
+
Client as __Client,
|
|
28
|
+
DefaultsMode,
|
|
29
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
30
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
31
|
+
} from "@aws-sdk/smithy-client";
|
|
32
|
+
import {
|
|
33
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
34
|
+
Credentials as __Credentials,
|
|
35
|
+
Decoder as __Decoder,
|
|
36
|
+
Encoder as __Encoder,
|
|
37
|
+
HashConstructor as __HashConstructor,
|
|
38
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
39
|
+
Logger as __Logger,
|
|
40
|
+
Provider as __Provider,
|
|
41
|
+
Provider,
|
|
42
|
+
StreamCollector as __StreamCollector,
|
|
43
|
+
UrlParser as __UrlParser,
|
|
44
|
+
UserAgent as __UserAgent,
|
|
45
|
+
} from "@aws-sdk/types";
|
|
46
|
+
import {
|
|
47
|
+
BatchGetCollectionCommandInput,
|
|
48
|
+
BatchGetCollectionCommandOutput,
|
|
49
|
+
} from "./commands/BatchGetCollectionCommand";
|
|
50
|
+
import {
|
|
51
|
+
BatchGetVpcEndpointCommandInput,
|
|
52
|
+
BatchGetVpcEndpointCommandOutput,
|
|
53
|
+
} from "./commands/BatchGetVpcEndpointCommand";
|
|
54
|
+
import {
|
|
55
|
+
CreateAccessPolicyCommandInput,
|
|
56
|
+
CreateAccessPolicyCommandOutput,
|
|
57
|
+
} from "./commands/CreateAccessPolicyCommand";
|
|
58
|
+
import {
|
|
59
|
+
CreateCollectionCommandInput,
|
|
60
|
+
CreateCollectionCommandOutput,
|
|
61
|
+
} from "./commands/CreateCollectionCommand";
|
|
62
|
+
import {
|
|
63
|
+
CreateSecurityConfigCommandInput,
|
|
64
|
+
CreateSecurityConfigCommandOutput,
|
|
65
|
+
} from "./commands/CreateSecurityConfigCommand";
|
|
66
|
+
import {
|
|
67
|
+
CreateSecurityPolicyCommandInput,
|
|
68
|
+
CreateSecurityPolicyCommandOutput,
|
|
69
|
+
} from "./commands/CreateSecurityPolicyCommand";
|
|
70
|
+
import {
|
|
71
|
+
CreateVpcEndpointCommandInput,
|
|
72
|
+
CreateVpcEndpointCommandOutput,
|
|
73
|
+
} from "./commands/CreateVpcEndpointCommand";
|
|
74
|
+
import {
|
|
75
|
+
DeleteAccessPolicyCommandInput,
|
|
76
|
+
DeleteAccessPolicyCommandOutput,
|
|
77
|
+
} from "./commands/DeleteAccessPolicyCommand";
|
|
78
|
+
import {
|
|
79
|
+
DeleteCollectionCommandInput,
|
|
80
|
+
DeleteCollectionCommandOutput,
|
|
81
|
+
} from "./commands/DeleteCollectionCommand";
|
|
82
|
+
import {
|
|
83
|
+
DeleteSecurityConfigCommandInput,
|
|
84
|
+
DeleteSecurityConfigCommandOutput,
|
|
85
|
+
} from "./commands/DeleteSecurityConfigCommand";
|
|
86
|
+
import {
|
|
87
|
+
DeleteSecurityPolicyCommandInput,
|
|
88
|
+
DeleteSecurityPolicyCommandOutput,
|
|
89
|
+
} from "./commands/DeleteSecurityPolicyCommand";
|
|
90
|
+
import {
|
|
91
|
+
DeleteVpcEndpointCommandInput,
|
|
92
|
+
DeleteVpcEndpointCommandOutput,
|
|
93
|
+
} from "./commands/DeleteVpcEndpointCommand";
|
|
94
|
+
import {
|
|
95
|
+
GetAccessPolicyCommandInput,
|
|
96
|
+
GetAccessPolicyCommandOutput,
|
|
97
|
+
} from "./commands/GetAccessPolicyCommand";
|
|
98
|
+
import {
|
|
99
|
+
GetAccountSettingsCommandInput,
|
|
100
|
+
GetAccountSettingsCommandOutput,
|
|
101
|
+
} from "./commands/GetAccountSettingsCommand";
|
|
102
|
+
import {
|
|
103
|
+
GetPoliciesStatsCommandInput,
|
|
104
|
+
GetPoliciesStatsCommandOutput,
|
|
105
|
+
} from "./commands/GetPoliciesStatsCommand";
|
|
106
|
+
import {
|
|
107
|
+
GetSecurityConfigCommandInput,
|
|
108
|
+
GetSecurityConfigCommandOutput,
|
|
109
|
+
} from "./commands/GetSecurityConfigCommand";
|
|
110
|
+
import {
|
|
111
|
+
GetSecurityPolicyCommandInput,
|
|
112
|
+
GetSecurityPolicyCommandOutput,
|
|
113
|
+
} from "./commands/GetSecurityPolicyCommand";
|
|
114
|
+
import {
|
|
115
|
+
ListAccessPoliciesCommandInput,
|
|
116
|
+
ListAccessPoliciesCommandOutput,
|
|
117
|
+
} from "./commands/ListAccessPoliciesCommand";
|
|
118
|
+
import {
|
|
119
|
+
ListCollectionsCommandInput,
|
|
120
|
+
ListCollectionsCommandOutput,
|
|
121
|
+
} from "./commands/ListCollectionsCommand";
|
|
122
|
+
import {
|
|
123
|
+
ListSecurityConfigsCommandInput,
|
|
124
|
+
ListSecurityConfigsCommandOutput,
|
|
125
|
+
} from "./commands/ListSecurityConfigsCommand";
|
|
126
|
+
import {
|
|
127
|
+
ListSecurityPoliciesCommandInput,
|
|
128
|
+
ListSecurityPoliciesCommandOutput,
|
|
129
|
+
} from "./commands/ListSecurityPoliciesCommand";
|
|
130
|
+
import {
|
|
131
|
+
ListTagsForResourceCommandInput,
|
|
132
|
+
ListTagsForResourceCommandOutput,
|
|
133
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
134
|
+
import {
|
|
135
|
+
ListVpcEndpointsCommandInput,
|
|
136
|
+
ListVpcEndpointsCommandOutput,
|
|
137
|
+
} from "./commands/ListVpcEndpointsCommand";
|
|
138
|
+
import {
|
|
139
|
+
TagResourceCommandInput,
|
|
140
|
+
TagResourceCommandOutput,
|
|
141
|
+
} from "./commands/TagResourceCommand";
|
|
142
|
+
import {
|
|
143
|
+
UntagResourceCommandInput,
|
|
144
|
+
UntagResourceCommandOutput,
|
|
145
|
+
} from "./commands/UntagResourceCommand";
|
|
146
|
+
import {
|
|
147
|
+
UpdateAccessPolicyCommandInput,
|
|
148
|
+
UpdateAccessPolicyCommandOutput,
|
|
149
|
+
} from "./commands/UpdateAccessPolicyCommand";
|
|
150
|
+
import {
|
|
151
|
+
UpdateAccountSettingsCommandInput,
|
|
152
|
+
UpdateAccountSettingsCommandOutput,
|
|
153
|
+
} from "./commands/UpdateAccountSettingsCommand";
|
|
154
|
+
import {
|
|
155
|
+
UpdateCollectionCommandInput,
|
|
156
|
+
UpdateCollectionCommandOutput,
|
|
157
|
+
} from "./commands/UpdateCollectionCommand";
|
|
158
|
+
import {
|
|
159
|
+
UpdateSecurityConfigCommandInput,
|
|
160
|
+
UpdateSecurityConfigCommandOutput,
|
|
161
|
+
} from "./commands/UpdateSecurityConfigCommand";
|
|
162
|
+
import {
|
|
163
|
+
UpdateSecurityPolicyCommandInput,
|
|
164
|
+
UpdateSecurityPolicyCommandOutput,
|
|
165
|
+
} from "./commands/UpdateSecurityPolicyCommand";
|
|
166
|
+
import {
|
|
167
|
+
UpdateVpcEndpointCommandInput,
|
|
168
|
+
UpdateVpcEndpointCommandOutput,
|
|
169
|
+
} from "./commands/UpdateVpcEndpointCommand";
|
|
170
|
+
import {
|
|
171
|
+
ClientInputEndpointParameters,
|
|
172
|
+
ClientResolvedEndpointParameters,
|
|
173
|
+
EndpointParameters,
|
|
174
|
+
} from "./endpoint/EndpointParameters";
|
|
175
|
+
export declare type ServiceInputTypes =
|
|
176
|
+
| BatchGetCollectionCommandInput
|
|
177
|
+
| BatchGetVpcEndpointCommandInput
|
|
178
|
+
| CreateAccessPolicyCommandInput
|
|
179
|
+
| CreateCollectionCommandInput
|
|
180
|
+
| CreateSecurityConfigCommandInput
|
|
181
|
+
| CreateSecurityPolicyCommandInput
|
|
182
|
+
| CreateVpcEndpointCommandInput
|
|
183
|
+
| DeleteAccessPolicyCommandInput
|
|
184
|
+
| DeleteCollectionCommandInput
|
|
185
|
+
| DeleteSecurityConfigCommandInput
|
|
186
|
+
| DeleteSecurityPolicyCommandInput
|
|
187
|
+
| DeleteVpcEndpointCommandInput
|
|
188
|
+
| GetAccessPolicyCommandInput
|
|
189
|
+
| GetAccountSettingsCommandInput
|
|
190
|
+
| GetPoliciesStatsCommandInput
|
|
191
|
+
| GetSecurityConfigCommandInput
|
|
192
|
+
| GetSecurityPolicyCommandInput
|
|
193
|
+
| ListAccessPoliciesCommandInput
|
|
194
|
+
| ListCollectionsCommandInput
|
|
195
|
+
| ListSecurityConfigsCommandInput
|
|
196
|
+
| ListSecurityPoliciesCommandInput
|
|
197
|
+
| ListTagsForResourceCommandInput
|
|
198
|
+
| ListVpcEndpointsCommandInput
|
|
199
|
+
| TagResourceCommandInput
|
|
200
|
+
| UntagResourceCommandInput
|
|
201
|
+
| UpdateAccessPolicyCommandInput
|
|
202
|
+
| UpdateAccountSettingsCommandInput
|
|
203
|
+
| UpdateCollectionCommandInput
|
|
204
|
+
| UpdateSecurityConfigCommandInput
|
|
205
|
+
| UpdateSecurityPolicyCommandInput
|
|
206
|
+
| UpdateVpcEndpointCommandInput;
|
|
207
|
+
export declare type ServiceOutputTypes =
|
|
208
|
+
| BatchGetCollectionCommandOutput
|
|
209
|
+
| BatchGetVpcEndpointCommandOutput
|
|
210
|
+
| CreateAccessPolicyCommandOutput
|
|
211
|
+
| CreateCollectionCommandOutput
|
|
212
|
+
| CreateSecurityConfigCommandOutput
|
|
213
|
+
| CreateSecurityPolicyCommandOutput
|
|
214
|
+
| CreateVpcEndpointCommandOutput
|
|
215
|
+
| DeleteAccessPolicyCommandOutput
|
|
216
|
+
| DeleteCollectionCommandOutput
|
|
217
|
+
| DeleteSecurityConfigCommandOutput
|
|
218
|
+
| DeleteSecurityPolicyCommandOutput
|
|
219
|
+
| DeleteVpcEndpointCommandOutput
|
|
220
|
+
| GetAccessPolicyCommandOutput
|
|
221
|
+
| GetAccountSettingsCommandOutput
|
|
222
|
+
| GetPoliciesStatsCommandOutput
|
|
223
|
+
| GetSecurityConfigCommandOutput
|
|
224
|
+
| GetSecurityPolicyCommandOutput
|
|
225
|
+
| ListAccessPoliciesCommandOutput
|
|
226
|
+
| ListCollectionsCommandOutput
|
|
227
|
+
| ListSecurityConfigsCommandOutput
|
|
228
|
+
| ListSecurityPoliciesCommandOutput
|
|
229
|
+
| ListTagsForResourceCommandOutput
|
|
230
|
+
| ListVpcEndpointsCommandOutput
|
|
231
|
+
| TagResourceCommandOutput
|
|
232
|
+
| UntagResourceCommandOutput
|
|
233
|
+
| UpdateAccessPolicyCommandOutput
|
|
234
|
+
| UpdateAccountSettingsCommandOutput
|
|
235
|
+
| UpdateCollectionCommandOutput
|
|
236
|
+
| UpdateSecurityConfigCommandOutput
|
|
237
|
+
| UpdateSecurityPolicyCommandOutput
|
|
238
|
+
| UpdateVpcEndpointCommandOutput;
|
|
239
|
+
export interface ClientDefaults
|
|
240
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
241
|
+
requestHandler?: __HttpHandler;
|
|
242
|
+
sha256?: __HashConstructor;
|
|
243
|
+
urlParser?: __UrlParser;
|
|
244
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
245
|
+
streamCollector?: __StreamCollector;
|
|
246
|
+
base64Decoder?: __Decoder;
|
|
247
|
+
base64Encoder?: __Encoder;
|
|
248
|
+
utf8Decoder?: __Decoder;
|
|
249
|
+
utf8Encoder?: __Encoder;
|
|
250
|
+
runtime?: string;
|
|
251
|
+
disableHostPrefix?: boolean;
|
|
252
|
+
maxAttempts?: number | __Provider<number>;
|
|
253
|
+
retryMode?: string | __Provider<string>;
|
|
254
|
+
logger?: __Logger;
|
|
255
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
256
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
257
|
+
serviceId?: string;
|
|
258
|
+
region?: string | __Provider<string>;
|
|
259
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
260
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
261
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
262
|
+
}
|
|
263
|
+
declare type OpenSearchServerlessClientConfigType = Partial<
|
|
264
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
265
|
+
> &
|
|
266
|
+
ClientDefaults &
|
|
267
|
+
RegionInputConfig &
|
|
268
|
+
EndpointInputConfig<EndpointParameters> &
|
|
269
|
+
RetryInputConfig &
|
|
270
|
+
HostHeaderInputConfig &
|
|
271
|
+
AwsAuthInputConfig &
|
|
272
|
+
UserAgentInputConfig &
|
|
273
|
+
ClientInputEndpointParameters;
|
|
274
|
+
export interface OpenSearchServerlessClientConfig
|
|
275
|
+
extends OpenSearchServerlessClientConfigType {}
|
|
276
|
+
declare type OpenSearchServerlessClientResolvedConfigType =
|
|
277
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
278
|
+
Required<ClientDefaults> &
|
|
279
|
+
RegionResolvedConfig &
|
|
280
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
281
|
+
RetryResolvedConfig &
|
|
282
|
+
HostHeaderResolvedConfig &
|
|
283
|
+
AwsAuthResolvedConfig &
|
|
284
|
+
UserAgentResolvedConfig &
|
|
285
|
+
ClientResolvedEndpointParameters;
|
|
286
|
+
export interface OpenSearchServerlessClientResolvedConfig
|
|
287
|
+
extends OpenSearchServerlessClientResolvedConfigType {}
|
|
288
|
+
export declare class OpenSearchServerlessClient extends __Client<
|
|
289
|
+
__HttpHandlerOptions,
|
|
290
|
+
ServiceInputTypes,
|
|
291
|
+
ServiceOutputTypes,
|
|
292
|
+
OpenSearchServerlessClientResolvedConfig
|
|
293
|
+
> {
|
|
294
|
+
readonly config: OpenSearchServerlessClientResolvedConfig;
|
|
295
|
+
constructor(configuration: OpenSearchServerlessClientConfig);
|
|
296
|
+
destroy(): void;
|
|
297
|
+
}
|
|
298
|
+
export {};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
BatchGetCollectionRequest,
|
|
11
|
+
BatchGetCollectionResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
OpenSearchServerlessClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../OpenSearchServerlessClient";
|
|
18
|
+
export interface BatchGetCollectionCommandInput
|
|
19
|
+
extends BatchGetCollectionRequest {}
|
|
20
|
+
export interface BatchGetCollectionCommandOutput
|
|
21
|
+
extends BatchGetCollectionResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class BatchGetCollectionCommand extends $Command<
|
|
24
|
+
BatchGetCollectionCommandInput,
|
|
25
|
+
BatchGetCollectionCommandOutput,
|
|
26
|
+
OpenSearchServerlessClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: BatchGetCollectionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: BatchGetCollectionCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: OpenSearchServerlessClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<BatchGetCollectionCommandInput, BatchGetCollectionCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
BatchGetVpcEndpointRequest,
|
|
11
|
+
BatchGetVpcEndpointResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
OpenSearchServerlessClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../OpenSearchServerlessClient";
|
|
18
|
+
export interface BatchGetVpcEndpointCommandInput
|
|
19
|
+
extends BatchGetVpcEndpointRequest {}
|
|
20
|
+
export interface BatchGetVpcEndpointCommandOutput
|
|
21
|
+
extends BatchGetVpcEndpointResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class BatchGetVpcEndpointCommand extends $Command<
|
|
24
|
+
BatchGetVpcEndpointCommandInput,
|
|
25
|
+
BatchGetVpcEndpointCommandOutput,
|
|
26
|
+
OpenSearchServerlessClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: BatchGetVpcEndpointCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: BatchGetVpcEndpointCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: OpenSearchServerlessClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<BatchGetVpcEndpointCommandInput, BatchGetVpcEndpointCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CreateAccessPolicyRequest,
|
|
11
|
+
CreateAccessPolicyResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
OpenSearchServerlessClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../OpenSearchServerlessClient";
|
|
18
|
+
export interface CreateAccessPolicyCommandInput
|
|
19
|
+
extends CreateAccessPolicyRequest {}
|
|
20
|
+
export interface CreateAccessPolicyCommandOutput
|
|
21
|
+
extends CreateAccessPolicyResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateAccessPolicyCommand extends $Command<
|
|
24
|
+
CreateAccessPolicyCommandInput,
|
|
25
|
+
CreateAccessPolicyCommandOutput,
|
|
26
|
+
OpenSearchServerlessClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateAccessPolicyCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateAccessPolicyCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: OpenSearchServerlessClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateAccessPolicyCommandInput, CreateAccessPolicyCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CreateCollectionRequest,
|
|
11
|
+
CreateCollectionResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
OpenSearchServerlessClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../OpenSearchServerlessClient";
|
|
18
|
+
export interface CreateCollectionCommandInput extends CreateCollectionRequest {}
|
|
19
|
+
export interface CreateCollectionCommandOutput
|
|
20
|
+
extends CreateCollectionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class CreateCollectionCommand extends $Command<
|
|
23
|
+
CreateCollectionCommandInput,
|
|
24
|
+
CreateCollectionCommandOutput,
|
|
25
|
+
OpenSearchServerlessClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateCollectionCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: CreateCollectionCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: OpenSearchServerlessClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<CreateCollectionCommandInput, CreateCollectionCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CreateSecurityConfigRequest,
|
|
11
|
+
CreateSecurityConfigResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
OpenSearchServerlessClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../OpenSearchServerlessClient";
|
|
18
|
+
export interface CreateSecurityConfigCommandInput
|
|
19
|
+
extends CreateSecurityConfigRequest {}
|
|
20
|
+
export interface CreateSecurityConfigCommandOutput
|
|
21
|
+
extends CreateSecurityConfigResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateSecurityConfigCommand extends $Command<
|
|
24
|
+
CreateSecurityConfigCommandInput,
|
|
25
|
+
CreateSecurityConfigCommandOutput,
|
|
26
|
+
OpenSearchServerlessClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateSecurityConfigCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateSecurityConfigCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: OpenSearchServerlessClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateSecurityConfigCommandInput,
|
|
37
|
+
CreateSecurityConfigCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CreateSecurityPolicyRequest,
|
|
11
|
+
CreateSecurityPolicyResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
OpenSearchServerlessClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../OpenSearchServerlessClient";
|
|
18
|
+
export interface CreateSecurityPolicyCommandInput
|
|
19
|
+
extends CreateSecurityPolicyRequest {}
|
|
20
|
+
export interface CreateSecurityPolicyCommandOutput
|
|
21
|
+
extends CreateSecurityPolicyResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateSecurityPolicyCommand extends $Command<
|
|
24
|
+
CreateSecurityPolicyCommandInput,
|
|
25
|
+
CreateSecurityPolicyCommandOutput,
|
|
26
|
+
OpenSearchServerlessClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateSecurityPolicyCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateSecurityPolicyCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: OpenSearchServerlessClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateSecurityPolicyCommandInput,
|
|
37
|
+
CreateSecurityPolicyCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CreateVpcEndpointRequest,
|
|
11
|
+
CreateVpcEndpointResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
OpenSearchServerlessClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../OpenSearchServerlessClient";
|
|
18
|
+
export interface CreateVpcEndpointCommandInput
|
|
19
|
+
extends CreateVpcEndpointRequest {}
|
|
20
|
+
export interface CreateVpcEndpointCommandOutput
|
|
21
|
+
extends CreateVpcEndpointResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateVpcEndpointCommand extends $Command<
|
|
24
|
+
CreateVpcEndpointCommandInput,
|
|
25
|
+
CreateVpcEndpointCommandOutput,
|
|
26
|
+
OpenSearchServerlessClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateVpcEndpointCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateVpcEndpointCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: OpenSearchServerlessClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateVpcEndpointCommandInput, CreateVpcEndpointCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DeleteAccessPolicyRequest,
|
|
11
|
+
DeleteAccessPolicyResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
OpenSearchServerlessClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../OpenSearchServerlessClient";
|
|
18
|
+
export interface DeleteAccessPolicyCommandInput
|
|
19
|
+
extends DeleteAccessPolicyRequest {}
|
|
20
|
+
export interface DeleteAccessPolicyCommandOutput
|
|
21
|
+
extends DeleteAccessPolicyResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeleteAccessPolicyCommand extends $Command<
|
|
24
|
+
DeleteAccessPolicyCommandInput,
|
|
25
|
+
DeleteAccessPolicyCommandOutput,
|
|
26
|
+
OpenSearchServerlessClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteAccessPolicyCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteAccessPolicyCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: OpenSearchServerlessClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DeleteAccessPolicyCommandInput, DeleteAccessPolicyCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DeleteCollectionRequest,
|
|
11
|
+
DeleteCollectionResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
OpenSearchServerlessClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../OpenSearchServerlessClient";
|
|
18
|
+
export interface DeleteCollectionCommandInput extends DeleteCollectionRequest {}
|
|
19
|
+
export interface DeleteCollectionCommandOutput
|
|
20
|
+
extends DeleteCollectionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteCollectionCommand extends $Command<
|
|
23
|
+
DeleteCollectionCommandInput,
|
|
24
|
+
DeleteCollectionCommandOutput,
|
|
25
|
+
OpenSearchServerlessClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteCollectionCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: DeleteCollectionCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: OpenSearchServerlessClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DeleteCollectionCommandInput, DeleteCollectionCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DeleteSecurityConfigRequest,
|
|
11
|
+
DeleteSecurityConfigResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
OpenSearchServerlessClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../OpenSearchServerlessClient";
|
|
18
|
+
export interface DeleteSecurityConfigCommandInput
|
|
19
|
+
extends DeleteSecurityConfigRequest {}
|
|
20
|
+
export interface DeleteSecurityConfigCommandOutput
|
|
21
|
+
extends DeleteSecurityConfigResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeleteSecurityConfigCommand extends $Command<
|
|
24
|
+
DeleteSecurityConfigCommandInput,
|
|
25
|
+
DeleteSecurityConfigCommandOutput,
|
|
26
|
+
OpenSearchServerlessClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteSecurityConfigCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteSecurityConfigCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: OpenSearchServerlessClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteSecurityConfigCommandInput,
|
|
37
|
+
DeleteSecurityConfigCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|