@aws-sdk/client-opensearchserverless 3.986.0 → 3.988.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/dist-cjs/index.js +65 -1601
- package/dist-cjs/models/OpenSearchServerlessServiceException.js +12 -0
- package/dist-cjs/models/errors.js +90 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1291 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +61 -55
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var OpenSearchServerlessServiceException = require('./models/OpenSearchServerlessServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1361 +113,6 @@ class OpenSearchServerlessClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class OpenSearchServerlessServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, OpenSearchServerlessServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class ConflictException extends OpenSearchServerlessServiceException {
|
|
121
|
-
name = "ConflictException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "ConflictException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class InternalServerException extends OpenSearchServerlessServiceException {
|
|
133
|
-
name = "InternalServerException";
|
|
134
|
-
$fault = "server";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "InternalServerException",
|
|
138
|
-
$fault: "server",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class ServiceQuotaExceededException extends OpenSearchServerlessServiceException {
|
|
145
|
-
name = "ServiceQuotaExceededException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
resourceId;
|
|
148
|
-
resourceType;
|
|
149
|
-
serviceCode;
|
|
150
|
-
quotaCode;
|
|
151
|
-
constructor(opts) {
|
|
152
|
-
super({
|
|
153
|
-
name: "ServiceQuotaExceededException",
|
|
154
|
-
$fault: "client",
|
|
155
|
-
...opts,
|
|
156
|
-
});
|
|
157
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
158
|
-
this.resourceId = opts.resourceId;
|
|
159
|
-
this.resourceType = opts.resourceType;
|
|
160
|
-
this.serviceCode = opts.serviceCode;
|
|
161
|
-
this.quotaCode = opts.quotaCode;
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
class ValidationException extends OpenSearchServerlessServiceException {
|
|
165
|
-
name = "ValidationException";
|
|
166
|
-
$fault = "client";
|
|
167
|
-
constructor(opts) {
|
|
168
|
-
super({
|
|
169
|
-
name: "ValidationException",
|
|
170
|
-
$fault: "client",
|
|
171
|
-
...opts,
|
|
172
|
-
});
|
|
173
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
class ResourceNotFoundException extends OpenSearchServerlessServiceException {
|
|
177
|
-
name = "ResourceNotFoundException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
constructor(opts) {
|
|
180
|
-
super({
|
|
181
|
-
name: "ResourceNotFoundException",
|
|
182
|
-
$fault: "client",
|
|
183
|
-
...opts,
|
|
184
|
-
});
|
|
185
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
186
|
-
}
|
|
187
|
-
}
|
|
188
|
-
class OcuLimitExceededException extends OpenSearchServerlessServiceException {
|
|
189
|
-
name = "OcuLimitExceededException";
|
|
190
|
-
$fault = "client";
|
|
191
|
-
constructor(opts) {
|
|
192
|
-
super({
|
|
193
|
-
name: "OcuLimitExceededException",
|
|
194
|
-
$fault: "client",
|
|
195
|
-
...opts,
|
|
196
|
-
});
|
|
197
|
-
Object.setPrototypeOf(this, OcuLimitExceededException.prototype);
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
const _APD = "AccessPolicyDetail";
|
|
202
|
-
const _APS = "AccessPolicyStats";
|
|
203
|
-
const _APSc = "AccessPolicySummary";
|
|
204
|
-
const _APScc = "AccessPolicySummaries";
|
|
205
|
-
const _ASD = "AccountSettingsDetail";
|
|
206
|
-
const _BGC = "BatchGetCollection";
|
|
207
|
-
const _BGCG = "BatchGetCollectionGroup";
|
|
208
|
-
const _BGCGR = "BatchGetCollectionGroupRequest";
|
|
209
|
-
const _BGCGRa = "BatchGetCollectionGroupResponse";
|
|
210
|
-
const _BGCR = "BatchGetCollectionRequest";
|
|
211
|
-
const _BGCRa = "BatchGetCollectionResponse";
|
|
212
|
-
const _BGELP = "BatchGetEffectiveLifecyclePolicy";
|
|
213
|
-
const _BGELPR = "BatchGetEffectiveLifecyclePolicyRequest";
|
|
214
|
-
const _BGELPRa = "BatchGetEffectiveLifecyclePolicyResponse";
|
|
215
|
-
const _BGLP = "BatchGetLifecyclePolicy";
|
|
216
|
-
const _BGLPR = "BatchGetLifecyclePolicyRequest";
|
|
217
|
-
const _BGLPRa = "BatchGetLifecyclePolicyResponse";
|
|
218
|
-
const _BGVE = "BatchGetVpcEndpoint";
|
|
219
|
-
const _BGVER = "BatchGetVpcEndpointRequest";
|
|
220
|
-
const _BGVERa = "BatchGetVpcEndpointResponse";
|
|
221
|
-
const _CAP = "CreateAccessPolicy";
|
|
222
|
-
const _CAPR = "CreateAccessPolicyRequest";
|
|
223
|
-
const _CAPRr = "CreateAccessPolicyResponse";
|
|
224
|
-
const _CC = "CreateCollection";
|
|
225
|
-
const _CCD = "CreateCollectionDetail";
|
|
226
|
-
const _CCG = "CreateCollectionGroup";
|
|
227
|
-
const _CCGD = "CreateCollectionGroupDetail";
|
|
228
|
-
const _CCGR = "CreateCollectionGroupRequest";
|
|
229
|
-
const _CCGRr = "CreateCollectionGroupResponse";
|
|
230
|
-
const _CCR = "CreateCollectionRequest";
|
|
231
|
-
const _CCRr = "CreateCollectionResponse";
|
|
232
|
-
const _CD = "CollectionDetail";
|
|
233
|
-
const _CDo = "CollectionDetails";
|
|
234
|
-
const _CE = "ConflictException";
|
|
235
|
-
const _CED = "CollectionErrorDetail";
|
|
236
|
-
const _CEDo = "CollectionErrorDetails";
|
|
237
|
-
const _CF = "CollectionFilters";
|
|
238
|
-
const _CGCL = "CollectionGroupCapacityLimits";
|
|
239
|
-
const _CGD = "CollectionGroupDetail";
|
|
240
|
-
const _CGDo = "CollectionGroupDetails";
|
|
241
|
-
const _CGED = "CollectionGroupErrorDetail";
|
|
242
|
-
const _CGEDo = "CollectionGroupErrorDetails";
|
|
243
|
-
const _CGS = "CollectionGroupSummary";
|
|
244
|
-
const _CGSo = "CollectionGroupSummaries";
|
|
245
|
-
const _CI = "CreateIndex";
|
|
246
|
-
const _CIICCO = "CreateIamIdentityCenterConfigOptions";
|
|
247
|
-
const _CIR = "CreateIndexRequest";
|
|
248
|
-
const _CIRr = "CreateIndexResponse";
|
|
249
|
-
const _CL = "CapacityLimits";
|
|
250
|
-
const _CLP = "CreateLifecyclePolicy";
|
|
251
|
-
const _CLPR = "CreateLifecyclePolicyRequest";
|
|
252
|
-
const _CLPRr = "CreateLifecyclePolicyResponse";
|
|
253
|
-
const _CS = "CollectionSummary";
|
|
254
|
-
const _CSC = "CreateSecurityConfig";
|
|
255
|
-
const _CSCR = "CreateSecurityConfigRequest";
|
|
256
|
-
const _CSCRr = "CreateSecurityConfigResponse";
|
|
257
|
-
const _CSP = "CreateSecurityPolicy";
|
|
258
|
-
const _CSPR = "CreateSecurityPolicyRequest";
|
|
259
|
-
const _CSPRr = "CreateSecurityPolicyResponse";
|
|
260
|
-
const _CSo = "CollectionSummaries";
|
|
261
|
-
const _CVE = "CreateVpcEndpoint";
|
|
262
|
-
const _CVED = "CreateVpcEndpointDetail";
|
|
263
|
-
const _CVER = "CreateVpcEndpointRequest";
|
|
264
|
-
const _CVERr = "CreateVpcEndpointResponse";
|
|
265
|
-
const _DAP = "DeleteAccessPolicy";
|
|
266
|
-
const _DAPR = "DeleteAccessPolicyRequest";
|
|
267
|
-
const _DAPRe = "DeleteAccessPolicyResponse";
|
|
268
|
-
const _DC = "DeleteCollection";
|
|
269
|
-
const _DCD = "DeleteCollectionDetail";
|
|
270
|
-
const _DCG = "DeleteCollectionGroup";
|
|
271
|
-
const _DCGR = "DeleteCollectionGroupRequest";
|
|
272
|
-
const _DCGRe = "DeleteCollectionGroupResponse";
|
|
273
|
-
const _DCR = "DeleteCollectionRequest";
|
|
274
|
-
const _DCRe = "DeleteCollectionResponse";
|
|
275
|
-
const _DI = "DeleteIndex";
|
|
276
|
-
const _DIR = "DeleteIndexRequest";
|
|
277
|
-
const _DIRe = "DeleteIndexResponse";
|
|
278
|
-
const _DLP = "DeleteLifecyclePolicy";
|
|
279
|
-
const _DLPR = "DeleteLifecyclePolicyRequest";
|
|
280
|
-
const _DLPRe = "DeleteLifecyclePolicyResponse";
|
|
281
|
-
const _DPC = "DataPolicyCount";
|
|
282
|
-
const _DSC = "DeleteSecurityConfig";
|
|
283
|
-
const _DSCR = "DeleteSecurityConfigRequest";
|
|
284
|
-
const _DSCRe = "DeleteSecurityConfigResponse";
|
|
285
|
-
const _DSP = "DeleteSecurityPolicy";
|
|
286
|
-
const _DSPR = "DeleteSecurityPolicyRequest";
|
|
287
|
-
const _DSPRe = "DeleteSecurityPolicyResponse";
|
|
288
|
-
const _DVE = "DeleteVpcEndpoint";
|
|
289
|
-
const _DVED = "DeleteVpcEndpointDetail";
|
|
290
|
-
const _DVER = "DeleteVpcEndpointRequest";
|
|
291
|
-
const _DVERe = "DeleteVpcEndpointResponse";
|
|
292
|
-
const _EC = "EncryptionConfig";
|
|
293
|
-
const _ELPD = "EffectiveLifecyclePolicyDetail";
|
|
294
|
-
const _ELPDf = "EffectiveLifecyclePolicyDetails";
|
|
295
|
-
const _ELPED = "EffectiveLifecyclePolicyErrorDetail";
|
|
296
|
-
const _ELPEDf = "EffectiveLifecyclePolicyErrorDetails";
|
|
297
|
-
const _EPC = "EncryptionPolicyCount";
|
|
298
|
-
const _FE = "FipsEndpoints";
|
|
299
|
-
const _GAP = "GetAccessPolicy";
|
|
300
|
-
const _GAPR = "GetAccessPolicyRequest";
|
|
301
|
-
const _GAPRe = "GetAccessPolicyResponse";
|
|
302
|
-
const _GAS = "GetAccountSettings";
|
|
303
|
-
const _GASR = "GetAccountSettingsRequest";
|
|
304
|
-
const _GASRe = "GetAccountSettingsResponse";
|
|
305
|
-
const _GI = "GetIndex";
|
|
306
|
-
const _GIR = "GetIndexRequest";
|
|
307
|
-
const _GIRe = "GetIndexResponse";
|
|
308
|
-
const _GPS = "GetPoliciesStats";
|
|
309
|
-
const _GPSR = "GetPoliciesStatsRequest";
|
|
310
|
-
const _GPSRe = "GetPoliciesStatsResponse";
|
|
311
|
-
const _GSC = "GetSecurityConfig";
|
|
312
|
-
const _GSCR = "GetSecurityConfigRequest";
|
|
313
|
-
const _GSCRe = "GetSecurityConfigResponse";
|
|
314
|
-
const _GSP = "GetSecurityPolicy";
|
|
315
|
-
const _GSPR = "GetSecurityPolicyRequest";
|
|
316
|
-
const _GSPRe = "GetSecurityPolicyResponse";
|
|
317
|
-
const _IFCO = "IamFederationConfigOptions";
|
|
318
|
-
const _IICCO = "IamIdentityCenterConfigOptions";
|
|
319
|
-
const _ISE = "InternalServerException";
|
|
320
|
-
const _LAP = "ListAccessPolicies";
|
|
321
|
-
const _LAPR = "ListAccessPoliciesRequest";
|
|
322
|
-
const _LAPRi = "ListAccessPoliciesResponse";
|
|
323
|
-
const _LC = "ListCollections";
|
|
324
|
-
const _LCG = "ListCollectionGroups";
|
|
325
|
-
const _LCGR = "ListCollectionGroupsRequest";
|
|
326
|
-
const _LCGRi = "ListCollectionGroupsResponse";
|
|
327
|
-
const _LCR = "ListCollectionsRequest";
|
|
328
|
-
const _LCRi = "ListCollectionsResponse";
|
|
329
|
-
const _LLP = "ListLifecyclePolicies";
|
|
330
|
-
const _LLPR = "ListLifecyclePoliciesRequest";
|
|
331
|
-
const _LLPRi = "ListLifecyclePoliciesResponse";
|
|
332
|
-
const _LPD = "LifecyclePolicyDetail";
|
|
333
|
-
const _LPDi = "LifecyclePolicyDetails";
|
|
334
|
-
const _LPED = "LifecyclePolicyErrorDetail";
|
|
335
|
-
const _LPEDi = "LifecyclePolicyErrorDetails";
|
|
336
|
-
const _LPI = "LifecyclePolicyIdentifier";
|
|
337
|
-
const _LPIi = "LifecyclePolicyIdentifiers";
|
|
338
|
-
const _LPRI = "LifecyclePolicyResourceIdentifier";
|
|
339
|
-
const _LPRIi = "LifecyclePolicyResourceIdentifiers";
|
|
340
|
-
const _LPS = "LifecyclePolicyStats";
|
|
341
|
-
const _LPSi = "LifecyclePolicySummary";
|
|
342
|
-
const _LPSif = "LifecyclePolicySummaries";
|
|
343
|
-
const _LSC = "ListSecurityConfigs";
|
|
344
|
-
const _LSCR = "ListSecurityConfigsRequest";
|
|
345
|
-
const _LSCRi = "ListSecurityConfigsResponse";
|
|
346
|
-
const _LSP = "ListSecurityPolicies";
|
|
347
|
-
const _LSPR = "ListSecurityPoliciesRequest";
|
|
348
|
-
const _LSPRi = "ListSecurityPoliciesResponse";
|
|
349
|
-
const _LTFR = "ListTagsForResource";
|
|
350
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
351
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
352
|
-
const _LVE = "ListVpcEndpoints";
|
|
353
|
-
const _LVER = "ListVpcEndpointsRequest";
|
|
354
|
-
const _LVERi = "ListVpcEndpointsResponse";
|
|
355
|
-
const _NPC = "NetworkPolicyCount";
|
|
356
|
-
const _OLEE = "OcuLimitExceededException";
|
|
357
|
-
const _RNFE = "ResourceNotFoundException";
|
|
358
|
-
const _RPC = "RetentionPolicyCount";
|
|
359
|
-
const _SCC = "SamlConfigCount";
|
|
360
|
-
const _SCD = "SecurityConfigDetail";
|
|
361
|
-
const _SCO = "SamlConfigOptions";
|
|
362
|
-
const _SCS = "SecurityConfigStats";
|
|
363
|
-
const _SCSe = "SecurityConfigSummary";
|
|
364
|
-
const _SCSec = "SecurityConfigSummaries";
|
|
365
|
-
const _SPD = "SecurityPolicyDetail";
|
|
366
|
-
const _SPS = "SecurityPolicyStats";
|
|
367
|
-
const _SPSe = "SecurityPolicySummary";
|
|
368
|
-
const _SPSec = "SecurityPolicySummaries";
|
|
369
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
370
|
-
const _SVA = "ServerlessVectorAcceleration";
|
|
371
|
-
const _T = "Tag";
|
|
372
|
-
const _TPC = "TotalPolicyCount";
|
|
373
|
-
const _TR = "TagResource";
|
|
374
|
-
const _TRR = "TagResourceRequest";
|
|
375
|
-
const _TRRa = "TagResourceResponse";
|
|
376
|
-
const _Ta = "Tags";
|
|
377
|
-
const _UAP = "UpdateAccessPolicy";
|
|
378
|
-
const _UAPR = "UpdateAccessPolicyRequest";
|
|
379
|
-
const _UAPRp = "UpdateAccessPolicyResponse";
|
|
380
|
-
const _UAS = "UpdateAccountSettings";
|
|
381
|
-
const _UASR = "UpdateAccountSettingsRequest";
|
|
382
|
-
const _UASRp = "UpdateAccountSettingsResponse";
|
|
383
|
-
const _UC = "UpdateCollection";
|
|
384
|
-
const _UCD = "UpdateCollectionDetail";
|
|
385
|
-
const _UCG = "UpdateCollectionGroup";
|
|
386
|
-
const _UCGD = "UpdateCollectionGroupDetail";
|
|
387
|
-
const _UCGR = "UpdateCollectionGroupRequest";
|
|
388
|
-
const _UCGRp = "UpdateCollectionGroupResponse";
|
|
389
|
-
const _UCR = "UpdateCollectionRequest";
|
|
390
|
-
const _UCRp = "UpdateCollectionResponse";
|
|
391
|
-
const _UI = "UpdateIndex";
|
|
392
|
-
const _UIICCO = "UpdateIamIdentityCenterConfigOptions";
|
|
393
|
-
const _UIR = "UpdateIndexRequest";
|
|
394
|
-
const _UIRp = "UpdateIndexResponse";
|
|
395
|
-
const _ULP = "UpdateLifecyclePolicy";
|
|
396
|
-
const _ULPR = "UpdateLifecyclePolicyRequest";
|
|
397
|
-
const _ULPRp = "UpdateLifecyclePolicyResponse";
|
|
398
|
-
const _UR = "UntagResource";
|
|
399
|
-
const _URR = "UntagResourceRequest";
|
|
400
|
-
const _URRn = "UntagResourceResponse";
|
|
401
|
-
const _USC = "UpdateSecurityConfig";
|
|
402
|
-
const _USCR = "UpdateSecurityConfigRequest";
|
|
403
|
-
const _USCRp = "UpdateSecurityConfigResponse";
|
|
404
|
-
const _USP = "UpdateSecurityPolicy";
|
|
405
|
-
const _USPR = "UpdateSecurityPolicyRequest";
|
|
406
|
-
const _USPRp = "UpdateSecurityPolicyResponse";
|
|
407
|
-
const _UVE = "UpdateVpcEndpoint";
|
|
408
|
-
const _UVED = "UpdateVpcEndpointDetail";
|
|
409
|
-
const _UVER = "UpdateVpcEndpointRequest";
|
|
410
|
-
const _UVERp = "UpdateVpcEndpointResponse";
|
|
411
|
-
const _VE = "ValidationException";
|
|
412
|
-
const _VED = "VpcEndpointDetail";
|
|
413
|
-
const _VEDp = "VpcEndpointDetails";
|
|
414
|
-
const _VEED = "VpcEndpointErrorDetail";
|
|
415
|
-
const _VEEDp = "VpcEndpointErrorDetails";
|
|
416
|
-
const _VEF = "VpcEndpointFilters";
|
|
417
|
-
const _VES = "VpcEndpointSummary";
|
|
418
|
-
const _VESp = "VpcEndpointSummaries";
|
|
419
|
-
const _VO = "VectorOptions";
|
|
420
|
-
const _a = "arn";
|
|
421
|
-
const _aA = "applicationArn";
|
|
422
|
-
const _aD = "applicationDescription";
|
|
423
|
-
const _aN = "applicationName";
|
|
424
|
-
const _aPD = "accessPolicyDetail";
|
|
425
|
-
const _aPS = "accessPolicySummaries";
|
|
426
|
-
const _aSD = "accountSettingsDetail";
|
|
427
|
-
const _aSGI = "addSecurityGroupIds";
|
|
428
|
-
const _aSI = "addSubnetIds";
|
|
429
|
-
const _aWSOK = "aWSOwnedKey";
|
|
430
|
-
const _c = "client";
|
|
431
|
-
const _cCD = "createCollectionDetail";
|
|
432
|
-
const _cCGD = "createCollectionGroupDetail";
|
|
433
|
-
const _cD = "createdDate";
|
|
434
|
-
const _cDo = "collectionDetails";
|
|
435
|
-
const _cE = "collectionEndpoint";
|
|
436
|
-
const _cED = "collectionErrorDetails";
|
|
437
|
-
const _cF = "collectionFilters";
|
|
438
|
-
const _cGD = "collectionGroupDetails";
|
|
439
|
-
const _cGED = "collectionGroupErrorDetails";
|
|
440
|
-
const _cGN = "collectionGroupName";
|
|
441
|
-
const _cGS = "collectionGroupSummaries";
|
|
442
|
-
const _cL = "capacityLimits";
|
|
443
|
-
const _cS = "collectionSummaries";
|
|
444
|
-
const _cT = "clientToken";
|
|
445
|
-
const _cV = "configVersion";
|
|
446
|
-
const _cVED = "createVpcEndpointDetail";
|
|
447
|
-
const _d = "description";
|
|
448
|
-
const _dCD = "deleteCollectionDetail";
|
|
449
|
-
const _dE = "dashboardEndpoint";
|
|
450
|
-
const _dVED = "deleteVpcEndpointDetail";
|
|
451
|
-
const _e = "error";
|
|
452
|
-
const _eC = "errorCode";
|
|
453
|
-
const _eCn = "encryptionConfig";
|
|
454
|
-
const _eLPD = "effectiveLifecyclePolicyDetails";
|
|
455
|
-
const _eLPED = "effectiveLifecyclePolicyErrorDetails";
|
|
456
|
-
const _eM = "errorMessage";
|
|
457
|
-
const _fC = "failureCode";
|
|
458
|
-
const _fE = "fipsEndpoints";
|
|
459
|
-
const _fM = "failureMessage";
|
|
460
|
-
const _gA = "groupAttribute";
|
|
461
|
-
const _hE = "httpError";
|
|
462
|
-
const _i = "ids";
|
|
463
|
-
const _iA = "instanceArn";
|
|
464
|
-
const _iFO = "iamFederationOptions";
|
|
465
|
-
const _iICO = "iamIdentityCenterOptions";
|
|
466
|
-
const _iICOU = "iamIdentityCenterOptionsUpdates";
|
|
467
|
-
const _iN = "indexName";
|
|
468
|
-
const _iS = "indexSchema";
|
|
469
|
-
const _id = "identifiers";
|
|
470
|
-
const _id_ = "id";
|
|
471
|
-
const _k = "key";
|
|
472
|
-
const _kKA = "kmsKeyArn";
|
|
473
|
-
const _lMD = "lastModifiedDate";
|
|
474
|
-
const _lPD = "lifecyclePolicyDetails";
|
|
475
|
-
const _lPDi = "lifecyclePolicyDetail";
|
|
476
|
-
const _lPED = "lifecyclePolicyErrorDetails";
|
|
477
|
-
const _lPS = "lifecyclePolicySummaries";
|
|
478
|
-
const _m = "message";
|
|
479
|
-
const _mICIOCU = "maxIndexingCapacityInOCU";
|
|
480
|
-
const _mICIOCUi = "minIndexingCapacityInOCU";
|
|
481
|
-
const _mR = "maxResults";
|
|
482
|
-
const _mSCIOCU = "maxSearchCapacityInOCU";
|
|
483
|
-
const _mSCIOCUi = "minSearchCapacityInOCU";
|
|
484
|
-
const _me = "metadata";
|
|
485
|
-
const _n = "name";
|
|
486
|
-
const _nMRP = "noMinRetentionPeriod";
|
|
487
|
-
const _nOC = "numberOfCollections";
|
|
488
|
-
const _nT = "nextToken";
|
|
489
|
-
const _na = "names";
|
|
490
|
-
const _oSSEI = "openSearchServerlessEntityId";
|
|
491
|
-
const _p = "policy";
|
|
492
|
-
const _pN = "policyName";
|
|
493
|
-
const _pV = "policyVersion";
|
|
494
|
-
const _qC = "quotaCode";
|
|
495
|
-
const _r = "resource";
|
|
496
|
-
const _rA = "resourceArn";
|
|
497
|
-
const _rI = "resourceIdentifiers";
|
|
498
|
-
const _rIe = "resourceId";
|
|
499
|
-
const _rP = "retentionPeriod";
|
|
500
|
-
const _rSGI = "removeSecurityGroupIds";
|
|
501
|
-
const _rSI = "removeSubnetIds";
|
|
502
|
-
const _rT = "resourceType";
|
|
503
|
-
const _re = "resources";
|
|
504
|
-
const _s = "status";
|
|
505
|
-
const _sC = "serviceCode";
|
|
506
|
-
const _sCD = "securityConfigDetail";
|
|
507
|
-
const _sCS = "securityConfigSummaries";
|
|
508
|
-
const _sGI = "securityGroupIds";
|
|
509
|
-
const _sI = "subnetIds";
|
|
510
|
-
const _sO = "samlOptions";
|
|
511
|
-
const _sPD = "securityPolicyDetail";
|
|
512
|
-
const _sPS = "securityPolicySummaries";
|
|
513
|
-
const _sR = "standbyReplicas";
|
|
514
|
-
const _sT = "sessionTimeout";
|
|
515
|
-
const _se = "server";
|
|
516
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.opensearchserverless";
|
|
517
|
-
const _t = "type";
|
|
518
|
-
const _tK = "tagKeys";
|
|
519
|
-
const _ta = "tags";
|
|
520
|
-
const _uA = "userAttribute";
|
|
521
|
-
const _uCD = "updateCollectionDetail";
|
|
522
|
-
const _uCGD = "updateCollectionGroupDetail";
|
|
523
|
-
const _v = "value";
|
|
524
|
-
const _vED = "vpcEndpointDetails";
|
|
525
|
-
const _vEED = "vpcEndpointErrorDetails";
|
|
526
|
-
const _vEF = "vpcEndpointFilters";
|
|
527
|
-
const _vES = "vpcEndpointSummaries";
|
|
528
|
-
const _vI = "vpcId";
|
|
529
|
-
const _vO = "vectorOptions";
|
|
530
|
-
const n0 = "com.amazonaws.opensearchserverless";
|
|
531
|
-
var AccessPolicyDetail$ = [3, n0, _APD,
|
|
532
|
-
0,
|
|
533
|
-
[_t, _n, _pV, _d, _p, _cD, _lMD],
|
|
534
|
-
[0, 0, 0, 0, 15, 1, 1]
|
|
535
|
-
];
|
|
536
|
-
var AccessPolicyStats$ = [3, n0, _APS,
|
|
537
|
-
0,
|
|
538
|
-
[_DPC],
|
|
539
|
-
[1]
|
|
540
|
-
];
|
|
541
|
-
var AccessPolicySummary$ = [3, n0, _APSc,
|
|
542
|
-
0,
|
|
543
|
-
[_t, _n, _pV, _d, _cD, _lMD],
|
|
544
|
-
[0, 0, 0, 0, 1, 1]
|
|
545
|
-
];
|
|
546
|
-
var AccountSettingsDetail$ = [3, n0, _ASD,
|
|
547
|
-
0,
|
|
548
|
-
[_cL],
|
|
549
|
-
[() => CapacityLimits$]
|
|
550
|
-
];
|
|
551
|
-
var BatchGetCollectionGroupRequest$ = [3, n0, _BGCGR,
|
|
552
|
-
0,
|
|
553
|
-
[_i, _na],
|
|
554
|
-
[64 | 0, 64 | 0]
|
|
555
|
-
];
|
|
556
|
-
var BatchGetCollectionGroupResponse$ = [3, n0, _BGCGRa,
|
|
557
|
-
0,
|
|
558
|
-
[_cGD, _cGED],
|
|
559
|
-
[() => CollectionGroupDetails, () => CollectionGroupErrorDetails]
|
|
560
|
-
];
|
|
561
|
-
var BatchGetCollectionRequest$ = [3, n0, _BGCR,
|
|
562
|
-
0,
|
|
563
|
-
[_i, _na],
|
|
564
|
-
[64 | 0, 64 | 0]
|
|
565
|
-
];
|
|
566
|
-
var BatchGetCollectionResponse$ = [3, n0, _BGCRa,
|
|
567
|
-
0,
|
|
568
|
-
[_cDo, _cED],
|
|
569
|
-
[() => CollectionDetails, () => CollectionErrorDetails]
|
|
570
|
-
];
|
|
571
|
-
var BatchGetEffectiveLifecyclePolicyRequest$ = [3, n0, _BGELPR,
|
|
572
|
-
0,
|
|
573
|
-
[_rI],
|
|
574
|
-
[() => LifecyclePolicyResourceIdentifiers], 1
|
|
575
|
-
];
|
|
576
|
-
var BatchGetEffectiveLifecyclePolicyResponse$ = [3, n0, _BGELPRa,
|
|
577
|
-
0,
|
|
578
|
-
[_eLPD, _eLPED],
|
|
579
|
-
[() => EffectiveLifecyclePolicyDetails, () => EffectiveLifecyclePolicyErrorDetails]
|
|
580
|
-
];
|
|
581
|
-
var BatchGetLifecyclePolicyRequest$ = [3, n0, _BGLPR,
|
|
582
|
-
0,
|
|
583
|
-
[_id],
|
|
584
|
-
[() => LifecyclePolicyIdentifiers], 1
|
|
585
|
-
];
|
|
586
|
-
var BatchGetLifecyclePolicyResponse$ = [3, n0, _BGLPRa,
|
|
587
|
-
0,
|
|
588
|
-
[_lPD, _lPED],
|
|
589
|
-
[() => LifecyclePolicyDetails, () => LifecyclePolicyErrorDetails]
|
|
590
|
-
];
|
|
591
|
-
var BatchGetVpcEndpointRequest$ = [3, n0, _BGVER,
|
|
592
|
-
0,
|
|
593
|
-
[_i],
|
|
594
|
-
[64 | 0], 1
|
|
595
|
-
];
|
|
596
|
-
var BatchGetVpcEndpointResponse$ = [3, n0, _BGVERa,
|
|
597
|
-
0,
|
|
598
|
-
[_vED, _vEED],
|
|
599
|
-
[() => VpcEndpointDetails, () => VpcEndpointErrorDetails]
|
|
600
|
-
];
|
|
601
|
-
var CapacityLimits$ = [3, n0, _CL,
|
|
602
|
-
0,
|
|
603
|
-
[_mICIOCU, _mSCIOCU],
|
|
604
|
-
[1, 1]
|
|
605
|
-
];
|
|
606
|
-
var CollectionDetail$ = [3, n0, _CD,
|
|
607
|
-
0,
|
|
608
|
-
[_id_, _n, _s, _t, _d, _a, _kKA, _sR, _vO, _cD, _lMD, _cE, _dE, _fE, _fC, _fM, _cGN],
|
|
609
|
-
[0, 0, 0, 0, 0, 0, 0, 0, () => VectorOptions$, 1, 1, 0, 0, () => FipsEndpoints$, 0, 0, 0]
|
|
610
|
-
];
|
|
611
|
-
var CollectionErrorDetail$ = [3, n0, _CED,
|
|
612
|
-
0,
|
|
613
|
-
[_id_, _n, _eM, _eC],
|
|
614
|
-
[0, 0, 0, 0]
|
|
615
|
-
];
|
|
616
|
-
var CollectionFilters$ = [3, n0, _CF,
|
|
617
|
-
0,
|
|
618
|
-
[_n, _s, _cGN],
|
|
619
|
-
[0, 0, 0]
|
|
620
|
-
];
|
|
621
|
-
var CollectionGroupCapacityLimits$ = [3, n0, _CGCL,
|
|
622
|
-
0,
|
|
623
|
-
[_mICIOCU, _mSCIOCU, _mICIOCUi, _mSCIOCUi],
|
|
624
|
-
[1, 1, 1, 1]
|
|
625
|
-
];
|
|
626
|
-
var CollectionGroupDetail$ = [3, n0, _CGD,
|
|
627
|
-
0,
|
|
628
|
-
[_id_, _a, _n, _sR, _d, _ta, _cD, _cL, _nOC],
|
|
629
|
-
[0, 0, 0, 0, 0, () => Tags, 1, () => CollectionGroupCapacityLimits$, 1]
|
|
630
|
-
];
|
|
631
|
-
var CollectionGroupErrorDetail$ = [3, n0, _CGED,
|
|
632
|
-
0,
|
|
633
|
-
[_id_, _n, _eM, _eC],
|
|
634
|
-
[0, 0, 0, 0]
|
|
635
|
-
];
|
|
636
|
-
var CollectionGroupSummary$ = [3, n0, _CGS,
|
|
637
|
-
0,
|
|
638
|
-
[_id_, _a, _n, _nOC, _cD, _cL],
|
|
639
|
-
[0, 0, 0, 1, 1, () => CollectionGroupCapacityLimits$]
|
|
640
|
-
];
|
|
641
|
-
var CollectionSummary$ = [3, n0, _CS,
|
|
642
|
-
0,
|
|
643
|
-
[_id_, _n, _s, _a, _kKA, _cGN],
|
|
644
|
-
[0, 0, 0, 0, 0, 0]
|
|
645
|
-
];
|
|
646
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
647
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
648
|
-
[_m],
|
|
649
|
-
[0]
|
|
650
|
-
];
|
|
651
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
652
|
-
var CreateAccessPolicyRequest$ = [3, n0, _CAPR,
|
|
653
|
-
0,
|
|
654
|
-
[_t, _n, _p, _d, _cT],
|
|
655
|
-
[0, 0, 0, 0, [0, 4]], 3
|
|
656
|
-
];
|
|
657
|
-
var CreateAccessPolicyResponse$ = [3, n0, _CAPRr,
|
|
658
|
-
0,
|
|
659
|
-
[_aPD],
|
|
660
|
-
[() => AccessPolicyDetail$]
|
|
661
|
-
];
|
|
662
|
-
var CreateCollectionDetail$ = [3, n0, _CCD,
|
|
663
|
-
0,
|
|
664
|
-
[_id_, _n, _s, _t, _d, _a, _kKA, _sR, _vO, _cD, _lMD, _cGN],
|
|
665
|
-
[0, 0, 0, 0, 0, 0, 0, 0, () => VectorOptions$, 1, 1, 0]
|
|
666
|
-
];
|
|
667
|
-
var CreateCollectionGroupDetail$ = [3, n0, _CCGD,
|
|
668
|
-
0,
|
|
669
|
-
[_id_, _a, _n, _sR, _d, _ta, _cD, _cL],
|
|
670
|
-
[0, 0, 0, 0, 0, () => Tags, 1, () => CollectionGroupCapacityLimits$]
|
|
671
|
-
];
|
|
672
|
-
var CreateCollectionGroupRequest$ = [3, n0, _CCGR,
|
|
673
|
-
0,
|
|
674
|
-
[_n, _sR, _d, _ta, _cL, _cT],
|
|
675
|
-
[0, 0, 0, () => Tags, () => CollectionGroupCapacityLimits$, [0, 4]], 2
|
|
676
|
-
];
|
|
677
|
-
var CreateCollectionGroupResponse$ = [3, n0, _CCGRr,
|
|
678
|
-
0,
|
|
679
|
-
[_cCGD],
|
|
680
|
-
[() => CreateCollectionGroupDetail$]
|
|
681
|
-
];
|
|
682
|
-
var CreateCollectionRequest$ = [3, n0, _CCR,
|
|
683
|
-
0,
|
|
684
|
-
[_n, _t, _d, _ta, _sR, _vO, _cGN, _eCn, _cT],
|
|
685
|
-
[0, 0, 0, () => Tags, 0, () => VectorOptions$, 0, () => EncryptionConfig$, [0, 4]], 1
|
|
686
|
-
];
|
|
687
|
-
var CreateCollectionResponse$ = [3, n0, _CCRr,
|
|
688
|
-
0,
|
|
689
|
-
[_cCD],
|
|
690
|
-
[() => CreateCollectionDetail$]
|
|
691
|
-
];
|
|
692
|
-
var CreateIamIdentityCenterConfigOptions$ = [3, n0, _CIICCO,
|
|
693
|
-
0,
|
|
694
|
-
[_iA, _uA, _gA],
|
|
695
|
-
[0, 0, 0], 1
|
|
696
|
-
];
|
|
697
|
-
var CreateIndexRequest$ = [3, n0, _CIR,
|
|
698
|
-
0,
|
|
699
|
-
[_id_, _iN, _iS],
|
|
700
|
-
[0, 0, 15], 2
|
|
701
|
-
];
|
|
702
|
-
var CreateIndexResponse$ = [3, n0, _CIRr,
|
|
703
|
-
0,
|
|
704
|
-
[],
|
|
705
|
-
[]
|
|
706
|
-
];
|
|
707
|
-
var CreateLifecyclePolicyRequest$ = [3, n0, _CLPR,
|
|
708
|
-
0,
|
|
709
|
-
[_t, _n, _p, _d, _cT],
|
|
710
|
-
[0, 0, 0, 0, [0, 4]], 3
|
|
711
|
-
];
|
|
712
|
-
var CreateLifecyclePolicyResponse$ = [3, n0, _CLPRr,
|
|
713
|
-
0,
|
|
714
|
-
[_lPDi],
|
|
715
|
-
[() => LifecyclePolicyDetail$]
|
|
716
|
-
];
|
|
717
|
-
var CreateSecurityConfigRequest$ = [3, n0, _CSCR,
|
|
718
|
-
0,
|
|
719
|
-
[_t, _n, _d, _sO, _iICO, _iFO, _cT],
|
|
720
|
-
[0, 0, 0, () => SamlConfigOptions$, () => CreateIamIdentityCenterConfigOptions$, () => IamFederationConfigOptions$, [0, 4]], 2
|
|
721
|
-
];
|
|
722
|
-
var CreateSecurityConfigResponse$ = [3, n0, _CSCRr,
|
|
723
|
-
0,
|
|
724
|
-
[_sCD],
|
|
725
|
-
[() => SecurityConfigDetail$]
|
|
726
|
-
];
|
|
727
|
-
var CreateSecurityPolicyRequest$ = [3, n0, _CSPR,
|
|
728
|
-
0,
|
|
729
|
-
[_t, _n, _p, _d, _cT],
|
|
730
|
-
[0, 0, 0, 0, [0, 4]], 3
|
|
731
|
-
];
|
|
732
|
-
var CreateSecurityPolicyResponse$ = [3, n0, _CSPRr,
|
|
733
|
-
0,
|
|
734
|
-
[_sPD],
|
|
735
|
-
[() => SecurityPolicyDetail$]
|
|
736
|
-
];
|
|
737
|
-
var CreateVpcEndpointDetail$ = [3, n0, _CVED,
|
|
738
|
-
0,
|
|
739
|
-
[_id_, _n, _s],
|
|
740
|
-
[0, 0, 0]
|
|
741
|
-
];
|
|
742
|
-
var CreateVpcEndpointRequest$ = [3, n0, _CVER,
|
|
743
|
-
0,
|
|
744
|
-
[_n, _vI, _sI, _sGI, _cT],
|
|
745
|
-
[0, 0, 64 | 0, 64 | 0, [0, 4]], 3
|
|
746
|
-
];
|
|
747
|
-
var CreateVpcEndpointResponse$ = [3, n0, _CVERr,
|
|
748
|
-
0,
|
|
749
|
-
[_cVED],
|
|
750
|
-
[() => CreateVpcEndpointDetail$]
|
|
751
|
-
];
|
|
752
|
-
var DeleteAccessPolicyRequest$ = [3, n0, _DAPR,
|
|
753
|
-
0,
|
|
754
|
-
[_t, _n, _cT],
|
|
755
|
-
[0, 0, [0, 4]], 2
|
|
756
|
-
];
|
|
757
|
-
var DeleteAccessPolicyResponse$ = [3, n0, _DAPRe,
|
|
758
|
-
0,
|
|
759
|
-
[],
|
|
760
|
-
[]
|
|
761
|
-
];
|
|
762
|
-
var DeleteCollectionDetail$ = [3, n0, _DCD,
|
|
763
|
-
0,
|
|
764
|
-
[_id_, _n, _s],
|
|
765
|
-
[0, 0, 0]
|
|
766
|
-
];
|
|
767
|
-
var DeleteCollectionGroupRequest$ = [3, n0, _DCGR,
|
|
768
|
-
0,
|
|
769
|
-
[_id_, _cT],
|
|
770
|
-
[0, [0, 4]], 1
|
|
771
|
-
];
|
|
772
|
-
var DeleteCollectionGroupResponse$ = [3, n0, _DCGRe,
|
|
773
|
-
0,
|
|
774
|
-
[],
|
|
775
|
-
[]
|
|
776
|
-
];
|
|
777
|
-
var DeleteCollectionRequest$ = [3, n0, _DCR,
|
|
778
|
-
0,
|
|
779
|
-
[_id_, _cT],
|
|
780
|
-
[0, [0, 4]], 1
|
|
781
|
-
];
|
|
782
|
-
var DeleteCollectionResponse$ = [3, n0, _DCRe,
|
|
783
|
-
0,
|
|
784
|
-
[_dCD],
|
|
785
|
-
[() => DeleteCollectionDetail$]
|
|
786
|
-
];
|
|
787
|
-
var DeleteIndexRequest$ = [3, n0, _DIR,
|
|
788
|
-
0,
|
|
789
|
-
[_id_, _iN],
|
|
790
|
-
[0, 0], 2
|
|
791
|
-
];
|
|
792
|
-
var DeleteIndexResponse$ = [3, n0, _DIRe,
|
|
793
|
-
0,
|
|
794
|
-
[],
|
|
795
|
-
[]
|
|
796
|
-
];
|
|
797
|
-
var DeleteLifecyclePolicyRequest$ = [3, n0, _DLPR,
|
|
798
|
-
0,
|
|
799
|
-
[_t, _n, _cT],
|
|
800
|
-
[0, 0, [0, 4]], 2
|
|
801
|
-
];
|
|
802
|
-
var DeleteLifecyclePolicyResponse$ = [3, n0, _DLPRe,
|
|
803
|
-
0,
|
|
804
|
-
[],
|
|
805
|
-
[]
|
|
806
|
-
];
|
|
807
|
-
var DeleteSecurityConfigRequest$ = [3, n0, _DSCR,
|
|
808
|
-
0,
|
|
809
|
-
[_id_, _cT],
|
|
810
|
-
[0, [0, 4]], 1
|
|
811
|
-
];
|
|
812
|
-
var DeleteSecurityConfigResponse$ = [3, n0, _DSCRe,
|
|
813
|
-
0,
|
|
814
|
-
[],
|
|
815
|
-
[]
|
|
816
|
-
];
|
|
817
|
-
var DeleteSecurityPolicyRequest$ = [3, n0, _DSPR,
|
|
818
|
-
0,
|
|
819
|
-
[_t, _n, _cT],
|
|
820
|
-
[0, 0, [0, 4]], 2
|
|
821
|
-
];
|
|
822
|
-
var DeleteSecurityPolicyResponse$ = [3, n0, _DSPRe,
|
|
823
|
-
0,
|
|
824
|
-
[],
|
|
825
|
-
[]
|
|
826
|
-
];
|
|
827
|
-
var DeleteVpcEndpointDetail$ = [3, n0, _DVED,
|
|
828
|
-
0,
|
|
829
|
-
[_id_, _n, _s],
|
|
830
|
-
[0, 0, 0]
|
|
831
|
-
];
|
|
832
|
-
var DeleteVpcEndpointRequest$ = [3, n0, _DVER,
|
|
833
|
-
0,
|
|
834
|
-
[_id_, _cT],
|
|
835
|
-
[0, [0, 4]], 1
|
|
836
|
-
];
|
|
837
|
-
var DeleteVpcEndpointResponse$ = [3, n0, _DVERe,
|
|
838
|
-
0,
|
|
839
|
-
[_dVED],
|
|
840
|
-
[() => DeleteVpcEndpointDetail$]
|
|
841
|
-
];
|
|
842
|
-
var EffectiveLifecyclePolicyDetail$ = [3, n0, _ELPD,
|
|
843
|
-
0,
|
|
844
|
-
[_t, _r, _pN, _rT, _rP, _nMRP],
|
|
845
|
-
[0, 0, 0, 0, 0, 2]
|
|
846
|
-
];
|
|
847
|
-
var EffectiveLifecyclePolicyErrorDetail$ = [3, n0, _ELPED,
|
|
848
|
-
0,
|
|
849
|
-
[_t, _r, _eM, _eC],
|
|
850
|
-
[0, 0, 0, 0]
|
|
851
|
-
];
|
|
852
|
-
var EncryptionConfig$ = [3, n0, _EC,
|
|
853
|
-
0,
|
|
854
|
-
[_aWSOK, _kKA],
|
|
855
|
-
[2, 0]
|
|
856
|
-
];
|
|
857
|
-
var FipsEndpoints$ = [3, n0, _FE,
|
|
858
|
-
0,
|
|
859
|
-
[_cE, _dE],
|
|
860
|
-
[0, 0]
|
|
861
|
-
];
|
|
862
|
-
var GetAccessPolicyRequest$ = [3, n0, _GAPR,
|
|
863
|
-
0,
|
|
864
|
-
[_t, _n],
|
|
865
|
-
[0, 0], 2
|
|
866
|
-
];
|
|
867
|
-
var GetAccessPolicyResponse$ = [3, n0, _GAPRe,
|
|
868
|
-
0,
|
|
869
|
-
[_aPD],
|
|
870
|
-
[() => AccessPolicyDetail$]
|
|
871
|
-
];
|
|
872
|
-
var GetAccountSettingsRequest$ = [3, n0, _GASR,
|
|
873
|
-
0,
|
|
874
|
-
[],
|
|
875
|
-
[]
|
|
876
|
-
];
|
|
877
|
-
var GetAccountSettingsResponse$ = [3, n0, _GASRe,
|
|
878
|
-
0,
|
|
879
|
-
[_aSD],
|
|
880
|
-
[() => AccountSettingsDetail$]
|
|
881
|
-
];
|
|
882
|
-
var GetIndexRequest$ = [3, n0, _GIR,
|
|
883
|
-
0,
|
|
884
|
-
[_id_, _iN],
|
|
885
|
-
[0, 0], 2
|
|
886
|
-
];
|
|
887
|
-
var GetIndexResponse$ = [3, n0, _GIRe,
|
|
888
|
-
0,
|
|
889
|
-
[_iS],
|
|
890
|
-
[15]
|
|
891
|
-
];
|
|
892
|
-
var GetPoliciesStatsRequest$ = [3, n0, _GPSR,
|
|
893
|
-
0,
|
|
894
|
-
[],
|
|
895
|
-
[]
|
|
896
|
-
];
|
|
897
|
-
var GetPoliciesStatsResponse$ = [3, n0, _GPSRe,
|
|
898
|
-
0,
|
|
899
|
-
[_APS, _SPS, _SCS, _LPS, _TPC],
|
|
900
|
-
[() => AccessPolicyStats$, () => SecurityPolicyStats$, () => SecurityConfigStats$, () => LifecyclePolicyStats$, 1]
|
|
901
|
-
];
|
|
902
|
-
var GetSecurityConfigRequest$ = [3, n0, _GSCR,
|
|
903
|
-
0,
|
|
904
|
-
[_id_],
|
|
905
|
-
[0], 1
|
|
906
|
-
];
|
|
907
|
-
var GetSecurityConfigResponse$ = [3, n0, _GSCRe,
|
|
908
|
-
0,
|
|
909
|
-
[_sCD],
|
|
910
|
-
[() => SecurityConfigDetail$]
|
|
911
|
-
];
|
|
912
|
-
var GetSecurityPolicyRequest$ = [3, n0, _GSPR,
|
|
913
|
-
0,
|
|
914
|
-
[_t, _n],
|
|
915
|
-
[0, 0], 2
|
|
916
|
-
];
|
|
917
|
-
var GetSecurityPolicyResponse$ = [3, n0, _GSPRe,
|
|
918
|
-
0,
|
|
919
|
-
[_sPD],
|
|
920
|
-
[() => SecurityPolicyDetail$]
|
|
921
|
-
];
|
|
922
|
-
var IamFederationConfigOptions$ = [3, n0, _IFCO,
|
|
923
|
-
0,
|
|
924
|
-
[_gA, _uA],
|
|
925
|
-
[0, 0]
|
|
926
|
-
];
|
|
927
|
-
var IamIdentityCenterConfigOptions$ = [3, n0, _IICCO,
|
|
928
|
-
0,
|
|
929
|
-
[_iA, _aA, _aN, _aD, _uA, _gA],
|
|
930
|
-
[0, 0, 0, 0, 0, 0]
|
|
931
|
-
];
|
|
932
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
933
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
934
|
-
[_m],
|
|
935
|
-
[0]
|
|
936
|
-
];
|
|
937
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
938
|
-
var LifecyclePolicyDetail$ = [3, n0, _LPD,
|
|
939
|
-
0,
|
|
940
|
-
[_t, _n, _pV, _d, _p, _cD, _lMD],
|
|
941
|
-
[0, 0, 0, 0, 15, 1, 1]
|
|
942
|
-
];
|
|
943
|
-
var LifecyclePolicyErrorDetail$ = [3, n0, _LPED,
|
|
944
|
-
0,
|
|
945
|
-
[_t, _n, _eM, _eC],
|
|
946
|
-
[0, 0, 0, 0]
|
|
947
|
-
];
|
|
948
|
-
var LifecyclePolicyIdentifier$ = [3, n0, _LPI,
|
|
949
|
-
0,
|
|
950
|
-
[_t, _n],
|
|
951
|
-
[0, 0], 2
|
|
952
|
-
];
|
|
953
|
-
var LifecyclePolicyResourceIdentifier$ = [3, n0, _LPRI,
|
|
954
|
-
0,
|
|
955
|
-
[_t, _r],
|
|
956
|
-
[0, 0], 2
|
|
957
|
-
];
|
|
958
|
-
var LifecyclePolicyStats$ = [3, n0, _LPS,
|
|
959
|
-
0,
|
|
960
|
-
[_RPC],
|
|
961
|
-
[1]
|
|
962
|
-
];
|
|
963
|
-
var LifecyclePolicySummary$ = [3, n0, _LPSi,
|
|
964
|
-
0,
|
|
965
|
-
[_t, _n, _pV, _d, _cD, _lMD],
|
|
966
|
-
[0, 0, 0, 0, 1, 1]
|
|
967
|
-
];
|
|
968
|
-
var ListAccessPoliciesRequest$ = [3, n0, _LAPR,
|
|
969
|
-
0,
|
|
970
|
-
[_t, _r, _nT, _mR],
|
|
971
|
-
[0, 64 | 0, 0, 1], 1
|
|
972
|
-
];
|
|
973
|
-
var ListAccessPoliciesResponse$ = [3, n0, _LAPRi,
|
|
974
|
-
0,
|
|
975
|
-
[_aPS, _nT],
|
|
976
|
-
[() => AccessPolicySummaries, 0]
|
|
977
|
-
];
|
|
978
|
-
var ListCollectionGroupsRequest$ = [3, n0, _LCGR,
|
|
979
|
-
0,
|
|
980
|
-
[_nT, _mR],
|
|
981
|
-
[0, 1]
|
|
982
|
-
];
|
|
983
|
-
var ListCollectionGroupsResponse$ = [3, n0, _LCGRi,
|
|
984
|
-
0,
|
|
985
|
-
[_cGS, _nT],
|
|
986
|
-
[() => CollectionGroupSummaries, 0]
|
|
987
|
-
];
|
|
988
|
-
var ListCollectionsRequest$ = [3, n0, _LCR,
|
|
989
|
-
0,
|
|
990
|
-
[_cF, _nT, _mR],
|
|
991
|
-
[() => CollectionFilters$, 0, 1]
|
|
992
|
-
];
|
|
993
|
-
var ListCollectionsResponse$ = [3, n0, _LCRi,
|
|
994
|
-
0,
|
|
995
|
-
[_cS, _nT],
|
|
996
|
-
[() => CollectionSummaries, 0]
|
|
997
|
-
];
|
|
998
|
-
var ListLifecyclePoliciesRequest$ = [3, n0, _LLPR,
|
|
999
|
-
0,
|
|
1000
|
-
[_t, _re, _nT, _mR],
|
|
1001
|
-
[0, 64 | 0, 0, 1], 1
|
|
1002
|
-
];
|
|
1003
|
-
var ListLifecyclePoliciesResponse$ = [3, n0, _LLPRi,
|
|
1004
|
-
0,
|
|
1005
|
-
[_lPS, _nT],
|
|
1006
|
-
[() => LifecyclePolicySummaries, 0]
|
|
1007
|
-
];
|
|
1008
|
-
var ListSecurityConfigsRequest$ = [3, n0, _LSCR,
|
|
1009
|
-
0,
|
|
1010
|
-
[_t, _nT, _mR],
|
|
1011
|
-
[0, 0, 1], 1
|
|
1012
|
-
];
|
|
1013
|
-
var ListSecurityConfigsResponse$ = [3, n0, _LSCRi,
|
|
1014
|
-
0,
|
|
1015
|
-
[_sCS, _nT],
|
|
1016
|
-
[() => SecurityConfigSummaries, 0]
|
|
1017
|
-
];
|
|
1018
|
-
var ListSecurityPoliciesRequest$ = [3, n0, _LSPR,
|
|
1019
|
-
0,
|
|
1020
|
-
[_t, _r, _nT, _mR],
|
|
1021
|
-
[0, 64 | 0, 0, 1], 1
|
|
1022
|
-
];
|
|
1023
|
-
var ListSecurityPoliciesResponse$ = [3, n0, _LSPRi,
|
|
1024
|
-
0,
|
|
1025
|
-
[_sPS, _nT],
|
|
1026
|
-
[() => SecurityPolicySummaries, 0]
|
|
1027
|
-
];
|
|
1028
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1029
|
-
0,
|
|
1030
|
-
[_rA],
|
|
1031
|
-
[0], 1
|
|
1032
|
-
];
|
|
1033
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1034
|
-
0,
|
|
1035
|
-
[_ta],
|
|
1036
|
-
[() => Tags]
|
|
1037
|
-
];
|
|
1038
|
-
var ListVpcEndpointsRequest$ = [3, n0, _LVER,
|
|
1039
|
-
0,
|
|
1040
|
-
[_vEF, _nT, _mR],
|
|
1041
|
-
[() => VpcEndpointFilters$, 0, 1]
|
|
1042
|
-
];
|
|
1043
|
-
var ListVpcEndpointsResponse$ = [3, n0, _LVERi,
|
|
1044
|
-
0,
|
|
1045
|
-
[_vES, _nT],
|
|
1046
|
-
[() => VpcEndpointSummaries, 0]
|
|
1047
|
-
];
|
|
1048
|
-
var OcuLimitExceededException$ = [-3, n0, _OLEE,
|
|
1049
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1050
|
-
[_m],
|
|
1051
|
-
[0], 1
|
|
1052
|
-
];
|
|
1053
|
-
schema.TypeRegistry.for(n0).registerError(OcuLimitExceededException$, OcuLimitExceededException);
|
|
1054
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1055
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1056
|
-
[_m],
|
|
1057
|
-
[0]
|
|
1058
|
-
];
|
|
1059
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1060
|
-
var SamlConfigOptions$ = [3, n0, _SCO,
|
|
1061
|
-
0,
|
|
1062
|
-
[_me, _uA, _gA, _oSSEI, _sT],
|
|
1063
|
-
[0, 0, 0, 0, 1], 1
|
|
1064
|
-
];
|
|
1065
|
-
var SecurityConfigDetail$ = [3, n0, _SCD,
|
|
1066
|
-
0,
|
|
1067
|
-
[_id_, _t, _cV, _d, _sO, _iICO, _iFO, _cD, _lMD],
|
|
1068
|
-
[0, 0, 0, 0, () => SamlConfigOptions$, () => IamIdentityCenterConfigOptions$, () => IamFederationConfigOptions$, 1, 1]
|
|
1069
|
-
];
|
|
1070
|
-
var SecurityConfigStats$ = [3, n0, _SCS,
|
|
1071
|
-
0,
|
|
1072
|
-
[_SCC],
|
|
1073
|
-
[1]
|
|
1074
|
-
];
|
|
1075
|
-
var SecurityConfigSummary$ = [3, n0, _SCSe,
|
|
1076
|
-
0,
|
|
1077
|
-
[_id_, _t, _cV, _d, _cD, _lMD],
|
|
1078
|
-
[0, 0, 0, 0, 1, 1]
|
|
1079
|
-
];
|
|
1080
|
-
var SecurityPolicyDetail$ = [3, n0, _SPD,
|
|
1081
|
-
0,
|
|
1082
|
-
[_t, _n, _pV, _d, _p, _cD, _lMD],
|
|
1083
|
-
[0, 0, 0, 0, 15, 1, 1]
|
|
1084
|
-
];
|
|
1085
|
-
var SecurityPolicyStats$ = [3, n0, _SPS,
|
|
1086
|
-
0,
|
|
1087
|
-
[_EPC, _NPC],
|
|
1088
|
-
[1, 1]
|
|
1089
|
-
];
|
|
1090
|
-
var SecurityPolicySummary$ = [3, n0, _SPSe,
|
|
1091
|
-
0,
|
|
1092
|
-
[_t, _n, _pV, _d, _cD, _lMD],
|
|
1093
|
-
[0, 0, 0, 0, 1, 1]
|
|
1094
|
-
];
|
|
1095
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1096
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1097
|
-
[_m, _sC, _rIe, _rT, _qC],
|
|
1098
|
-
[0, 0, 0, 0, 0], 2
|
|
1099
|
-
];
|
|
1100
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1101
|
-
var Tag$ = [3, n0, _T,
|
|
1102
|
-
0,
|
|
1103
|
-
[_k, _v],
|
|
1104
|
-
[0, 0], 2
|
|
1105
|
-
];
|
|
1106
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1107
|
-
0,
|
|
1108
|
-
[_rA, _ta],
|
|
1109
|
-
[0, () => Tags], 2
|
|
1110
|
-
];
|
|
1111
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1112
|
-
0,
|
|
1113
|
-
[],
|
|
1114
|
-
[]
|
|
1115
|
-
];
|
|
1116
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1117
|
-
0,
|
|
1118
|
-
[_rA, _tK],
|
|
1119
|
-
[0, 64 | 0], 2
|
|
1120
|
-
];
|
|
1121
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1122
|
-
0,
|
|
1123
|
-
[],
|
|
1124
|
-
[]
|
|
1125
|
-
];
|
|
1126
|
-
var UpdateAccessPolicyRequest$ = [3, n0, _UAPR,
|
|
1127
|
-
0,
|
|
1128
|
-
[_t, _n, _pV, _d, _p, _cT],
|
|
1129
|
-
[0, 0, 0, 0, 0, [0, 4]], 3
|
|
1130
|
-
];
|
|
1131
|
-
var UpdateAccessPolicyResponse$ = [3, n0, _UAPRp,
|
|
1132
|
-
0,
|
|
1133
|
-
[_aPD],
|
|
1134
|
-
[() => AccessPolicyDetail$]
|
|
1135
|
-
];
|
|
1136
|
-
var UpdateAccountSettingsRequest$ = [3, n0, _UASR,
|
|
1137
|
-
0,
|
|
1138
|
-
[_cL],
|
|
1139
|
-
[() => CapacityLimits$]
|
|
1140
|
-
];
|
|
1141
|
-
var UpdateAccountSettingsResponse$ = [3, n0, _UASRp,
|
|
1142
|
-
0,
|
|
1143
|
-
[_aSD],
|
|
1144
|
-
[() => AccountSettingsDetail$]
|
|
1145
|
-
];
|
|
1146
|
-
var UpdateCollectionDetail$ = [3, n0, _UCD,
|
|
1147
|
-
0,
|
|
1148
|
-
[_id_, _n, _s, _t, _d, _a, _cD, _lMD],
|
|
1149
|
-
[0, 0, 0, 0, 0, 0, 1, 1]
|
|
1150
|
-
];
|
|
1151
|
-
var UpdateCollectionGroupDetail$ = [3, n0, _UCGD,
|
|
1152
|
-
0,
|
|
1153
|
-
[_id_, _a, _n, _d, _cL, _cD, _lMD],
|
|
1154
|
-
[0, 0, 0, 0, () => CollectionGroupCapacityLimits$, 1, 1]
|
|
1155
|
-
];
|
|
1156
|
-
var UpdateCollectionGroupRequest$ = [3, n0, _UCGR,
|
|
1157
|
-
0,
|
|
1158
|
-
[_id_, _d, _cL, _cT],
|
|
1159
|
-
[0, 0, () => CollectionGroupCapacityLimits$, [0, 4]], 1
|
|
1160
|
-
];
|
|
1161
|
-
var UpdateCollectionGroupResponse$ = [3, n0, _UCGRp,
|
|
1162
|
-
0,
|
|
1163
|
-
[_uCGD],
|
|
1164
|
-
[() => UpdateCollectionGroupDetail$]
|
|
1165
|
-
];
|
|
1166
|
-
var UpdateCollectionRequest$ = [3, n0, _UCR,
|
|
1167
|
-
0,
|
|
1168
|
-
[_id_, _d, _cT],
|
|
1169
|
-
[0, 0, [0, 4]], 1
|
|
1170
|
-
];
|
|
1171
|
-
var UpdateCollectionResponse$ = [3, n0, _UCRp,
|
|
1172
|
-
0,
|
|
1173
|
-
[_uCD],
|
|
1174
|
-
[() => UpdateCollectionDetail$]
|
|
1175
|
-
];
|
|
1176
|
-
var UpdateIamIdentityCenterConfigOptions$ = [3, n0, _UIICCO,
|
|
1177
|
-
0,
|
|
1178
|
-
[_uA, _gA],
|
|
1179
|
-
[0, 0]
|
|
1180
|
-
];
|
|
1181
|
-
var UpdateIndexRequest$ = [3, n0, _UIR,
|
|
1182
|
-
0,
|
|
1183
|
-
[_id_, _iN, _iS],
|
|
1184
|
-
[0, 0, 15], 2
|
|
1185
|
-
];
|
|
1186
|
-
var UpdateIndexResponse$ = [3, n0, _UIRp,
|
|
1187
|
-
0,
|
|
1188
|
-
[],
|
|
1189
|
-
[]
|
|
1190
|
-
];
|
|
1191
|
-
var UpdateLifecyclePolicyRequest$ = [3, n0, _ULPR,
|
|
1192
|
-
0,
|
|
1193
|
-
[_t, _n, _pV, _d, _p, _cT],
|
|
1194
|
-
[0, 0, 0, 0, 0, [0, 4]], 3
|
|
1195
|
-
];
|
|
1196
|
-
var UpdateLifecyclePolicyResponse$ = [3, n0, _ULPRp,
|
|
1197
|
-
0,
|
|
1198
|
-
[_lPDi],
|
|
1199
|
-
[() => LifecyclePolicyDetail$]
|
|
1200
|
-
];
|
|
1201
|
-
var UpdateSecurityConfigRequest$ = [3, n0, _USCR,
|
|
1202
|
-
0,
|
|
1203
|
-
[_id_, _cV, _d, _sO, _iICOU, _iFO, _cT],
|
|
1204
|
-
[0, 0, 0, () => SamlConfigOptions$, () => UpdateIamIdentityCenterConfigOptions$, () => IamFederationConfigOptions$, [0, 4]], 2
|
|
1205
|
-
];
|
|
1206
|
-
var UpdateSecurityConfigResponse$ = [3, n0, _USCRp,
|
|
1207
|
-
0,
|
|
1208
|
-
[_sCD],
|
|
1209
|
-
[() => SecurityConfigDetail$]
|
|
1210
|
-
];
|
|
1211
|
-
var UpdateSecurityPolicyRequest$ = [3, n0, _USPR,
|
|
1212
|
-
0,
|
|
1213
|
-
[_t, _n, _pV, _d, _p, _cT],
|
|
1214
|
-
[0, 0, 0, 0, 0, [0, 4]], 3
|
|
1215
|
-
];
|
|
1216
|
-
var UpdateSecurityPolicyResponse$ = [3, n0, _USPRp,
|
|
1217
|
-
0,
|
|
1218
|
-
[_sPD],
|
|
1219
|
-
[() => SecurityPolicyDetail$]
|
|
1220
|
-
];
|
|
1221
|
-
var UpdateVpcEndpointDetail$ = [3, n0, _UVED,
|
|
1222
|
-
0,
|
|
1223
|
-
[_id_, _n, _s, _sI, _sGI, _lMD],
|
|
1224
|
-
[0, 0, 0, 64 | 0, 64 | 0, 1]
|
|
1225
|
-
];
|
|
1226
|
-
var UpdateVpcEndpointRequest$ = [3, n0, _UVER,
|
|
1227
|
-
0,
|
|
1228
|
-
[_id_, _aSI, _rSI, _aSGI, _rSGI, _cT],
|
|
1229
|
-
[0, 64 | 0, 64 | 0, 64 | 0, 64 | 0, [0, 4]], 1
|
|
1230
|
-
];
|
|
1231
|
-
var UpdateVpcEndpointResponse$ = [3, n0, _UVERp,
|
|
1232
|
-
0,
|
|
1233
|
-
[_UVED],
|
|
1234
|
-
[() => UpdateVpcEndpointDetail$]
|
|
1235
|
-
];
|
|
1236
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1237
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1238
|
-
[_m],
|
|
1239
|
-
[0]
|
|
1240
|
-
];
|
|
1241
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1242
|
-
var VectorOptions$ = [3, n0, _VO,
|
|
1243
|
-
0,
|
|
1244
|
-
[_SVA],
|
|
1245
|
-
[0], 1
|
|
1246
|
-
];
|
|
1247
|
-
var VpcEndpointDetail$ = [3, n0, _VED,
|
|
1248
|
-
0,
|
|
1249
|
-
[_id_, _n, _vI, _sI, _sGI, _s, _cD, _fC, _fM],
|
|
1250
|
-
[0, 0, 0, 64 | 0, 64 | 0, 0, 1, 0, 0]
|
|
1251
|
-
];
|
|
1252
|
-
var VpcEndpointErrorDetail$ = [3, n0, _VEED,
|
|
1253
|
-
0,
|
|
1254
|
-
[_id_, _eM, _eC],
|
|
1255
|
-
[0, 0, 0]
|
|
1256
|
-
];
|
|
1257
|
-
var VpcEndpointFilters$ = [3, n0, _VEF,
|
|
1258
|
-
0,
|
|
1259
|
-
[_s],
|
|
1260
|
-
[0]
|
|
1261
|
-
];
|
|
1262
|
-
var VpcEndpointSummary$ = [3, n0, _VES,
|
|
1263
|
-
0,
|
|
1264
|
-
[_id_, _n, _s],
|
|
1265
|
-
[0, 0, 0]
|
|
1266
|
-
];
|
|
1267
|
-
var OpenSearchServerlessServiceException$ = [-3, _sm, "OpenSearchServerlessServiceException", 0, [], []];
|
|
1268
|
-
schema.TypeRegistry.for(_sm).registerError(OpenSearchServerlessServiceException$, OpenSearchServerlessServiceException);
|
|
1269
|
-
var AccessPolicySummaries = [1, n0, _APScc,
|
|
1270
|
-
0, () => AccessPolicySummary$
|
|
1271
|
-
];
|
|
1272
|
-
var CollectionDetails = [1, n0, _CDo,
|
|
1273
|
-
0, () => CollectionDetail$
|
|
1274
|
-
];
|
|
1275
|
-
var CollectionErrorDetails = [1, n0, _CEDo,
|
|
1276
|
-
0, () => CollectionErrorDetail$
|
|
1277
|
-
];
|
|
1278
|
-
var CollectionGroupDetails = [1, n0, _CGDo,
|
|
1279
|
-
0, () => CollectionGroupDetail$
|
|
1280
|
-
];
|
|
1281
|
-
var CollectionGroupErrorDetails = [1, n0, _CGEDo,
|
|
1282
|
-
0, () => CollectionGroupErrorDetail$
|
|
1283
|
-
];
|
|
1284
|
-
var CollectionGroupSummaries = [1, n0, _CGSo,
|
|
1285
|
-
0, () => CollectionGroupSummary$
|
|
1286
|
-
];
|
|
1287
|
-
var CollectionSummaries = [1, n0, _CSo,
|
|
1288
|
-
0, () => CollectionSummary$
|
|
1289
|
-
];
|
|
1290
|
-
var EffectiveLifecyclePolicyDetails = [1, n0, _ELPDf,
|
|
1291
|
-
0, () => EffectiveLifecyclePolicyDetail$
|
|
1292
|
-
];
|
|
1293
|
-
var EffectiveLifecyclePolicyErrorDetails = [1, n0, _ELPEDf,
|
|
1294
|
-
0, () => EffectiveLifecyclePolicyErrorDetail$
|
|
1295
|
-
];
|
|
1296
|
-
var LifecyclePolicyDetails = [1, n0, _LPDi,
|
|
1297
|
-
0, () => LifecyclePolicyDetail$
|
|
1298
|
-
];
|
|
1299
|
-
var LifecyclePolicyErrorDetails = [1, n0, _LPEDi,
|
|
1300
|
-
0, () => LifecyclePolicyErrorDetail$
|
|
1301
|
-
];
|
|
1302
|
-
var LifecyclePolicyIdentifiers = [1, n0, _LPIi,
|
|
1303
|
-
0, () => LifecyclePolicyIdentifier$
|
|
1304
|
-
];
|
|
1305
|
-
var LifecyclePolicyResourceIdentifiers = [1, n0, _LPRIi,
|
|
1306
|
-
0, () => LifecyclePolicyResourceIdentifier$
|
|
1307
|
-
];
|
|
1308
|
-
var LifecyclePolicySummaries = [1, n0, _LPSif,
|
|
1309
|
-
0, () => LifecyclePolicySummary$
|
|
1310
|
-
];
|
|
1311
|
-
var SecurityConfigSummaries = [1, n0, _SCSec,
|
|
1312
|
-
0, () => SecurityConfigSummary$
|
|
1313
|
-
];
|
|
1314
|
-
var SecurityPolicySummaries = [1, n0, _SPSec,
|
|
1315
|
-
0, () => SecurityPolicySummary$
|
|
1316
|
-
];
|
|
1317
|
-
var Tags = [1, n0, _Ta,
|
|
1318
|
-
0, () => Tag$
|
|
1319
|
-
];
|
|
1320
|
-
var VpcEndpointDetails = [1, n0, _VEDp,
|
|
1321
|
-
0, () => VpcEndpointDetail$
|
|
1322
|
-
];
|
|
1323
|
-
var VpcEndpointErrorDetails = [1, n0, _VEEDp,
|
|
1324
|
-
0, () => VpcEndpointErrorDetail$
|
|
1325
|
-
];
|
|
1326
|
-
var VpcEndpointSummaries = [1, n0, _VESp,
|
|
1327
|
-
0, () => VpcEndpointSummary$
|
|
1328
|
-
];
|
|
1329
|
-
var BatchGetCollection$ = [9, n0, _BGC,
|
|
1330
|
-
0, () => BatchGetCollectionRequest$, () => BatchGetCollectionResponse$
|
|
1331
|
-
];
|
|
1332
|
-
var BatchGetCollectionGroup$ = [9, n0, _BGCG,
|
|
1333
|
-
0, () => BatchGetCollectionGroupRequest$, () => BatchGetCollectionGroupResponse$
|
|
1334
|
-
];
|
|
1335
|
-
var BatchGetEffectiveLifecyclePolicy$ = [9, n0, _BGELP,
|
|
1336
|
-
0, () => BatchGetEffectiveLifecyclePolicyRequest$, () => BatchGetEffectiveLifecyclePolicyResponse$
|
|
1337
|
-
];
|
|
1338
|
-
var BatchGetLifecyclePolicy$ = [9, n0, _BGLP,
|
|
1339
|
-
0, () => BatchGetLifecyclePolicyRequest$, () => BatchGetLifecyclePolicyResponse$
|
|
1340
|
-
];
|
|
1341
|
-
var BatchGetVpcEndpoint$ = [9, n0, _BGVE,
|
|
1342
|
-
0, () => BatchGetVpcEndpointRequest$, () => BatchGetVpcEndpointResponse$
|
|
1343
|
-
];
|
|
1344
|
-
var CreateAccessPolicy$ = [9, n0, _CAP,
|
|
1345
|
-
2, () => CreateAccessPolicyRequest$, () => CreateAccessPolicyResponse$
|
|
1346
|
-
];
|
|
1347
|
-
var CreateCollection$ = [9, n0, _CC,
|
|
1348
|
-
2, () => CreateCollectionRequest$, () => CreateCollectionResponse$
|
|
1349
|
-
];
|
|
1350
|
-
var CreateCollectionGroup$ = [9, n0, _CCG,
|
|
1351
|
-
2, () => CreateCollectionGroupRequest$, () => CreateCollectionGroupResponse$
|
|
1352
|
-
];
|
|
1353
|
-
var CreateIndex$ = [9, n0, _CI,
|
|
1354
|
-
2, () => CreateIndexRequest$, () => CreateIndexResponse$
|
|
1355
|
-
];
|
|
1356
|
-
var CreateLifecyclePolicy$ = [9, n0, _CLP,
|
|
1357
|
-
2, () => CreateLifecyclePolicyRequest$, () => CreateLifecyclePolicyResponse$
|
|
1358
|
-
];
|
|
1359
|
-
var CreateSecurityConfig$ = [9, n0, _CSC,
|
|
1360
|
-
2, () => CreateSecurityConfigRequest$, () => CreateSecurityConfigResponse$
|
|
1361
|
-
];
|
|
1362
|
-
var CreateSecurityPolicy$ = [9, n0, _CSP,
|
|
1363
|
-
2, () => CreateSecurityPolicyRequest$, () => CreateSecurityPolicyResponse$
|
|
1364
|
-
];
|
|
1365
|
-
var CreateVpcEndpoint$ = [9, n0, _CVE,
|
|
1366
|
-
2, () => CreateVpcEndpointRequest$, () => CreateVpcEndpointResponse$
|
|
1367
|
-
];
|
|
1368
|
-
var DeleteAccessPolicy$ = [9, n0, _DAP,
|
|
1369
|
-
2, () => DeleteAccessPolicyRequest$, () => DeleteAccessPolicyResponse$
|
|
1370
|
-
];
|
|
1371
|
-
var DeleteCollection$ = [9, n0, _DC,
|
|
1372
|
-
2, () => DeleteCollectionRequest$, () => DeleteCollectionResponse$
|
|
1373
|
-
];
|
|
1374
|
-
var DeleteCollectionGroup$ = [9, n0, _DCG,
|
|
1375
|
-
2, () => DeleteCollectionGroupRequest$, () => DeleteCollectionGroupResponse$
|
|
1376
|
-
];
|
|
1377
|
-
var DeleteIndex$ = [9, n0, _DI,
|
|
1378
|
-
2, () => DeleteIndexRequest$, () => DeleteIndexResponse$
|
|
1379
|
-
];
|
|
1380
|
-
var DeleteLifecyclePolicy$ = [9, n0, _DLP,
|
|
1381
|
-
2, () => DeleteLifecyclePolicyRequest$, () => DeleteLifecyclePolicyResponse$
|
|
1382
|
-
];
|
|
1383
|
-
var DeleteSecurityConfig$ = [9, n0, _DSC,
|
|
1384
|
-
2, () => DeleteSecurityConfigRequest$, () => DeleteSecurityConfigResponse$
|
|
1385
|
-
];
|
|
1386
|
-
var DeleteSecurityPolicy$ = [9, n0, _DSP,
|
|
1387
|
-
2, () => DeleteSecurityPolicyRequest$, () => DeleteSecurityPolicyResponse$
|
|
1388
|
-
];
|
|
1389
|
-
var DeleteVpcEndpoint$ = [9, n0, _DVE,
|
|
1390
|
-
2, () => DeleteVpcEndpointRequest$, () => DeleteVpcEndpointResponse$
|
|
1391
|
-
];
|
|
1392
|
-
var GetAccessPolicy$ = [9, n0, _GAP,
|
|
1393
|
-
0, () => GetAccessPolicyRequest$, () => GetAccessPolicyResponse$
|
|
1394
|
-
];
|
|
1395
|
-
var GetAccountSettings$ = [9, n0, _GAS,
|
|
1396
|
-
0, () => GetAccountSettingsRequest$, () => GetAccountSettingsResponse$
|
|
1397
|
-
];
|
|
1398
|
-
var GetIndex$ = [9, n0, _GI,
|
|
1399
|
-
0, () => GetIndexRequest$, () => GetIndexResponse$
|
|
1400
|
-
];
|
|
1401
|
-
var GetPoliciesStats$ = [9, n0, _GPS,
|
|
1402
|
-
0, () => GetPoliciesStatsRequest$, () => GetPoliciesStatsResponse$
|
|
1403
|
-
];
|
|
1404
|
-
var GetSecurityConfig$ = [9, n0, _GSC,
|
|
1405
|
-
0, () => GetSecurityConfigRequest$, () => GetSecurityConfigResponse$
|
|
1406
|
-
];
|
|
1407
|
-
var GetSecurityPolicy$ = [9, n0, _GSP,
|
|
1408
|
-
0, () => GetSecurityPolicyRequest$, () => GetSecurityPolicyResponse$
|
|
1409
|
-
];
|
|
1410
|
-
var ListAccessPolicies$ = [9, n0, _LAP,
|
|
1411
|
-
0, () => ListAccessPoliciesRequest$, () => ListAccessPoliciesResponse$
|
|
1412
|
-
];
|
|
1413
|
-
var ListCollectionGroups$ = [9, n0, _LCG,
|
|
1414
|
-
0, () => ListCollectionGroupsRequest$, () => ListCollectionGroupsResponse$
|
|
1415
|
-
];
|
|
1416
|
-
var ListCollections$ = [9, n0, _LC,
|
|
1417
|
-
0, () => ListCollectionsRequest$, () => ListCollectionsResponse$
|
|
1418
|
-
];
|
|
1419
|
-
var ListLifecyclePolicies$ = [9, n0, _LLP,
|
|
1420
|
-
0, () => ListLifecyclePoliciesRequest$, () => ListLifecyclePoliciesResponse$
|
|
1421
|
-
];
|
|
1422
|
-
var ListSecurityConfigs$ = [9, n0, _LSC,
|
|
1423
|
-
0, () => ListSecurityConfigsRequest$, () => ListSecurityConfigsResponse$
|
|
1424
|
-
];
|
|
1425
|
-
var ListSecurityPolicies$ = [9, n0, _LSP,
|
|
1426
|
-
0, () => ListSecurityPoliciesRequest$, () => ListSecurityPoliciesResponse$
|
|
1427
|
-
];
|
|
1428
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1429
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1430
|
-
];
|
|
1431
|
-
var ListVpcEndpoints$ = [9, n0, _LVE,
|
|
1432
|
-
0, () => ListVpcEndpointsRequest$, () => ListVpcEndpointsResponse$
|
|
1433
|
-
];
|
|
1434
|
-
var TagResource$ = [9, n0, _TR,
|
|
1435
|
-
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1436
|
-
];
|
|
1437
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1438
|
-
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1439
|
-
];
|
|
1440
|
-
var UpdateAccessPolicy$ = [9, n0, _UAP,
|
|
1441
|
-
2, () => UpdateAccessPolicyRequest$, () => UpdateAccessPolicyResponse$
|
|
1442
|
-
];
|
|
1443
|
-
var UpdateAccountSettings$ = [9, n0, _UAS,
|
|
1444
|
-
0, () => UpdateAccountSettingsRequest$, () => UpdateAccountSettingsResponse$
|
|
1445
|
-
];
|
|
1446
|
-
var UpdateCollection$ = [9, n0, _UC,
|
|
1447
|
-
2, () => UpdateCollectionRequest$, () => UpdateCollectionResponse$
|
|
1448
|
-
];
|
|
1449
|
-
var UpdateCollectionGroup$ = [9, n0, _UCG,
|
|
1450
|
-
2, () => UpdateCollectionGroupRequest$, () => UpdateCollectionGroupResponse$
|
|
1451
|
-
];
|
|
1452
|
-
var UpdateIndex$ = [9, n0, _UI,
|
|
1453
|
-
2, () => UpdateIndexRequest$, () => UpdateIndexResponse$
|
|
1454
|
-
];
|
|
1455
|
-
var UpdateLifecyclePolicy$ = [9, n0, _ULP,
|
|
1456
|
-
2, () => UpdateLifecyclePolicyRequest$, () => UpdateLifecyclePolicyResponse$
|
|
1457
|
-
];
|
|
1458
|
-
var UpdateSecurityConfig$ = [9, n0, _USC,
|
|
1459
|
-
2, () => UpdateSecurityConfigRequest$, () => UpdateSecurityConfigResponse$
|
|
1460
|
-
];
|
|
1461
|
-
var UpdateSecurityPolicy$ = [9, n0, _USP,
|
|
1462
|
-
2, () => UpdateSecurityPolicyRequest$, () => UpdateSecurityPolicyResponse$
|
|
1463
|
-
];
|
|
1464
|
-
var UpdateVpcEndpoint$ = [9, n0, _UVE,
|
|
1465
|
-
2, () => UpdateVpcEndpointRequest$, () => UpdateVpcEndpointResponse$
|
|
1466
|
-
];
|
|
1467
|
-
|
|
1468
116
|
class BatchGetCollectionCommand extends smithyClient.Command
|
|
1469
117
|
.classBuilder()
|
|
1470
118
|
.ep(commonParams)
|
|
@@ -1473,7 +121,7 @@ class BatchGetCollectionCommand extends smithyClient.Command
|
|
|
1473
121
|
})
|
|
1474
122
|
.s("OpenSearchServerless", "BatchGetCollection", {})
|
|
1475
123
|
.n("OpenSearchServerlessClient", "BatchGetCollectionCommand")
|
|
1476
|
-
.sc(BatchGetCollection$)
|
|
124
|
+
.sc(schemas_0.BatchGetCollection$)
|
|
1477
125
|
.build() {
|
|
1478
126
|
}
|
|
1479
127
|
|
|
@@ -1485,7 +133,7 @@ class BatchGetCollectionGroupCommand extends smithyClient.Command
|
|
|
1485
133
|
})
|
|
1486
134
|
.s("OpenSearchServerless", "BatchGetCollectionGroup", {})
|
|
1487
135
|
.n("OpenSearchServerlessClient", "BatchGetCollectionGroupCommand")
|
|
1488
|
-
.sc(BatchGetCollectionGroup$)
|
|
136
|
+
.sc(schemas_0.BatchGetCollectionGroup$)
|
|
1489
137
|
.build() {
|
|
1490
138
|
}
|
|
1491
139
|
|
|
@@ -1497,7 +145,7 @@ class BatchGetEffectiveLifecyclePolicyCommand extends smithyClient.Command
|
|
|
1497
145
|
})
|
|
1498
146
|
.s("OpenSearchServerless", "BatchGetEffectiveLifecyclePolicy", {})
|
|
1499
147
|
.n("OpenSearchServerlessClient", "BatchGetEffectiveLifecyclePolicyCommand")
|
|
1500
|
-
.sc(BatchGetEffectiveLifecyclePolicy$)
|
|
148
|
+
.sc(schemas_0.BatchGetEffectiveLifecyclePolicy$)
|
|
1501
149
|
.build() {
|
|
1502
150
|
}
|
|
1503
151
|
|
|
@@ -1509,7 +157,7 @@ class BatchGetLifecyclePolicyCommand extends smithyClient.Command
|
|
|
1509
157
|
})
|
|
1510
158
|
.s("OpenSearchServerless", "BatchGetLifecyclePolicy", {})
|
|
1511
159
|
.n("OpenSearchServerlessClient", "BatchGetLifecyclePolicyCommand")
|
|
1512
|
-
.sc(BatchGetLifecyclePolicy$)
|
|
160
|
+
.sc(schemas_0.BatchGetLifecyclePolicy$)
|
|
1513
161
|
.build() {
|
|
1514
162
|
}
|
|
1515
163
|
|
|
@@ -1521,7 +169,7 @@ class BatchGetVpcEndpointCommand extends smithyClient.Command
|
|
|
1521
169
|
})
|
|
1522
170
|
.s("OpenSearchServerless", "BatchGetVpcEndpoint", {})
|
|
1523
171
|
.n("OpenSearchServerlessClient", "BatchGetVpcEndpointCommand")
|
|
1524
|
-
.sc(BatchGetVpcEndpoint$)
|
|
172
|
+
.sc(schemas_0.BatchGetVpcEndpoint$)
|
|
1525
173
|
.build() {
|
|
1526
174
|
}
|
|
1527
175
|
|
|
@@ -1533,7 +181,7 @@ class CreateAccessPolicyCommand extends smithyClient.Command
|
|
|
1533
181
|
})
|
|
1534
182
|
.s("OpenSearchServerless", "CreateAccessPolicy", {})
|
|
1535
183
|
.n("OpenSearchServerlessClient", "CreateAccessPolicyCommand")
|
|
1536
|
-
.sc(CreateAccessPolicy$)
|
|
184
|
+
.sc(schemas_0.CreateAccessPolicy$)
|
|
1537
185
|
.build() {
|
|
1538
186
|
}
|
|
1539
187
|
|
|
@@ -1545,7 +193,7 @@ class CreateCollectionCommand extends smithyClient.Command
|
|
|
1545
193
|
})
|
|
1546
194
|
.s("OpenSearchServerless", "CreateCollection", {})
|
|
1547
195
|
.n("OpenSearchServerlessClient", "CreateCollectionCommand")
|
|
1548
|
-
.sc(CreateCollection$)
|
|
196
|
+
.sc(schemas_0.CreateCollection$)
|
|
1549
197
|
.build() {
|
|
1550
198
|
}
|
|
1551
199
|
|
|
@@ -1557,7 +205,7 @@ class CreateCollectionGroupCommand extends smithyClient.Command
|
|
|
1557
205
|
})
|
|
1558
206
|
.s("OpenSearchServerless", "CreateCollectionGroup", {})
|
|
1559
207
|
.n("OpenSearchServerlessClient", "CreateCollectionGroupCommand")
|
|
1560
|
-
.sc(CreateCollectionGroup$)
|
|
208
|
+
.sc(schemas_0.CreateCollectionGroup$)
|
|
1561
209
|
.build() {
|
|
1562
210
|
}
|
|
1563
211
|
|
|
@@ -1569,7 +217,7 @@ class CreateIndexCommand extends smithyClient.Command
|
|
|
1569
217
|
})
|
|
1570
218
|
.s("OpenSearchServerless", "CreateIndex", {})
|
|
1571
219
|
.n("OpenSearchServerlessClient", "CreateIndexCommand")
|
|
1572
|
-
.sc(CreateIndex$)
|
|
220
|
+
.sc(schemas_0.CreateIndex$)
|
|
1573
221
|
.build() {
|
|
1574
222
|
}
|
|
1575
223
|
|
|
@@ -1581,7 +229,7 @@ class CreateLifecyclePolicyCommand extends smithyClient.Command
|
|
|
1581
229
|
})
|
|
1582
230
|
.s("OpenSearchServerless", "CreateLifecyclePolicy", {})
|
|
1583
231
|
.n("OpenSearchServerlessClient", "CreateLifecyclePolicyCommand")
|
|
1584
|
-
.sc(CreateLifecyclePolicy$)
|
|
232
|
+
.sc(schemas_0.CreateLifecyclePolicy$)
|
|
1585
233
|
.build() {
|
|
1586
234
|
}
|
|
1587
235
|
|
|
@@ -1593,7 +241,7 @@ class CreateSecurityConfigCommand extends smithyClient.Command
|
|
|
1593
241
|
})
|
|
1594
242
|
.s("OpenSearchServerless", "CreateSecurityConfig", {})
|
|
1595
243
|
.n("OpenSearchServerlessClient", "CreateSecurityConfigCommand")
|
|
1596
|
-
.sc(CreateSecurityConfig$)
|
|
244
|
+
.sc(schemas_0.CreateSecurityConfig$)
|
|
1597
245
|
.build() {
|
|
1598
246
|
}
|
|
1599
247
|
|
|
@@ -1605,7 +253,7 @@ class CreateSecurityPolicyCommand extends smithyClient.Command
|
|
|
1605
253
|
})
|
|
1606
254
|
.s("OpenSearchServerless", "CreateSecurityPolicy", {})
|
|
1607
255
|
.n("OpenSearchServerlessClient", "CreateSecurityPolicyCommand")
|
|
1608
|
-
.sc(CreateSecurityPolicy$)
|
|
256
|
+
.sc(schemas_0.CreateSecurityPolicy$)
|
|
1609
257
|
.build() {
|
|
1610
258
|
}
|
|
1611
259
|
|
|
@@ -1617,7 +265,7 @@ class CreateVpcEndpointCommand extends smithyClient.Command
|
|
|
1617
265
|
})
|
|
1618
266
|
.s("OpenSearchServerless", "CreateVpcEndpoint", {})
|
|
1619
267
|
.n("OpenSearchServerlessClient", "CreateVpcEndpointCommand")
|
|
1620
|
-
.sc(CreateVpcEndpoint$)
|
|
268
|
+
.sc(schemas_0.CreateVpcEndpoint$)
|
|
1621
269
|
.build() {
|
|
1622
270
|
}
|
|
1623
271
|
|
|
@@ -1629,7 +277,7 @@ class DeleteAccessPolicyCommand extends smithyClient.Command
|
|
|
1629
277
|
})
|
|
1630
278
|
.s("OpenSearchServerless", "DeleteAccessPolicy", {})
|
|
1631
279
|
.n("OpenSearchServerlessClient", "DeleteAccessPolicyCommand")
|
|
1632
|
-
.sc(DeleteAccessPolicy$)
|
|
280
|
+
.sc(schemas_0.DeleteAccessPolicy$)
|
|
1633
281
|
.build() {
|
|
1634
282
|
}
|
|
1635
283
|
|
|
@@ -1641,7 +289,7 @@ class DeleteCollectionCommand extends smithyClient.Command
|
|
|
1641
289
|
})
|
|
1642
290
|
.s("OpenSearchServerless", "DeleteCollection", {})
|
|
1643
291
|
.n("OpenSearchServerlessClient", "DeleteCollectionCommand")
|
|
1644
|
-
.sc(DeleteCollection$)
|
|
292
|
+
.sc(schemas_0.DeleteCollection$)
|
|
1645
293
|
.build() {
|
|
1646
294
|
}
|
|
1647
295
|
|
|
@@ -1653,7 +301,7 @@ class DeleteCollectionGroupCommand extends smithyClient.Command
|
|
|
1653
301
|
})
|
|
1654
302
|
.s("OpenSearchServerless", "DeleteCollectionGroup", {})
|
|
1655
303
|
.n("OpenSearchServerlessClient", "DeleteCollectionGroupCommand")
|
|
1656
|
-
.sc(DeleteCollectionGroup$)
|
|
304
|
+
.sc(schemas_0.DeleteCollectionGroup$)
|
|
1657
305
|
.build() {
|
|
1658
306
|
}
|
|
1659
307
|
|
|
@@ -1665,7 +313,7 @@ class DeleteIndexCommand extends smithyClient.Command
|
|
|
1665
313
|
})
|
|
1666
314
|
.s("OpenSearchServerless", "DeleteIndex", {})
|
|
1667
315
|
.n("OpenSearchServerlessClient", "DeleteIndexCommand")
|
|
1668
|
-
.sc(DeleteIndex$)
|
|
316
|
+
.sc(schemas_0.DeleteIndex$)
|
|
1669
317
|
.build() {
|
|
1670
318
|
}
|
|
1671
319
|
|
|
@@ -1677,7 +325,7 @@ class DeleteLifecyclePolicyCommand extends smithyClient.Command
|
|
|
1677
325
|
})
|
|
1678
326
|
.s("OpenSearchServerless", "DeleteLifecyclePolicy", {})
|
|
1679
327
|
.n("OpenSearchServerlessClient", "DeleteLifecyclePolicyCommand")
|
|
1680
|
-
.sc(DeleteLifecyclePolicy$)
|
|
328
|
+
.sc(schemas_0.DeleteLifecyclePolicy$)
|
|
1681
329
|
.build() {
|
|
1682
330
|
}
|
|
1683
331
|
|
|
@@ -1689,7 +337,7 @@ class DeleteSecurityConfigCommand extends smithyClient.Command
|
|
|
1689
337
|
})
|
|
1690
338
|
.s("OpenSearchServerless", "DeleteSecurityConfig", {})
|
|
1691
339
|
.n("OpenSearchServerlessClient", "DeleteSecurityConfigCommand")
|
|
1692
|
-
.sc(DeleteSecurityConfig$)
|
|
340
|
+
.sc(schemas_0.DeleteSecurityConfig$)
|
|
1693
341
|
.build() {
|
|
1694
342
|
}
|
|
1695
343
|
|
|
@@ -1701,7 +349,7 @@ class DeleteSecurityPolicyCommand extends smithyClient.Command
|
|
|
1701
349
|
})
|
|
1702
350
|
.s("OpenSearchServerless", "DeleteSecurityPolicy", {})
|
|
1703
351
|
.n("OpenSearchServerlessClient", "DeleteSecurityPolicyCommand")
|
|
1704
|
-
.sc(DeleteSecurityPolicy$)
|
|
352
|
+
.sc(schemas_0.DeleteSecurityPolicy$)
|
|
1705
353
|
.build() {
|
|
1706
354
|
}
|
|
1707
355
|
|
|
@@ -1713,7 +361,7 @@ class DeleteVpcEndpointCommand extends smithyClient.Command
|
|
|
1713
361
|
})
|
|
1714
362
|
.s("OpenSearchServerless", "DeleteVpcEndpoint", {})
|
|
1715
363
|
.n("OpenSearchServerlessClient", "DeleteVpcEndpointCommand")
|
|
1716
|
-
.sc(DeleteVpcEndpoint$)
|
|
364
|
+
.sc(schemas_0.DeleteVpcEndpoint$)
|
|
1717
365
|
.build() {
|
|
1718
366
|
}
|
|
1719
367
|
|
|
@@ -1725,7 +373,7 @@ class GetAccessPolicyCommand extends smithyClient.Command
|
|
|
1725
373
|
})
|
|
1726
374
|
.s("OpenSearchServerless", "GetAccessPolicy", {})
|
|
1727
375
|
.n("OpenSearchServerlessClient", "GetAccessPolicyCommand")
|
|
1728
|
-
.sc(GetAccessPolicy$)
|
|
376
|
+
.sc(schemas_0.GetAccessPolicy$)
|
|
1729
377
|
.build() {
|
|
1730
378
|
}
|
|
1731
379
|
|
|
@@ -1737,7 +385,7 @@ class GetAccountSettingsCommand extends smithyClient.Command
|
|
|
1737
385
|
})
|
|
1738
386
|
.s("OpenSearchServerless", "GetAccountSettings", {})
|
|
1739
387
|
.n("OpenSearchServerlessClient", "GetAccountSettingsCommand")
|
|
1740
|
-
.sc(GetAccountSettings$)
|
|
388
|
+
.sc(schemas_0.GetAccountSettings$)
|
|
1741
389
|
.build() {
|
|
1742
390
|
}
|
|
1743
391
|
|
|
@@ -1749,7 +397,7 @@ class GetIndexCommand extends smithyClient.Command
|
|
|
1749
397
|
})
|
|
1750
398
|
.s("OpenSearchServerless", "GetIndex", {})
|
|
1751
399
|
.n("OpenSearchServerlessClient", "GetIndexCommand")
|
|
1752
|
-
.sc(GetIndex$)
|
|
400
|
+
.sc(schemas_0.GetIndex$)
|
|
1753
401
|
.build() {
|
|
1754
402
|
}
|
|
1755
403
|
|
|
@@ -1761,7 +409,7 @@ class GetPoliciesStatsCommand extends smithyClient.Command
|
|
|
1761
409
|
})
|
|
1762
410
|
.s("OpenSearchServerless", "GetPoliciesStats", {})
|
|
1763
411
|
.n("OpenSearchServerlessClient", "GetPoliciesStatsCommand")
|
|
1764
|
-
.sc(GetPoliciesStats$)
|
|
412
|
+
.sc(schemas_0.GetPoliciesStats$)
|
|
1765
413
|
.build() {
|
|
1766
414
|
}
|
|
1767
415
|
|
|
@@ -1773,7 +421,7 @@ class GetSecurityConfigCommand extends smithyClient.Command
|
|
|
1773
421
|
})
|
|
1774
422
|
.s("OpenSearchServerless", "GetSecurityConfig", {})
|
|
1775
423
|
.n("OpenSearchServerlessClient", "GetSecurityConfigCommand")
|
|
1776
|
-
.sc(GetSecurityConfig$)
|
|
424
|
+
.sc(schemas_0.GetSecurityConfig$)
|
|
1777
425
|
.build() {
|
|
1778
426
|
}
|
|
1779
427
|
|
|
@@ -1785,7 +433,7 @@ class GetSecurityPolicyCommand extends smithyClient.Command
|
|
|
1785
433
|
})
|
|
1786
434
|
.s("OpenSearchServerless", "GetSecurityPolicy", {})
|
|
1787
435
|
.n("OpenSearchServerlessClient", "GetSecurityPolicyCommand")
|
|
1788
|
-
.sc(GetSecurityPolicy$)
|
|
436
|
+
.sc(schemas_0.GetSecurityPolicy$)
|
|
1789
437
|
.build() {
|
|
1790
438
|
}
|
|
1791
439
|
|
|
@@ -1797,7 +445,7 @@ class ListAccessPoliciesCommand extends smithyClient.Command
|
|
|
1797
445
|
})
|
|
1798
446
|
.s("OpenSearchServerless", "ListAccessPolicies", {})
|
|
1799
447
|
.n("OpenSearchServerlessClient", "ListAccessPoliciesCommand")
|
|
1800
|
-
.sc(ListAccessPolicies$)
|
|
448
|
+
.sc(schemas_0.ListAccessPolicies$)
|
|
1801
449
|
.build() {
|
|
1802
450
|
}
|
|
1803
451
|
|
|
@@ -1809,7 +457,7 @@ class ListCollectionGroupsCommand extends smithyClient.Command
|
|
|
1809
457
|
})
|
|
1810
458
|
.s("OpenSearchServerless", "ListCollectionGroups", {})
|
|
1811
459
|
.n("OpenSearchServerlessClient", "ListCollectionGroupsCommand")
|
|
1812
|
-
.sc(ListCollectionGroups$)
|
|
460
|
+
.sc(schemas_0.ListCollectionGroups$)
|
|
1813
461
|
.build() {
|
|
1814
462
|
}
|
|
1815
463
|
|
|
@@ -1821,7 +469,7 @@ class ListCollectionsCommand extends smithyClient.Command
|
|
|
1821
469
|
})
|
|
1822
470
|
.s("OpenSearchServerless", "ListCollections", {})
|
|
1823
471
|
.n("OpenSearchServerlessClient", "ListCollectionsCommand")
|
|
1824
|
-
.sc(ListCollections$)
|
|
472
|
+
.sc(schemas_0.ListCollections$)
|
|
1825
473
|
.build() {
|
|
1826
474
|
}
|
|
1827
475
|
|
|
@@ -1833,7 +481,7 @@ class ListLifecyclePoliciesCommand extends smithyClient.Command
|
|
|
1833
481
|
})
|
|
1834
482
|
.s("OpenSearchServerless", "ListLifecyclePolicies", {})
|
|
1835
483
|
.n("OpenSearchServerlessClient", "ListLifecyclePoliciesCommand")
|
|
1836
|
-
.sc(ListLifecyclePolicies$)
|
|
484
|
+
.sc(schemas_0.ListLifecyclePolicies$)
|
|
1837
485
|
.build() {
|
|
1838
486
|
}
|
|
1839
487
|
|
|
@@ -1845,7 +493,7 @@ class ListSecurityConfigsCommand extends smithyClient.Command
|
|
|
1845
493
|
})
|
|
1846
494
|
.s("OpenSearchServerless", "ListSecurityConfigs", {})
|
|
1847
495
|
.n("OpenSearchServerlessClient", "ListSecurityConfigsCommand")
|
|
1848
|
-
.sc(ListSecurityConfigs$)
|
|
496
|
+
.sc(schemas_0.ListSecurityConfigs$)
|
|
1849
497
|
.build() {
|
|
1850
498
|
}
|
|
1851
499
|
|
|
@@ -1857,7 +505,7 @@ class ListSecurityPoliciesCommand extends smithyClient.Command
|
|
|
1857
505
|
})
|
|
1858
506
|
.s("OpenSearchServerless", "ListSecurityPolicies", {})
|
|
1859
507
|
.n("OpenSearchServerlessClient", "ListSecurityPoliciesCommand")
|
|
1860
|
-
.sc(ListSecurityPolicies$)
|
|
508
|
+
.sc(schemas_0.ListSecurityPolicies$)
|
|
1861
509
|
.build() {
|
|
1862
510
|
}
|
|
1863
511
|
|
|
@@ -1869,7 +517,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1869
517
|
})
|
|
1870
518
|
.s("OpenSearchServerless", "ListTagsForResource", {})
|
|
1871
519
|
.n("OpenSearchServerlessClient", "ListTagsForResourceCommand")
|
|
1872
|
-
.sc(ListTagsForResource$)
|
|
520
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1873
521
|
.build() {
|
|
1874
522
|
}
|
|
1875
523
|
|
|
@@ -1881,7 +529,7 @@ class ListVpcEndpointsCommand extends smithyClient.Command
|
|
|
1881
529
|
})
|
|
1882
530
|
.s("OpenSearchServerless", "ListVpcEndpoints", {})
|
|
1883
531
|
.n("OpenSearchServerlessClient", "ListVpcEndpointsCommand")
|
|
1884
|
-
.sc(ListVpcEndpoints$)
|
|
532
|
+
.sc(schemas_0.ListVpcEndpoints$)
|
|
1885
533
|
.build() {
|
|
1886
534
|
}
|
|
1887
535
|
|
|
@@ -1893,7 +541,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1893
541
|
})
|
|
1894
542
|
.s("OpenSearchServerless", "TagResource", {})
|
|
1895
543
|
.n("OpenSearchServerlessClient", "TagResourceCommand")
|
|
1896
|
-
.sc(TagResource$)
|
|
544
|
+
.sc(schemas_0.TagResource$)
|
|
1897
545
|
.build() {
|
|
1898
546
|
}
|
|
1899
547
|
|
|
@@ -1905,7 +553,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1905
553
|
})
|
|
1906
554
|
.s("OpenSearchServerless", "UntagResource", {})
|
|
1907
555
|
.n("OpenSearchServerlessClient", "UntagResourceCommand")
|
|
1908
|
-
.sc(UntagResource$)
|
|
556
|
+
.sc(schemas_0.UntagResource$)
|
|
1909
557
|
.build() {
|
|
1910
558
|
}
|
|
1911
559
|
|
|
@@ -1917,7 +565,7 @@ class UpdateAccessPolicyCommand extends smithyClient.Command
|
|
|
1917
565
|
})
|
|
1918
566
|
.s("OpenSearchServerless", "UpdateAccessPolicy", {})
|
|
1919
567
|
.n("OpenSearchServerlessClient", "UpdateAccessPolicyCommand")
|
|
1920
|
-
.sc(UpdateAccessPolicy$)
|
|
568
|
+
.sc(schemas_0.UpdateAccessPolicy$)
|
|
1921
569
|
.build() {
|
|
1922
570
|
}
|
|
1923
571
|
|
|
@@ -1929,7 +577,7 @@ class UpdateAccountSettingsCommand extends smithyClient.Command
|
|
|
1929
577
|
})
|
|
1930
578
|
.s("OpenSearchServerless", "UpdateAccountSettings", {})
|
|
1931
579
|
.n("OpenSearchServerlessClient", "UpdateAccountSettingsCommand")
|
|
1932
|
-
.sc(UpdateAccountSettings$)
|
|
580
|
+
.sc(schemas_0.UpdateAccountSettings$)
|
|
1933
581
|
.build() {
|
|
1934
582
|
}
|
|
1935
583
|
|
|
@@ -1941,7 +589,7 @@ class UpdateCollectionCommand extends smithyClient.Command
|
|
|
1941
589
|
})
|
|
1942
590
|
.s("OpenSearchServerless", "UpdateCollection", {})
|
|
1943
591
|
.n("OpenSearchServerlessClient", "UpdateCollectionCommand")
|
|
1944
|
-
.sc(UpdateCollection$)
|
|
592
|
+
.sc(schemas_0.UpdateCollection$)
|
|
1945
593
|
.build() {
|
|
1946
594
|
}
|
|
1947
595
|
|
|
@@ -1953,7 +601,7 @@ class UpdateCollectionGroupCommand extends smithyClient.Command
|
|
|
1953
601
|
})
|
|
1954
602
|
.s("OpenSearchServerless", "UpdateCollectionGroup", {})
|
|
1955
603
|
.n("OpenSearchServerlessClient", "UpdateCollectionGroupCommand")
|
|
1956
|
-
.sc(UpdateCollectionGroup$)
|
|
604
|
+
.sc(schemas_0.UpdateCollectionGroup$)
|
|
1957
605
|
.build() {
|
|
1958
606
|
}
|
|
1959
607
|
|
|
@@ -1965,7 +613,7 @@ class UpdateIndexCommand extends smithyClient.Command
|
|
|
1965
613
|
})
|
|
1966
614
|
.s("OpenSearchServerless", "UpdateIndex", {})
|
|
1967
615
|
.n("OpenSearchServerlessClient", "UpdateIndexCommand")
|
|
1968
|
-
.sc(UpdateIndex$)
|
|
616
|
+
.sc(schemas_0.UpdateIndex$)
|
|
1969
617
|
.build() {
|
|
1970
618
|
}
|
|
1971
619
|
|
|
@@ -1977,7 +625,7 @@ class UpdateLifecyclePolicyCommand extends smithyClient.Command
|
|
|
1977
625
|
})
|
|
1978
626
|
.s("OpenSearchServerless", "UpdateLifecyclePolicy", {})
|
|
1979
627
|
.n("OpenSearchServerlessClient", "UpdateLifecyclePolicyCommand")
|
|
1980
|
-
.sc(UpdateLifecyclePolicy$)
|
|
628
|
+
.sc(schemas_0.UpdateLifecyclePolicy$)
|
|
1981
629
|
.build() {
|
|
1982
630
|
}
|
|
1983
631
|
|
|
@@ -1989,7 +637,7 @@ class UpdateSecurityConfigCommand extends smithyClient.Command
|
|
|
1989
637
|
})
|
|
1990
638
|
.s("OpenSearchServerless", "UpdateSecurityConfig", {})
|
|
1991
639
|
.n("OpenSearchServerlessClient", "UpdateSecurityConfigCommand")
|
|
1992
|
-
.sc(UpdateSecurityConfig$)
|
|
640
|
+
.sc(schemas_0.UpdateSecurityConfig$)
|
|
1993
641
|
.build() {
|
|
1994
642
|
}
|
|
1995
643
|
|
|
@@ -2001,7 +649,7 @@ class UpdateSecurityPolicyCommand extends smithyClient.Command
|
|
|
2001
649
|
})
|
|
2002
650
|
.s("OpenSearchServerless", "UpdateSecurityPolicy", {})
|
|
2003
651
|
.n("OpenSearchServerlessClient", "UpdateSecurityPolicyCommand")
|
|
2004
|
-
.sc(UpdateSecurityPolicy$)
|
|
652
|
+
.sc(schemas_0.UpdateSecurityPolicy$)
|
|
2005
653
|
.build() {
|
|
2006
654
|
}
|
|
2007
655
|
|
|
@@ -2013,7 +661,7 @@ class UpdateVpcEndpointCommand extends smithyClient.Command
|
|
|
2013
661
|
})
|
|
2014
662
|
.s("OpenSearchServerless", "UpdateVpcEndpoint", {})
|
|
2015
663
|
.n("OpenSearchServerlessClient", "UpdateVpcEndpointCommand")
|
|
2016
|
-
.sc(UpdateVpcEndpoint$)
|
|
664
|
+
.sc(schemas_0.UpdateVpcEndpoint$)
|
|
2017
665
|
.build() {
|
|
2018
666
|
}
|
|
2019
667
|
|
|
@@ -2154,266 +802,70 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2154
802
|
enumerable: true,
|
|
2155
803
|
get: function () { return smithyClient.Client; }
|
|
2156
804
|
});
|
|
2157
|
-
exports
|
|
2158
|
-
|
|
2159
|
-
|
|
805
|
+
Object.defineProperty(exports, "OpenSearchServerlessServiceException", {
|
|
806
|
+
enumerable: true,
|
|
807
|
+
get: function () { return OpenSearchServerlessServiceException.OpenSearchServerlessServiceException; }
|
|
808
|
+
});
|
|
2160
809
|
exports.AccessPolicyType = AccessPolicyType;
|
|
2161
|
-
exports.AccountSettingsDetail$ = AccountSettingsDetail$;
|
|
2162
|
-
exports.BatchGetCollection$ = BatchGetCollection$;
|
|
2163
810
|
exports.BatchGetCollectionCommand = BatchGetCollectionCommand;
|
|
2164
|
-
exports.BatchGetCollectionGroup$ = BatchGetCollectionGroup$;
|
|
2165
811
|
exports.BatchGetCollectionGroupCommand = BatchGetCollectionGroupCommand;
|
|
2166
|
-
exports.BatchGetCollectionGroupRequest$ = BatchGetCollectionGroupRequest$;
|
|
2167
|
-
exports.BatchGetCollectionGroupResponse$ = BatchGetCollectionGroupResponse$;
|
|
2168
|
-
exports.BatchGetCollectionRequest$ = BatchGetCollectionRequest$;
|
|
2169
|
-
exports.BatchGetCollectionResponse$ = BatchGetCollectionResponse$;
|
|
2170
|
-
exports.BatchGetEffectiveLifecyclePolicy$ = BatchGetEffectiveLifecyclePolicy$;
|
|
2171
812
|
exports.BatchGetEffectiveLifecyclePolicyCommand = BatchGetEffectiveLifecyclePolicyCommand;
|
|
2172
|
-
exports.BatchGetEffectiveLifecyclePolicyRequest$ = BatchGetEffectiveLifecyclePolicyRequest$;
|
|
2173
|
-
exports.BatchGetEffectiveLifecyclePolicyResponse$ = BatchGetEffectiveLifecyclePolicyResponse$;
|
|
2174
|
-
exports.BatchGetLifecyclePolicy$ = BatchGetLifecyclePolicy$;
|
|
2175
813
|
exports.BatchGetLifecyclePolicyCommand = BatchGetLifecyclePolicyCommand;
|
|
2176
|
-
exports.BatchGetLifecyclePolicyRequest$ = BatchGetLifecyclePolicyRequest$;
|
|
2177
|
-
exports.BatchGetLifecyclePolicyResponse$ = BatchGetLifecyclePolicyResponse$;
|
|
2178
|
-
exports.BatchGetVpcEndpoint$ = BatchGetVpcEndpoint$;
|
|
2179
814
|
exports.BatchGetVpcEndpointCommand = BatchGetVpcEndpointCommand;
|
|
2180
|
-
exports.BatchGetVpcEndpointRequest$ = BatchGetVpcEndpointRequest$;
|
|
2181
|
-
exports.BatchGetVpcEndpointResponse$ = BatchGetVpcEndpointResponse$;
|
|
2182
|
-
exports.CapacityLimits$ = CapacityLimits$;
|
|
2183
|
-
exports.CollectionDetail$ = CollectionDetail$;
|
|
2184
|
-
exports.CollectionErrorDetail$ = CollectionErrorDetail$;
|
|
2185
|
-
exports.CollectionFilters$ = CollectionFilters$;
|
|
2186
|
-
exports.CollectionGroupCapacityLimits$ = CollectionGroupCapacityLimits$;
|
|
2187
|
-
exports.CollectionGroupDetail$ = CollectionGroupDetail$;
|
|
2188
|
-
exports.CollectionGroupErrorDetail$ = CollectionGroupErrorDetail$;
|
|
2189
|
-
exports.CollectionGroupSummary$ = CollectionGroupSummary$;
|
|
2190
815
|
exports.CollectionStatus = CollectionStatus;
|
|
2191
|
-
exports.CollectionSummary$ = CollectionSummary$;
|
|
2192
816
|
exports.CollectionType = CollectionType;
|
|
2193
|
-
exports.ConflictException = ConflictException;
|
|
2194
|
-
exports.ConflictException$ = ConflictException$;
|
|
2195
|
-
exports.CreateAccessPolicy$ = CreateAccessPolicy$;
|
|
2196
817
|
exports.CreateAccessPolicyCommand = CreateAccessPolicyCommand;
|
|
2197
|
-
exports.CreateAccessPolicyRequest$ = CreateAccessPolicyRequest$;
|
|
2198
|
-
exports.CreateAccessPolicyResponse$ = CreateAccessPolicyResponse$;
|
|
2199
|
-
exports.CreateCollection$ = CreateCollection$;
|
|
2200
818
|
exports.CreateCollectionCommand = CreateCollectionCommand;
|
|
2201
|
-
exports.CreateCollectionDetail$ = CreateCollectionDetail$;
|
|
2202
|
-
exports.CreateCollectionGroup$ = CreateCollectionGroup$;
|
|
2203
819
|
exports.CreateCollectionGroupCommand = CreateCollectionGroupCommand;
|
|
2204
|
-
exports.CreateCollectionGroupDetail$ = CreateCollectionGroupDetail$;
|
|
2205
|
-
exports.CreateCollectionGroupRequest$ = CreateCollectionGroupRequest$;
|
|
2206
|
-
exports.CreateCollectionGroupResponse$ = CreateCollectionGroupResponse$;
|
|
2207
|
-
exports.CreateCollectionRequest$ = CreateCollectionRequest$;
|
|
2208
|
-
exports.CreateCollectionResponse$ = CreateCollectionResponse$;
|
|
2209
|
-
exports.CreateIamIdentityCenterConfigOptions$ = CreateIamIdentityCenterConfigOptions$;
|
|
2210
|
-
exports.CreateIndex$ = CreateIndex$;
|
|
2211
820
|
exports.CreateIndexCommand = CreateIndexCommand;
|
|
2212
|
-
exports.CreateIndexRequest$ = CreateIndexRequest$;
|
|
2213
|
-
exports.CreateIndexResponse$ = CreateIndexResponse$;
|
|
2214
|
-
exports.CreateLifecyclePolicy$ = CreateLifecyclePolicy$;
|
|
2215
821
|
exports.CreateLifecyclePolicyCommand = CreateLifecyclePolicyCommand;
|
|
2216
|
-
exports.CreateLifecyclePolicyRequest$ = CreateLifecyclePolicyRequest$;
|
|
2217
|
-
exports.CreateLifecyclePolicyResponse$ = CreateLifecyclePolicyResponse$;
|
|
2218
|
-
exports.CreateSecurityConfig$ = CreateSecurityConfig$;
|
|
2219
822
|
exports.CreateSecurityConfigCommand = CreateSecurityConfigCommand;
|
|
2220
|
-
exports.CreateSecurityConfigRequest$ = CreateSecurityConfigRequest$;
|
|
2221
|
-
exports.CreateSecurityConfigResponse$ = CreateSecurityConfigResponse$;
|
|
2222
|
-
exports.CreateSecurityPolicy$ = CreateSecurityPolicy$;
|
|
2223
823
|
exports.CreateSecurityPolicyCommand = CreateSecurityPolicyCommand;
|
|
2224
|
-
exports.CreateSecurityPolicyRequest$ = CreateSecurityPolicyRequest$;
|
|
2225
|
-
exports.CreateSecurityPolicyResponse$ = CreateSecurityPolicyResponse$;
|
|
2226
|
-
exports.CreateVpcEndpoint$ = CreateVpcEndpoint$;
|
|
2227
824
|
exports.CreateVpcEndpointCommand = CreateVpcEndpointCommand;
|
|
2228
|
-
exports.CreateVpcEndpointDetail$ = CreateVpcEndpointDetail$;
|
|
2229
|
-
exports.CreateVpcEndpointRequest$ = CreateVpcEndpointRequest$;
|
|
2230
|
-
exports.CreateVpcEndpointResponse$ = CreateVpcEndpointResponse$;
|
|
2231
|
-
exports.DeleteAccessPolicy$ = DeleteAccessPolicy$;
|
|
2232
825
|
exports.DeleteAccessPolicyCommand = DeleteAccessPolicyCommand;
|
|
2233
|
-
exports.DeleteAccessPolicyRequest$ = DeleteAccessPolicyRequest$;
|
|
2234
|
-
exports.DeleteAccessPolicyResponse$ = DeleteAccessPolicyResponse$;
|
|
2235
|
-
exports.DeleteCollection$ = DeleteCollection$;
|
|
2236
826
|
exports.DeleteCollectionCommand = DeleteCollectionCommand;
|
|
2237
|
-
exports.DeleteCollectionDetail$ = DeleteCollectionDetail$;
|
|
2238
|
-
exports.DeleteCollectionGroup$ = DeleteCollectionGroup$;
|
|
2239
827
|
exports.DeleteCollectionGroupCommand = DeleteCollectionGroupCommand;
|
|
2240
|
-
exports.DeleteCollectionGroupRequest$ = DeleteCollectionGroupRequest$;
|
|
2241
|
-
exports.DeleteCollectionGroupResponse$ = DeleteCollectionGroupResponse$;
|
|
2242
|
-
exports.DeleteCollectionRequest$ = DeleteCollectionRequest$;
|
|
2243
|
-
exports.DeleteCollectionResponse$ = DeleteCollectionResponse$;
|
|
2244
|
-
exports.DeleteIndex$ = DeleteIndex$;
|
|
2245
828
|
exports.DeleteIndexCommand = DeleteIndexCommand;
|
|
2246
|
-
exports.DeleteIndexRequest$ = DeleteIndexRequest$;
|
|
2247
|
-
exports.DeleteIndexResponse$ = DeleteIndexResponse$;
|
|
2248
|
-
exports.DeleteLifecyclePolicy$ = DeleteLifecyclePolicy$;
|
|
2249
829
|
exports.DeleteLifecyclePolicyCommand = DeleteLifecyclePolicyCommand;
|
|
2250
|
-
exports.DeleteLifecyclePolicyRequest$ = DeleteLifecyclePolicyRequest$;
|
|
2251
|
-
exports.DeleteLifecyclePolicyResponse$ = DeleteLifecyclePolicyResponse$;
|
|
2252
|
-
exports.DeleteSecurityConfig$ = DeleteSecurityConfig$;
|
|
2253
830
|
exports.DeleteSecurityConfigCommand = DeleteSecurityConfigCommand;
|
|
2254
|
-
exports.DeleteSecurityConfigRequest$ = DeleteSecurityConfigRequest$;
|
|
2255
|
-
exports.DeleteSecurityConfigResponse$ = DeleteSecurityConfigResponse$;
|
|
2256
|
-
exports.DeleteSecurityPolicy$ = DeleteSecurityPolicy$;
|
|
2257
831
|
exports.DeleteSecurityPolicyCommand = DeleteSecurityPolicyCommand;
|
|
2258
|
-
exports.DeleteSecurityPolicyRequest$ = DeleteSecurityPolicyRequest$;
|
|
2259
|
-
exports.DeleteSecurityPolicyResponse$ = DeleteSecurityPolicyResponse$;
|
|
2260
|
-
exports.DeleteVpcEndpoint$ = DeleteVpcEndpoint$;
|
|
2261
832
|
exports.DeleteVpcEndpointCommand = DeleteVpcEndpointCommand;
|
|
2262
|
-
exports.DeleteVpcEndpointDetail$ = DeleteVpcEndpointDetail$;
|
|
2263
|
-
exports.DeleteVpcEndpointRequest$ = DeleteVpcEndpointRequest$;
|
|
2264
|
-
exports.DeleteVpcEndpointResponse$ = DeleteVpcEndpointResponse$;
|
|
2265
|
-
exports.EffectiveLifecyclePolicyDetail$ = EffectiveLifecyclePolicyDetail$;
|
|
2266
|
-
exports.EffectiveLifecyclePolicyErrorDetail$ = EffectiveLifecyclePolicyErrorDetail$;
|
|
2267
|
-
exports.EncryptionConfig$ = EncryptionConfig$;
|
|
2268
|
-
exports.FipsEndpoints$ = FipsEndpoints$;
|
|
2269
|
-
exports.GetAccessPolicy$ = GetAccessPolicy$;
|
|
2270
833
|
exports.GetAccessPolicyCommand = GetAccessPolicyCommand;
|
|
2271
|
-
exports.GetAccessPolicyRequest$ = GetAccessPolicyRequest$;
|
|
2272
|
-
exports.GetAccessPolicyResponse$ = GetAccessPolicyResponse$;
|
|
2273
|
-
exports.GetAccountSettings$ = GetAccountSettings$;
|
|
2274
834
|
exports.GetAccountSettingsCommand = GetAccountSettingsCommand;
|
|
2275
|
-
exports.GetAccountSettingsRequest$ = GetAccountSettingsRequest$;
|
|
2276
|
-
exports.GetAccountSettingsResponse$ = GetAccountSettingsResponse$;
|
|
2277
|
-
exports.GetIndex$ = GetIndex$;
|
|
2278
835
|
exports.GetIndexCommand = GetIndexCommand;
|
|
2279
|
-
exports.GetIndexRequest$ = GetIndexRequest$;
|
|
2280
|
-
exports.GetIndexResponse$ = GetIndexResponse$;
|
|
2281
|
-
exports.GetPoliciesStats$ = GetPoliciesStats$;
|
|
2282
836
|
exports.GetPoliciesStatsCommand = GetPoliciesStatsCommand;
|
|
2283
|
-
exports.GetPoliciesStatsRequest$ = GetPoliciesStatsRequest$;
|
|
2284
|
-
exports.GetPoliciesStatsResponse$ = GetPoliciesStatsResponse$;
|
|
2285
|
-
exports.GetSecurityConfig$ = GetSecurityConfig$;
|
|
2286
837
|
exports.GetSecurityConfigCommand = GetSecurityConfigCommand;
|
|
2287
|
-
exports.GetSecurityConfigRequest$ = GetSecurityConfigRequest$;
|
|
2288
|
-
exports.GetSecurityConfigResponse$ = GetSecurityConfigResponse$;
|
|
2289
|
-
exports.GetSecurityPolicy$ = GetSecurityPolicy$;
|
|
2290
838
|
exports.GetSecurityPolicyCommand = GetSecurityPolicyCommand;
|
|
2291
|
-
exports.GetSecurityPolicyRequest$ = GetSecurityPolicyRequest$;
|
|
2292
|
-
exports.GetSecurityPolicyResponse$ = GetSecurityPolicyResponse$;
|
|
2293
|
-
exports.IamFederationConfigOptions$ = IamFederationConfigOptions$;
|
|
2294
|
-
exports.IamIdentityCenterConfigOptions$ = IamIdentityCenterConfigOptions$;
|
|
2295
839
|
exports.IamIdentityCenterGroupAttribute = IamIdentityCenterGroupAttribute;
|
|
2296
840
|
exports.IamIdentityCenterUserAttribute = IamIdentityCenterUserAttribute;
|
|
2297
|
-
exports.InternalServerException = InternalServerException;
|
|
2298
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
2299
|
-
exports.LifecyclePolicyDetail$ = LifecyclePolicyDetail$;
|
|
2300
|
-
exports.LifecyclePolicyErrorDetail$ = LifecyclePolicyErrorDetail$;
|
|
2301
|
-
exports.LifecyclePolicyIdentifier$ = LifecyclePolicyIdentifier$;
|
|
2302
|
-
exports.LifecyclePolicyResourceIdentifier$ = LifecyclePolicyResourceIdentifier$;
|
|
2303
|
-
exports.LifecyclePolicyStats$ = LifecyclePolicyStats$;
|
|
2304
|
-
exports.LifecyclePolicySummary$ = LifecyclePolicySummary$;
|
|
2305
841
|
exports.LifecyclePolicyType = LifecyclePolicyType;
|
|
2306
|
-
exports.ListAccessPolicies$ = ListAccessPolicies$;
|
|
2307
842
|
exports.ListAccessPoliciesCommand = ListAccessPoliciesCommand;
|
|
2308
|
-
exports.ListAccessPoliciesRequest$ = ListAccessPoliciesRequest$;
|
|
2309
|
-
exports.ListAccessPoliciesResponse$ = ListAccessPoliciesResponse$;
|
|
2310
|
-
exports.ListCollectionGroups$ = ListCollectionGroups$;
|
|
2311
843
|
exports.ListCollectionGroupsCommand = ListCollectionGroupsCommand;
|
|
2312
|
-
exports.ListCollectionGroupsRequest$ = ListCollectionGroupsRequest$;
|
|
2313
|
-
exports.ListCollectionGroupsResponse$ = ListCollectionGroupsResponse$;
|
|
2314
|
-
exports.ListCollections$ = ListCollections$;
|
|
2315
844
|
exports.ListCollectionsCommand = ListCollectionsCommand;
|
|
2316
|
-
exports.ListCollectionsRequest$ = ListCollectionsRequest$;
|
|
2317
|
-
exports.ListCollectionsResponse$ = ListCollectionsResponse$;
|
|
2318
|
-
exports.ListLifecyclePolicies$ = ListLifecyclePolicies$;
|
|
2319
845
|
exports.ListLifecyclePoliciesCommand = ListLifecyclePoliciesCommand;
|
|
2320
|
-
exports.ListLifecyclePoliciesRequest$ = ListLifecyclePoliciesRequest$;
|
|
2321
|
-
exports.ListLifecyclePoliciesResponse$ = ListLifecyclePoliciesResponse$;
|
|
2322
|
-
exports.ListSecurityConfigs$ = ListSecurityConfigs$;
|
|
2323
846
|
exports.ListSecurityConfigsCommand = ListSecurityConfigsCommand;
|
|
2324
|
-
exports.ListSecurityConfigsRequest$ = ListSecurityConfigsRequest$;
|
|
2325
|
-
exports.ListSecurityConfigsResponse$ = ListSecurityConfigsResponse$;
|
|
2326
|
-
exports.ListSecurityPolicies$ = ListSecurityPolicies$;
|
|
2327
847
|
exports.ListSecurityPoliciesCommand = ListSecurityPoliciesCommand;
|
|
2328
|
-
exports.ListSecurityPoliciesRequest$ = ListSecurityPoliciesRequest$;
|
|
2329
|
-
exports.ListSecurityPoliciesResponse$ = ListSecurityPoliciesResponse$;
|
|
2330
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2331
848
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2332
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2333
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2334
|
-
exports.ListVpcEndpoints$ = ListVpcEndpoints$;
|
|
2335
849
|
exports.ListVpcEndpointsCommand = ListVpcEndpointsCommand;
|
|
2336
|
-
exports.ListVpcEndpointsRequest$ = ListVpcEndpointsRequest$;
|
|
2337
|
-
exports.ListVpcEndpointsResponse$ = ListVpcEndpointsResponse$;
|
|
2338
|
-
exports.OcuLimitExceededException = OcuLimitExceededException;
|
|
2339
|
-
exports.OcuLimitExceededException$ = OcuLimitExceededException$;
|
|
2340
850
|
exports.OpenSearchServerless = OpenSearchServerless;
|
|
2341
851
|
exports.OpenSearchServerlessClient = OpenSearchServerlessClient;
|
|
2342
|
-
exports.OpenSearchServerlessServiceException = OpenSearchServerlessServiceException;
|
|
2343
|
-
exports.OpenSearchServerlessServiceException$ = OpenSearchServerlessServiceException$;
|
|
2344
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2345
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2346
852
|
exports.ResourceType = ResourceType;
|
|
2347
|
-
exports.SamlConfigOptions$ = SamlConfigOptions$;
|
|
2348
|
-
exports.SecurityConfigDetail$ = SecurityConfigDetail$;
|
|
2349
|
-
exports.SecurityConfigStats$ = SecurityConfigStats$;
|
|
2350
|
-
exports.SecurityConfigSummary$ = SecurityConfigSummary$;
|
|
2351
853
|
exports.SecurityConfigType = SecurityConfigType;
|
|
2352
|
-
exports.SecurityPolicyDetail$ = SecurityPolicyDetail$;
|
|
2353
|
-
exports.SecurityPolicyStats$ = SecurityPolicyStats$;
|
|
2354
|
-
exports.SecurityPolicySummary$ = SecurityPolicySummary$;
|
|
2355
854
|
exports.SecurityPolicyType = SecurityPolicyType;
|
|
2356
855
|
exports.ServerlessVectorAccelerationStatus = ServerlessVectorAccelerationStatus;
|
|
2357
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2358
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2359
856
|
exports.StandbyReplicas = StandbyReplicas;
|
|
2360
|
-
exports.Tag$ = Tag$;
|
|
2361
|
-
exports.TagResource$ = TagResource$;
|
|
2362
857
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2363
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2364
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2365
|
-
exports.UntagResource$ = UntagResource$;
|
|
2366
858
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2367
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2368
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2369
|
-
exports.UpdateAccessPolicy$ = UpdateAccessPolicy$;
|
|
2370
859
|
exports.UpdateAccessPolicyCommand = UpdateAccessPolicyCommand;
|
|
2371
|
-
exports.UpdateAccessPolicyRequest$ = UpdateAccessPolicyRequest$;
|
|
2372
|
-
exports.UpdateAccessPolicyResponse$ = UpdateAccessPolicyResponse$;
|
|
2373
|
-
exports.UpdateAccountSettings$ = UpdateAccountSettings$;
|
|
2374
860
|
exports.UpdateAccountSettingsCommand = UpdateAccountSettingsCommand;
|
|
2375
|
-
exports.UpdateAccountSettingsRequest$ = UpdateAccountSettingsRequest$;
|
|
2376
|
-
exports.UpdateAccountSettingsResponse$ = UpdateAccountSettingsResponse$;
|
|
2377
|
-
exports.UpdateCollection$ = UpdateCollection$;
|
|
2378
861
|
exports.UpdateCollectionCommand = UpdateCollectionCommand;
|
|
2379
|
-
exports.UpdateCollectionDetail$ = UpdateCollectionDetail$;
|
|
2380
|
-
exports.UpdateCollectionGroup$ = UpdateCollectionGroup$;
|
|
2381
862
|
exports.UpdateCollectionGroupCommand = UpdateCollectionGroupCommand;
|
|
2382
|
-
exports.UpdateCollectionGroupDetail$ = UpdateCollectionGroupDetail$;
|
|
2383
|
-
exports.UpdateCollectionGroupRequest$ = UpdateCollectionGroupRequest$;
|
|
2384
|
-
exports.UpdateCollectionGroupResponse$ = UpdateCollectionGroupResponse$;
|
|
2385
|
-
exports.UpdateCollectionRequest$ = UpdateCollectionRequest$;
|
|
2386
|
-
exports.UpdateCollectionResponse$ = UpdateCollectionResponse$;
|
|
2387
|
-
exports.UpdateIamIdentityCenterConfigOptions$ = UpdateIamIdentityCenterConfigOptions$;
|
|
2388
|
-
exports.UpdateIndex$ = UpdateIndex$;
|
|
2389
863
|
exports.UpdateIndexCommand = UpdateIndexCommand;
|
|
2390
|
-
exports.UpdateIndexRequest$ = UpdateIndexRequest$;
|
|
2391
|
-
exports.UpdateIndexResponse$ = UpdateIndexResponse$;
|
|
2392
|
-
exports.UpdateLifecyclePolicy$ = UpdateLifecyclePolicy$;
|
|
2393
864
|
exports.UpdateLifecyclePolicyCommand = UpdateLifecyclePolicyCommand;
|
|
2394
|
-
exports.UpdateLifecyclePolicyRequest$ = UpdateLifecyclePolicyRequest$;
|
|
2395
|
-
exports.UpdateLifecyclePolicyResponse$ = UpdateLifecyclePolicyResponse$;
|
|
2396
|
-
exports.UpdateSecurityConfig$ = UpdateSecurityConfig$;
|
|
2397
865
|
exports.UpdateSecurityConfigCommand = UpdateSecurityConfigCommand;
|
|
2398
|
-
exports.UpdateSecurityConfigRequest$ = UpdateSecurityConfigRequest$;
|
|
2399
|
-
exports.UpdateSecurityConfigResponse$ = UpdateSecurityConfigResponse$;
|
|
2400
|
-
exports.UpdateSecurityPolicy$ = UpdateSecurityPolicy$;
|
|
2401
866
|
exports.UpdateSecurityPolicyCommand = UpdateSecurityPolicyCommand;
|
|
2402
|
-
exports.UpdateSecurityPolicyRequest$ = UpdateSecurityPolicyRequest$;
|
|
2403
|
-
exports.UpdateSecurityPolicyResponse$ = UpdateSecurityPolicyResponse$;
|
|
2404
|
-
exports.UpdateVpcEndpoint$ = UpdateVpcEndpoint$;
|
|
2405
867
|
exports.UpdateVpcEndpointCommand = UpdateVpcEndpointCommand;
|
|
2406
|
-
exports.UpdateVpcEndpointDetail$ = UpdateVpcEndpointDetail$;
|
|
2407
|
-
exports.UpdateVpcEndpointRequest$ = UpdateVpcEndpointRequest$;
|
|
2408
|
-
exports.UpdateVpcEndpointResponse$ = UpdateVpcEndpointResponse$;
|
|
2409
|
-
exports.ValidationException = ValidationException;
|
|
2410
|
-
exports.ValidationException$ = ValidationException$;
|
|
2411
|
-
exports.VectorOptions$ = VectorOptions$;
|
|
2412
|
-
exports.VpcEndpointDetail$ = VpcEndpointDetail$;
|
|
2413
|
-
exports.VpcEndpointErrorDetail$ = VpcEndpointErrorDetail$;
|
|
2414
|
-
exports.VpcEndpointFilters$ = VpcEndpointFilters$;
|
|
2415
868
|
exports.VpcEndpointStatus = VpcEndpointStatus;
|
|
2416
|
-
exports.VpcEndpointSummary$ = VpcEndpointSummary$;
|
|
2417
869
|
exports.paginateListAccessPolicies = paginateListAccessPolicies;
|
|
2418
870
|
exports.paginateListCollectionGroups = paginateListCollectionGroups;
|
|
2419
871
|
exports.paginateListCollections = paginateListCollections;
|
|
@@ -2421,3 +873,15 @@ exports.paginateListLifecyclePolicies = paginateListLifecyclePolicies;
|
|
|
2421
873
|
exports.paginateListSecurityConfigs = paginateListSecurityConfigs;
|
|
2422
874
|
exports.paginateListSecurityPolicies = paginateListSecurityPolicies;
|
|
2423
875
|
exports.paginateListVpcEndpoints = paginateListVpcEndpoints;
|
|
876
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
877
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
878
|
+
enumerable: true,
|
|
879
|
+
get: function () { return schemas_0[k]; }
|
|
880
|
+
});
|
|
881
|
+
});
|
|
882
|
+
Object.keys(errors).forEach(function (k) {
|
|
883
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
884
|
+
enumerable: true,
|
|
885
|
+
get: function () { return errors[k]; }
|
|
886
|
+
});
|
|
887
|
+
});
|