@aws-sdk/client-opensearch 3.1020.0 → 3.1022.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 +21 -0
- package/dist-cjs/index.js +57 -0
- package/dist-cjs/models/errors.js +14 -1
- package/dist-cjs/schemas/schemas_0.js +107 -11
- package/dist-es/OpenSearch.js +6 -0
- package/dist-es/commands/DeregisterCapabilityCommand.js +16 -0
- package/dist-es/commands/GetCapabilityCommand.js +16 -0
- package/dist-es/commands/RegisterCapabilityCommand.js +16 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/enums.js +13 -0
- package/dist-es/models/errors.js +12 -0
- package/dist-es/schemas/schemas_0.js +99 -3
- package/dist-types/OpenSearch.d.ts +21 -0
- package/dist-types/OpenSearchClient.d.ts +5 -2
- package/dist-types/commands/CreateDomainCommand.d.ts +2 -2
- package/dist-types/commands/DeleteDomainCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterCapabilityCommand.d.ts +93 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDomainConfigCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDomainsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDryRunProgressCommand.d.ts +1 -1
- package/dist-types/commands/GetCapabilityCommand.d.ts +101 -0
- package/dist-types/commands/RegisterCapabilityCommand.d.ts +104 -0
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateDirectQueryDataSourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDomainConfigCommand.d.ts +3 -3
- package/dist-types/commands/UpdateIndexCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePackageCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePackageScopeCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/enums.d.ts +29 -0
- package/dist-types/models/errors.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +249 -366
- package/dist-types/models/models_1.d.ts +368 -2
- package/dist-types/schemas/schemas_0.d.ts +15 -0
- package/dist-types/ts3.4/OpenSearch.d.ts +51 -0
- package/dist-types/ts3.4/OpenSearchClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DeregisterCapabilityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetCapabilityCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/RegisterCapabilityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateDirectQueryDataSourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDomainConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateIndexCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePackageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePackageScopeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/enums.d.ts +17 -0
- package/dist-types/ts3.4/models/errors.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +87 -75
- package/dist-types/ts3.4/models/models_1.d.ts +106 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +15 -0
- package/package.json +6 -6
|
@@ -1,5 +1,371 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type {
|
|
1
|
+
import type { DocumentType as __DocumentType } from "@smithy/types";
|
|
2
|
+
import type { ActionType, DryRunMode, IndexStatus, IPAddressType, LogType, PackageScopeOperationEnum, ScheduleAt } from "./enums";
|
|
3
|
+
import type { AdvancedSecurityOptionsInput, AIMLOptionsInput, AutoTuneOptions, ChangeProgressDetails, ClusterConfig, CognitoOptions, DeploymentStrategyOptions, DirectQueryDataSourceType, DomainConfig, DomainEndpointOptions, DryRunProgressStatus, DryRunResults, EBSOptions, EncryptionAtRestOptions, IdentityCenterOptionsInput, LogPublishingOption, NodeToNodeEncryptionOptions, OffPeakWindowOptions, PackageConfiguration, PackageDetails, PackageEncryptionOptions, PackageSource, ScheduledAction, SnapshotOptions, SoftwareUpdateOptions, VpcEndpoint, VPCOptions } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* <p>The result of an <code>UpdateDataSource</code> operation.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface UpdateDataSourceResponse {
|
|
9
|
+
/**
|
|
10
|
+
* <p>A message associated with the updated data source.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
Message?: string | undefined;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateDirectQueryDataSourceRequest {
|
|
19
|
+
/**
|
|
20
|
+
* <p> A unique, user-defined label to identify the data source within your OpenSearch
|
|
21
|
+
* Service environment. </p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
DataSourceName: string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* <p> The supported Amazon Web Services service that you want to use as the source for
|
|
27
|
+
* direct queries in OpenSearch Service. </p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
DataSourceType: DirectQueryDataSourceType | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p> An optional text field for providing additional context and details about the data
|
|
33
|
+
* source. </p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
Description?: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* <p> An optional list of Amazon Resource Names (ARNs) for the OpenSearch collections that are
|
|
39
|
+
* associated with the direct query data source. This field is required for CloudWatchLogs
|
|
40
|
+
* and SecurityLake datasource types. </p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
OpenSearchArns?: string[] | undefined;
|
|
44
|
+
/**
|
|
45
|
+
* <p> An optional IAM access policy document that defines the updated permissions for accessing the direct query data source.
|
|
46
|
+
* The policy document must be in valid JSON format and follow IAM policy syntax. If not specified, the existing access policy if present remains unchanged. </p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
DataSourceAccessPolicy?: string | undefined;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
export interface UpdateDirectQueryDataSourceResponse {
|
|
55
|
+
/**
|
|
56
|
+
* <p> The unique, system-generated identifier that represents the data source. </p>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
DataSourceArn?: string | undefined;
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* <p>Container for the request parameters to the <code>UpdateDomain</code>
|
|
63
|
+
* operation.</p>
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
export interface UpdateDomainConfigRequest {
|
|
67
|
+
/**
|
|
68
|
+
* <p>The name of the domain that you're updating.</p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
DomainName: string | undefined;
|
|
72
|
+
/**
|
|
73
|
+
* <p>Changes that you want to make to the cluster configuration, such as the instance type
|
|
74
|
+
* and number of EC2 instances.</p>
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
ClusterConfig?: ClusterConfig | undefined;
|
|
78
|
+
/**
|
|
79
|
+
* <p>The type and size of the EBS volume to attach to instances in the domain.</p>
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
EBSOptions?: EBSOptions | undefined;
|
|
83
|
+
/**
|
|
84
|
+
* <p>Option to set the time, in UTC format, for the daily automated snapshot. Default value
|
|
85
|
+
* is <code>0</code> hours. </p>
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
SnapshotOptions?: SnapshotOptions | undefined;
|
|
89
|
+
/**
|
|
90
|
+
* <p>Options to specify the subnets and security groups for a VPC endpoint. For more
|
|
91
|
+
* information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/vpc.html">Launching your Amazon
|
|
92
|
+
* OpenSearch Service domains using a VPC</a>.</p>
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
VPCOptions?: VPCOptions | undefined;
|
|
96
|
+
/**
|
|
97
|
+
* <p>Key-value pairs to configure Amazon Cognito authentication for OpenSearch
|
|
98
|
+
* Dashboards.</p>
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
CognitoOptions?: CognitoOptions | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* <p>Key-value pairs to specify advanced configuration options. The following key-value
|
|
104
|
+
* pairs are supported:</p>
|
|
105
|
+
* <ul>
|
|
106
|
+
* <li>
|
|
107
|
+
* <p>
|
|
108
|
+
* <code>"rest.action.multi.allow_explicit_index": "true" | "false"</code> - Note
|
|
109
|
+
* the use of a string rather than a boolean. Specifies whether explicit references
|
|
110
|
+
* to indexes are allowed inside the body of HTTP requests. If you want to
|
|
111
|
+
* configure access policies for domain sub-resources, such as specific indexes and
|
|
112
|
+
* domain APIs, you must disable this property. Default is true.</p>
|
|
113
|
+
* </li>
|
|
114
|
+
* <li>
|
|
115
|
+
* <p>
|
|
116
|
+
* <code>"indices.fielddata.cache.size": "80" </code> - Note the use of a string
|
|
117
|
+
* rather than a boolean. Specifies the percentage of heap space allocated to field
|
|
118
|
+
* data. Default is unbounded.</p>
|
|
119
|
+
* </li>
|
|
120
|
+
* <li>
|
|
121
|
+
* <p>
|
|
122
|
+
* <code>"indices.query.bool.max_clause_count": "1024"</code> - Note the use of a
|
|
123
|
+
* string rather than a boolean. Specifies the maximum number of clauses allowed in
|
|
124
|
+
* a Lucene boolean query. Default is 1,024. Queries with more than the permitted
|
|
125
|
+
* number of clauses result in a <code>TooManyClauses</code> error.</p>
|
|
126
|
+
* </li>
|
|
127
|
+
* </ul>
|
|
128
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomain-configure-advanced-options">Advanced cluster parameters</a>.</p>
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
AdvancedOptions?: Record<string, string> | undefined;
|
|
132
|
+
/**
|
|
133
|
+
* <p>Identity and Access Management (IAM) access policy as a JSON-formatted string.</p>
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
136
|
+
AccessPolicies?: string | undefined;
|
|
137
|
+
/**
|
|
138
|
+
* <p>Specify either dual stack or IPv4 as your IP address type. Dual stack allows you to
|
|
139
|
+
* share domain resources across IPv4 and IPv6 address types, and is the recommended
|
|
140
|
+
* option. If your IP address type is currently set to dual stack, you can't change it.
|
|
141
|
+
* </p>
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
144
|
+
IPAddressType?: IPAddressType | undefined;
|
|
145
|
+
/**
|
|
146
|
+
* <p>Options to publish OpenSearch logs to Amazon CloudWatch Logs.</p>
|
|
147
|
+
* @public
|
|
148
|
+
*/
|
|
149
|
+
LogPublishingOptions?: Partial<Record<LogType, LogPublishingOption>> | undefined;
|
|
150
|
+
/**
|
|
151
|
+
* <p>Encryption at rest options for the domain.</p>
|
|
152
|
+
* @public
|
|
153
|
+
*/
|
|
154
|
+
EncryptionAtRestOptions?: EncryptionAtRestOptions | undefined;
|
|
155
|
+
/**
|
|
156
|
+
* <p>Additional options for the domain endpoint, such as whether to require HTTPS for all
|
|
157
|
+
* traffic.</p>
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
160
|
+
DomainEndpointOptions?: DomainEndpointOptions | undefined;
|
|
161
|
+
/**
|
|
162
|
+
* <p>Node-to-node encryption options for the domain.</p>
|
|
163
|
+
* @public
|
|
164
|
+
*/
|
|
165
|
+
NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions | undefined;
|
|
166
|
+
/**
|
|
167
|
+
* <p>Options for fine-grained access control.</p>
|
|
168
|
+
* @public
|
|
169
|
+
*/
|
|
170
|
+
AdvancedSecurityOptions?: AdvancedSecurityOptionsInput | undefined;
|
|
171
|
+
/**
|
|
172
|
+
* <p>Configuration settings for enabling and managing IAM Identity Center.</p>
|
|
173
|
+
* @public
|
|
174
|
+
*/
|
|
175
|
+
IdentityCenterOptions?: IdentityCenterOptionsInput | undefined;
|
|
176
|
+
/**
|
|
177
|
+
* <p>Options for Auto-Tune.</p>
|
|
178
|
+
* @public
|
|
179
|
+
*/
|
|
180
|
+
AutoTuneOptions?: AutoTuneOptions | undefined;
|
|
181
|
+
/**
|
|
182
|
+
* <p>This flag, when set to True, specifies whether the <code>UpdateDomain</code> request
|
|
183
|
+
* should return the results of a dry run analysis without actually applying the change. A
|
|
184
|
+
* dry run determines what type of deployment the update will cause.</p>
|
|
185
|
+
* @public
|
|
186
|
+
*/
|
|
187
|
+
DryRun?: boolean | undefined;
|
|
188
|
+
/**
|
|
189
|
+
* <p>The type of dry run to perform.</p>
|
|
190
|
+
* <ul>
|
|
191
|
+
* <li>
|
|
192
|
+
* <p>
|
|
193
|
+
* <code>Basic</code> only returns the type of deployment (blue/green or dynamic)
|
|
194
|
+
* that the update will cause.</p>
|
|
195
|
+
* </li>
|
|
196
|
+
* <li>
|
|
197
|
+
* <p>
|
|
198
|
+
* <code>Verbose</code> runs an additional check to validate the changes you're
|
|
199
|
+
* making. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/managedomains-configuration-changes#validation-check">Validating a domain update</a>.</p>
|
|
200
|
+
* </li>
|
|
201
|
+
* </ul>
|
|
202
|
+
* @public
|
|
203
|
+
*/
|
|
204
|
+
DryRunMode?: DryRunMode | undefined;
|
|
205
|
+
/**
|
|
206
|
+
* <p>Off-peak window options for the domain.</p>
|
|
207
|
+
* @public
|
|
208
|
+
*/
|
|
209
|
+
OffPeakWindowOptions?: OffPeakWindowOptions | undefined;
|
|
210
|
+
/**
|
|
211
|
+
* <p>Service software update options for the domain.</p>
|
|
212
|
+
* @public
|
|
213
|
+
*/
|
|
214
|
+
SoftwareUpdateOptions?: SoftwareUpdateOptions | undefined;
|
|
215
|
+
/**
|
|
216
|
+
* <p>Options for all machine learning features for the specified domain.</p>
|
|
217
|
+
* @public
|
|
218
|
+
*/
|
|
219
|
+
AIMLOptions?: AIMLOptionsInput | undefined;
|
|
220
|
+
/**
|
|
221
|
+
* <p>Specifies the deployment strategy options for the domain.</p>
|
|
222
|
+
* @public
|
|
223
|
+
*/
|
|
224
|
+
DeploymentStrategyOptions?: DeploymentStrategyOptions | undefined;
|
|
225
|
+
}
|
|
226
|
+
/**
|
|
227
|
+
* <p>The results of an <code>UpdateDomain</code> request. Contains the status of the domain
|
|
228
|
+
* being updated.</p>
|
|
229
|
+
* @public
|
|
230
|
+
*/
|
|
231
|
+
export interface UpdateDomainConfigResponse {
|
|
232
|
+
/**
|
|
233
|
+
* <p>The status of the updated domain.</p>
|
|
234
|
+
* @public
|
|
235
|
+
*/
|
|
236
|
+
DomainConfig: DomainConfig | undefined;
|
|
237
|
+
/**
|
|
238
|
+
* <p>Results of the dry run performed in the update domain request.</p>
|
|
239
|
+
* @public
|
|
240
|
+
*/
|
|
241
|
+
DryRunResults?: DryRunResults | undefined;
|
|
242
|
+
/**
|
|
243
|
+
* <p>The status of the dry run being performed on the domain, if any.</p>
|
|
244
|
+
* @public
|
|
245
|
+
*/
|
|
246
|
+
DryRunProgressStatus?: DryRunProgressStatus | undefined;
|
|
247
|
+
}
|
|
248
|
+
/**
|
|
249
|
+
* @public
|
|
250
|
+
*/
|
|
251
|
+
export interface UpdateIndexRequest {
|
|
252
|
+
/**
|
|
253
|
+
* <p>The name of an OpenSearch Service domain. Domain names are unique across the domains
|
|
254
|
+
* owned by an account within an Amazon Web Services Region.</p>
|
|
255
|
+
* @public
|
|
256
|
+
*/
|
|
257
|
+
DomainName: string | undefined;
|
|
258
|
+
/**
|
|
259
|
+
* <p>The name of the index to update.</p>
|
|
260
|
+
* @public
|
|
261
|
+
*/
|
|
262
|
+
IndexName: string | undefined;
|
|
263
|
+
/**
|
|
264
|
+
* <p>The updated JSON schema for the index including any changes to mappings, settings, and semantic enrichment configuration.</p>
|
|
265
|
+
* @public
|
|
266
|
+
*/
|
|
267
|
+
IndexSchema: __DocumentType | undefined;
|
|
268
|
+
}
|
|
269
|
+
/**
|
|
270
|
+
* @public
|
|
271
|
+
*/
|
|
272
|
+
export interface UpdateIndexResponse {
|
|
273
|
+
/**
|
|
274
|
+
* <p>The status of the index update operation.</p>
|
|
275
|
+
* @public
|
|
276
|
+
*/
|
|
277
|
+
Status: IndexStatus | undefined;
|
|
278
|
+
}
|
|
279
|
+
/**
|
|
280
|
+
* <p>Container for request parameters to the <code>UpdatePackage</code> operation.</p>
|
|
281
|
+
* @public
|
|
282
|
+
*/
|
|
283
|
+
export interface UpdatePackageRequest {
|
|
284
|
+
/**
|
|
285
|
+
* <p>The unique identifier for the package.</p>
|
|
286
|
+
* @public
|
|
287
|
+
*/
|
|
288
|
+
PackageID: string | undefined;
|
|
289
|
+
/**
|
|
290
|
+
* <p>Amazon S3 bucket and key for the package.</p>
|
|
291
|
+
* @public
|
|
292
|
+
*/
|
|
293
|
+
PackageSource: PackageSource | undefined;
|
|
294
|
+
/**
|
|
295
|
+
* <p>A new description of the package.</p>
|
|
296
|
+
* @public
|
|
297
|
+
*/
|
|
298
|
+
PackageDescription?: string | undefined;
|
|
299
|
+
/**
|
|
300
|
+
* <p>Commit message for the updated file, which is shown as part of
|
|
301
|
+
* <code>GetPackageVersionHistoryResponse</code>.</p>
|
|
302
|
+
* @public
|
|
303
|
+
*/
|
|
304
|
+
CommitMessage?: string | undefined;
|
|
305
|
+
/**
|
|
306
|
+
* <p>The updated configuration details for a package.</p>
|
|
307
|
+
* @public
|
|
308
|
+
*/
|
|
309
|
+
PackageConfiguration?: PackageConfiguration | undefined;
|
|
310
|
+
/**
|
|
311
|
+
* <p>Encryption options for a package.</p>
|
|
312
|
+
* @public
|
|
313
|
+
*/
|
|
314
|
+
PackageEncryptionOptions?: PackageEncryptionOptions | undefined;
|
|
315
|
+
}
|
|
316
|
+
/**
|
|
317
|
+
* <p>Container for the response returned by the <code>UpdatePackage</code>
|
|
318
|
+
* operation.</p>
|
|
319
|
+
* @public
|
|
320
|
+
*/
|
|
321
|
+
export interface UpdatePackageResponse {
|
|
322
|
+
/**
|
|
323
|
+
* <p>Information about a package.</p>
|
|
324
|
+
* @public
|
|
325
|
+
*/
|
|
326
|
+
PackageDetails?: PackageDetails | undefined;
|
|
327
|
+
}
|
|
328
|
+
/**
|
|
329
|
+
* @public
|
|
330
|
+
*/
|
|
331
|
+
export interface UpdatePackageScopeRequest {
|
|
332
|
+
/**
|
|
333
|
+
* <p>ID of the package whose scope is being updated.</p>
|
|
334
|
+
* @public
|
|
335
|
+
*/
|
|
336
|
+
PackageID: string | undefined;
|
|
337
|
+
/**
|
|
338
|
+
* <p> The operation to perform on the package scope (e.g., add/remove/override
|
|
339
|
+
* users).</p>
|
|
340
|
+
* @public
|
|
341
|
+
*/
|
|
342
|
+
Operation: PackageScopeOperationEnum | undefined;
|
|
343
|
+
/**
|
|
344
|
+
* <p> List of users to be added or removed from the package scope.</p>
|
|
345
|
+
* @public
|
|
346
|
+
*/
|
|
347
|
+
PackageUserList: string[] | undefined;
|
|
348
|
+
}
|
|
349
|
+
/**
|
|
350
|
+
* @public
|
|
351
|
+
*/
|
|
352
|
+
export interface UpdatePackageScopeResponse {
|
|
353
|
+
/**
|
|
354
|
+
* <p> ID of the package whose scope was updated.</p>
|
|
355
|
+
* @public
|
|
356
|
+
*/
|
|
357
|
+
PackageID?: string | undefined;
|
|
358
|
+
/**
|
|
359
|
+
* <p>The operation that was performed on the package scope.</p>
|
|
360
|
+
* @public
|
|
361
|
+
*/
|
|
362
|
+
Operation?: PackageScopeOperationEnum | undefined;
|
|
363
|
+
/**
|
|
364
|
+
* <p> List of users who have access to the package after the scope update.</p>
|
|
365
|
+
* @public
|
|
366
|
+
*/
|
|
367
|
+
PackageUserList?: string[] | undefined;
|
|
368
|
+
}
|
|
3
369
|
/**
|
|
4
370
|
* @public
|
|
5
371
|
*/
|
|
@@ -12,6 +12,7 @@ export declare var InvalidTypeException$: StaticErrorSchema;
|
|
|
12
12
|
export declare var LimitExceededException$: StaticErrorSchema;
|
|
13
13
|
export declare var ResourceAlreadyExistsException$: StaticErrorSchema;
|
|
14
14
|
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
15
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
15
16
|
export declare var SlotNotAvailableException$: StaticErrorSchema;
|
|
16
17
|
export declare var ThrottlingException$: StaticErrorSchema;
|
|
17
18
|
export declare var ValidationException$: StaticErrorSchema;
|
|
@@ -34,6 +35,7 @@ export declare var AdvancedOptionsStatus$: StaticStructureSchema;
|
|
|
34
35
|
export declare var AdvancedSecurityOptions$: StaticStructureSchema;
|
|
35
36
|
export declare var AdvancedSecurityOptionsInput$: StaticStructureSchema;
|
|
36
37
|
export declare var AdvancedSecurityOptionsStatus$: StaticStructureSchema;
|
|
38
|
+
export declare var AIConfig$: StaticStructureSchema;
|
|
37
39
|
export declare var AIMLOptionsInput$: StaticStructureSchema;
|
|
38
40
|
export declare var AIMLOptionsOutput$: StaticStructureSchema;
|
|
39
41
|
export declare var AIMLOptionsStatus$: StaticStructureSchema;
|
|
@@ -61,6 +63,7 @@ export declare var CancelDomainConfigChangeResponse$: StaticStructureSchema;
|
|
|
61
63
|
export declare var CancelledChangeProperty$: StaticStructureSchema;
|
|
62
64
|
export declare var CancelServiceSoftwareUpdateRequest$: StaticStructureSchema;
|
|
63
65
|
export declare var CancelServiceSoftwareUpdateResponse$: StaticStructureSchema;
|
|
66
|
+
export declare var CapabilityFailure$: StaticStructureSchema;
|
|
64
67
|
export declare var ChangeProgressDetails$: StaticStructureSchema;
|
|
65
68
|
export declare var ChangeProgressStage$: StaticStructureSchema;
|
|
66
69
|
export declare var ChangeProgressStatusDetails$: StaticStructureSchema;
|
|
@@ -106,6 +109,8 @@ export declare var DeleteVpcEndpointRequest$: StaticStructureSchema;
|
|
|
106
109
|
export declare var DeleteVpcEndpointResponse$: StaticStructureSchema;
|
|
107
110
|
export declare var DeploymentStrategyOptions$: StaticStructureSchema;
|
|
108
111
|
export declare var DeploymentStrategyOptionsStatus$: StaticStructureSchema;
|
|
112
|
+
export declare var DeregisterCapabilityRequest$: StaticStructureSchema;
|
|
113
|
+
export declare var DeregisterCapabilityResponse$: StaticStructureSchema;
|
|
109
114
|
export declare var DescribeDomainAutoTunesRequest$: StaticStructureSchema;
|
|
110
115
|
export declare var DescribeDomainAutoTunesResponse$: StaticStructureSchema;
|
|
111
116
|
export declare var DescribeDomainChangeProgressRequest$: StaticStructureSchema;
|
|
@@ -165,6 +170,8 @@ export declare var ErrorDetails$: StaticStructureSchema;
|
|
|
165
170
|
export declare var Filter$: StaticStructureSchema;
|
|
166
171
|
export declare var GetApplicationRequest$: StaticStructureSchema;
|
|
167
172
|
export declare var GetApplicationResponse$: StaticStructureSchema;
|
|
173
|
+
export declare var GetCapabilityRequest$: StaticStructureSchema;
|
|
174
|
+
export declare var GetCapabilityResponse$: StaticStructureSchema;
|
|
168
175
|
export declare var GetCompatibleVersionsRequest$: StaticStructureSchema;
|
|
169
176
|
export declare var GetCompatibleVersionsResponse$: StaticStructureSchema;
|
|
170
177
|
export declare var GetDataSourceRequest$: StaticStructureSchema;
|
|
@@ -265,6 +272,8 @@ export declare var PurchaseReservedInstanceOfferingResponse$: StaticStructureSch
|
|
|
265
272
|
export declare var PutDefaultApplicationSettingRequest$: StaticStructureSchema;
|
|
266
273
|
export declare var PutDefaultApplicationSettingResponse$: StaticStructureSchema;
|
|
267
274
|
export declare var RecurringCharge$: StaticStructureSchema;
|
|
275
|
+
export declare var RegisterCapabilityRequest$: StaticStructureSchema;
|
|
276
|
+
export declare var RegisterCapabilityResponse$: StaticStructureSchema;
|
|
268
277
|
export declare var RejectInboundConnectionRequest$: StaticStructureSchema;
|
|
269
278
|
export declare var RejectInboundConnectionResponse$: StaticStructureSchema;
|
|
270
279
|
export declare var RemoveTagsRequest$: StaticStructureSchema;
|
|
@@ -325,6 +334,9 @@ export declare var VpcEndpointSummary$: StaticStructureSchema;
|
|
|
325
334
|
export declare var VPCOptions$: StaticStructureSchema;
|
|
326
335
|
export declare var WindowStartTime$: StaticStructureSchema;
|
|
327
336
|
export declare var ZoneAwarenessConfig$: StaticStructureSchema;
|
|
337
|
+
export declare var CapabilityBaseRequestConfig$: StaticUnionSchema;
|
|
338
|
+
export declare var CapabilityBaseResponseConfig$: StaticUnionSchema;
|
|
339
|
+
export declare var CapabilityExtendedResponseConfig$: StaticUnionSchema;
|
|
328
340
|
export declare var DataSourceType$: StaticUnionSchema;
|
|
329
341
|
export declare var DirectQueryDataSourceType$: StaticUnionSchema;
|
|
330
342
|
export declare var AcceptInboundConnection$: StaticOperationSchema;
|
|
@@ -351,6 +363,7 @@ export declare var DeleteIndex$: StaticOperationSchema;
|
|
|
351
363
|
export declare var DeleteOutboundConnection$: StaticOperationSchema;
|
|
352
364
|
export declare var DeletePackage$: StaticOperationSchema;
|
|
353
365
|
export declare var DeleteVpcEndpoint$: StaticOperationSchema;
|
|
366
|
+
export declare var DeregisterCapability$: StaticOperationSchema;
|
|
354
367
|
export declare var DescribeDomain$: StaticOperationSchema;
|
|
355
368
|
export declare var DescribeDomainAutoTunes$: StaticOperationSchema;
|
|
356
369
|
export declare var DescribeDomainChangeProgress$: StaticOperationSchema;
|
|
@@ -370,6 +383,7 @@ export declare var DescribeVpcEndpoints$: StaticOperationSchema;
|
|
|
370
383
|
export declare var DissociatePackage$: StaticOperationSchema;
|
|
371
384
|
export declare var DissociatePackages$: StaticOperationSchema;
|
|
372
385
|
export declare var GetApplication$: StaticOperationSchema;
|
|
386
|
+
export declare var GetCapability$: StaticOperationSchema;
|
|
373
387
|
export declare var GetCompatibleVersions$: StaticOperationSchema;
|
|
374
388
|
export declare var GetDataSource$: StaticOperationSchema;
|
|
375
389
|
export declare var GetDefaultApplicationSetting$: StaticOperationSchema;
|
|
@@ -396,6 +410,7 @@ export declare var ListVpcEndpoints$: StaticOperationSchema;
|
|
|
396
410
|
export declare var ListVpcEndpointsForDomain$: StaticOperationSchema;
|
|
397
411
|
export declare var PurchaseReservedInstanceOffering$: StaticOperationSchema;
|
|
398
412
|
export declare var PutDefaultApplicationSetting$: StaticOperationSchema;
|
|
413
|
+
export declare var RegisterCapability$: StaticOperationSchema;
|
|
399
414
|
export declare var RejectInboundConnection$: StaticOperationSchema;
|
|
400
415
|
export declare var RemoveTags$: StaticOperationSchema;
|
|
401
416
|
export declare var RevokeVpcEndpointAccess$: StaticOperationSchema;
|
|
@@ -99,6 +99,10 @@ import {
|
|
|
99
99
|
DeleteVpcEndpointCommandInput,
|
|
100
100
|
DeleteVpcEndpointCommandOutput,
|
|
101
101
|
} from "./commands/DeleteVpcEndpointCommand";
|
|
102
|
+
import {
|
|
103
|
+
DeregisterCapabilityCommandInput,
|
|
104
|
+
DeregisterCapabilityCommandOutput,
|
|
105
|
+
} from "./commands/DeregisterCapabilityCommand";
|
|
102
106
|
import {
|
|
103
107
|
DescribeDomainAutoTunesCommandInput,
|
|
104
108
|
DescribeDomainAutoTunesCommandOutput,
|
|
@@ -175,6 +179,10 @@ import {
|
|
|
175
179
|
GetApplicationCommandInput,
|
|
176
180
|
GetApplicationCommandOutput,
|
|
177
181
|
} from "./commands/GetApplicationCommand";
|
|
182
|
+
import {
|
|
183
|
+
GetCapabilityCommandInput,
|
|
184
|
+
GetCapabilityCommandOutput,
|
|
185
|
+
} from "./commands/GetCapabilityCommand";
|
|
178
186
|
import {
|
|
179
187
|
GetCompatibleVersionsCommandInput,
|
|
180
188
|
GetCompatibleVersionsCommandOutput,
|
|
@@ -279,6 +287,10 @@ import {
|
|
|
279
287
|
PutDefaultApplicationSettingCommandInput,
|
|
280
288
|
PutDefaultApplicationSettingCommandOutput,
|
|
281
289
|
} from "./commands/PutDefaultApplicationSettingCommand";
|
|
290
|
+
import {
|
|
291
|
+
RegisterCapabilityCommandInput,
|
|
292
|
+
RegisterCapabilityCommandOutput,
|
|
293
|
+
} from "./commands/RegisterCapabilityCommand";
|
|
282
294
|
import {
|
|
283
295
|
RejectInboundConnectionCommandInput,
|
|
284
296
|
RejectInboundConnectionCommandOutput,
|
|
@@ -653,6 +665,19 @@ export interface OpenSearch {
|
|
|
653
665
|
options: __HttpHandlerOptions,
|
|
654
666
|
cb: (err: any, data?: DeleteVpcEndpointCommandOutput) => void
|
|
655
667
|
): void;
|
|
668
|
+
deregisterCapability(
|
|
669
|
+
args: DeregisterCapabilityCommandInput,
|
|
670
|
+
options?: __HttpHandlerOptions
|
|
671
|
+
): Promise<DeregisterCapabilityCommandOutput>;
|
|
672
|
+
deregisterCapability(
|
|
673
|
+
args: DeregisterCapabilityCommandInput,
|
|
674
|
+
cb: (err: any, data?: DeregisterCapabilityCommandOutput) => void
|
|
675
|
+
): void;
|
|
676
|
+
deregisterCapability(
|
|
677
|
+
args: DeregisterCapabilityCommandInput,
|
|
678
|
+
options: __HttpHandlerOptions,
|
|
679
|
+
cb: (err: any, data?: DeregisterCapabilityCommandOutput) => void
|
|
680
|
+
): void;
|
|
656
681
|
describeDomain(
|
|
657
682
|
args: DescribeDomainCommandInput,
|
|
658
683
|
options?: __HttpHandlerOptions
|
|
@@ -911,6 +936,19 @@ export interface OpenSearch {
|
|
|
911
936
|
options: __HttpHandlerOptions,
|
|
912
937
|
cb: (err: any, data?: GetApplicationCommandOutput) => void
|
|
913
938
|
): void;
|
|
939
|
+
getCapability(
|
|
940
|
+
args: GetCapabilityCommandInput,
|
|
941
|
+
options?: __HttpHandlerOptions
|
|
942
|
+
): Promise<GetCapabilityCommandOutput>;
|
|
943
|
+
getCapability(
|
|
944
|
+
args: GetCapabilityCommandInput,
|
|
945
|
+
cb: (err: any, data?: GetCapabilityCommandOutput) => void
|
|
946
|
+
): void;
|
|
947
|
+
getCapability(
|
|
948
|
+
args: GetCapabilityCommandInput,
|
|
949
|
+
options: __HttpHandlerOptions,
|
|
950
|
+
cb: (err: any, data?: GetCapabilityCommandOutput) => void
|
|
951
|
+
): void;
|
|
914
952
|
getCompatibleVersions(): Promise<GetCompatibleVersionsCommandOutput>;
|
|
915
953
|
getCompatibleVersions(
|
|
916
954
|
args: GetCompatibleVersionsCommandInput,
|
|
@@ -1256,6 +1294,19 @@ export interface OpenSearch {
|
|
|
1256
1294
|
options: __HttpHandlerOptions,
|
|
1257
1295
|
cb: (err: any, data?: PutDefaultApplicationSettingCommandOutput) => void
|
|
1258
1296
|
): void;
|
|
1297
|
+
registerCapability(
|
|
1298
|
+
args: RegisterCapabilityCommandInput,
|
|
1299
|
+
options?: __HttpHandlerOptions
|
|
1300
|
+
): Promise<RegisterCapabilityCommandOutput>;
|
|
1301
|
+
registerCapability(
|
|
1302
|
+
args: RegisterCapabilityCommandInput,
|
|
1303
|
+
cb: (err: any, data?: RegisterCapabilityCommandOutput) => void
|
|
1304
|
+
): void;
|
|
1305
|
+
registerCapability(
|
|
1306
|
+
args: RegisterCapabilityCommandInput,
|
|
1307
|
+
options: __HttpHandlerOptions,
|
|
1308
|
+
cb: (err: any, data?: RegisterCapabilityCommandOutput) => void
|
|
1309
|
+
): void;
|
|
1259
1310
|
rejectInboundConnection(
|
|
1260
1311
|
args: RejectInboundConnectionCommandInput,
|
|
1261
1312
|
options?: __HttpHandlerOptions
|
|
@@ -140,6 +140,10 @@ import {
|
|
|
140
140
|
DeleteVpcEndpointCommandInput,
|
|
141
141
|
DeleteVpcEndpointCommandOutput,
|
|
142
142
|
} from "./commands/DeleteVpcEndpointCommand";
|
|
143
|
+
import {
|
|
144
|
+
DeregisterCapabilityCommandInput,
|
|
145
|
+
DeregisterCapabilityCommandOutput,
|
|
146
|
+
} from "./commands/DeregisterCapabilityCommand";
|
|
143
147
|
import {
|
|
144
148
|
DescribeDomainAutoTunesCommandInput,
|
|
145
149
|
DescribeDomainAutoTunesCommandOutput,
|
|
@@ -216,6 +220,10 @@ import {
|
|
|
216
220
|
GetApplicationCommandInput,
|
|
217
221
|
GetApplicationCommandOutput,
|
|
218
222
|
} from "./commands/GetApplicationCommand";
|
|
223
|
+
import {
|
|
224
|
+
GetCapabilityCommandInput,
|
|
225
|
+
GetCapabilityCommandOutput,
|
|
226
|
+
} from "./commands/GetCapabilityCommand";
|
|
219
227
|
import {
|
|
220
228
|
GetCompatibleVersionsCommandInput,
|
|
221
229
|
GetCompatibleVersionsCommandOutput,
|
|
@@ -320,6 +328,10 @@ import {
|
|
|
320
328
|
PutDefaultApplicationSettingCommandInput,
|
|
321
329
|
PutDefaultApplicationSettingCommandOutput,
|
|
322
330
|
} from "./commands/PutDefaultApplicationSettingCommand";
|
|
331
|
+
import {
|
|
332
|
+
RegisterCapabilityCommandInput,
|
|
333
|
+
RegisterCapabilityCommandOutput,
|
|
334
|
+
} from "./commands/RegisterCapabilityCommand";
|
|
323
335
|
import {
|
|
324
336
|
RejectInboundConnectionCommandInput,
|
|
325
337
|
RejectInboundConnectionCommandOutput,
|
|
@@ -412,6 +424,7 @@ export type ServiceInputTypes =
|
|
|
412
424
|
| DeleteOutboundConnectionCommandInput
|
|
413
425
|
| DeletePackageCommandInput
|
|
414
426
|
| DeleteVpcEndpointCommandInput
|
|
427
|
+
| DeregisterCapabilityCommandInput
|
|
415
428
|
| DescribeDomainAutoTunesCommandInput
|
|
416
429
|
| DescribeDomainChangeProgressCommandInput
|
|
417
430
|
| DescribeDomainCommandInput
|
|
@@ -431,6 +444,7 @@ export type ServiceInputTypes =
|
|
|
431
444
|
| DissociatePackageCommandInput
|
|
432
445
|
| DissociatePackagesCommandInput
|
|
433
446
|
| GetApplicationCommandInput
|
|
447
|
+
| GetCapabilityCommandInput
|
|
434
448
|
| GetCompatibleVersionsCommandInput
|
|
435
449
|
| GetDataSourceCommandInput
|
|
436
450
|
| GetDefaultApplicationSettingCommandInput
|
|
@@ -457,6 +471,7 @@ export type ServiceInputTypes =
|
|
|
457
471
|
| ListVpcEndpointsForDomainCommandInput
|
|
458
472
|
| PurchaseReservedInstanceOfferingCommandInput
|
|
459
473
|
| PutDefaultApplicationSettingCommandInput
|
|
474
|
+
| RegisterCapabilityCommandInput
|
|
460
475
|
| RejectInboundConnectionCommandInput
|
|
461
476
|
| RemoveTagsCommandInput
|
|
462
477
|
| RevokeVpcEndpointAccessCommandInput
|
|
@@ -497,6 +512,7 @@ export type ServiceOutputTypes =
|
|
|
497
512
|
| DeleteOutboundConnectionCommandOutput
|
|
498
513
|
| DeletePackageCommandOutput
|
|
499
514
|
| DeleteVpcEndpointCommandOutput
|
|
515
|
+
| DeregisterCapabilityCommandOutput
|
|
500
516
|
| DescribeDomainAutoTunesCommandOutput
|
|
501
517
|
| DescribeDomainChangeProgressCommandOutput
|
|
502
518
|
| DescribeDomainCommandOutput
|
|
@@ -516,6 +532,7 @@ export type ServiceOutputTypes =
|
|
|
516
532
|
| DissociatePackageCommandOutput
|
|
517
533
|
| DissociatePackagesCommandOutput
|
|
518
534
|
| GetApplicationCommandOutput
|
|
535
|
+
| GetCapabilityCommandOutput
|
|
519
536
|
| GetCompatibleVersionsCommandOutput
|
|
520
537
|
| GetDataSourceCommandOutput
|
|
521
538
|
| GetDefaultApplicationSettingCommandOutput
|
|
@@ -542,6 +559,7 @@ export type ServiceOutputTypes =
|
|
|
542
559
|
| ListVpcEndpointsForDomainCommandOutput
|
|
543
560
|
| PurchaseReservedInstanceOfferingCommandOutput
|
|
544
561
|
| PutDefaultApplicationSettingCommandOutput
|
|
562
|
+
| RegisterCapabilityCommandOutput
|
|
545
563
|
| RejectInboundConnectionCommandOutput
|
|
546
564
|
| RemoveTagsCommandOutput
|
|
547
565
|
| RevokeVpcEndpointAccessCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeregisterCapabilityRequest,
|
|
5
|
+
DeregisterCapabilityResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
OpenSearchClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../OpenSearchClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeregisterCapabilityCommandInput
|
|
15
|
+
extends DeregisterCapabilityRequest {}
|
|
16
|
+
export interface DeregisterCapabilityCommandOutput
|
|
17
|
+
extends DeregisterCapabilityResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeregisterCapabilityCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeregisterCapabilityCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeregisterCapabilityCommandInput,
|
|
24
|
+
DeregisterCapabilityCommandOutput,
|
|
25
|
+
OpenSearchClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeregisterCapabilityCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeregisterCapabilityCommandInput,
|
|
33
|
+
DeregisterCapabilityCommandOutput,
|
|
34
|
+
OpenSearchClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeregisterCapabilityCommand extends DeregisterCapabilityCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeregisterCapabilityRequest;
|
|
44
|
+
output: DeregisterCapabilityResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeregisterCapabilityCommandInput;
|
|
48
|
+
output: DeregisterCapabilityCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|