@aws-sdk/client-cloudsearch 3.928.0 → 3.930.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 +748 -2576
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/CloudSearchClient.js +2 -0
- package/dist-es/commands/BuildSuggestersCommand.js +3 -9
- package/dist-es/commands/CreateDomainCommand.js +3 -9
- package/dist-es/commands/DefineAnalysisSchemeCommand.js +3 -9
- package/dist-es/commands/DefineExpressionCommand.js +3 -9
- package/dist-es/commands/DefineIndexFieldCommand.js +3 -9
- package/dist-es/commands/DefineSuggesterCommand.js +3 -9
- package/dist-es/commands/DeleteAnalysisSchemeCommand.js +3 -9
- package/dist-es/commands/DeleteDomainCommand.js +3 -9
- package/dist-es/commands/DeleteExpressionCommand.js +3 -9
- package/dist-es/commands/DeleteIndexFieldCommand.js +3 -9
- package/dist-es/commands/DeleteSuggesterCommand.js +3 -9
- package/dist-es/commands/DescribeAnalysisSchemesCommand.js +3 -9
- package/dist-es/commands/DescribeAvailabilityOptionsCommand.js +3 -9
- package/dist-es/commands/DescribeDomainEndpointOptionsCommand.js +3 -9
- package/dist-es/commands/DescribeDomainsCommand.js +3 -9
- package/dist-es/commands/DescribeExpressionsCommand.js +3 -9
- package/dist-es/commands/DescribeIndexFieldsCommand.js +3 -9
- package/dist-es/commands/DescribeScalingParametersCommand.js +3 -9
- package/dist-es/commands/DescribeServiceAccessPoliciesCommand.js +3 -9
- package/dist-es/commands/DescribeSuggestersCommand.js +3 -9
- package/dist-es/commands/IndexDocumentsCommand.js +3 -9
- package/dist-es/commands/ListDomainNamesCommand.js +3 -9
- package/dist-es/commands/UpdateAvailabilityOptionsCommand.js +3 -9
- package/dist-es/commands/UpdateDomainEndpointOptionsCommand.js +3 -9
- package/dist-es/commands/UpdateScalingParametersCommand.js +3 -9
- package/dist-es/commands/UpdateServiceAccessPoliciesCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +774 -0
- package/dist-types/CloudSearchClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +129 -0
- package/dist-types/ts3.4/CloudSearchClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +134 -0
- package/package.json +33 -33
- package/dist-es/protocols/Aws_query.js +0 -2473
- package/dist-types/protocols/Aws_query.d.ts +0 -236
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +0 -317
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
18
|
|
|
20
19
|
const resolveClientEndpointParameters = (options) => {
|
|
21
20
|
return Object.assign(options, {
|
|
@@ -91,6 +90,7 @@ class CloudSearchClient extends smithyClient.Client {
|
|
|
91
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
92
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
93
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
94
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
95
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
96
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -110,14 +110,14 @@ class CloudSearchClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
class CloudSearchServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let CloudSearchServiceException$1 = class CloudSearchServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, CloudSearchServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
};
|
|
119
119
|
|
|
120
|
-
class BaseException extends CloudSearchServiceException {
|
|
120
|
+
let BaseException$1 = class BaseException extends CloudSearchServiceException$1 {
|
|
121
121
|
name = "BaseException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
Code;
|
|
@@ -132,8 +132,8 @@ class BaseException extends CloudSearchServiceException {
|
|
|
132
132
|
this.Code = opts.Code;
|
|
133
133
|
this.Message = opts.Message;
|
|
134
134
|
}
|
|
135
|
-
}
|
|
136
|
-
class InternalException extends CloudSearchServiceException {
|
|
135
|
+
};
|
|
136
|
+
let InternalException$1 = class InternalException extends CloudSearchServiceException$1 {
|
|
137
137
|
name = "InternalException";
|
|
138
138
|
$fault = "server";
|
|
139
139
|
Code;
|
|
@@ -148,8 +148,8 @@ class InternalException extends CloudSearchServiceException {
|
|
|
148
148
|
this.Code = opts.Code;
|
|
149
149
|
this.Message = opts.Message;
|
|
150
150
|
}
|
|
151
|
-
}
|
|
152
|
-
class ResourceNotFoundException extends CloudSearchServiceException {
|
|
151
|
+
};
|
|
152
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends CloudSearchServiceException$1 {
|
|
153
153
|
name = "ResourceNotFoundException";
|
|
154
154
|
$fault = "client";
|
|
155
155
|
Code;
|
|
@@ -164,8 +164,8 @@ class ResourceNotFoundException extends CloudSearchServiceException {
|
|
|
164
164
|
this.Code = opts.Code;
|
|
165
165
|
this.Message = opts.Message;
|
|
166
166
|
}
|
|
167
|
-
}
|
|
168
|
-
class ValidationException extends CloudSearchServiceException {
|
|
167
|
+
};
|
|
168
|
+
let ValidationException$1 = class ValidationException extends CloudSearchServiceException$1 {
|
|
169
169
|
name = "ValidationException";
|
|
170
170
|
$fault = "client";
|
|
171
171
|
Code;
|
|
@@ -180,8 +180,8 @@ class ValidationException extends CloudSearchServiceException {
|
|
|
180
180
|
this.Code = opts.Code;
|
|
181
181
|
this.Message = opts.Message;
|
|
182
182
|
}
|
|
183
|
-
}
|
|
184
|
-
class LimitExceededException extends CloudSearchServiceException {
|
|
183
|
+
};
|
|
184
|
+
let LimitExceededException$1 = class LimitExceededException extends CloudSearchServiceException$1 {
|
|
185
185
|
name = "LimitExceededException";
|
|
186
186
|
$fault = "client";
|
|
187
187
|
Code;
|
|
@@ -196,8 +196,8 @@ class LimitExceededException extends CloudSearchServiceException {
|
|
|
196
196
|
this.Code = opts.Code;
|
|
197
197
|
this.Message = opts.Message;
|
|
198
198
|
}
|
|
199
|
-
}
|
|
200
|
-
class ResourceAlreadyExistsException extends CloudSearchServiceException {
|
|
199
|
+
};
|
|
200
|
+
let ResourceAlreadyExistsException$1 = class ResourceAlreadyExistsException extends CloudSearchServiceException$1 {
|
|
201
201
|
name = "ResourceAlreadyExistsException";
|
|
202
202
|
$fault = "client";
|
|
203
203
|
Code;
|
|
@@ -212,7 +212,7 @@ class ResourceAlreadyExistsException extends CloudSearchServiceException {
|
|
|
212
212
|
this.Code = opts.Code;
|
|
213
213
|
this.Message = opts.Message;
|
|
214
214
|
}
|
|
215
|
-
}
|
|
215
|
+
};
|
|
216
216
|
const AlgorithmicStemming = {
|
|
217
217
|
full: "full",
|
|
218
218
|
light: "light",
|
|
@@ -262,7 +262,7 @@ const OptionState = {
|
|
|
262
262
|
Processing: "Processing",
|
|
263
263
|
RequiresIndexDocuments: "RequiresIndexDocuments",
|
|
264
264
|
};
|
|
265
|
-
class InvalidTypeException extends CloudSearchServiceException {
|
|
265
|
+
let InvalidTypeException$1 = class InvalidTypeException extends CloudSearchServiceException$1 {
|
|
266
266
|
name = "InvalidTypeException";
|
|
267
267
|
$fault = "client";
|
|
268
268
|
Code;
|
|
@@ -277,7 +277,7 @@ class InvalidTypeException extends CloudSearchServiceException {
|
|
|
277
277
|
this.Code = opts.Code;
|
|
278
278
|
this.Message = opts.Message;
|
|
279
279
|
}
|
|
280
|
-
}
|
|
280
|
+
};
|
|
281
281
|
const IndexFieldType = {
|
|
282
282
|
date: "date",
|
|
283
283
|
date_array: "date-array",
|
|
@@ -296,7 +296,7 @@ const SuggesterFuzzyMatching = {
|
|
|
296
296
|
low: "low",
|
|
297
297
|
none: "none",
|
|
298
298
|
};
|
|
299
|
-
class DisabledOperationException extends CloudSearchServiceException {
|
|
299
|
+
let DisabledOperationException$1 = class DisabledOperationException extends CloudSearchServiceException$1 {
|
|
300
300
|
name = "DisabledOperationException";
|
|
301
301
|
$fault = "client";
|
|
302
302
|
Code;
|
|
@@ -311,7 +311,7 @@ class DisabledOperationException extends CloudSearchServiceException {
|
|
|
311
311
|
this.Code = opts.Code;
|
|
312
312
|
this.Message = opts.Message;
|
|
313
313
|
}
|
|
314
|
-
}
|
|
314
|
+
};
|
|
315
315
|
const TLSSecurityPolicy = {
|
|
316
316
|
POLICY_MIN_TLS_1_0_2019_07: "Policy-Min-TLS-1-0-2019-07",
|
|
317
317
|
POLICY_MIN_TLS_1_2_2019_07: "Policy-Min-TLS-1-2-2019-07",
|
|
@@ -336,2399 +336,110 @@ const PartitionInstanceType = {
|
|
|
336
336
|
search_xlarge: "search.xlarge",
|
|
337
337
|
};
|
|
338
338
|
|
|
339
|
-
const se_BuildSuggestersCommand = async (input, context) => {
|
|
340
|
-
const headers = SHARED_HEADERS;
|
|
341
|
-
let body;
|
|
342
|
-
body = buildFormUrlencodedString({
|
|
343
|
-
...se_BuildSuggestersRequest(input),
|
|
344
|
-
[_A]: _BS,
|
|
345
|
-
[_V]: _,
|
|
346
|
-
});
|
|
347
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
348
|
-
};
|
|
349
|
-
const se_CreateDomainCommand = async (input, context) => {
|
|
350
|
-
const headers = SHARED_HEADERS;
|
|
351
|
-
let body;
|
|
352
|
-
body = buildFormUrlencodedString({
|
|
353
|
-
...se_CreateDomainRequest(input),
|
|
354
|
-
[_A]: _CD,
|
|
355
|
-
[_V]: _,
|
|
356
|
-
});
|
|
357
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
358
|
-
};
|
|
359
|
-
const se_DefineAnalysisSchemeCommand = async (input, context) => {
|
|
360
|
-
const headers = SHARED_HEADERS;
|
|
361
|
-
let body;
|
|
362
|
-
body = buildFormUrlencodedString({
|
|
363
|
-
...se_DefineAnalysisSchemeRequest(input),
|
|
364
|
-
[_A]: _DAS,
|
|
365
|
-
[_V]: _,
|
|
366
|
-
});
|
|
367
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
368
|
-
};
|
|
369
|
-
const se_DefineExpressionCommand = async (input, context) => {
|
|
370
|
-
const headers = SHARED_HEADERS;
|
|
371
|
-
let body;
|
|
372
|
-
body = buildFormUrlencodedString({
|
|
373
|
-
...se_DefineExpressionRequest(input),
|
|
374
|
-
[_A]: _DE,
|
|
375
|
-
[_V]: _,
|
|
376
|
-
});
|
|
377
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
378
|
-
};
|
|
379
|
-
const se_DefineIndexFieldCommand = async (input, context) => {
|
|
380
|
-
const headers = SHARED_HEADERS;
|
|
381
|
-
let body;
|
|
382
|
-
body = buildFormUrlencodedString({
|
|
383
|
-
...se_DefineIndexFieldRequest(input),
|
|
384
|
-
[_A]: _DIF,
|
|
385
|
-
[_V]: _,
|
|
386
|
-
});
|
|
387
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
388
|
-
};
|
|
389
|
-
const se_DefineSuggesterCommand = async (input, context) => {
|
|
390
|
-
const headers = SHARED_HEADERS;
|
|
391
|
-
let body;
|
|
392
|
-
body = buildFormUrlencodedString({
|
|
393
|
-
...se_DefineSuggesterRequest(input),
|
|
394
|
-
[_A]: _DS,
|
|
395
|
-
[_V]: _,
|
|
396
|
-
});
|
|
397
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
398
|
-
};
|
|
399
|
-
const se_DeleteAnalysisSchemeCommand = async (input, context) => {
|
|
400
|
-
const headers = SHARED_HEADERS;
|
|
401
|
-
let body;
|
|
402
|
-
body = buildFormUrlencodedString({
|
|
403
|
-
...se_DeleteAnalysisSchemeRequest(input),
|
|
404
|
-
[_A]: _DASe,
|
|
405
|
-
[_V]: _,
|
|
406
|
-
});
|
|
407
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
408
|
-
};
|
|
409
|
-
const se_DeleteDomainCommand = async (input, context) => {
|
|
410
|
-
const headers = SHARED_HEADERS;
|
|
411
|
-
let body;
|
|
412
|
-
body = buildFormUrlencodedString({
|
|
413
|
-
...se_DeleteDomainRequest(input),
|
|
414
|
-
[_A]: _DD,
|
|
415
|
-
[_V]: _,
|
|
416
|
-
});
|
|
417
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
418
|
-
};
|
|
419
|
-
const se_DeleteExpressionCommand = async (input, context) => {
|
|
420
|
-
const headers = SHARED_HEADERS;
|
|
421
|
-
let body;
|
|
422
|
-
body = buildFormUrlencodedString({
|
|
423
|
-
...se_DeleteExpressionRequest(input),
|
|
424
|
-
[_A]: _DEe,
|
|
425
|
-
[_V]: _,
|
|
426
|
-
});
|
|
427
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
428
|
-
};
|
|
429
|
-
const se_DeleteIndexFieldCommand = async (input, context) => {
|
|
430
|
-
const headers = SHARED_HEADERS;
|
|
431
|
-
let body;
|
|
432
|
-
body = buildFormUrlencodedString({
|
|
433
|
-
...se_DeleteIndexFieldRequest(input),
|
|
434
|
-
[_A]: _DIFe,
|
|
435
|
-
[_V]: _,
|
|
436
|
-
});
|
|
437
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
438
|
-
};
|
|
439
|
-
const se_DeleteSuggesterCommand = async (input, context) => {
|
|
440
|
-
const headers = SHARED_HEADERS;
|
|
441
|
-
let body;
|
|
442
|
-
body = buildFormUrlencodedString({
|
|
443
|
-
...se_DeleteSuggesterRequest(input),
|
|
444
|
-
[_A]: _DSe,
|
|
445
|
-
[_V]: _,
|
|
446
|
-
});
|
|
447
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
448
|
-
};
|
|
449
|
-
const se_DescribeAnalysisSchemesCommand = async (input, context) => {
|
|
450
|
-
const headers = SHARED_HEADERS;
|
|
451
|
-
let body;
|
|
452
|
-
body = buildFormUrlencodedString({
|
|
453
|
-
...se_DescribeAnalysisSchemesRequest(input),
|
|
454
|
-
[_A]: _DASes,
|
|
455
|
-
[_V]: _,
|
|
456
|
-
});
|
|
457
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
458
|
-
};
|
|
459
|
-
const se_DescribeAvailabilityOptionsCommand = async (input, context) => {
|
|
460
|
-
const headers = SHARED_HEADERS;
|
|
461
|
-
let body;
|
|
462
|
-
body = buildFormUrlencodedString({
|
|
463
|
-
...se_DescribeAvailabilityOptionsRequest(input),
|
|
464
|
-
[_A]: _DAO,
|
|
465
|
-
[_V]: _,
|
|
466
|
-
});
|
|
467
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
468
|
-
};
|
|
469
|
-
const se_DescribeDomainEndpointOptionsCommand = async (input, context) => {
|
|
470
|
-
const headers = SHARED_HEADERS;
|
|
471
|
-
let body;
|
|
472
|
-
body = buildFormUrlencodedString({
|
|
473
|
-
...se_DescribeDomainEndpointOptionsRequest(input),
|
|
474
|
-
[_A]: _DDEO,
|
|
475
|
-
[_V]: _,
|
|
476
|
-
});
|
|
477
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
478
|
-
};
|
|
479
|
-
const se_DescribeDomainsCommand = async (input, context) => {
|
|
480
|
-
const headers = SHARED_HEADERS;
|
|
481
|
-
let body;
|
|
482
|
-
body = buildFormUrlencodedString({
|
|
483
|
-
...se_DescribeDomainsRequest(input),
|
|
484
|
-
[_A]: _DDe,
|
|
485
|
-
[_V]: _,
|
|
486
|
-
});
|
|
487
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
488
|
-
};
|
|
489
|
-
const se_DescribeExpressionsCommand = async (input, context) => {
|
|
490
|
-
const headers = SHARED_HEADERS;
|
|
491
|
-
let body;
|
|
492
|
-
body = buildFormUrlencodedString({
|
|
493
|
-
...se_DescribeExpressionsRequest(input),
|
|
494
|
-
[_A]: _DEes,
|
|
495
|
-
[_V]: _,
|
|
496
|
-
});
|
|
497
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
498
|
-
};
|
|
499
|
-
const se_DescribeIndexFieldsCommand = async (input, context) => {
|
|
500
|
-
const headers = SHARED_HEADERS;
|
|
501
|
-
let body;
|
|
502
|
-
body = buildFormUrlencodedString({
|
|
503
|
-
...se_DescribeIndexFieldsRequest(input),
|
|
504
|
-
[_A]: _DIFes,
|
|
505
|
-
[_V]: _,
|
|
506
|
-
});
|
|
507
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
508
|
-
};
|
|
509
|
-
const se_DescribeScalingParametersCommand = async (input, context) => {
|
|
510
|
-
const headers = SHARED_HEADERS;
|
|
511
|
-
let body;
|
|
512
|
-
body = buildFormUrlencodedString({
|
|
513
|
-
...se_DescribeScalingParametersRequest(input),
|
|
514
|
-
[_A]: _DSP,
|
|
515
|
-
[_V]: _,
|
|
516
|
-
});
|
|
517
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
518
|
-
};
|
|
519
|
-
const se_DescribeServiceAccessPoliciesCommand = async (input, context) => {
|
|
520
|
-
const headers = SHARED_HEADERS;
|
|
521
|
-
let body;
|
|
522
|
-
body = buildFormUrlencodedString({
|
|
523
|
-
...se_DescribeServiceAccessPoliciesRequest(input),
|
|
524
|
-
[_A]: _DSAP,
|
|
525
|
-
[_V]: _,
|
|
526
|
-
});
|
|
527
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
528
|
-
};
|
|
529
|
-
const se_DescribeSuggestersCommand = async (input, context) => {
|
|
530
|
-
const headers = SHARED_HEADERS;
|
|
531
|
-
let body;
|
|
532
|
-
body = buildFormUrlencodedString({
|
|
533
|
-
...se_DescribeSuggestersRequest(input),
|
|
534
|
-
[_A]: _DSes,
|
|
535
|
-
[_V]: _,
|
|
536
|
-
});
|
|
537
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
538
|
-
};
|
|
539
|
-
const se_IndexDocumentsCommand = async (input, context) => {
|
|
540
|
-
const headers = SHARED_HEADERS;
|
|
541
|
-
let body;
|
|
542
|
-
body = buildFormUrlencodedString({
|
|
543
|
-
...se_IndexDocumentsRequest(input),
|
|
544
|
-
[_A]: _ID,
|
|
545
|
-
[_V]: _,
|
|
546
|
-
});
|
|
547
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
548
|
-
};
|
|
549
|
-
const se_ListDomainNamesCommand = async (input, context) => {
|
|
550
|
-
const headers = SHARED_HEADERS;
|
|
551
|
-
const body = buildFormUrlencodedString({
|
|
552
|
-
[_A]: _LDN,
|
|
553
|
-
[_V]: _,
|
|
554
|
-
});
|
|
555
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
556
|
-
};
|
|
557
|
-
const se_UpdateAvailabilityOptionsCommand = async (input, context) => {
|
|
558
|
-
const headers = SHARED_HEADERS;
|
|
559
|
-
let body;
|
|
560
|
-
body = buildFormUrlencodedString({
|
|
561
|
-
...se_UpdateAvailabilityOptionsRequest(input),
|
|
562
|
-
[_A]: _UAO,
|
|
563
|
-
[_V]: _,
|
|
564
|
-
});
|
|
565
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
566
|
-
};
|
|
567
|
-
const se_UpdateDomainEndpointOptionsCommand = async (input, context) => {
|
|
568
|
-
const headers = SHARED_HEADERS;
|
|
569
|
-
let body;
|
|
570
|
-
body = buildFormUrlencodedString({
|
|
571
|
-
...se_UpdateDomainEndpointOptionsRequest(input),
|
|
572
|
-
[_A]: _UDEO,
|
|
573
|
-
[_V]: _,
|
|
574
|
-
});
|
|
575
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
576
|
-
};
|
|
577
|
-
const se_UpdateScalingParametersCommand = async (input, context) => {
|
|
578
|
-
const headers = SHARED_HEADERS;
|
|
579
|
-
let body;
|
|
580
|
-
body = buildFormUrlencodedString({
|
|
581
|
-
...se_UpdateScalingParametersRequest(input),
|
|
582
|
-
[_A]: _USP,
|
|
583
|
-
[_V]: _,
|
|
584
|
-
});
|
|
585
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
586
|
-
};
|
|
587
|
-
const se_UpdateServiceAccessPoliciesCommand = async (input, context) => {
|
|
588
|
-
const headers = SHARED_HEADERS;
|
|
589
|
-
let body;
|
|
590
|
-
body = buildFormUrlencodedString({
|
|
591
|
-
...se_UpdateServiceAccessPoliciesRequest(input),
|
|
592
|
-
[_A]: _USAP,
|
|
593
|
-
[_V]: _,
|
|
594
|
-
});
|
|
595
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
596
|
-
};
|
|
597
|
-
const de_BuildSuggestersCommand = async (output, context) => {
|
|
598
|
-
if (output.statusCode >= 300) {
|
|
599
|
-
return de_CommandError(output, context);
|
|
600
|
-
}
|
|
601
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
602
|
-
let contents = {};
|
|
603
|
-
contents = de_BuildSuggestersResponse(data.BuildSuggestersResult);
|
|
604
|
-
const response = {
|
|
605
|
-
$metadata: deserializeMetadata(output),
|
|
606
|
-
...contents,
|
|
607
|
-
};
|
|
608
|
-
return response;
|
|
609
|
-
};
|
|
610
|
-
const de_CreateDomainCommand = async (output, context) => {
|
|
611
|
-
if (output.statusCode >= 300) {
|
|
612
|
-
return de_CommandError(output, context);
|
|
613
|
-
}
|
|
614
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
615
|
-
let contents = {};
|
|
616
|
-
contents = de_CreateDomainResponse(data.CreateDomainResult);
|
|
617
|
-
const response = {
|
|
618
|
-
$metadata: deserializeMetadata(output),
|
|
619
|
-
...contents,
|
|
620
|
-
};
|
|
621
|
-
return response;
|
|
622
|
-
};
|
|
623
|
-
const de_DefineAnalysisSchemeCommand = async (output, context) => {
|
|
624
|
-
if (output.statusCode >= 300) {
|
|
625
|
-
return de_CommandError(output, context);
|
|
626
|
-
}
|
|
627
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
628
|
-
let contents = {};
|
|
629
|
-
contents = de_DefineAnalysisSchemeResponse(data.DefineAnalysisSchemeResult);
|
|
630
|
-
const response = {
|
|
631
|
-
$metadata: deserializeMetadata(output),
|
|
632
|
-
...contents,
|
|
633
|
-
};
|
|
634
|
-
return response;
|
|
635
|
-
};
|
|
636
|
-
const de_DefineExpressionCommand = async (output, context) => {
|
|
637
|
-
if (output.statusCode >= 300) {
|
|
638
|
-
return de_CommandError(output, context);
|
|
639
|
-
}
|
|
640
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
641
|
-
let contents = {};
|
|
642
|
-
contents = de_DefineExpressionResponse(data.DefineExpressionResult);
|
|
643
|
-
const response = {
|
|
644
|
-
$metadata: deserializeMetadata(output),
|
|
645
|
-
...contents,
|
|
646
|
-
};
|
|
647
|
-
return response;
|
|
648
|
-
};
|
|
649
|
-
const de_DefineIndexFieldCommand = async (output, context) => {
|
|
650
|
-
if (output.statusCode >= 300) {
|
|
651
|
-
return de_CommandError(output, context);
|
|
652
|
-
}
|
|
653
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
654
|
-
let contents = {};
|
|
655
|
-
contents = de_DefineIndexFieldResponse(data.DefineIndexFieldResult);
|
|
656
|
-
const response = {
|
|
657
|
-
$metadata: deserializeMetadata(output),
|
|
658
|
-
...contents,
|
|
659
|
-
};
|
|
660
|
-
return response;
|
|
661
|
-
};
|
|
662
|
-
const de_DefineSuggesterCommand = async (output, context) => {
|
|
663
|
-
if (output.statusCode >= 300) {
|
|
664
|
-
return de_CommandError(output, context);
|
|
665
|
-
}
|
|
666
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
667
|
-
let contents = {};
|
|
668
|
-
contents = de_DefineSuggesterResponse(data.DefineSuggesterResult);
|
|
669
|
-
const response = {
|
|
670
|
-
$metadata: deserializeMetadata(output),
|
|
671
|
-
...contents,
|
|
672
|
-
};
|
|
673
|
-
return response;
|
|
674
|
-
};
|
|
675
|
-
const de_DeleteAnalysisSchemeCommand = async (output, context) => {
|
|
676
|
-
if (output.statusCode >= 300) {
|
|
677
|
-
return de_CommandError(output, context);
|
|
678
|
-
}
|
|
679
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
680
|
-
let contents = {};
|
|
681
|
-
contents = de_DeleteAnalysisSchemeResponse(data.DeleteAnalysisSchemeResult);
|
|
682
|
-
const response = {
|
|
683
|
-
$metadata: deserializeMetadata(output),
|
|
684
|
-
...contents,
|
|
685
|
-
};
|
|
686
|
-
return response;
|
|
687
|
-
};
|
|
688
|
-
const de_DeleteDomainCommand = async (output, context) => {
|
|
689
|
-
if (output.statusCode >= 300) {
|
|
690
|
-
return de_CommandError(output, context);
|
|
691
|
-
}
|
|
692
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
693
|
-
let contents = {};
|
|
694
|
-
contents = de_DeleteDomainResponse(data.DeleteDomainResult);
|
|
695
|
-
const response = {
|
|
696
|
-
$metadata: deserializeMetadata(output),
|
|
697
|
-
...contents,
|
|
698
|
-
};
|
|
699
|
-
return response;
|
|
700
|
-
};
|
|
701
|
-
const de_DeleteExpressionCommand = async (output, context) => {
|
|
702
|
-
if (output.statusCode >= 300) {
|
|
703
|
-
return de_CommandError(output, context);
|
|
704
|
-
}
|
|
705
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
706
|
-
let contents = {};
|
|
707
|
-
contents = de_DeleteExpressionResponse(data.DeleteExpressionResult);
|
|
708
|
-
const response = {
|
|
709
|
-
$metadata: deserializeMetadata(output),
|
|
710
|
-
...contents,
|
|
711
|
-
};
|
|
712
|
-
return response;
|
|
713
|
-
};
|
|
714
|
-
const de_DeleteIndexFieldCommand = async (output, context) => {
|
|
715
|
-
if (output.statusCode >= 300) {
|
|
716
|
-
return de_CommandError(output, context);
|
|
717
|
-
}
|
|
718
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
719
|
-
let contents = {};
|
|
720
|
-
contents = de_DeleteIndexFieldResponse(data.DeleteIndexFieldResult);
|
|
721
|
-
const response = {
|
|
722
|
-
$metadata: deserializeMetadata(output),
|
|
723
|
-
...contents,
|
|
724
|
-
};
|
|
725
|
-
return response;
|
|
726
|
-
};
|
|
727
|
-
const de_DeleteSuggesterCommand = async (output, context) => {
|
|
728
|
-
if (output.statusCode >= 300) {
|
|
729
|
-
return de_CommandError(output, context);
|
|
730
|
-
}
|
|
731
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
732
|
-
let contents = {};
|
|
733
|
-
contents = de_DeleteSuggesterResponse(data.DeleteSuggesterResult);
|
|
734
|
-
const response = {
|
|
735
|
-
$metadata: deserializeMetadata(output),
|
|
736
|
-
...contents,
|
|
737
|
-
};
|
|
738
|
-
return response;
|
|
739
|
-
};
|
|
740
|
-
const de_DescribeAnalysisSchemesCommand = async (output, context) => {
|
|
741
|
-
if (output.statusCode >= 300) {
|
|
742
|
-
return de_CommandError(output, context);
|
|
743
|
-
}
|
|
744
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
745
|
-
let contents = {};
|
|
746
|
-
contents = de_DescribeAnalysisSchemesResponse(data.DescribeAnalysisSchemesResult);
|
|
747
|
-
const response = {
|
|
748
|
-
$metadata: deserializeMetadata(output),
|
|
749
|
-
...contents,
|
|
750
|
-
};
|
|
751
|
-
return response;
|
|
752
|
-
};
|
|
753
|
-
const de_DescribeAvailabilityOptionsCommand = async (output, context) => {
|
|
754
|
-
if (output.statusCode >= 300) {
|
|
755
|
-
return de_CommandError(output, context);
|
|
756
|
-
}
|
|
757
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
758
|
-
let contents = {};
|
|
759
|
-
contents = de_DescribeAvailabilityOptionsResponse(data.DescribeAvailabilityOptionsResult);
|
|
760
|
-
const response = {
|
|
761
|
-
$metadata: deserializeMetadata(output),
|
|
762
|
-
...contents,
|
|
763
|
-
};
|
|
764
|
-
return response;
|
|
765
|
-
};
|
|
766
|
-
const de_DescribeDomainEndpointOptionsCommand = async (output, context) => {
|
|
767
|
-
if (output.statusCode >= 300) {
|
|
768
|
-
return de_CommandError(output, context);
|
|
769
|
-
}
|
|
770
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
771
|
-
let contents = {};
|
|
772
|
-
contents = de_DescribeDomainEndpointOptionsResponse(data.DescribeDomainEndpointOptionsResult);
|
|
773
|
-
const response = {
|
|
774
|
-
$metadata: deserializeMetadata(output),
|
|
775
|
-
...contents,
|
|
776
|
-
};
|
|
777
|
-
return response;
|
|
778
|
-
};
|
|
779
|
-
const de_DescribeDomainsCommand = async (output, context) => {
|
|
780
|
-
if (output.statusCode >= 300) {
|
|
781
|
-
return de_CommandError(output, context);
|
|
782
|
-
}
|
|
783
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
784
|
-
let contents = {};
|
|
785
|
-
contents = de_DescribeDomainsResponse(data.DescribeDomainsResult);
|
|
786
|
-
const response = {
|
|
787
|
-
$metadata: deserializeMetadata(output),
|
|
788
|
-
...contents,
|
|
789
|
-
};
|
|
790
|
-
return response;
|
|
791
|
-
};
|
|
792
|
-
const de_DescribeExpressionsCommand = async (output, context) => {
|
|
793
|
-
if (output.statusCode >= 300) {
|
|
794
|
-
return de_CommandError(output, context);
|
|
795
|
-
}
|
|
796
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
797
|
-
let contents = {};
|
|
798
|
-
contents = de_DescribeExpressionsResponse(data.DescribeExpressionsResult);
|
|
799
|
-
const response = {
|
|
800
|
-
$metadata: deserializeMetadata(output),
|
|
801
|
-
...contents,
|
|
802
|
-
};
|
|
803
|
-
return response;
|
|
804
|
-
};
|
|
805
|
-
const de_DescribeIndexFieldsCommand = async (output, context) => {
|
|
806
|
-
if (output.statusCode >= 300) {
|
|
807
|
-
return de_CommandError(output, context);
|
|
808
|
-
}
|
|
809
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
810
|
-
let contents = {};
|
|
811
|
-
contents = de_DescribeIndexFieldsResponse(data.DescribeIndexFieldsResult);
|
|
812
|
-
const response = {
|
|
813
|
-
$metadata: deserializeMetadata(output),
|
|
814
|
-
...contents,
|
|
815
|
-
};
|
|
816
|
-
return response;
|
|
817
|
-
};
|
|
818
|
-
const de_DescribeScalingParametersCommand = async (output, context) => {
|
|
819
|
-
if (output.statusCode >= 300) {
|
|
820
|
-
return de_CommandError(output, context);
|
|
821
|
-
}
|
|
822
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
823
|
-
let contents = {};
|
|
824
|
-
contents = de_DescribeScalingParametersResponse(data.DescribeScalingParametersResult);
|
|
825
|
-
const response = {
|
|
826
|
-
$metadata: deserializeMetadata(output),
|
|
827
|
-
...contents,
|
|
828
|
-
};
|
|
829
|
-
return response;
|
|
830
|
-
};
|
|
831
|
-
const de_DescribeServiceAccessPoliciesCommand = async (output, context) => {
|
|
832
|
-
if (output.statusCode >= 300) {
|
|
833
|
-
return de_CommandError(output, context);
|
|
834
|
-
}
|
|
835
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
836
|
-
let contents = {};
|
|
837
|
-
contents = de_DescribeServiceAccessPoliciesResponse(data.DescribeServiceAccessPoliciesResult);
|
|
838
|
-
const response = {
|
|
839
|
-
$metadata: deserializeMetadata(output),
|
|
840
|
-
...contents,
|
|
841
|
-
};
|
|
842
|
-
return response;
|
|
843
|
-
};
|
|
844
|
-
const de_DescribeSuggestersCommand = async (output, context) => {
|
|
845
|
-
if (output.statusCode >= 300) {
|
|
846
|
-
return de_CommandError(output, context);
|
|
847
|
-
}
|
|
848
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
849
|
-
let contents = {};
|
|
850
|
-
contents = de_DescribeSuggestersResponse(data.DescribeSuggestersResult);
|
|
851
|
-
const response = {
|
|
852
|
-
$metadata: deserializeMetadata(output),
|
|
853
|
-
...contents,
|
|
854
|
-
};
|
|
855
|
-
return response;
|
|
856
|
-
};
|
|
857
|
-
const de_IndexDocumentsCommand = async (output, context) => {
|
|
858
|
-
if (output.statusCode >= 300) {
|
|
859
|
-
return de_CommandError(output, context);
|
|
860
|
-
}
|
|
861
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
862
|
-
let contents = {};
|
|
863
|
-
contents = de_IndexDocumentsResponse(data.IndexDocumentsResult);
|
|
864
|
-
const response = {
|
|
865
|
-
$metadata: deserializeMetadata(output),
|
|
866
|
-
...contents,
|
|
867
|
-
};
|
|
868
|
-
return response;
|
|
869
|
-
};
|
|
870
|
-
const de_ListDomainNamesCommand = async (output, context) => {
|
|
871
|
-
if (output.statusCode >= 300) {
|
|
872
|
-
return de_CommandError(output, context);
|
|
873
|
-
}
|
|
874
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
875
|
-
let contents = {};
|
|
876
|
-
contents = de_ListDomainNamesResponse(data.ListDomainNamesResult);
|
|
877
|
-
const response = {
|
|
878
|
-
$metadata: deserializeMetadata(output),
|
|
879
|
-
...contents,
|
|
880
|
-
};
|
|
881
|
-
return response;
|
|
882
|
-
};
|
|
883
|
-
const de_UpdateAvailabilityOptionsCommand = async (output, context) => {
|
|
884
|
-
if (output.statusCode >= 300) {
|
|
885
|
-
return de_CommandError(output, context);
|
|
886
|
-
}
|
|
887
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
888
|
-
let contents = {};
|
|
889
|
-
contents = de_UpdateAvailabilityOptionsResponse(data.UpdateAvailabilityOptionsResult);
|
|
890
|
-
const response = {
|
|
891
|
-
$metadata: deserializeMetadata(output),
|
|
892
|
-
...contents,
|
|
893
|
-
};
|
|
894
|
-
return response;
|
|
895
|
-
};
|
|
896
|
-
const de_UpdateDomainEndpointOptionsCommand = async (output, context) => {
|
|
897
|
-
if (output.statusCode >= 300) {
|
|
898
|
-
return de_CommandError(output, context);
|
|
899
|
-
}
|
|
900
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
901
|
-
let contents = {};
|
|
902
|
-
contents = de_UpdateDomainEndpointOptionsResponse(data.UpdateDomainEndpointOptionsResult);
|
|
903
|
-
const response = {
|
|
904
|
-
$metadata: deserializeMetadata(output),
|
|
905
|
-
...contents,
|
|
906
|
-
};
|
|
907
|
-
return response;
|
|
908
|
-
};
|
|
909
|
-
const de_UpdateScalingParametersCommand = async (output, context) => {
|
|
910
|
-
if (output.statusCode >= 300) {
|
|
911
|
-
return de_CommandError(output, context);
|
|
912
|
-
}
|
|
913
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
914
|
-
let contents = {};
|
|
915
|
-
contents = de_UpdateScalingParametersResponse(data.UpdateScalingParametersResult);
|
|
916
|
-
const response = {
|
|
917
|
-
$metadata: deserializeMetadata(output),
|
|
918
|
-
...contents,
|
|
919
|
-
};
|
|
920
|
-
return response;
|
|
921
|
-
};
|
|
922
|
-
const de_UpdateServiceAccessPoliciesCommand = async (output, context) => {
|
|
923
|
-
if (output.statusCode >= 300) {
|
|
924
|
-
return de_CommandError(output, context);
|
|
925
|
-
}
|
|
926
|
-
const data = await core$1.parseXmlBody(output.body, context);
|
|
927
|
-
let contents = {};
|
|
928
|
-
contents = de_UpdateServiceAccessPoliciesResponse(data.UpdateServiceAccessPoliciesResult);
|
|
929
|
-
const response = {
|
|
930
|
-
$metadata: deserializeMetadata(output),
|
|
931
|
-
...contents,
|
|
932
|
-
};
|
|
933
|
-
return response;
|
|
934
|
-
};
|
|
935
|
-
const de_CommandError = async (output, context) => {
|
|
936
|
-
const parsedOutput = {
|
|
937
|
-
...output,
|
|
938
|
-
body: await core$1.parseXmlErrorBody(output.body, context),
|
|
939
|
-
};
|
|
940
|
-
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
941
|
-
switch (errorCode) {
|
|
942
|
-
case "BaseException":
|
|
943
|
-
case "com.amazonaws.cloudsearch#BaseException":
|
|
944
|
-
throw await de_BaseExceptionRes(parsedOutput);
|
|
945
|
-
case "InternalException":
|
|
946
|
-
case "com.amazonaws.cloudsearch#InternalException":
|
|
947
|
-
throw await de_InternalExceptionRes(parsedOutput);
|
|
948
|
-
case "ResourceNotFound":
|
|
949
|
-
case "com.amazonaws.cloudsearch#ResourceNotFoundException":
|
|
950
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
951
|
-
case "ValidationException":
|
|
952
|
-
case "com.amazonaws.cloudsearch#ValidationException":
|
|
953
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
954
|
-
case "LimitExceeded":
|
|
955
|
-
case "com.amazonaws.cloudsearch#LimitExceededException":
|
|
956
|
-
throw await de_LimitExceededExceptionRes(parsedOutput);
|
|
957
|
-
case "ResourceAlreadyExists":
|
|
958
|
-
case "com.amazonaws.cloudsearch#ResourceAlreadyExistsException":
|
|
959
|
-
throw await de_ResourceAlreadyExistsExceptionRes(parsedOutput);
|
|
960
|
-
case "InvalidType":
|
|
961
|
-
case "com.amazonaws.cloudsearch#InvalidTypeException":
|
|
962
|
-
throw await de_InvalidTypeExceptionRes(parsedOutput);
|
|
963
|
-
case "DisabledAction":
|
|
964
|
-
case "com.amazonaws.cloudsearch#DisabledOperationException":
|
|
965
|
-
throw await de_DisabledOperationExceptionRes(parsedOutput);
|
|
966
|
-
default:
|
|
967
|
-
const parsedBody = parsedOutput.body;
|
|
968
|
-
return throwDefaultError({
|
|
969
|
-
output,
|
|
970
|
-
parsedBody: parsedBody.Error,
|
|
971
|
-
errorCode,
|
|
972
|
-
});
|
|
973
|
-
}
|
|
974
|
-
};
|
|
975
|
-
const de_BaseExceptionRes = async (parsedOutput, context) => {
|
|
976
|
-
const body = parsedOutput.body;
|
|
977
|
-
const deserialized = de_BaseException(body.Error);
|
|
978
|
-
const exception = new BaseException({
|
|
979
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
980
|
-
...deserialized,
|
|
981
|
-
});
|
|
982
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
983
|
-
};
|
|
984
|
-
const de_DisabledOperationExceptionRes = async (parsedOutput, context) => {
|
|
985
|
-
const body = parsedOutput.body;
|
|
986
|
-
const deserialized = de_DisabledOperationException(body.Error);
|
|
987
|
-
const exception = new DisabledOperationException({
|
|
988
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
989
|
-
...deserialized,
|
|
990
|
-
});
|
|
991
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
992
|
-
};
|
|
993
|
-
const de_InternalExceptionRes = async (parsedOutput, context) => {
|
|
994
|
-
const body = parsedOutput.body;
|
|
995
|
-
const deserialized = de_InternalException(body.Error);
|
|
996
|
-
const exception = new InternalException({
|
|
997
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
998
|
-
...deserialized,
|
|
999
|
-
});
|
|
1000
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
1001
|
-
};
|
|
1002
|
-
const de_InvalidTypeExceptionRes = async (parsedOutput, context) => {
|
|
1003
|
-
const body = parsedOutput.body;
|
|
1004
|
-
const deserialized = de_InvalidTypeException(body.Error);
|
|
1005
|
-
const exception = new InvalidTypeException({
|
|
1006
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1007
|
-
...deserialized,
|
|
1008
|
-
});
|
|
1009
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
1010
|
-
};
|
|
1011
|
-
const de_LimitExceededExceptionRes = async (parsedOutput, context) => {
|
|
1012
|
-
const body = parsedOutput.body;
|
|
1013
|
-
const deserialized = de_LimitExceededException(body.Error);
|
|
1014
|
-
const exception = new LimitExceededException({
|
|
1015
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1016
|
-
...deserialized,
|
|
1017
|
-
});
|
|
1018
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
1019
|
-
};
|
|
1020
|
-
const de_ResourceAlreadyExistsExceptionRes = async (parsedOutput, context) => {
|
|
1021
|
-
const body = parsedOutput.body;
|
|
1022
|
-
const deserialized = de_ResourceAlreadyExistsException(body.Error);
|
|
1023
|
-
const exception = new ResourceAlreadyExistsException({
|
|
1024
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1025
|
-
...deserialized,
|
|
1026
|
-
});
|
|
1027
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
1028
|
-
};
|
|
1029
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1030
|
-
const body = parsedOutput.body;
|
|
1031
|
-
const deserialized = de_ResourceNotFoundException(body.Error);
|
|
1032
|
-
const exception = new ResourceNotFoundException({
|
|
1033
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1034
|
-
...deserialized,
|
|
1035
|
-
});
|
|
1036
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
1037
|
-
};
|
|
1038
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
1039
|
-
const body = parsedOutput.body;
|
|
1040
|
-
const deserialized = de_ValidationException(body.Error);
|
|
1041
|
-
const exception = new ValidationException({
|
|
1042
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1043
|
-
...deserialized,
|
|
1044
|
-
});
|
|
1045
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
1046
|
-
};
|
|
1047
|
-
const se_AnalysisOptions = (input, context) => {
|
|
1048
|
-
const entries = {};
|
|
1049
|
-
if (input[_S] != null) {
|
|
1050
|
-
entries[_S] = input[_S];
|
|
1051
|
-
}
|
|
1052
|
-
if (input[_St] != null) {
|
|
1053
|
-
entries[_St] = input[_St];
|
|
1054
|
-
}
|
|
1055
|
-
if (input[_SD] != null) {
|
|
1056
|
-
entries[_SD] = input[_SD];
|
|
1057
|
-
}
|
|
1058
|
-
if (input[_JTD] != null) {
|
|
1059
|
-
entries[_JTD] = input[_JTD];
|
|
1060
|
-
}
|
|
1061
|
-
if (input[_AS] != null) {
|
|
1062
|
-
entries[_AS] = input[_AS];
|
|
1063
|
-
}
|
|
1064
|
-
return entries;
|
|
1065
|
-
};
|
|
1066
|
-
const se_AnalysisScheme = (input, context) => {
|
|
1067
|
-
const entries = {};
|
|
1068
|
-
if (input[_ASN] != null) {
|
|
1069
|
-
entries[_ASN] = input[_ASN];
|
|
1070
|
-
}
|
|
1071
|
-
if (input[_ASL] != null) {
|
|
1072
|
-
entries[_ASL] = input[_ASL];
|
|
1073
|
-
}
|
|
1074
|
-
if (input[_AO] != null) {
|
|
1075
|
-
const memberEntries = se_AnalysisOptions(input[_AO]);
|
|
1076
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1077
|
-
const loc = `AnalysisOptions.${key}`;
|
|
1078
|
-
entries[loc] = value;
|
|
1079
|
-
});
|
|
1080
|
-
}
|
|
1081
|
-
return entries;
|
|
1082
|
-
};
|
|
1083
|
-
const se_BuildSuggestersRequest = (input, context) => {
|
|
1084
|
-
const entries = {};
|
|
1085
|
-
if (input[_DN] != null) {
|
|
1086
|
-
entries[_DN] = input[_DN];
|
|
1087
|
-
}
|
|
1088
|
-
return entries;
|
|
1089
|
-
};
|
|
1090
|
-
const se_CreateDomainRequest = (input, context) => {
|
|
1091
|
-
const entries = {};
|
|
1092
|
-
if (input[_DN] != null) {
|
|
1093
|
-
entries[_DN] = input[_DN];
|
|
1094
|
-
}
|
|
1095
|
-
return entries;
|
|
1096
|
-
};
|
|
1097
|
-
const se_DateArrayOptions = (input, context) => {
|
|
1098
|
-
const entries = {};
|
|
1099
|
-
if (input[_DV] != null) {
|
|
1100
|
-
entries[_DV] = input[_DV];
|
|
1101
|
-
}
|
|
1102
|
-
if (input[_SF] != null) {
|
|
1103
|
-
entries[_SF] = input[_SF];
|
|
1104
|
-
}
|
|
1105
|
-
if (input[_FE] != null) {
|
|
1106
|
-
entries[_FE] = input[_FE];
|
|
1107
|
-
}
|
|
1108
|
-
if (input[_SE] != null) {
|
|
1109
|
-
entries[_SE] = input[_SE];
|
|
1110
|
-
}
|
|
1111
|
-
if (input[_RE] != null) {
|
|
1112
|
-
entries[_RE] = input[_RE];
|
|
1113
|
-
}
|
|
1114
|
-
return entries;
|
|
1115
|
-
};
|
|
1116
|
-
const se_DateOptions = (input, context) => {
|
|
1117
|
-
const entries = {};
|
|
1118
|
-
if (input[_DV] != null) {
|
|
1119
|
-
entries[_DV] = input[_DV];
|
|
1120
|
-
}
|
|
1121
|
-
if (input[_SFo] != null) {
|
|
1122
|
-
entries[_SFo] = input[_SFo];
|
|
1123
|
-
}
|
|
1124
|
-
if (input[_FE] != null) {
|
|
1125
|
-
entries[_FE] = input[_FE];
|
|
1126
|
-
}
|
|
1127
|
-
if (input[_SE] != null) {
|
|
1128
|
-
entries[_SE] = input[_SE];
|
|
1129
|
-
}
|
|
1130
|
-
if (input[_RE] != null) {
|
|
1131
|
-
entries[_RE] = input[_RE];
|
|
1132
|
-
}
|
|
1133
|
-
if (input[_SEo] != null) {
|
|
1134
|
-
entries[_SEo] = input[_SEo];
|
|
1135
|
-
}
|
|
1136
|
-
return entries;
|
|
1137
|
-
};
|
|
1138
|
-
const se_DefineAnalysisSchemeRequest = (input, context) => {
|
|
1139
|
-
const entries = {};
|
|
1140
|
-
if (input[_DN] != null) {
|
|
1141
|
-
entries[_DN] = input[_DN];
|
|
1142
|
-
}
|
|
1143
|
-
if (input[_ASn] != null) {
|
|
1144
|
-
const memberEntries = se_AnalysisScheme(input[_ASn]);
|
|
1145
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1146
|
-
const loc = `AnalysisScheme.${key}`;
|
|
1147
|
-
entries[loc] = value;
|
|
1148
|
-
});
|
|
1149
|
-
}
|
|
1150
|
-
return entries;
|
|
1151
|
-
};
|
|
1152
|
-
const se_DefineExpressionRequest = (input, context) => {
|
|
1153
|
-
const entries = {};
|
|
1154
|
-
if (input[_DN] != null) {
|
|
1155
|
-
entries[_DN] = input[_DN];
|
|
1156
|
-
}
|
|
1157
|
-
if (input[_E] != null) {
|
|
1158
|
-
const memberEntries = se_Expression(input[_E]);
|
|
1159
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1160
|
-
const loc = `Expression.${key}`;
|
|
1161
|
-
entries[loc] = value;
|
|
1162
|
-
});
|
|
1163
|
-
}
|
|
1164
|
-
return entries;
|
|
1165
|
-
};
|
|
1166
|
-
const se_DefineIndexFieldRequest = (input, context) => {
|
|
1167
|
-
const entries = {};
|
|
1168
|
-
if (input[_DN] != null) {
|
|
1169
|
-
entries[_DN] = input[_DN];
|
|
1170
|
-
}
|
|
1171
|
-
if (input[_IF] != null) {
|
|
1172
|
-
const memberEntries = se_IndexField(input[_IF]);
|
|
1173
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1174
|
-
const loc = `IndexField.${key}`;
|
|
1175
|
-
entries[loc] = value;
|
|
1176
|
-
});
|
|
1177
|
-
}
|
|
1178
|
-
return entries;
|
|
1179
|
-
};
|
|
1180
|
-
const se_DefineSuggesterRequest = (input, context) => {
|
|
1181
|
-
const entries = {};
|
|
1182
|
-
if (input[_DN] != null) {
|
|
1183
|
-
entries[_DN] = input[_DN];
|
|
1184
|
-
}
|
|
1185
|
-
if (input[_Su] != null) {
|
|
1186
|
-
const memberEntries = se_Suggester(input[_Su]);
|
|
1187
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1188
|
-
const loc = `Suggester.${key}`;
|
|
1189
|
-
entries[loc] = value;
|
|
1190
|
-
});
|
|
1191
|
-
}
|
|
1192
|
-
return entries;
|
|
1193
|
-
};
|
|
1194
|
-
const se_DeleteAnalysisSchemeRequest = (input, context) => {
|
|
1195
|
-
const entries = {};
|
|
1196
|
-
if (input[_DN] != null) {
|
|
1197
|
-
entries[_DN] = input[_DN];
|
|
1198
|
-
}
|
|
1199
|
-
if (input[_ASN] != null) {
|
|
1200
|
-
entries[_ASN] = input[_ASN];
|
|
1201
|
-
}
|
|
1202
|
-
return entries;
|
|
1203
|
-
};
|
|
1204
|
-
const se_DeleteDomainRequest = (input, context) => {
|
|
1205
|
-
const entries = {};
|
|
1206
|
-
if (input[_DN] != null) {
|
|
1207
|
-
entries[_DN] = input[_DN];
|
|
1208
|
-
}
|
|
1209
|
-
return entries;
|
|
1210
|
-
};
|
|
1211
|
-
const se_DeleteExpressionRequest = (input, context) => {
|
|
1212
|
-
const entries = {};
|
|
1213
|
-
if (input[_DN] != null) {
|
|
1214
|
-
entries[_DN] = input[_DN];
|
|
1215
|
-
}
|
|
1216
|
-
if (input[_EN] != null) {
|
|
1217
|
-
entries[_EN] = input[_EN];
|
|
1218
|
-
}
|
|
1219
|
-
return entries;
|
|
1220
|
-
};
|
|
1221
|
-
const se_DeleteIndexFieldRequest = (input, context) => {
|
|
1222
|
-
const entries = {};
|
|
1223
|
-
if (input[_DN] != null) {
|
|
1224
|
-
entries[_DN] = input[_DN];
|
|
1225
|
-
}
|
|
1226
|
-
if (input[_IFN] != null) {
|
|
1227
|
-
entries[_IFN] = input[_IFN];
|
|
1228
|
-
}
|
|
1229
|
-
return entries;
|
|
1230
|
-
};
|
|
1231
|
-
const se_DeleteSuggesterRequest = (input, context) => {
|
|
1232
|
-
const entries = {};
|
|
1233
|
-
if (input[_DN] != null) {
|
|
1234
|
-
entries[_DN] = input[_DN];
|
|
1235
|
-
}
|
|
1236
|
-
if (input[_SN] != null) {
|
|
1237
|
-
entries[_SN] = input[_SN];
|
|
1238
|
-
}
|
|
1239
|
-
return entries;
|
|
1240
|
-
};
|
|
1241
|
-
const se_DescribeAnalysisSchemesRequest = (input, context) => {
|
|
1242
|
-
const entries = {};
|
|
1243
|
-
if (input[_DN] != null) {
|
|
1244
|
-
entries[_DN] = input[_DN];
|
|
1245
|
-
}
|
|
1246
|
-
if (input[_ASNn] != null) {
|
|
1247
|
-
const memberEntries = se_StandardNameList(input[_ASNn]);
|
|
1248
|
-
if (input[_ASNn]?.length === 0) {
|
|
1249
|
-
entries.AnalysisSchemeNames = [];
|
|
1250
|
-
}
|
|
1251
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1252
|
-
const loc = `AnalysisSchemeNames.${key}`;
|
|
1253
|
-
entries[loc] = value;
|
|
1254
|
-
});
|
|
1255
|
-
}
|
|
1256
|
-
if (input[_D] != null) {
|
|
1257
|
-
entries[_D] = input[_D];
|
|
1258
|
-
}
|
|
1259
|
-
return entries;
|
|
1260
|
-
};
|
|
1261
|
-
const se_DescribeAvailabilityOptionsRequest = (input, context) => {
|
|
1262
|
-
const entries = {};
|
|
1263
|
-
if (input[_DN] != null) {
|
|
1264
|
-
entries[_DN] = input[_DN];
|
|
1265
|
-
}
|
|
1266
|
-
if (input[_D] != null) {
|
|
1267
|
-
entries[_D] = input[_D];
|
|
1268
|
-
}
|
|
1269
|
-
return entries;
|
|
1270
|
-
};
|
|
1271
|
-
const se_DescribeDomainEndpointOptionsRequest = (input, context) => {
|
|
1272
|
-
const entries = {};
|
|
1273
|
-
if (input[_DN] != null) {
|
|
1274
|
-
entries[_DN] = input[_DN];
|
|
1275
|
-
}
|
|
1276
|
-
if (input[_D] != null) {
|
|
1277
|
-
entries[_D] = input[_D];
|
|
1278
|
-
}
|
|
1279
|
-
return entries;
|
|
1280
|
-
};
|
|
1281
|
-
const se_DescribeDomainsRequest = (input, context) => {
|
|
1282
|
-
const entries = {};
|
|
1283
|
-
if (input[_DNo] != null) {
|
|
1284
|
-
const memberEntries = se_DomainNameList(input[_DNo]);
|
|
1285
|
-
if (input[_DNo]?.length === 0) {
|
|
1286
|
-
entries.DomainNames = [];
|
|
1287
|
-
}
|
|
1288
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1289
|
-
const loc = `DomainNames.${key}`;
|
|
1290
|
-
entries[loc] = value;
|
|
1291
|
-
});
|
|
1292
|
-
}
|
|
1293
|
-
return entries;
|
|
1294
|
-
};
|
|
1295
|
-
const se_DescribeExpressionsRequest = (input, context) => {
|
|
1296
|
-
const entries = {};
|
|
1297
|
-
if (input[_DN] != null) {
|
|
1298
|
-
entries[_DN] = input[_DN];
|
|
1299
|
-
}
|
|
1300
|
-
if (input[_ENx] != null) {
|
|
1301
|
-
const memberEntries = se_StandardNameList(input[_ENx]);
|
|
1302
|
-
if (input[_ENx]?.length === 0) {
|
|
1303
|
-
entries.ExpressionNames = [];
|
|
1304
|
-
}
|
|
1305
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1306
|
-
const loc = `ExpressionNames.${key}`;
|
|
1307
|
-
entries[loc] = value;
|
|
1308
|
-
});
|
|
1309
|
-
}
|
|
1310
|
-
if (input[_D] != null) {
|
|
1311
|
-
entries[_D] = input[_D];
|
|
1312
|
-
}
|
|
1313
|
-
return entries;
|
|
1314
|
-
};
|
|
1315
|
-
const se_DescribeIndexFieldsRequest = (input, context) => {
|
|
1316
|
-
const entries = {};
|
|
1317
|
-
if (input[_DN] != null) {
|
|
1318
|
-
entries[_DN] = input[_DN];
|
|
1319
|
-
}
|
|
1320
|
-
if (input[_FN] != null) {
|
|
1321
|
-
const memberEntries = se_DynamicFieldNameList(input[_FN]);
|
|
1322
|
-
if (input[_FN]?.length === 0) {
|
|
1323
|
-
entries.FieldNames = [];
|
|
1324
|
-
}
|
|
1325
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1326
|
-
const loc = `FieldNames.${key}`;
|
|
1327
|
-
entries[loc] = value;
|
|
1328
|
-
});
|
|
1329
|
-
}
|
|
1330
|
-
if (input[_D] != null) {
|
|
1331
|
-
entries[_D] = input[_D];
|
|
1332
|
-
}
|
|
1333
|
-
return entries;
|
|
1334
|
-
};
|
|
1335
|
-
const se_DescribeScalingParametersRequest = (input, context) => {
|
|
1336
|
-
const entries = {};
|
|
1337
|
-
if (input[_DN] != null) {
|
|
1338
|
-
entries[_DN] = input[_DN];
|
|
1339
|
-
}
|
|
1340
|
-
return entries;
|
|
1341
|
-
};
|
|
1342
|
-
const se_DescribeServiceAccessPoliciesRequest = (input, context) => {
|
|
1343
|
-
const entries = {};
|
|
1344
|
-
if (input[_DN] != null) {
|
|
1345
|
-
entries[_DN] = input[_DN];
|
|
1346
|
-
}
|
|
1347
|
-
if (input[_D] != null) {
|
|
1348
|
-
entries[_D] = input[_D];
|
|
1349
|
-
}
|
|
1350
|
-
return entries;
|
|
1351
|
-
};
|
|
1352
|
-
const se_DescribeSuggestersRequest = (input, context) => {
|
|
1353
|
-
const entries = {};
|
|
1354
|
-
if (input[_DN] != null) {
|
|
1355
|
-
entries[_DN] = input[_DN];
|
|
1356
|
-
}
|
|
1357
|
-
if (input[_SNu] != null) {
|
|
1358
|
-
const memberEntries = se_StandardNameList(input[_SNu]);
|
|
1359
|
-
if (input[_SNu]?.length === 0) {
|
|
1360
|
-
entries.SuggesterNames = [];
|
|
1361
|
-
}
|
|
1362
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1363
|
-
const loc = `SuggesterNames.${key}`;
|
|
1364
|
-
entries[loc] = value;
|
|
1365
|
-
});
|
|
1366
|
-
}
|
|
1367
|
-
if (input[_D] != null) {
|
|
1368
|
-
entries[_D] = input[_D];
|
|
1369
|
-
}
|
|
1370
|
-
return entries;
|
|
1371
|
-
};
|
|
1372
|
-
const se_DocumentSuggesterOptions = (input, context) => {
|
|
1373
|
-
const entries = {};
|
|
1374
|
-
if (input[_SFo] != null) {
|
|
1375
|
-
entries[_SFo] = input[_SFo];
|
|
1376
|
-
}
|
|
1377
|
-
if (input[_FM] != null) {
|
|
1378
|
-
entries[_FM] = input[_FM];
|
|
1379
|
-
}
|
|
1380
|
-
if (input[_SEor] != null) {
|
|
1381
|
-
entries[_SEor] = input[_SEor];
|
|
1382
|
-
}
|
|
1383
|
-
return entries;
|
|
1384
|
-
};
|
|
1385
|
-
const se_DomainEndpointOptions = (input, context) => {
|
|
1386
|
-
const entries = {};
|
|
1387
|
-
if (input[_EHTTPS] != null) {
|
|
1388
|
-
entries[_EHTTPS] = input[_EHTTPS];
|
|
1389
|
-
}
|
|
1390
|
-
if (input[_TLSSP] != null) {
|
|
1391
|
-
entries[_TLSSP] = input[_TLSSP];
|
|
1392
|
-
}
|
|
1393
|
-
return entries;
|
|
1394
|
-
};
|
|
1395
|
-
const se_DomainNameList = (input, context) => {
|
|
1396
|
-
const entries = {};
|
|
1397
|
-
let counter = 1;
|
|
1398
|
-
for (const entry of input) {
|
|
1399
|
-
if (entry === null) {
|
|
1400
|
-
continue;
|
|
1401
|
-
}
|
|
1402
|
-
entries[`member.${counter}`] = entry;
|
|
1403
|
-
counter++;
|
|
1404
|
-
}
|
|
1405
|
-
return entries;
|
|
1406
|
-
};
|
|
1407
|
-
const se_DoubleArrayOptions = (input, context) => {
|
|
1408
|
-
const entries = {};
|
|
1409
|
-
if (input[_DV] != null) {
|
|
1410
|
-
entries[_DV] = smithyClient.serializeFloat(input[_DV]);
|
|
1411
|
-
}
|
|
1412
|
-
if (input[_SF] != null) {
|
|
1413
|
-
entries[_SF] = input[_SF];
|
|
1414
|
-
}
|
|
1415
|
-
if (input[_FE] != null) {
|
|
1416
|
-
entries[_FE] = input[_FE];
|
|
1417
|
-
}
|
|
1418
|
-
if (input[_SE] != null) {
|
|
1419
|
-
entries[_SE] = input[_SE];
|
|
1420
|
-
}
|
|
1421
|
-
if (input[_RE] != null) {
|
|
1422
|
-
entries[_RE] = input[_RE];
|
|
1423
|
-
}
|
|
1424
|
-
return entries;
|
|
1425
|
-
};
|
|
1426
|
-
const se_DoubleOptions = (input, context) => {
|
|
1427
|
-
const entries = {};
|
|
1428
|
-
if (input[_DV] != null) {
|
|
1429
|
-
entries[_DV] = smithyClient.serializeFloat(input[_DV]);
|
|
1430
|
-
}
|
|
1431
|
-
if (input[_SFo] != null) {
|
|
1432
|
-
entries[_SFo] = input[_SFo];
|
|
1433
|
-
}
|
|
1434
|
-
if (input[_FE] != null) {
|
|
1435
|
-
entries[_FE] = input[_FE];
|
|
1436
|
-
}
|
|
1437
|
-
if (input[_SE] != null) {
|
|
1438
|
-
entries[_SE] = input[_SE];
|
|
1439
|
-
}
|
|
1440
|
-
if (input[_RE] != null) {
|
|
1441
|
-
entries[_RE] = input[_RE];
|
|
1442
|
-
}
|
|
1443
|
-
if (input[_SEo] != null) {
|
|
1444
|
-
entries[_SEo] = input[_SEo];
|
|
1445
|
-
}
|
|
1446
|
-
return entries;
|
|
1447
|
-
};
|
|
1448
|
-
const se_DynamicFieldNameList = (input, context) => {
|
|
1449
|
-
const entries = {};
|
|
1450
|
-
let counter = 1;
|
|
1451
|
-
for (const entry of input) {
|
|
1452
|
-
if (entry === null) {
|
|
1453
|
-
continue;
|
|
1454
|
-
}
|
|
1455
|
-
entries[`member.${counter}`] = entry;
|
|
1456
|
-
counter++;
|
|
1457
|
-
}
|
|
1458
|
-
return entries;
|
|
1459
|
-
};
|
|
1460
|
-
const se_Expression = (input, context) => {
|
|
1461
|
-
const entries = {};
|
|
1462
|
-
if (input[_EN] != null) {
|
|
1463
|
-
entries[_EN] = input[_EN];
|
|
1464
|
-
}
|
|
1465
|
-
if (input[_EV] != null) {
|
|
1466
|
-
entries[_EV] = input[_EV];
|
|
1467
|
-
}
|
|
1468
|
-
return entries;
|
|
1469
|
-
};
|
|
1470
|
-
const se_IndexDocumentsRequest = (input, context) => {
|
|
1471
|
-
const entries = {};
|
|
1472
|
-
if (input[_DN] != null) {
|
|
1473
|
-
entries[_DN] = input[_DN];
|
|
1474
|
-
}
|
|
1475
|
-
return entries;
|
|
1476
|
-
};
|
|
1477
|
-
const se_IndexField = (input, context) => {
|
|
1478
|
-
const entries = {};
|
|
1479
|
-
if (input[_IFN] != null) {
|
|
1480
|
-
entries[_IFN] = input[_IFN];
|
|
1481
|
-
}
|
|
1482
|
-
if (input[_IFT] != null) {
|
|
1483
|
-
entries[_IFT] = input[_IFT];
|
|
1484
|
-
}
|
|
1485
|
-
if (input[_IO] != null) {
|
|
1486
|
-
const memberEntries = se_IntOptions(input[_IO]);
|
|
1487
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1488
|
-
const loc = `IntOptions.${key}`;
|
|
1489
|
-
entries[loc] = value;
|
|
1490
|
-
});
|
|
1491
|
-
}
|
|
1492
|
-
if (input[_DO] != null) {
|
|
1493
|
-
const memberEntries = se_DoubleOptions(input[_DO]);
|
|
1494
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1495
|
-
const loc = `DoubleOptions.${key}`;
|
|
1496
|
-
entries[loc] = value;
|
|
1497
|
-
});
|
|
1498
|
-
}
|
|
1499
|
-
if (input[_LO] != null) {
|
|
1500
|
-
const memberEntries = se_LiteralOptions(input[_LO]);
|
|
1501
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1502
|
-
const loc = `LiteralOptions.${key}`;
|
|
1503
|
-
entries[loc] = value;
|
|
1504
|
-
});
|
|
1505
|
-
}
|
|
1506
|
-
if (input[_TO] != null) {
|
|
1507
|
-
const memberEntries = se_TextOptions(input[_TO]);
|
|
1508
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1509
|
-
const loc = `TextOptions.${key}`;
|
|
1510
|
-
entries[loc] = value;
|
|
1511
|
-
});
|
|
1512
|
-
}
|
|
1513
|
-
if (input[_DOa] != null) {
|
|
1514
|
-
const memberEntries = se_DateOptions(input[_DOa]);
|
|
1515
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1516
|
-
const loc = `DateOptions.${key}`;
|
|
1517
|
-
entries[loc] = value;
|
|
1518
|
-
});
|
|
1519
|
-
}
|
|
1520
|
-
if (input[_LLO] != null) {
|
|
1521
|
-
const memberEntries = se_LatLonOptions(input[_LLO]);
|
|
1522
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1523
|
-
const loc = `LatLonOptions.${key}`;
|
|
1524
|
-
entries[loc] = value;
|
|
1525
|
-
});
|
|
1526
|
-
}
|
|
1527
|
-
if (input[_IAO] != null) {
|
|
1528
|
-
const memberEntries = se_IntArrayOptions(input[_IAO]);
|
|
1529
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1530
|
-
const loc = `IntArrayOptions.${key}`;
|
|
1531
|
-
entries[loc] = value;
|
|
1532
|
-
});
|
|
1533
|
-
}
|
|
1534
|
-
if (input[_DAOo] != null) {
|
|
1535
|
-
const memberEntries = se_DoubleArrayOptions(input[_DAOo]);
|
|
1536
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1537
|
-
const loc = `DoubleArrayOptions.${key}`;
|
|
1538
|
-
entries[loc] = value;
|
|
1539
|
-
});
|
|
1540
|
-
}
|
|
1541
|
-
if (input[_LAO] != null) {
|
|
1542
|
-
const memberEntries = se_LiteralArrayOptions(input[_LAO]);
|
|
1543
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1544
|
-
const loc = `LiteralArrayOptions.${key}`;
|
|
1545
|
-
entries[loc] = value;
|
|
1546
|
-
});
|
|
1547
|
-
}
|
|
1548
|
-
if (input[_TAO] != null) {
|
|
1549
|
-
const memberEntries = se_TextArrayOptions(input[_TAO]);
|
|
1550
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1551
|
-
const loc = `TextArrayOptions.${key}`;
|
|
1552
|
-
entries[loc] = value;
|
|
1553
|
-
});
|
|
1554
|
-
}
|
|
1555
|
-
if (input[_DAOa] != null) {
|
|
1556
|
-
const memberEntries = se_DateArrayOptions(input[_DAOa]);
|
|
1557
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1558
|
-
const loc = `DateArrayOptions.${key}`;
|
|
1559
|
-
entries[loc] = value;
|
|
1560
|
-
});
|
|
1561
|
-
}
|
|
1562
|
-
return entries;
|
|
1563
|
-
};
|
|
1564
|
-
const se_IntArrayOptions = (input, context) => {
|
|
1565
|
-
const entries = {};
|
|
1566
|
-
if (input[_DV] != null) {
|
|
1567
|
-
entries[_DV] = input[_DV];
|
|
1568
|
-
}
|
|
1569
|
-
if (input[_SF] != null) {
|
|
1570
|
-
entries[_SF] = input[_SF];
|
|
1571
|
-
}
|
|
1572
|
-
if (input[_FE] != null) {
|
|
1573
|
-
entries[_FE] = input[_FE];
|
|
1574
|
-
}
|
|
1575
|
-
if (input[_SE] != null) {
|
|
1576
|
-
entries[_SE] = input[_SE];
|
|
1577
|
-
}
|
|
1578
|
-
if (input[_RE] != null) {
|
|
1579
|
-
entries[_RE] = input[_RE];
|
|
1580
|
-
}
|
|
1581
|
-
return entries;
|
|
1582
|
-
};
|
|
1583
|
-
const se_IntOptions = (input, context) => {
|
|
1584
|
-
const entries = {};
|
|
1585
|
-
if (input[_DV] != null) {
|
|
1586
|
-
entries[_DV] = input[_DV];
|
|
1587
|
-
}
|
|
1588
|
-
if (input[_SFo] != null) {
|
|
1589
|
-
entries[_SFo] = input[_SFo];
|
|
1590
|
-
}
|
|
1591
|
-
if (input[_FE] != null) {
|
|
1592
|
-
entries[_FE] = input[_FE];
|
|
1593
|
-
}
|
|
1594
|
-
if (input[_SE] != null) {
|
|
1595
|
-
entries[_SE] = input[_SE];
|
|
1596
|
-
}
|
|
1597
|
-
if (input[_RE] != null) {
|
|
1598
|
-
entries[_RE] = input[_RE];
|
|
1599
|
-
}
|
|
1600
|
-
if (input[_SEo] != null) {
|
|
1601
|
-
entries[_SEo] = input[_SEo];
|
|
1602
|
-
}
|
|
1603
|
-
return entries;
|
|
1604
|
-
};
|
|
1605
|
-
const se_LatLonOptions = (input, context) => {
|
|
1606
|
-
const entries = {};
|
|
1607
|
-
if (input[_DV] != null) {
|
|
1608
|
-
entries[_DV] = input[_DV];
|
|
1609
|
-
}
|
|
1610
|
-
if (input[_SFo] != null) {
|
|
1611
|
-
entries[_SFo] = input[_SFo];
|
|
1612
|
-
}
|
|
1613
|
-
if (input[_FE] != null) {
|
|
1614
|
-
entries[_FE] = input[_FE];
|
|
1615
|
-
}
|
|
1616
|
-
if (input[_SE] != null) {
|
|
1617
|
-
entries[_SE] = input[_SE];
|
|
1618
|
-
}
|
|
1619
|
-
if (input[_RE] != null) {
|
|
1620
|
-
entries[_RE] = input[_RE];
|
|
1621
|
-
}
|
|
1622
|
-
if (input[_SEo] != null) {
|
|
1623
|
-
entries[_SEo] = input[_SEo];
|
|
1624
|
-
}
|
|
1625
|
-
return entries;
|
|
1626
|
-
};
|
|
1627
|
-
const se_LiteralArrayOptions = (input, context) => {
|
|
1628
|
-
const entries = {};
|
|
1629
|
-
if (input[_DV] != null) {
|
|
1630
|
-
entries[_DV] = input[_DV];
|
|
1631
|
-
}
|
|
1632
|
-
if (input[_SF] != null) {
|
|
1633
|
-
entries[_SF] = input[_SF];
|
|
1634
|
-
}
|
|
1635
|
-
if (input[_FE] != null) {
|
|
1636
|
-
entries[_FE] = input[_FE];
|
|
1637
|
-
}
|
|
1638
|
-
if (input[_SE] != null) {
|
|
1639
|
-
entries[_SE] = input[_SE];
|
|
1640
|
-
}
|
|
1641
|
-
if (input[_RE] != null) {
|
|
1642
|
-
entries[_RE] = input[_RE];
|
|
1643
|
-
}
|
|
1644
|
-
return entries;
|
|
1645
|
-
};
|
|
1646
|
-
const se_LiteralOptions = (input, context) => {
|
|
1647
|
-
const entries = {};
|
|
1648
|
-
if (input[_DV] != null) {
|
|
1649
|
-
entries[_DV] = input[_DV];
|
|
1650
|
-
}
|
|
1651
|
-
if (input[_SFo] != null) {
|
|
1652
|
-
entries[_SFo] = input[_SFo];
|
|
1653
|
-
}
|
|
1654
|
-
if (input[_FE] != null) {
|
|
1655
|
-
entries[_FE] = input[_FE];
|
|
1656
|
-
}
|
|
1657
|
-
if (input[_SE] != null) {
|
|
1658
|
-
entries[_SE] = input[_SE];
|
|
1659
|
-
}
|
|
1660
|
-
if (input[_RE] != null) {
|
|
1661
|
-
entries[_RE] = input[_RE];
|
|
1662
|
-
}
|
|
1663
|
-
if (input[_SEo] != null) {
|
|
1664
|
-
entries[_SEo] = input[_SEo];
|
|
1665
|
-
}
|
|
1666
|
-
return entries;
|
|
1667
|
-
};
|
|
1668
|
-
const se_ScalingParameters = (input, context) => {
|
|
1669
|
-
const entries = {};
|
|
1670
|
-
if (input[_DIT] != null) {
|
|
1671
|
-
entries[_DIT] = input[_DIT];
|
|
1672
|
-
}
|
|
1673
|
-
if (input[_DRC] != null) {
|
|
1674
|
-
entries[_DRC] = input[_DRC];
|
|
1675
|
-
}
|
|
1676
|
-
if (input[_DPC] != null) {
|
|
1677
|
-
entries[_DPC] = input[_DPC];
|
|
1678
|
-
}
|
|
1679
|
-
return entries;
|
|
1680
|
-
};
|
|
1681
|
-
const se_StandardNameList = (input, context) => {
|
|
1682
|
-
const entries = {};
|
|
1683
|
-
let counter = 1;
|
|
1684
|
-
for (const entry of input) {
|
|
1685
|
-
if (entry === null) {
|
|
1686
|
-
continue;
|
|
1687
|
-
}
|
|
1688
|
-
entries[`member.${counter}`] = entry;
|
|
1689
|
-
counter++;
|
|
1690
|
-
}
|
|
1691
|
-
return entries;
|
|
1692
|
-
};
|
|
1693
|
-
const se_Suggester = (input, context) => {
|
|
1694
|
-
const entries = {};
|
|
1695
|
-
if (input[_SN] != null) {
|
|
1696
|
-
entries[_SN] = input[_SN];
|
|
1697
|
-
}
|
|
1698
|
-
if (input[_DSO] != null) {
|
|
1699
|
-
const memberEntries = se_DocumentSuggesterOptions(input[_DSO]);
|
|
1700
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1701
|
-
const loc = `DocumentSuggesterOptions.${key}`;
|
|
1702
|
-
entries[loc] = value;
|
|
1703
|
-
});
|
|
1704
|
-
}
|
|
1705
|
-
return entries;
|
|
1706
|
-
};
|
|
1707
|
-
const se_TextArrayOptions = (input, context) => {
|
|
1708
|
-
const entries = {};
|
|
1709
|
-
if (input[_DV] != null) {
|
|
1710
|
-
entries[_DV] = input[_DV];
|
|
1711
|
-
}
|
|
1712
|
-
if (input[_SF] != null) {
|
|
1713
|
-
entries[_SF] = input[_SF];
|
|
1714
|
-
}
|
|
1715
|
-
if (input[_RE] != null) {
|
|
1716
|
-
entries[_RE] = input[_RE];
|
|
1717
|
-
}
|
|
1718
|
-
if (input[_HE] != null) {
|
|
1719
|
-
entries[_HE] = input[_HE];
|
|
1720
|
-
}
|
|
1721
|
-
if (input[_ASn] != null) {
|
|
1722
|
-
entries[_ASn] = input[_ASn];
|
|
1723
|
-
}
|
|
1724
|
-
return entries;
|
|
1725
|
-
};
|
|
1726
|
-
const se_TextOptions = (input, context) => {
|
|
1727
|
-
const entries = {};
|
|
1728
|
-
if (input[_DV] != null) {
|
|
1729
|
-
entries[_DV] = input[_DV];
|
|
1730
|
-
}
|
|
1731
|
-
if (input[_SFo] != null) {
|
|
1732
|
-
entries[_SFo] = input[_SFo];
|
|
1733
|
-
}
|
|
1734
|
-
if (input[_RE] != null) {
|
|
1735
|
-
entries[_RE] = input[_RE];
|
|
1736
|
-
}
|
|
1737
|
-
if (input[_SEo] != null) {
|
|
1738
|
-
entries[_SEo] = input[_SEo];
|
|
1739
|
-
}
|
|
1740
|
-
if (input[_HE] != null) {
|
|
1741
|
-
entries[_HE] = input[_HE];
|
|
1742
|
-
}
|
|
1743
|
-
if (input[_ASn] != null) {
|
|
1744
|
-
entries[_ASn] = input[_ASn];
|
|
1745
|
-
}
|
|
1746
|
-
return entries;
|
|
1747
|
-
};
|
|
1748
|
-
const se_UpdateAvailabilityOptionsRequest = (input, context) => {
|
|
1749
|
-
const entries = {};
|
|
1750
|
-
if (input[_DN] != null) {
|
|
1751
|
-
entries[_DN] = input[_DN];
|
|
1752
|
-
}
|
|
1753
|
-
if (input[_MAZ] != null) {
|
|
1754
|
-
entries[_MAZ] = input[_MAZ];
|
|
1755
|
-
}
|
|
1756
|
-
return entries;
|
|
1757
|
-
};
|
|
1758
|
-
const se_UpdateDomainEndpointOptionsRequest = (input, context) => {
|
|
1759
|
-
const entries = {};
|
|
1760
|
-
if (input[_DN] != null) {
|
|
1761
|
-
entries[_DN] = input[_DN];
|
|
1762
|
-
}
|
|
1763
|
-
if (input[_DEO] != null) {
|
|
1764
|
-
const memberEntries = se_DomainEndpointOptions(input[_DEO]);
|
|
1765
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1766
|
-
const loc = `DomainEndpointOptions.${key}`;
|
|
1767
|
-
entries[loc] = value;
|
|
1768
|
-
});
|
|
1769
|
-
}
|
|
1770
|
-
return entries;
|
|
1771
|
-
};
|
|
1772
|
-
const se_UpdateScalingParametersRequest = (input, context) => {
|
|
1773
|
-
const entries = {};
|
|
1774
|
-
if (input[_DN] != null) {
|
|
1775
|
-
entries[_DN] = input[_DN];
|
|
1776
|
-
}
|
|
1777
|
-
if (input[_SP] != null) {
|
|
1778
|
-
const memberEntries = se_ScalingParameters(input[_SP]);
|
|
1779
|
-
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
1780
|
-
const loc = `ScalingParameters.${key}`;
|
|
1781
|
-
entries[loc] = value;
|
|
1782
|
-
});
|
|
1783
|
-
}
|
|
1784
|
-
return entries;
|
|
1785
|
-
};
|
|
1786
|
-
const se_UpdateServiceAccessPoliciesRequest = (input, context) => {
|
|
1787
|
-
const entries = {};
|
|
1788
|
-
if (input[_DN] != null) {
|
|
1789
|
-
entries[_DN] = input[_DN];
|
|
1790
|
-
}
|
|
1791
|
-
if (input[_AP] != null) {
|
|
1792
|
-
entries[_AP] = input[_AP];
|
|
1793
|
-
}
|
|
1794
|
-
return entries;
|
|
1795
|
-
};
|
|
1796
|
-
const de_AccessPoliciesStatus = (output, context) => {
|
|
1797
|
-
const contents = {};
|
|
1798
|
-
if (output[_O] != null) {
|
|
1799
|
-
contents[_O] = smithyClient.expectString(output[_O]);
|
|
1800
|
-
}
|
|
1801
|
-
if (output[_Sta] != null) {
|
|
1802
|
-
contents[_Sta] = de_OptionStatus(output[_Sta]);
|
|
1803
|
-
}
|
|
1804
|
-
return contents;
|
|
1805
|
-
};
|
|
1806
|
-
const de_AnalysisOptions = (output, context) => {
|
|
1807
|
-
const contents = {};
|
|
1808
|
-
if (output[_S] != null) {
|
|
1809
|
-
contents[_S] = smithyClient.expectString(output[_S]);
|
|
1810
|
-
}
|
|
1811
|
-
if (output[_St] != null) {
|
|
1812
|
-
contents[_St] = smithyClient.expectString(output[_St]);
|
|
1813
|
-
}
|
|
1814
|
-
if (output[_SD] != null) {
|
|
1815
|
-
contents[_SD] = smithyClient.expectString(output[_SD]);
|
|
1816
|
-
}
|
|
1817
|
-
if (output[_JTD] != null) {
|
|
1818
|
-
contents[_JTD] = smithyClient.expectString(output[_JTD]);
|
|
1819
|
-
}
|
|
1820
|
-
if (output[_AS] != null) {
|
|
1821
|
-
contents[_AS] = smithyClient.expectString(output[_AS]);
|
|
1822
|
-
}
|
|
1823
|
-
return contents;
|
|
1824
|
-
};
|
|
1825
|
-
const de_AnalysisScheme = (output, context) => {
|
|
1826
|
-
const contents = {};
|
|
1827
|
-
if (output[_ASN] != null) {
|
|
1828
|
-
contents[_ASN] = smithyClient.expectString(output[_ASN]);
|
|
1829
|
-
}
|
|
1830
|
-
if (output[_ASL] != null) {
|
|
1831
|
-
contents[_ASL] = smithyClient.expectString(output[_ASL]);
|
|
1832
|
-
}
|
|
1833
|
-
if (output[_AO] != null) {
|
|
1834
|
-
contents[_AO] = de_AnalysisOptions(output[_AO]);
|
|
1835
|
-
}
|
|
1836
|
-
return contents;
|
|
1837
|
-
};
|
|
1838
|
-
const de_AnalysisSchemeStatus = (output, context) => {
|
|
1839
|
-
const contents = {};
|
|
1840
|
-
if (output[_O] != null) {
|
|
1841
|
-
contents[_O] = de_AnalysisScheme(output[_O]);
|
|
1842
|
-
}
|
|
1843
|
-
if (output[_Sta] != null) {
|
|
1844
|
-
contents[_Sta] = de_OptionStatus(output[_Sta]);
|
|
1845
|
-
}
|
|
1846
|
-
return contents;
|
|
1847
|
-
};
|
|
1848
|
-
const de_AnalysisSchemeStatusList = (output, context) => {
|
|
1849
|
-
return (output || [])
|
|
1850
|
-
.filter((e) => e != null)
|
|
1851
|
-
.map((entry) => {
|
|
1852
|
-
return de_AnalysisSchemeStatus(entry);
|
|
1853
|
-
});
|
|
1854
|
-
};
|
|
1855
|
-
const de_AvailabilityOptionsStatus = (output, context) => {
|
|
1856
|
-
const contents = {};
|
|
1857
|
-
if (output[_O] != null) {
|
|
1858
|
-
contents[_O] = smithyClient.parseBoolean(output[_O]);
|
|
1859
|
-
}
|
|
1860
|
-
if (output[_Sta] != null) {
|
|
1861
|
-
contents[_Sta] = de_OptionStatus(output[_Sta]);
|
|
1862
|
-
}
|
|
1863
|
-
return contents;
|
|
1864
|
-
};
|
|
1865
|
-
const de_BaseException = (output, context) => {
|
|
1866
|
-
const contents = {};
|
|
1867
|
-
if (output[_C] != null) {
|
|
1868
|
-
contents[_C] = smithyClient.expectString(output[_C]);
|
|
1869
|
-
}
|
|
1870
|
-
if (output[_M] != null) {
|
|
1871
|
-
contents[_M] = smithyClient.expectString(output[_M]);
|
|
1872
|
-
}
|
|
1873
|
-
return contents;
|
|
1874
|
-
};
|
|
1875
|
-
const de_BuildSuggestersResponse = (output, context) => {
|
|
1876
|
-
const contents = {};
|
|
1877
|
-
if (String(output.FieldNames).trim() === "") {
|
|
1878
|
-
contents[_FN] = [];
|
|
1879
|
-
}
|
|
1880
|
-
else if (output[_FN] != null && output[_FN][_m] != null) {
|
|
1881
|
-
contents[_FN] = de_FieldNameList(smithyClient.getArrayIfSingleItem(output[_FN][_m]));
|
|
1882
|
-
}
|
|
1883
|
-
return contents;
|
|
1884
|
-
};
|
|
1885
|
-
const de_CreateDomainResponse = (output, context) => {
|
|
1886
|
-
const contents = {};
|
|
1887
|
-
if (output[_DSo] != null) {
|
|
1888
|
-
contents[_DSo] = de_DomainStatus(output[_DSo]);
|
|
1889
|
-
}
|
|
1890
|
-
return contents;
|
|
1891
|
-
};
|
|
1892
|
-
const de_DateArrayOptions = (output, context) => {
|
|
1893
|
-
const contents = {};
|
|
1894
|
-
if (output[_DV] != null) {
|
|
1895
|
-
contents[_DV] = smithyClient.expectString(output[_DV]);
|
|
1896
|
-
}
|
|
1897
|
-
if (output[_SF] != null) {
|
|
1898
|
-
contents[_SF] = smithyClient.expectString(output[_SF]);
|
|
1899
|
-
}
|
|
1900
|
-
if (output[_FE] != null) {
|
|
1901
|
-
contents[_FE] = smithyClient.parseBoolean(output[_FE]);
|
|
1902
|
-
}
|
|
1903
|
-
if (output[_SE] != null) {
|
|
1904
|
-
contents[_SE] = smithyClient.parseBoolean(output[_SE]);
|
|
1905
|
-
}
|
|
1906
|
-
if (output[_RE] != null) {
|
|
1907
|
-
contents[_RE] = smithyClient.parseBoolean(output[_RE]);
|
|
1908
|
-
}
|
|
1909
|
-
return contents;
|
|
1910
|
-
};
|
|
1911
|
-
const de_DateOptions = (output, context) => {
|
|
1912
|
-
const contents = {};
|
|
1913
|
-
if (output[_DV] != null) {
|
|
1914
|
-
contents[_DV] = smithyClient.expectString(output[_DV]);
|
|
1915
|
-
}
|
|
1916
|
-
if (output[_SFo] != null) {
|
|
1917
|
-
contents[_SFo] = smithyClient.expectString(output[_SFo]);
|
|
1918
|
-
}
|
|
1919
|
-
if (output[_FE] != null) {
|
|
1920
|
-
contents[_FE] = smithyClient.parseBoolean(output[_FE]);
|
|
1921
|
-
}
|
|
1922
|
-
if (output[_SE] != null) {
|
|
1923
|
-
contents[_SE] = smithyClient.parseBoolean(output[_SE]);
|
|
1924
|
-
}
|
|
1925
|
-
if (output[_RE] != null) {
|
|
1926
|
-
contents[_RE] = smithyClient.parseBoolean(output[_RE]);
|
|
1927
|
-
}
|
|
1928
|
-
if (output[_SEo] != null) {
|
|
1929
|
-
contents[_SEo] = smithyClient.parseBoolean(output[_SEo]);
|
|
1930
|
-
}
|
|
1931
|
-
return contents;
|
|
1932
|
-
};
|
|
1933
|
-
const de_DefineAnalysisSchemeResponse = (output, context) => {
|
|
1934
|
-
const contents = {};
|
|
1935
|
-
if (output[_ASn] != null) {
|
|
1936
|
-
contents[_ASn] = de_AnalysisSchemeStatus(output[_ASn]);
|
|
1937
|
-
}
|
|
1938
|
-
return contents;
|
|
1939
|
-
};
|
|
1940
|
-
const de_DefineExpressionResponse = (output, context) => {
|
|
1941
|
-
const contents = {};
|
|
1942
|
-
if (output[_E] != null) {
|
|
1943
|
-
contents[_E] = de_ExpressionStatus(output[_E]);
|
|
1944
|
-
}
|
|
1945
|
-
return contents;
|
|
1946
|
-
};
|
|
1947
|
-
const de_DefineIndexFieldResponse = (output, context) => {
|
|
1948
|
-
const contents = {};
|
|
1949
|
-
if (output[_IF] != null) {
|
|
1950
|
-
contents[_IF] = de_IndexFieldStatus(output[_IF]);
|
|
1951
|
-
}
|
|
1952
|
-
return contents;
|
|
1953
|
-
};
|
|
1954
|
-
const de_DefineSuggesterResponse = (output, context) => {
|
|
1955
|
-
const contents = {};
|
|
1956
|
-
if (output[_Su] != null) {
|
|
1957
|
-
contents[_Su] = de_SuggesterStatus(output[_Su]);
|
|
1958
|
-
}
|
|
1959
|
-
return contents;
|
|
1960
|
-
};
|
|
1961
|
-
const de_DeleteAnalysisSchemeResponse = (output, context) => {
|
|
1962
|
-
const contents = {};
|
|
1963
|
-
if (output[_ASn] != null) {
|
|
1964
|
-
contents[_ASn] = de_AnalysisSchemeStatus(output[_ASn]);
|
|
1965
|
-
}
|
|
1966
|
-
return contents;
|
|
1967
|
-
};
|
|
1968
|
-
const de_DeleteDomainResponse = (output, context) => {
|
|
1969
|
-
const contents = {};
|
|
1970
|
-
if (output[_DSo] != null) {
|
|
1971
|
-
contents[_DSo] = de_DomainStatus(output[_DSo]);
|
|
1972
|
-
}
|
|
1973
|
-
return contents;
|
|
1974
|
-
};
|
|
1975
|
-
const de_DeleteExpressionResponse = (output, context) => {
|
|
1976
|
-
const contents = {};
|
|
1977
|
-
if (output[_E] != null) {
|
|
1978
|
-
contents[_E] = de_ExpressionStatus(output[_E]);
|
|
1979
|
-
}
|
|
1980
|
-
return contents;
|
|
1981
|
-
};
|
|
1982
|
-
const de_DeleteIndexFieldResponse = (output, context) => {
|
|
1983
|
-
const contents = {};
|
|
1984
|
-
if (output[_IF] != null) {
|
|
1985
|
-
contents[_IF] = de_IndexFieldStatus(output[_IF]);
|
|
1986
|
-
}
|
|
1987
|
-
return contents;
|
|
1988
|
-
};
|
|
1989
|
-
const de_DeleteSuggesterResponse = (output, context) => {
|
|
1990
|
-
const contents = {};
|
|
1991
|
-
if (output[_Su] != null) {
|
|
1992
|
-
contents[_Su] = de_SuggesterStatus(output[_Su]);
|
|
1993
|
-
}
|
|
1994
|
-
return contents;
|
|
1995
|
-
};
|
|
1996
|
-
const de_DescribeAnalysisSchemesResponse = (output, context) => {
|
|
1997
|
-
const contents = {};
|
|
1998
|
-
if (String(output.AnalysisSchemes).trim() === "") {
|
|
1999
|
-
contents[_ASna] = [];
|
|
2000
|
-
}
|
|
2001
|
-
else if (output[_ASna] != null && output[_ASna][_m] != null) {
|
|
2002
|
-
contents[_ASna] = de_AnalysisSchemeStatusList(smithyClient.getArrayIfSingleItem(output[_ASna][_m]));
|
|
2003
|
-
}
|
|
2004
|
-
return contents;
|
|
2005
|
-
};
|
|
2006
|
-
const de_DescribeAvailabilityOptionsResponse = (output, context) => {
|
|
2007
|
-
const contents = {};
|
|
2008
|
-
if (output[_AOv] != null) {
|
|
2009
|
-
contents[_AOv] = de_AvailabilityOptionsStatus(output[_AOv]);
|
|
2010
|
-
}
|
|
2011
|
-
return contents;
|
|
2012
|
-
};
|
|
2013
|
-
const de_DescribeDomainEndpointOptionsResponse = (output, context) => {
|
|
2014
|
-
const contents = {};
|
|
2015
|
-
if (output[_DEO] != null) {
|
|
2016
|
-
contents[_DEO] = de_DomainEndpointOptionsStatus(output[_DEO]);
|
|
2017
|
-
}
|
|
2018
|
-
return contents;
|
|
2019
|
-
};
|
|
2020
|
-
const de_DescribeDomainsResponse = (output, context) => {
|
|
2021
|
-
const contents = {};
|
|
2022
|
-
if (String(output.DomainStatusList).trim() === "") {
|
|
2023
|
-
contents[_DSL] = [];
|
|
2024
|
-
}
|
|
2025
|
-
else if (output[_DSL] != null && output[_DSL][_m] != null) {
|
|
2026
|
-
contents[_DSL] = de_DomainStatusList(smithyClient.getArrayIfSingleItem(output[_DSL][_m]));
|
|
2027
|
-
}
|
|
2028
|
-
return contents;
|
|
2029
|
-
};
|
|
2030
|
-
const de_DescribeExpressionsResponse = (output, context) => {
|
|
2031
|
-
const contents = {};
|
|
2032
|
-
if (String(output.Expressions).trim() === "") {
|
|
2033
|
-
contents[_Ex] = [];
|
|
2034
|
-
}
|
|
2035
|
-
else if (output[_Ex] != null && output[_Ex][_m] != null) {
|
|
2036
|
-
contents[_Ex] = de_ExpressionStatusList(smithyClient.getArrayIfSingleItem(output[_Ex][_m]));
|
|
2037
|
-
}
|
|
2038
|
-
return contents;
|
|
2039
|
-
};
|
|
2040
|
-
const de_DescribeIndexFieldsResponse = (output, context) => {
|
|
2041
|
-
const contents = {};
|
|
2042
|
-
if (String(output.IndexFields).trim() === "") {
|
|
2043
|
-
contents[_IFn] = [];
|
|
2044
|
-
}
|
|
2045
|
-
else if (output[_IFn] != null && output[_IFn][_m] != null) {
|
|
2046
|
-
contents[_IFn] = de_IndexFieldStatusList(smithyClient.getArrayIfSingleItem(output[_IFn][_m]));
|
|
2047
|
-
}
|
|
2048
|
-
return contents;
|
|
2049
|
-
};
|
|
2050
|
-
const de_DescribeScalingParametersResponse = (output, context) => {
|
|
2051
|
-
const contents = {};
|
|
2052
|
-
if (output[_SP] != null) {
|
|
2053
|
-
contents[_SP] = de_ScalingParametersStatus(output[_SP]);
|
|
2054
|
-
}
|
|
2055
|
-
return contents;
|
|
2056
|
-
};
|
|
2057
|
-
const de_DescribeServiceAccessPoliciesResponse = (output, context) => {
|
|
2058
|
-
const contents = {};
|
|
2059
|
-
if (output[_AP] != null) {
|
|
2060
|
-
contents[_AP] = de_AccessPoliciesStatus(output[_AP]);
|
|
2061
|
-
}
|
|
2062
|
-
return contents;
|
|
2063
|
-
};
|
|
2064
|
-
const de_DescribeSuggestersResponse = (output, context) => {
|
|
2065
|
-
const contents = {};
|
|
2066
|
-
if (String(output.Suggesters).trim() === "") {
|
|
2067
|
-
contents[_Sug] = [];
|
|
2068
|
-
}
|
|
2069
|
-
else if (output[_Sug] != null && output[_Sug][_m] != null) {
|
|
2070
|
-
contents[_Sug] = de_SuggesterStatusList(smithyClient.getArrayIfSingleItem(output[_Sug][_m]));
|
|
2071
|
-
}
|
|
2072
|
-
return contents;
|
|
2073
|
-
};
|
|
2074
|
-
const de_DisabledOperationException = (output, context) => {
|
|
2075
|
-
const contents = {};
|
|
2076
|
-
if (output[_C] != null) {
|
|
2077
|
-
contents[_C] = smithyClient.expectString(output[_C]);
|
|
2078
|
-
}
|
|
2079
|
-
if (output[_M] != null) {
|
|
2080
|
-
contents[_M] = smithyClient.expectString(output[_M]);
|
|
2081
|
-
}
|
|
2082
|
-
return contents;
|
|
2083
|
-
};
|
|
2084
|
-
const de_DocumentSuggesterOptions = (output, context) => {
|
|
2085
|
-
const contents = {};
|
|
2086
|
-
if (output[_SFo] != null) {
|
|
2087
|
-
contents[_SFo] = smithyClient.expectString(output[_SFo]);
|
|
2088
|
-
}
|
|
2089
|
-
if (output[_FM] != null) {
|
|
2090
|
-
contents[_FM] = smithyClient.expectString(output[_FM]);
|
|
2091
|
-
}
|
|
2092
|
-
if (output[_SEor] != null) {
|
|
2093
|
-
contents[_SEor] = smithyClient.expectString(output[_SEor]);
|
|
2094
|
-
}
|
|
2095
|
-
return contents;
|
|
2096
|
-
};
|
|
2097
|
-
const de_DomainEndpointOptions = (output, context) => {
|
|
2098
|
-
const contents = {};
|
|
2099
|
-
if (output[_EHTTPS] != null) {
|
|
2100
|
-
contents[_EHTTPS] = smithyClient.parseBoolean(output[_EHTTPS]);
|
|
2101
|
-
}
|
|
2102
|
-
if (output[_TLSSP] != null) {
|
|
2103
|
-
contents[_TLSSP] = smithyClient.expectString(output[_TLSSP]);
|
|
2104
|
-
}
|
|
2105
|
-
return contents;
|
|
2106
|
-
};
|
|
2107
|
-
const de_DomainEndpointOptionsStatus = (output, context) => {
|
|
2108
|
-
const contents = {};
|
|
2109
|
-
if (output[_O] != null) {
|
|
2110
|
-
contents[_O] = de_DomainEndpointOptions(output[_O]);
|
|
2111
|
-
}
|
|
2112
|
-
if (output[_Sta] != null) {
|
|
2113
|
-
contents[_Sta] = de_OptionStatus(output[_Sta]);
|
|
2114
|
-
}
|
|
2115
|
-
return contents;
|
|
2116
|
-
};
|
|
2117
|
-
const de_DomainNameMap = (output, context) => {
|
|
2118
|
-
return output.reduce((acc, pair) => {
|
|
2119
|
-
if (pair["value"] === null) {
|
|
2120
|
-
return acc;
|
|
2121
|
-
}
|
|
2122
|
-
acc[pair["key"]] = smithyClient.expectString(pair["value"]);
|
|
2123
|
-
return acc;
|
|
2124
|
-
}, {});
|
|
2125
|
-
};
|
|
2126
|
-
const de_DomainStatus = (output, context) => {
|
|
2127
|
-
const contents = {};
|
|
2128
|
-
if (output[_DI] != null) {
|
|
2129
|
-
contents[_DI] = smithyClient.expectString(output[_DI]);
|
|
2130
|
-
}
|
|
2131
|
-
if (output[_DN] != null) {
|
|
2132
|
-
contents[_DN] = smithyClient.expectString(output[_DN]);
|
|
2133
|
-
}
|
|
2134
|
-
if (output[_ARN] != null) {
|
|
2135
|
-
contents[_ARN] = smithyClient.expectString(output[_ARN]);
|
|
2136
|
-
}
|
|
2137
|
-
if (output[_Cr] != null) {
|
|
2138
|
-
contents[_Cr] = smithyClient.parseBoolean(output[_Cr]);
|
|
2139
|
-
}
|
|
2140
|
-
if (output[_De] != null) {
|
|
2141
|
-
contents[_De] = smithyClient.parseBoolean(output[_De]);
|
|
2142
|
-
}
|
|
2143
|
-
if (output[_DSoc] != null) {
|
|
2144
|
-
contents[_DSoc] = de_ServiceEndpoint(output[_DSoc]);
|
|
2145
|
-
}
|
|
2146
|
-
if (output[_SS] != null) {
|
|
2147
|
-
contents[_SS] = de_ServiceEndpoint(output[_SS]);
|
|
2148
|
-
}
|
|
2149
|
-
if (output[_RID] != null) {
|
|
2150
|
-
contents[_RID] = smithyClient.parseBoolean(output[_RID]);
|
|
2151
|
-
}
|
|
2152
|
-
if (output[_P] != null) {
|
|
2153
|
-
contents[_P] = smithyClient.parseBoolean(output[_P]);
|
|
2154
|
-
}
|
|
2155
|
-
if (output[_SIT] != null) {
|
|
2156
|
-
contents[_SIT] = smithyClient.expectString(output[_SIT]);
|
|
2157
|
-
}
|
|
2158
|
-
if (output[_SPC] != null) {
|
|
2159
|
-
contents[_SPC] = smithyClient.strictParseInt32(output[_SPC]);
|
|
2160
|
-
}
|
|
2161
|
-
if (output[_SIC] != null) {
|
|
2162
|
-
contents[_SIC] = smithyClient.strictParseInt32(output[_SIC]);
|
|
2163
|
-
}
|
|
2164
|
-
if (output[_L] != null) {
|
|
2165
|
-
contents[_L] = de_Limits(output[_L]);
|
|
2166
|
-
}
|
|
2167
|
-
return contents;
|
|
2168
|
-
};
|
|
2169
|
-
const de_DomainStatusList = (output, context) => {
|
|
2170
|
-
return (output || [])
|
|
2171
|
-
.filter((e) => e != null)
|
|
2172
|
-
.map((entry) => {
|
|
2173
|
-
return de_DomainStatus(entry);
|
|
2174
|
-
});
|
|
2175
|
-
};
|
|
2176
|
-
const de_DoubleArrayOptions = (output, context) => {
|
|
2177
|
-
const contents = {};
|
|
2178
|
-
if (output[_DV] != null) {
|
|
2179
|
-
contents[_DV] = smithyClient.strictParseFloat(output[_DV]);
|
|
2180
|
-
}
|
|
2181
|
-
if (output[_SF] != null) {
|
|
2182
|
-
contents[_SF] = smithyClient.expectString(output[_SF]);
|
|
2183
|
-
}
|
|
2184
|
-
if (output[_FE] != null) {
|
|
2185
|
-
contents[_FE] = smithyClient.parseBoolean(output[_FE]);
|
|
2186
|
-
}
|
|
2187
|
-
if (output[_SE] != null) {
|
|
2188
|
-
contents[_SE] = smithyClient.parseBoolean(output[_SE]);
|
|
2189
|
-
}
|
|
2190
|
-
if (output[_RE] != null) {
|
|
2191
|
-
contents[_RE] = smithyClient.parseBoolean(output[_RE]);
|
|
2192
|
-
}
|
|
2193
|
-
return contents;
|
|
2194
|
-
};
|
|
2195
|
-
const de_DoubleOptions = (output, context) => {
|
|
2196
|
-
const contents = {};
|
|
2197
|
-
if (output[_DV] != null) {
|
|
2198
|
-
contents[_DV] = smithyClient.strictParseFloat(output[_DV]);
|
|
2199
|
-
}
|
|
2200
|
-
if (output[_SFo] != null) {
|
|
2201
|
-
contents[_SFo] = smithyClient.expectString(output[_SFo]);
|
|
2202
|
-
}
|
|
2203
|
-
if (output[_FE] != null) {
|
|
2204
|
-
contents[_FE] = smithyClient.parseBoolean(output[_FE]);
|
|
2205
|
-
}
|
|
2206
|
-
if (output[_SE] != null) {
|
|
2207
|
-
contents[_SE] = smithyClient.parseBoolean(output[_SE]);
|
|
2208
|
-
}
|
|
2209
|
-
if (output[_RE] != null) {
|
|
2210
|
-
contents[_RE] = smithyClient.parseBoolean(output[_RE]);
|
|
2211
|
-
}
|
|
2212
|
-
if (output[_SEo] != null) {
|
|
2213
|
-
contents[_SEo] = smithyClient.parseBoolean(output[_SEo]);
|
|
2214
|
-
}
|
|
2215
|
-
return contents;
|
|
2216
|
-
};
|
|
2217
|
-
const de_Expression = (output, context) => {
|
|
2218
|
-
const contents = {};
|
|
2219
|
-
if (output[_EN] != null) {
|
|
2220
|
-
contents[_EN] = smithyClient.expectString(output[_EN]);
|
|
2221
|
-
}
|
|
2222
|
-
if (output[_EV] != null) {
|
|
2223
|
-
contents[_EV] = smithyClient.expectString(output[_EV]);
|
|
2224
|
-
}
|
|
2225
|
-
return contents;
|
|
2226
|
-
};
|
|
2227
|
-
const de_ExpressionStatus = (output, context) => {
|
|
2228
|
-
const contents = {};
|
|
2229
|
-
if (output[_O] != null) {
|
|
2230
|
-
contents[_O] = de_Expression(output[_O]);
|
|
2231
|
-
}
|
|
2232
|
-
if (output[_Sta] != null) {
|
|
2233
|
-
contents[_Sta] = de_OptionStatus(output[_Sta]);
|
|
2234
|
-
}
|
|
2235
|
-
return contents;
|
|
2236
|
-
};
|
|
2237
|
-
const de_ExpressionStatusList = (output, context) => {
|
|
2238
|
-
return (output || [])
|
|
2239
|
-
.filter((e) => e != null)
|
|
2240
|
-
.map((entry) => {
|
|
2241
|
-
return de_ExpressionStatus(entry);
|
|
2242
|
-
});
|
|
2243
|
-
};
|
|
2244
|
-
const de_FieldNameList = (output, context) => {
|
|
2245
|
-
return (output || [])
|
|
2246
|
-
.filter((e) => e != null)
|
|
2247
|
-
.map((entry) => {
|
|
2248
|
-
return smithyClient.expectString(entry);
|
|
2249
|
-
});
|
|
2250
|
-
};
|
|
2251
|
-
const de_IndexDocumentsResponse = (output, context) => {
|
|
2252
|
-
const contents = {};
|
|
2253
|
-
if (String(output.FieldNames).trim() === "") {
|
|
2254
|
-
contents[_FN] = [];
|
|
2255
|
-
}
|
|
2256
|
-
else if (output[_FN] != null && output[_FN][_m] != null) {
|
|
2257
|
-
contents[_FN] = de_FieldNameList(smithyClient.getArrayIfSingleItem(output[_FN][_m]));
|
|
2258
|
-
}
|
|
2259
|
-
return contents;
|
|
2260
|
-
};
|
|
2261
|
-
const de_IndexField = (output, context) => {
|
|
2262
|
-
const contents = {};
|
|
2263
|
-
if (output[_IFN] != null) {
|
|
2264
|
-
contents[_IFN] = smithyClient.expectString(output[_IFN]);
|
|
2265
|
-
}
|
|
2266
|
-
if (output[_IFT] != null) {
|
|
2267
|
-
contents[_IFT] = smithyClient.expectString(output[_IFT]);
|
|
2268
|
-
}
|
|
2269
|
-
if (output[_IO] != null) {
|
|
2270
|
-
contents[_IO] = de_IntOptions(output[_IO]);
|
|
2271
|
-
}
|
|
2272
|
-
if (output[_DO] != null) {
|
|
2273
|
-
contents[_DO] = de_DoubleOptions(output[_DO]);
|
|
2274
|
-
}
|
|
2275
|
-
if (output[_LO] != null) {
|
|
2276
|
-
contents[_LO] = de_LiteralOptions(output[_LO]);
|
|
2277
|
-
}
|
|
2278
|
-
if (output[_TO] != null) {
|
|
2279
|
-
contents[_TO] = de_TextOptions(output[_TO]);
|
|
2280
|
-
}
|
|
2281
|
-
if (output[_DOa] != null) {
|
|
2282
|
-
contents[_DOa] = de_DateOptions(output[_DOa]);
|
|
2283
|
-
}
|
|
2284
|
-
if (output[_LLO] != null) {
|
|
2285
|
-
contents[_LLO] = de_LatLonOptions(output[_LLO]);
|
|
2286
|
-
}
|
|
2287
|
-
if (output[_IAO] != null) {
|
|
2288
|
-
contents[_IAO] = de_IntArrayOptions(output[_IAO]);
|
|
2289
|
-
}
|
|
2290
|
-
if (output[_DAOo] != null) {
|
|
2291
|
-
contents[_DAOo] = de_DoubleArrayOptions(output[_DAOo]);
|
|
2292
|
-
}
|
|
2293
|
-
if (output[_LAO] != null) {
|
|
2294
|
-
contents[_LAO] = de_LiteralArrayOptions(output[_LAO]);
|
|
2295
|
-
}
|
|
2296
|
-
if (output[_TAO] != null) {
|
|
2297
|
-
contents[_TAO] = de_TextArrayOptions(output[_TAO]);
|
|
2298
|
-
}
|
|
2299
|
-
if (output[_DAOa] != null) {
|
|
2300
|
-
contents[_DAOa] = de_DateArrayOptions(output[_DAOa]);
|
|
2301
|
-
}
|
|
2302
|
-
return contents;
|
|
2303
|
-
};
|
|
2304
|
-
const de_IndexFieldStatus = (output, context) => {
|
|
2305
|
-
const contents = {};
|
|
2306
|
-
if (output[_O] != null) {
|
|
2307
|
-
contents[_O] = de_IndexField(output[_O]);
|
|
2308
|
-
}
|
|
2309
|
-
if (output[_Sta] != null) {
|
|
2310
|
-
contents[_Sta] = de_OptionStatus(output[_Sta]);
|
|
2311
|
-
}
|
|
2312
|
-
return contents;
|
|
2313
|
-
};
|
|
2314
|
-
const de_IndexFieldStatusList = (output, context) => {
|
|
2315
|
-
return (output || [])
|
|
2316
|
-
.filter((e) => e != null)
|
|
2317
|
-
.map((entry) => {
|
|
2318
|
-
return de_IndexFieldStatus(entry);
|
|
2319
|
-
});
|
|
2320
|
-
};
|
|
2321
|
-
const de_IntArrayOptions = (output, context) => {
|
|
2322
|
-
const contents = {};
|
|
2323
|
-
if (output[_DV] != null) {
|
|
2324
|
-
contents[_DV] = smithyClient.strictParseLong(output[_DV]);
|
|
2325
|
-
}
|
|
2326
|
-
if (output[_SF] != null) {
|
|
2327
|
-
contents[_SF] = smithyClient.expectString(output[_SF]);
|
|
2328
|
-
}
|
|
2329
|
-
if (output[_FE] != null) {
|
|
2330
|
-
contents[_FE] = smithyClient.parseBoolean(output[_FE]);
|
|
2331
|
-
}
|
|
2332
|
-
if (output[_SE] != null) {
|
|
2333
|
-
contents[_SE] = smithyClient.parseBoolean(output[_SE]);
|
|
2334
|
-
}
|
|
2335
|
-
if (output[_RE] != null) {
|
|
2336
|
-
contents[_RE] = smithyClient.parseBoolean(output[_RE]);
|
|
2337
|
-
}
|
|
2338
|
-
return contents;
|
|
2339
|
-
};
|
|
2340
|
-
const de_InternalException = (output, context) => {
|
|
2341
|
-
const contents = {};
|
|
2342
|
-
if (output[_C] != null) {
|
|
2343
|
-
contents[_C] = smithyClient.expectString(output[_C]);
|
|
2344
|
-
}
|
|
2345
|
-
if (output[_M] != null) {
|
|
2346
|
-
contents[_M] = smithyClient.expectString(output[_M]);
|
|
2347
|
-
}
|
|
2348
|
-
return contents;
|
|
2349
|
-
};
|
|
2350
|
-
const de_IntOptions = (output, context) => {
|
|
2351
|
-
const contents = {};
|
|
2352
|
-
if (output[_DV] != null) {
|
|
2353
|
-
contents[_DV] = smithyClient.strictParseLong(output[_DV]);
|
|
2354
|
-
}
|
|
2355
|
-
if (output[_SFo] != null) {
|
|
2356
|
-
contents[_SFo] = smithyClient.expectString(output[_SFo]);
|
|
2357
|
-
}
|
|
2358
|
-
if (output[_FE] != null) {
|
|
2359
|
-
contents[_FE] = smithyClient.parseBoolean(output[_FE]);
|
|
2360
|
-
}
|
|
2361
|
-
if (output[_SE] != null) {
|
|
2362
|
-
contents[_SE] = smithyClient.parseBoolean(output[_SE]);
|
|
2363
|
-
}
|
|
2364
|
-
if (output[_RE] != null) {
|
|
2365
|
-
contents[_RE] = smithyClient.parseBoolean(output[_RE]);
|
|
2366
|
-
}
|
|
2367
|
-
if (output[_SEo] != null) {
|
|
2368
|
-
contents[_SEo] = smithyClient.parseBoolean(output[_SEo]);
|
|
2369
|
-
}
|
|
2370
|
-
return contents;
|
|
2371
|
-
};
|
|
2372
|
-
const de_InvalidTypeException = (output, context) => {
|
|
2373
|
-
const contents = {};
|
|
2374
|
-
if (output[_C] != null) {
|
|
2375
|
-
contents[_C] = smithyClient.expectString(output[_C]);
|
|
2376
|
-
}
|
|
2377
|
-
if (output[_M] != null) {
|
|
2378
|
-
contents[_M] = smithyClient.expectString(output[_M]);
|
|
2379
|
-
}
|
|
2380
|
-
return contents;
|
|
2381
|
-
};
|
|
2382
|
-
const de_LatLonOptions = (output, context) => {
|
|
2383
|
-
const contents = {};
|
|
2384
|
-
if (output[_DV] != null) {
|
|
2385
|
-
contents[_DV] = smithyClient.expectString(output[_DV]);
|
|
2386
|
-
}
|
|
2387
|
-
if (output[_SFo] != null) {
|
|
2388
|
-
contents[_SFo] = smithyClient.expectString(output[_SFo]);
|
|
2389
|
-
}
|
|
2390
|
-
if (output[_FE] != null) {
|
|
2391
|
-
contents[_FE] = smithyClient.parseBoolean(output[_FE]);
|
|
2392
|
-
}
|
|
2393
|
-
if (output[_SE] != null) {
|
|
2394
|
-
contents[_SE] = smithyClient.parseBoolean(output[_SE]);
|
|
2395
|
-
}
|
|
2396
|
-
if (output[_RE] != null) {
|
|
2397
|
-
contents[_RE] = smithyClient.parseBoolean(output[_RE]);
|
|
2398
|
-
}
|
|
2399
|
-
if (output[_SEo] != null) {
|
|
2400
|
-
contents[_SEo] = smithyClient.parseBoolean(output[_SEo]);
|
|
2401
|
-
}
|
|
2402
|
-
return contents;
|
|
2403
|
-
};
|
|
2404
|
-
const de_LimitExceededException = (output, context) => {
|
|
2405
|
-
const contents = {};
|
|
2406
|
-
if (output[_C] != null) {
|
|
2407
|
-
contents[_C] = smithyClient.expectString(output[_C]);
|
|
2408
|
-
}
|
|
2409
|
-
if (output[_M] != null) {
|
|
2410
|
-
contents[_M] = smithyClient.expectString(output[_M]);
|
|
2411
|
-
}
|
|
2412
|
-
return contents;
|
|
2413
|
-
};
|
|
2414
|
-
const de_Limits = (output, context) => {
|
|
2415
|
-
const contents = {};
|
|
2416
|
-
if (output[_MRC] != null) {
|
|
2417
|
-
contents[_MRC] = smithyClient.strictParseInt32(output[_MRC]);
|
|
2418
|
-
}
|
|
2419
|
-
if (output[_MPC] != null) {
|
|
2420
|
-
contents[_MPC] = smithyClient.strictParseInt32(output[_MPC]);
|
|
2421
|
-
}
|
|
2422
|
-
return contents;
|
|
2423
|
-
};
|
|
2424
|
-
const de_ListDomainNamesResponse = (output, context) => {
|
|
2425
|
-
const contents = {};
|
|
2426
|
-
if (String(output.DomainNames).trim() === "") {
|
|
2427
|
-
contents[_DNo] = {};
|
|
2428
|
-
}
|
|
2429
|
-
else if (output[_DNo] != null && output[_DNo][_e] != null) {
|
|
2430
|
-
contents[_DNo] = de_DomainNameMap(smithyClient.getArrayIfSingleItem(output[_DNo][_e]));
|
|
2431
|
-
}
|
|
2432
|
-
return contents;
|
|
2433
|
-
};
|
|
2434
|
-
const de_LiteralArrayOptions = (output, context) => {
|
|
2435
|
-
const contents = {};
|
|
2436
|
-
if (output[_DV] != null) {
|
|
2437
|
-
contents[_DV] = smithyClient.expectString(output[_DV]);
|
|
2438
|
-
}
|
|
2439
|
-
if (output[_SF] != null) {
|
|
2440
|
-
contents[_SF] = smithyClient.expectString(output[_SF]);
|
|
2441
|
-
}
|
|
2442
|
-
if (output[_FE] != null) {
|
|
2443
|
-
contents[_FE] = smithyClient.parseBoolean(output[_FE]);
|
|
2444
|
-
}
|
|
2445
|
-
if (output[_SE] != null) {
|
|
2446
|
-
contents[_SE] = smithyClient.parseBoolean(output[_SE]);
|
|
2447
|
-
}
|
|
2448
|
-
if (output[_RE] != null) {
|
|
2449
|
-
contents[_RE] = smithyClient.parseBoolean(output[_RE]);
|
|
2450
|
-
}
|
|
2451
|
-
return contents;
|
|
2452
|
-
};
|
|
2453
|
-
const de_LiteralOptions = (output, context) => {
|
|
2454
|
-
const contents = {};
|
|
2455
|
-
if (output[_DV] != null) {
|
|
2456
|
-
contents[_DV] = smithyClient.expectString(output[_DV]);
|
|
2457
|
-
}
|
|
2458
|
-
if (output[_SFo] != null) {
|
|
2459
|
-
contents[_SFo] = smithyClient.expectString(output[_SFo]);
|
|
2460
|
-
}
|
|
2461
|
-
if (output[_FE] != null) {
|
|
2462
|
-
contents[_FE] = smithyClient.parseBoolean(output[_FE]);
|
|
2463
|
-
}
|
|
2464
|
-
if (output[_SE] != null) {
|
|
2465
|
-
contents[_SE] = smithyClient.parseBoolean(output[_SE]);
|
|
2466
|
-
}
|
|
2467
|
-
if (output[_RE] != null) {
|
|
2468
|
-
contents[_RE] = smithyClient.parseBoolean(output[_RE]);
|
|
2469
|
-
}
|
|
2470
|
-
if (output[_SEo] != null) {
|
|
2471
|
-
contents[_SEo] = smithyClient.parseBoolean(output[_SEo]);
|
|
2472
|
-
}
|
|
2473
|
-
return contents;
|
|
2474
|
-
};
|
|
2475
|
-
const de_OptionStatus = (output, context) => {
|
|
2476
|
-
const contents = {};
|
|
2477
|
-
if (output[_CDr] != null) {
|
|
2478
|
-
contents[_CDr] = smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(output[_CDr]));
|
|
2479
|
-
}
|
|
2480
|
-
if (output[_UD] != null) {
|
|
2481
|
-
contents[_UD] = smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(output[_UD]));
|
|
2482
|
-
}
|
|
2483
|
-
if (output[_UV] != null) {
|
|
2484
|
-
contents[_UV] = smithyClient.strictParseInt32(output[_UV]);
|
|
2485
|
-
}
|
|
2486
|
-
if (output[_Stat] != null) {
|
|
2487
|
-
contents[_Stat] = smithyClient.expectString(output[_Stat]);
|
|
2488
|
-
}
|
|
2489
|
-
if (output[_PD] != null) {
|
|
2490
|
-
contents[_PD] = smithyClient.parseBoolean(output[_PD]);
|
|
2491
|
-
}
|
|
2492
|
-
return contents;
|
|
2493
|
-
};
|
|
2494
|
-
const de_ResourceAlreadyExistsException = (output, context) => {
|
|
2495
|
-
const contents = {};
|
|
2496
|
-
if (output[_C] != null) {
|
|
2497
|
-
contents[_C] = smithyClient.expectString(output[_C]);
|
|
2498
|
-
}
|
|
2499
|
-
if (output[_M] != null) {
|
|
2500
|
-
contents[_M] = smithyClient.expectString(output[_M]);
|
|
2501
|
-
}
|
|
2502
|
-
return contents;
|
|
2503
|
-
};
|
|
2504
|
-
const de_ResourceNotFoundException = (output, context) => {
|
|
2505
|
-
const contents = {};
|
|
2506
|
-
if (output[_C] != null) {
|
|
2507
|
-
contents[_C] = smithyClient.expectString(output[_C]);
|
|
2508
|
-
}
|
|
2509
|
-
if (output[_M] != null) {
|
|
2510
|
-
contents[_M] = smithyClient.expectString(output[_M]);
|
|
2511
|
-
}
|
|
2512
|
-
return contents;
|
|
2513
|
-
};
|
|
2514
|
-
const de_ScalingParameters = (output, context) => {
|
|
2515
|
-
const contents = {};
|
|
2516
|
-
if (output[_DIT] != null) {
|
|
2517
|
-
contents[_DIT] = smithyClient.expectString(output[_DIT]);
|
|
2518
|
-
}
|
|
2519
|
-
if (output[_DRC] != null) {
|
|
2520
|
-
contents[_DRC] = smithyClient.strictParseInt32(output[_DRC]);
|
|
2521
|
-
}
|
|
2522
|
-
if (output[_DPC] != null) {
|
|
2523
|
-
contents[_DPC] = smithyClient.strictParseInt32(output[_DPC]);
|
|
2524
|
-
}
|
|
2525
|
-
return contents;
|
|
2526
|
-
};
|
|
2527
|
-
const de_ScalingParametersStatus = (output, context) => {
|
|
2528
|
-
const contents = {};
|
|
2529
|
-
if (output[_O] != null) {
|
|
2530
|
-
contents[_O] = de_ScalingParameters(output[_O]);
|
|
2531
|
-
}
|
|
2532
|
-
if (output[_Sta] != null) {
|
|
2533
|
-
contents[_Sta] = de_OptionStatus(output[_Sta]);
|
|
2534
|
-
}
|
|
2535
|
-
return contents;
|
|
2536
|
-
};
|
|
2537
|
-
const de_ServiceEndpoint = (output, context) => {
|
|
2538
|
-
const contents = {};
|
|
2539
|
-
if (output[_En] != null) {
|
|
2540
|
-
contents[_En] = smithyClient.expectString(output[_En]);
|
|
2541
|
-
}
|
|
2542
|
-
return contents;
|
|
2543
|
-
};
|
|
2544
|
-
const de_Suggester = (output, context) => {
|
|
2545
|
-
const contents = {};
|
|
2546
|
-
if (output[_SN] != null) {
|
|
2547
|
-
contents[_SN] = smithyClient.expectString(output[_SN]);
|
|
2548
|
-
}
|
|
2549
|
-
if (output[_DSO] != null) {
|
|
2550
|
-
contents[_DSO] = de_DocumentSuggesterOptions(output[_DSO]);
|
|
2551
|
-
}
|
|
2552
|
-
return contents;
|
|
2553
|
-
};
|
|
2554
|
-
const de_SuggesterStatus = (output, context) => {
|
|
2555
|
-
const contents = {};
|
|
2556
|
-
if (output[_O] != null) {
|
|
2557
|
-
contents[_O] = de_Suggester(output[_O]);
|
|
2558
|
-
}
|
|
2559
|
-
if (output[_Sta] != null) {
|
|
2560
|
-
contents[_Sta] = de_OptionStatus(output[_Sta]);
|
|
2561
|
-
}
|
|
2562
|
-
return contents;
|
|
2563
|
-
};
|
|
2564
|
-
const de_SuggesterStatusList = (output, context) => {
|
|
2565
|
-
return (output || [])
|
|
2566
|
-
.filter((e) => e != null)
|
|
2567
|
-
.map((entry) => {
|
|
2568
|
-
return de_SuggesterStatus(entry);
|
|
2569
|
-
});
|
|
2570
|
-
};
|
|
2571
|
-
const de_TextArrayOptions = (output, context) => {
|
|
2572
|
-
const contents = {};
|
|
2573
|
-
if (output[_DV] != null) {
|
|
2574
|
-
contents[_DV] = smithyClient.expectString(output[_DV]);
|
|
2575
|
-
}
|
|
2576
|
-
if (output[_SF] != null) {
|
|
2577
|
-
contents[_SF] = smithyClient.expectString(output[_SF]);
|
|
2578
|
-
}
|
|
2579
|
-
if (output[_RE] != null) {
|
|
2580
|
-
contents[_RE] = smithyClient.parseBoolean(output[_RE]);
|
|
2581
|
-
}
|
|
2582
|
-
if (output[_HE] != null) {
|
|
2583
|
-
contents[_HE] = smithyClient.parseBoolean(output[_HE]);
|
|
2584
|
-
}
|
|
2585
|
-
if (output[_ASn] != null) {
|
|
2586
|
-
contents[_ASn] = smithyClient.expectString(output[_ASn]);
|
|
2587
|
-
}
|
|
2588
|
-
return contents;
|
|
2589
|
-
};
|
|
2590
|
-
const de_TextOptions = (output, context) => {
|
|
2591
|
-
const contents = {};
|
|
2592
|
-
if (output[_DV] != null) {
|
|
2593
|
-
contents[_DV] = smithyClient.expectString(output[_DV]);
|
|
2594
|
-
}
|
|
2595
|
-
if (output[_SFo] != null) {
|
|
2596
|
-
contents[_SFo] = smithyClient.expectString(output[_SFo]);
|
|
2597
|
-
}
|
|
2598
|
-
if (output[_RE] != null) {
|
|
2599
|
-
contents[_RE] = smithyClient.parseBoolean(output[_RE]);
|
|
2600
|
-
}
|
|
2601
|
-
if (output[_SEo] != null) {
|
|
2602
|
-
contents[_SEo] = smithyClient.parseBoolean(output[_SEo]);
|
|
2603
|
-
}
|
|
2604
|
-
if (output[_HE] != null) {
|
|
2605
|
-
contents[_HE] = smithyClient.parseBoolean(output[_HE]);
|
|
2606
|
-
}
|
|
2607
|
-
if (output[_ASn] != null) {
|
|
2608
|
-
contents[_ASn] = smithyClient.expectString(output[_ASn]);
|
|
2609
|
-
}
|
|
2610
|
-
return contents;
|
|
2611
|
-
};
|
|
2612
|
-
const de_UpdateAvailabilityOptionsResponse = (output, context) => {
|
|
2613
|
-
const contents = {};
|
|
2614
|
-
if (output[_AOv] != null) {
|
|
2615
|
-
contents[_AOv] = de_AvailabilityOptionsStatus(output[_AOv]);
|
|
2616
|
-
}
|
|
2617
|
-
return contents;
|
|
2618
|
-
};
|
|
2619
|
-
const de_UpdateDomainEndpointOptionsResponse = (output, context) => {
|
|
2620
|
-
const contents = {};
|
|
2621
|
-
if (output[_DEO] != null) {
|
|
2622
|
-
contents[_DEO] = de_DomainEndpointOptionsStatus(output[_DEO]);
|
|
2623
|
-
}
|
|
2624
|
-
return contents;
|
|
2625
|
-
};
|
|
2626
|
-
const de_UpdateScalingParametersResponse = (output, context) => {
|
|
2627
|
-
const contents = {};
|
|
2628
|
-
if (output[_SP] != null) {
|
|
2629
|
-
contents[_SP] = de_ScalingParametersStatus(output[_SP]);
|
|
2630
|
-
}
|
|
2631
|
-
return contents;
|
|
2632
|
-
};
|
|
2633
|
-
const de_UpdateServiceAccessPoliciesResponse = (output, context) => {
|
|
2634
|
-
const contents = {};
|
|
2635
|
-
if (output[_AP] != null) {
|
|
2636
|
-
contents[_AP] = de_AccessPoliciesStatus(output[_AP]);
|
|
2637
|
-
}
|
|
2638
|
-
return contents;
|
|
2639
|
-
};
|
|
2640
|
-
const de_ValidationException = (output, context) => {
|
|
2641
|
-
const contents = {};
|
|
2642
|
-
if (output[_C] != null) {
|
|
2643
|
-
contents[_C] = smithyClient.expectString(output[_C]);
|
|
2644
|
-
}
|
|
2645
|
-
if (output[_M] != null) {
|
|
2646
|
-
contents[_M] = smithyClient.expectString(output[_M]);
|
|
2647
|
-
}
|
|
2648
|
-
return contents;
|
|
2649
|
-
};
|
|
2650
|
-
const deserializeMetadata = (output) => ({
|
|
2651
|
-
httpStatusCode: output.statusCode,
|
|
2652
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
2653
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
2654
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
2655
|
-
});
|
|
2656
|
-
const throwDefaultError = smithyClient.withBaseException(CloudSearchServiceException);
|
|
2657
|
-
const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => {
|
|
2658
|
-
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
2659
|
-
const contents = {
|
|
2660
|
-
protocol,
|
|
2661
|
-
hostname,
|
|
2662
|
-
port,
|
|
2663
|
-
method: "POST",
|
|
2664
|
-
path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path,
|
|
2665
|
-
headers,
|
|
2666
|
-
};
|
|
2667
|
-
if (body !== undefined) {
|
|
2668
|
-
contents.body = body;
|
|
2669
|
-
}
|
|
2670
|
-
return new protocolHttp.HttpRequest(contents);
|
|
2671
|
-
};
|
|
2672
|
-
const SHARED_HEADERS = {
|
|
2673
|
-
"content-type": "application/x-www-form-urlencoded",
|
|
2674
|
-
};
|
|
2675
|
-
const _ = "2013-01-01";
|
|
2676
|
-
const _A = "Action";
|
|
2677
339
|
const _AO = "AnalysisOptions";
|
|
340
|
+
const _AOS = "AvailabilityOptionsStatus";
|
|
2678
341
|
const _AOv = "AvailabilityOptions";
|
|
2679
342
|
const _AP = "AccessPolicies";
|
|
343
|
+
const _APS = "AccessPoliciesStatus";
|
|
2680
344
|
const _ARN = "ARN";
|
|
2681
345
|
const _AS = "AlgorithmicStemming";
|
|
2682
346
|
const _ASL = "AnalysisSchemeLanguage";
|
|
2683
347
|
const _ASN = "AnalysisSchemeName";
|
|
2684
348
|
const _ASNn = "AnalysisSchemeNames";
|
|
349
|
+
const _ASS = "AnalysisSchemeStatus";
|
|
350
|
+
const _ASSL = "AnalysisSchemeStatusList";
|
|
2685
351
|
const _ASn = "AnalysisScheme";
|
|
2686
352
|
const _ASna = "AnalysisSchemes";
|
|
353
|
+
const _BE = "BaseException";
|
|
2687
354
|
const _BS = "BuildSuggesters";
|
|
355
|
+
const _BSR = "BuildSuggestersRequest";
|
|
356
|
+
const _BSRu = "BuildSuggestersResponse";
|
|
2688
357
|
const _C = "Code";
|
|
2689
|
-
const _CD = "
|
|
2690
|
-
const
|
|
358
|
+
const _CD = "CreationDate";
|
|
359
|
+
const _CDR = "CreateDomainRequest";
|
|
360
|
+
const _CDRr = "CreateDomainResponse";
|
|
361
|
+
const _CDr = "CreateDomain";
|
|
2691
362
|
const _Cr = "Created";
|
|
2692
363
|
const _D = "Deployed";
|
|
2693
|
-
const _DAO = "
|
|
2694
|
-
const
|
|
364
|
+
const _DAO = "DateArrayOptions";
|
|
365
|
+
const _DAOR = "DescribeAvailabilityOptionsRequest";
|
|
366
|
+
const _DAORe = "DescribeAvailabilityOptionsResponse";
|
|
367
|
+
const _DAOe = "DescribeAvailabilityOptions";
|
|
2695
368
|
const _DAOo = "DoubleArrayOptions";
|
|
2696
369
|
const _DAS = "DefineAnalysisScheme";
|
|
370
|
+
const _DASR = "DefineAnalysisSchemeRequest";
|
|
371
|
+
const _DASRe = "DefineAnalysisSchemeResponse";
|
|
372
|
+
const _DASRel = "DeleteAnalysisSchemeRequest";
|
|
373
|
+
const _DASRele = "DeleteAnalysisSchemeResponse";
|
|
374
|
+
const _DASRes = "DescribeAnalysisSchemesRequest";
|
|
375
|
+
const _DASResc = "DescribeAnalysisSchemesResponse";
|
|
2697
376
|
const _DASe = "DeleteAnalysisScheme";
|
|
2698
377
|
const _DASes = "DescribeAnalysisSchemes";
|
|
2699
378
|
const _DD = "DeleteDomain";
|
|
2700
379
|
const _DDEO = "DescribeDomainEndpointOptions";
|
|
380
|
+
const _DDEOR = "DescribeDomainEndpointOptionsRequest";
|
|
381
|
+
const _DDEORe = "DescribeDomainEndpointOptionsResponse";
|
|
382
|
+
const _DDR = "DeleteDomainRequest";
|
|
383
|
+
const _DDRe = "DeleteDomainResponse";
|
|
384
|
+
const _DDRes = "DescribeDomainsRequest";
|
|
385
|
+
const _DDResc = "DescribeDomainsResponse";
|
|
2701
386
|
const _DDe = "DescribeDomains";
|
|
2702
387
|
const _DE = "DefineExpression";
|
|
2703
388
|
const _DEO = "DomainEndpointOptions";
|
|
389
|
+
const _DEOS = "DomainEndpointOptionsStatus";
|
|
390
|
+
const _DER = "DefineExpressionRequest";
|
|
391
|
+
const _DERe = "DefineExpressionResponse";
|
|
392
|
+
const _DERel = "DeleteExpressionRequest";
|
|
393
|
+
const _DERele = "DeleteExpressionResponse";
|
|
394
|
+
const _DERes = "DescribeExpressionsRequest";
|
|
395
|
+
const _DEResc = "DescribeExpressionsResponse";
|
|
2704
396
|
const _DEe = "DeleteExpression";
|
|
2705
397
|
const _DEes = "DescribeExpressions";
|
|
2706
398
|
const _DI = "DomainId";
|
|
2707
399
|
const _DIF = "DefineIndexField";
|
|
400
|
+
const _DIFR = "DefineIndexFieldRequest";
|
|
401
|
+
const _DIFRe = "DefineIndexFieldResponse";
|
|
402
|
+
const _DIFRel = "DeleteIndexFieldRequest";
|
|
403
|
+
const _DIFRele = "DeleteIndexFieldResponse";
|
|
404
|
+
const _DIFRes = "DescribeIndexFieldsRequest";
|
|
405
|
+
const _DIFResc = "DescribeIndexFieldsResponse";
|
|
2708
406
|
const _DIFe = "DeleteIndexField";
|
|
2709
407
|
const _DIFes = "DescribeIndexFields";
|
|
2710
408
|
const _DIT = "DesiredInstanceType";
|
|
2711
409
|
const _DN = "DomainName";
|
|
2712
410
|
const _DNo = "DomainNames";
|
|
2713
|
-
const _DO = "
|
|
2714
|
-
const
|
|
411
|
+
const _DO = "DateOptions";
|
|
412
|
+
const _DOE = "DisabledOperationException";
|
|
413
|
+
const _DOo = "DoubleOptions";
|
|
2715
414
|
const _DPC = "DesiredPartitionCount";
|
|
2716
415
|
const _DRC = "DesiredReplicationCount";
|
|
2717
|
-
const _DS = "
|
|
416
|
+
const _DS = "DomainStatus";
|
|
2718
417
|
const _DSAP = "DescribeServiceAccessPolicies";
|
|
418
|
+
const _DSAPR = "DescribeServiceAccessPoliciesRequest";
|
|
419
|
+
const _DSAPRe = "DescribeServiceAccessPoliciesResponse";
|
|
2719
420
|
const _DSL = "DomainStatusList";
|
|
2720
421
|
const _DSO = "DocumentSuggesterOptions";
|
|
2721
422
|
const _DSP = "DescribeScalingParameters";
|
|
2722
|
-
const
|
|
423
|
+
const _DSPR = "DescribeScalingParametersRequest";
|
|
424
|
+
const _DSPRe = "DescribeScalingParametersResponse";
|
|
425
|
+
const _DSR = "DefineSuggesterRequest";
|
|
426
|
+
const _DSRe = "DefineSuggesterResponse";
|
|
427
|
+
const _DSRel = "DeleteSuggesterRequest";
|
|
428
|
+
const _DSRele = "DeleteSuggesterResponse";
|
|
429
|
+
const _DSRes = "DescribeSuggestersRequest";
|
|
430
|
+
const _DSResc = "DescribeSuggestersResponse";
|
|
431
|
+
const _DSe = "DefineSuggester";
|
|
432
|
+
const _DSel = "DeleteSuggester";
|
|
2723
433
|
const _DSes = "DescribeSuggesters";
|
|
2724
|
-
const _DSo = "
|
|
2725
|
-
const _DSoc = "DocService";
|
|
434
|
+
const _DSo = "DocService";
|
|
2726
435
|
const _DV = "DefaultValue";
|
|
2727
436
|
const _De = "Deleted";
|
|
2728
437
|
const _E = "Expression";
|
|
2729
438
|
const _EHTTPS = "EnforceHTTPS";
|
|
2730
439
|
const _EN = "ExpressionName";
|
|
2731
440
|
const _ENx = "ExpressionNames";
|
|
441
|
+
const _ES = "ExpressionStatus";
|
|
442
|
+
const _ESL = "ExpressionStatusList";
|
|
2732
443
|
const _EV = "ExpressionValue";
|
|
2733
444
|
const _En = "Endpoint";
|
|
2734
445
|
const _Ex = "Expressions";
|
|
@@ -2738,15 +449,23 @@ const _FN = "FieldNames";
|
|
|
2738
449
|
const _HE = "HighlightEnabled";
|
|
2739
450
|
const _IAO = "IntArrayOptions";
|
|
2740
451
|
const _ID = "IndexDocuments";
|
|
452
|
+
const _IDR = "IndexDocumentsRequest";
|
|
453
|
+
const _IDRn = "IndexDocumentsResponse";
|
|
454
|
+
const _IE = "InternalException";
|
|
2741
455
|
const _IF = "IndexField";
|
|
2742
456
|
const _IFN = "IndexFieldName";
|
|
457
|
+
const _IFS = "IndexFieldStatus";
|
|
458
|
+
const _IFSL = "IndexFieldStatusList";
|
|
2743
459
|
const _IFT = "IndexFieldType";
|
|
2744
460
|
const _IFn = "IndexFields";
|
|
2745
461
|
const _IO = "IntOptions";
|
|
462
|
+
const _ITE = "InvalidTypeException";
|
|
2746
463
|
const _JTD = "JapaneseTokenizationDictionary";
|
|
2747
464
|
const _L = "Limits";
|
|
2748
465
|
const _LAO = "LiteralArrayOptions";
|
|
2749
466
|
const _LDN = "ListDomainNames";
|
|
467
|
+
const _LDNR = "ListDomainNamesResponse";
|
|
468
|
+
const _LEE = "LimitExceededException";
|
|
2750
469
|
const _LLO = "LatLonOptions";
|
|
2751
470
|
const _LO = "LiteralOptions";
|
|
2752
471
|
const _M = "Message";
|
|
@@ -2754,13 +473,17 @@ const _MAZ = "MultiAZ";
|
|
|
2754
473
|
const _MPC = "MaximumPartitionCount";
|
|
2755
474
|
const _MRC = "MaximumReplicationCount";
|
|
2756
475
|
const _O = "Options";
|
|
476
|
+
const _OS = "OptionStatus";
|
|
2757
477
|
const _P = "Processing";
|
|
2758
478
|
const _PD = "PendingDeletion";
|
|
479
|
+
const _RAEE = "ResourceAlreadyExistsException";
|
|
2759
480
|
const _RE = "ReturnEnabled";
|
|
2760
481
|
const _RID = "RequiresIndexDocuments";
|
|
2761
|
-
const
|
|
482
|
+
const _RNFE = "ResourceNotFoundException";
|
|
483
|
+
const _S = "Status";
|
|
2762
484
|
const _SD = "StemmingDictionary";
|
|
2763
485
|
const _SE = "SearchEnabled";
|
|
486
|
+
const _SEe = "ServiceEndpoint";
|
|
2764
487
|
const _SEo = "SortEnabled";
|
|
2765
488
|
const _SEor = "SortExpression";
|
|
2766
489
|
const _SF = "SourceFields";
|
|
@@ -2771,50 +494,624 @@ const _SN = "SuggesterName";
|
|
|
2771
494
|
const _SNu = "SuggesterNames";
|
|
2772
495
|
const _SP = "ScalingParameters";
|
|
2773
496
|
const _SPC = "SearchPartitionCount";
|
|
497
|
+
const _SPS = "ScalingParametersStatus";
|
|
2774
498
|
const _SS = "SearchService";
|
|
499
|
+
const _SSL = "SuggesterStatusList";
|
|
500
|
+
const _SSu = "SuggesterStatus";
|
|
2775
501
|
const _St = "Stopwords";
|
|
2776
|
-
const _Sta = "
|
|
2777
|
-
const _Stat = "State";
|
|
502
|
+
const _Sta = "State";
|
|
2778
503
|
const _Su = "Suggester";
|
|
2779
504
|
const _Sug = "Suggesters";
|
|
505
|
+
const _Sy = "Synonyms";
|
|
2780
506
|
const _TAO = "TextArrayOptions";
|
|
2781
507
|
const _TLSSP = "TLSSecurityPolicy";
|
|
2782
508
|
const _TO = "TextOptions";
|
|
2783
509
|
const _UAO = "UpdateAvailabilityOptions";
|
|
510
|
+
const _UAOR = "UpdateAvailabilityOptionsRequest";
|
|
511
|
+
const _UAORp = "UpdateAvailabilityOptionsResponse";
|
|
2784
512
|
const _UD = "UpdateDate";
|
|
2785
513
|
const _UDEO = "UpdateDomainEndpointOptions";
|
|
514
|
+
const _UDEOR = "UpdateDomainEndpointOptionsRequest";
|
|
515
|
+
const _UDEORp = "UpdateDomainEndpointOptionsResponse";
|
|
2786
516
|
const _USAP = "UpdateServiceAccessPolicies";
|
|
517
|
+
const _USAPR = "UpdateServiceAccessPoliciesRequest";
|
|
518
|
+
const _USAPRp = "UpdateServiceAccessPoliciesResponse";
|
|
2787
519
|
const _USP = "UpdateScalingParameters";
|
|
520
|
+
const _USPR = "UpdateScalingParametersRequest";
|
|
521
|
+
const _USPRp = "UpdateScalingParametersResponse";
|
|
2788
522
|
const _UV = "UpdateVersion";
|
|
2789
|
-
const
|
|
2790
|
-
const
|
|
2791
|
-
const
|
|
2792
|
-
const
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
const
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
523
|
+
const _VE = "ValidationException";
|
|
524
|
+
const _aQE = "awsQueryError";
|
|
525
|
+
const _c = "client";
|
|
526
|
+
const _e = "error";
|
|
527
|
+
const _hE = "httpError";
|
|
528
|
+
const _s = "server";
|
|
529
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.cloudsearch";
|
|
530
|
+
const n0 = "com.amazonaws.cloudsearch";
|
|
531
|
+
var AccessPoliciesStatus = [3, n0, _APS, 0, [_O, _S], [0, () => OptionStatus]];
|
|
532
|
+
var AnalysisOptions = [3, n0, _AO, 0, [_Sy, _St, _SD, _JTD, _AS], [0, 0, 0, 0, 0]];
|
|
533
|
+
var AnalysisScheme = [3, n0, _ASn, 0, [_ASN, _ASL, _AO], [0, 0, () => AnalysisOptions]];
|
|
534
|
+
var AnalysisSchemeStatus = [
|
|
535
|
+
3,
|
|
536
|
+
n0,
|
|
537
|
+
_ASS,
|
|
538
|
+
0,
|
|
539
|
+
[_O, _S],
|
|
540
|
+
[() => AnalysisScheme, () => OptionStatus],
|
|
541
|
+
];
|
|
542
|
+
var AvailabilityOptionsStatus = [3, n0, _AOS, 0, [_O, _S], [2, () => OptionStatus]];
|
|
543
|
+
var BaseException = [
|
|
544
|
+
-3,
|
|
545
|
+
n0,
|
|
546
|
+
_BE,
|
|
547
|
+
{
|
|
548
|
+
[_e]: _c,
|
|
549
|
+
},
|
|
550
|
+
[_C, _M],
|
|
551
|
+
[0, 0],
|
|
552
|
+
];
|
|
553
|
+
schema.TypeRegistry.for(n0).registerError(BaseException, BaseException$1);
|
|
554
|
+
var BuildSuggestersRequest = [3, n0, _BSR, 0, [_DN], [0]];
|
|
555
|
+
var BuildSuggestersResponse = [3, n0, _BSRu, 0, [_FN], [64 | 0]];
|
|
556
|
+
var CreateDomainRequest = [3, n0, _CDR, 0, [_DN], [0]];
|
|
557
|
+
var CreateDomainResponse = [3, n0, _CDRr, 0, [_DS], [() => DomainStatus]];
|
|
558
|
+
var DateArrayOptions = [3, n0, _DAO, 0, [_DV, _SF, _FE, _SE, _RE], [0, 0, 2, 2, 2]];
|
|
559
|
+
var DateOptions = [3, n0, _DO, 0, [_DV, _SFo, _FE, _SE, _RE, _SEo], [0, 0, 2, 2, 2, 2]];
|
|
560
|
+
var DefineAnalysisSchemeRequest = [
|
|
561
|
+
3,
|
|
562
|
+
n0,
|
|
563
|
+
_DASR,
|
|
564
|
+
0,
|
|
565
|
+
[_DN, _ASn],
|
|
566
|
+
[0, () => AnalysisScheme],
|
|
567
|
+
];
|
|
568
|
+
var DefineAnalysisSchemeResponse = [
|
|
569
|
+
3,
|
|
570
|
+
n0,
|
|
571
|
+
_DASRe,
|
|
572
|
+
0,
|
|
573
|
+
[_ASn],
|
|
574
|
+
[() => AnalysisSchemeStatus],
|
|
575
|
+
];
|
|
576
|
+
var DefineExpressionRequest = [3, n0, _DER, 0, [_DN, _E], [0, () => Expression]];
|
|
577
|
+
var DefineExpressionResponse = [3, n0, _DERe, 0, [_E], [() => ExpressionStatus]];
|
|
578
|
+
var DefineIndexFieldRequest = [3, n0, _DIFR, 0, [_DN, _IF], [0, () => IndexField]];
|
|
579
|
+
var DefineIndexFieldResponse = [3, n0, _DIFRe, 0, [_IF], [() => IndexFieldStatus]];
|
|
580
|
+
var DefineSuggesterRequest = [3, n0, _DSR, 0, [_DN, _Su], [0, () => Suggester]];
|
|
581
|
+
var DefineSuggesterResponse = [3, n0, _DSRe, 0, [_Su], [() => SuggesterStatus]];
|
|
582
|
+
var DeleteAnalysisSchemeRequest = [3, n0, _DASRel, 0, [_DN, _ASN], [0, 0]];
|
|
583
|
+
var DeleteAnalysisSchemeResponse = [
|
|
584
|
+
3,
|
|
585
|
+
n0,
|
|
586
|
+
_DASRele,
|
|
587
|
+
0,
|
|
588
|
+
[_ASn],
|
|
589
|
+
[() => AnalysisSchemeStatus],
|
|
590
|
+
];
|
|
591
|
+
var DeleteDomainRequest = [3, n0, _DDR, 0, [_DN], [0]];
|
|
592
|
+
var DeleteDomainResponse = [3, n0, _DDRe, 0, [_DS], [() => DomainStatus]];
|
|
593
|
+
var DeleteExpressionRequest = [3, n0, _DERel, 0, [_DN, _EN], [0, 0]];
|
|
594
|
+
var DeleteExpressionResponse = [3, n0, _DERele, 0, [_E], [() => ExpressionStatus]];
|
|
595
|
+
var DeleteIndexFieldRequest = [3, n0, _DIFRel, 0, [_DN, _IFN], [0, 0]];
|
|
596
|
+
var DeleteIndexFieldResponse = [3, n0, _DIFRele, 0, [_IF], [() => IndexFieldStatus]];
|
|
597
|
+
var DeleteSuggesterRequest = [3, n0, _DSRel, 0, [_DN, _SN], [0, 0]];
|
|
598
|
+
var DeleteSuggesterResponse = [3, n0, _DSRele, 0, [_Su], [() => SuggesterStatus]];
|
|
599
|
+
var DescribeAnalysisSchemesRequest = [
|
|
600
|
+
3,
|
|
601
|
+
n0,
|
|
602
|
+
_DASRes,
|
|
603
|
+
0,
|
|
604
|
+
[_DN, _ASNn, _D],
|
|
605
|
+
[0, 64 | 0, 2],
|
|
606
|
+
];
|
|
607
|
+
var DescribeAnalysisSchemesResponse = [
|
|
608
|
+
3,
|
|
609
|
+
n0,
|
|
610
|
+
_DASResc,
|
|
611
|
+
0,
|
|
612
|
+
[_ASna],
|
|
613
|
+
[() => AnalysisSchemeStatusList],
|
|
614
|
+
];
|
|
615
|
+
var DescribeAvailabilityOptionsRequest = [3, n0, _DAOR, 0, [_DN, _D], [0, 2]];
|
|
616
|
+
var DescribeAvailabilityOptionsResponse = [
|
|
617
|
+
3,
|
|
618
|
+
n0,
|
|
619
|
+
_DAORe,
|
|
620
|
+
0,
|
|
621
|
+
[_AOv],
|
|
622
|
+
[() => AvailabilityOptionsStatus],
|
|
623
|
+
];
|
|
624
|
+
var DescribeDomainEndpointOptionsRequest = [3, n0, _DDEOR, 0, [_DN, _D], [0, 2]];
|
|
625
|
+
var DescribeDomainEndpointOptionsResponse = [
|
|
626
|
+
3,
|
|
627
|
+
n0,
|
|
628
|
+
_DDEORe,
|
|
629
|
+
0,
|
|
630
|
+
[_DEO],
|
|
631
|
+
[() => DomainEndpointOptionsStatus],
|
|
632
|
+
];
|
|
633
|
+
var DescribeDomainsRequest = [3, n0, _DDRes, 0, [_DNo], [64 | 0]];
|
|
634
|
+
var DescribeDomainsResponse = [3, n0, _DDResc, 0, [_DSL], [() => DomainStatusList]];
|
|
635
|
+
var DescribeExpressionsRequest = [3, n0, _DERes, 0, [_DN, _ENx, _D], [0, 64 | 0, 2]];
|
|
636
|
+
var DescribeExpressionsResponse = [
|
|
637
|
+
3,
|
|
638
|
+
n0,
|
|
639
|
+
_DEResc,
|
|
640
|
+
0,
|
|
641
|
+
[_Ex],
|
|
642
|
+
[() => ExpressionStatusList],
|
|
643
|
+
];
|
|
644
|
+
var DescribeIndexFieldsRequest = [3, n0, _DIFRes, 0, [_DN, _FN, _D], [0, 64 | 0, 2]];
|
|
645
|
+
var DescribeIndexFieldsResponse = [
|
|
646
|
+
3,
|
|
647
|
+
n0,
|
|
648
|
+
_DIFResc,
|
|
649
|
+
0,
|
|
650
|
+
[_IFn],
|
|
651
|
+
[() => IndexFieldStatusList],
|
|
652
|
+
];
|
|
653
|
+
var DescribeScalingParametersRequest = [3, n0, _DSPR, 0, [_DN], [0]];
|
|
654
|
+
var DescribeScalingParametersResponse = [
|
|
655
|
+
3,
|
|
656
|
+
n0,
|
|
657
|
+
_DSPRe,
|
|
658
|
+
0,
|
|
659
|
+
[_SP],
|
|
660
|
+
[() => ScalingParametersStatus],
|
|
661
|
+
];
|
|
662
|
+
var DescribeServiceAccessPoliciesRequest = [3, n0, _DSAPR, 0, [_DN, _D], [0, 2]];
|
|
663
|
+
var DescribeServiceAccessPoliciesResponse = [
|
|
664
|
+
3,
|
|
665
|
+
n0,
|
|
666
|
+
_DSAPRe,
|
|
667
|
+
0,
|
|
668
|
+
[_AP],
|
|
669
|
+
[() => AccessPoliciesStatus],
|
|
670
|
+
];
|
|
671
|
+
var DescribeSuggestersRequest = [3, n0, _DSRes, 0, [_DN, _SNu, _D], [0, 64 | 0, 2]];
|
|
672
|
+
var DescribeSuggestersResponse = [3, n0, _DSResc, 0, [_Sug], [() => SuggesterStatusList]];
|
|
673
|
+
var DisabledOperationException = [
|
|
674
|
+
-3,
|
|
675
|
+
n0,
|
|
676
|
+
_DOE,
|
|
677
|
+
{
|
|
678
|
+
[_e]: _c,
|
|
679
|
+
[_hE]: 409,
|
|
680
|
+
[_aQE]: [`DisabledAction`, 409],
|
|
681
|
+
},
|
|
682
|
+
[_C, _M],
|
|
683
|
+
[0, 0],
|
|
684
|
+
];
|
|
685
|
+
schema.TypeRegistry.for(n0).registerError(DisabledOperationException, DisabledOperationException$1);
|
|
686
|
+
var DocumentSuggesterOptions = [3, n0, _DSO, 0, [_SFo, _FM, _SEor], [0, 0, 0]];
|
|
687
|
+
var DomainEndpointOptions = [3, n0, _DEO, 0, [_EHTTPS, _TLSSP], [2, 0]];
|
|
688
|
+
var DomainEndpointOptionsStatus = [
|
|
689
|
+
3,
|
|
690
|
+
n0,
|
|
691
|
+
_DEOS,
|
|
692
|
+
0,
|
|
693
|
+
[_O, _S],
|
|
694
|
+
[() => DomainEndpointOptions, () => OptionStatus],
|
|
695
|
+
];
|
|
696
|
+
var DomainStatus = [
|
|
697
|
+
3,
|
|
698
|
+
n0,
|
|
699
|
+
_DS,
|
|
700
|
+
0,
|
|
701
|
+
[_DI, _DN, _ARN, _Cr, _De, _DSo, _SS, _RID, _P, _SIT, _SPC, _SIC, _L],
|
|
702
|
+
[0, 0, 0, 2, 2, () => ServiceEndpoint, () => ServiceEndpoint, 2, 2, 0, 1, 1, () => Limits],
|
|
703
|
+
];
|
|
704
|
+
var DoubleArrayOptions = [3, n0, _DAOo, 0, [_DV, _SF, _FE, _SE, _RE], [1, 0, 2, 2, 2]];
|
|
705
|
+
var DoubleOptions = [
|
|
706
|
+
3,
|
|
707
|
+
n0,
|
|
708
|
+
_DOo,
|
|
709
|
+
0,
|
|
710
|
+
[_DV, _SFo, _FE, _SE, _RE, _SEo],
|
|
711
|
+
[1, 0, 2, 2, 2, 2],
|
|
712
|
+
];
|
|
713
|
+
var Expression = [3, n0, _E, 0, [_EN, _EV], [0, 0]];
|
|
714
|
+
var ExpressionStatus = [3, n0, _ES, 0, [_O, _S], [() => Expression, () => OptionStatus]];
|
|
715
|
+
var IndexDocumentsRequest = [3, n0, _IDR, 0, [_DN], [0]];
|
|
716
|
+
var IndexDocumentsResponse = [3, n0, _IDRn, 0, [_FN], [64 | 0]];
|
|
717
|
+
var IndexField = [
|
|
718
|
+
3,
|
|
719
|
+
n0,
|
|
720
|
+
_IF,
|
|
721
|
+
0,
|
|
722
|
+
[_IFN, _IFT, _IO, _DOo, _LO, _TO, _DO, _LLO, _IAO, _DAOo, _LAO, _TAO, _DAO],
|
|
723
|
+
[
|
|
724
|
+
0,
|
|
725
|
+
0,
|
|
726
|
+
() => IntOptions,
|
|
727
|
+
() => DoubleOptions,
|
|
728
|
+
() => LiteralOptions,
|
|
729
|
+
() => TextOptions,
|
|
730
|
+
() => DateOptions,
|
|
731
|
+
() => LatLonOptions,
|
|
732
|
+
() => IntArrayOptions,
|
|
733
|
+
() => DoubleArrayOptions,
|
|
734
|
+
() => LiteralArrayOptions,
|
|
735
|
+
() => TextArrayOptions,
|
|
736
|
+
() => DateArrayOptions,
|
|
737
|
+
],
|
|
738
|
+
];
|
|
739
|
+
var IndexFieldStatus = [3, n0, _IFS, 0, [_O, _S], [() => IndexField, () => OptionStatus]];
|
|
740
|
+
var IntArrayOptions = [3, n0, _IAO, 0, [_DV, _SF, _FE, _SE, _RE], [1, 0, 2, 2, 2]];
|
|
741
|
+
var InternalException = [
|
|
742
|
+
-3,
|
|
743
|
+
n0,
|
|
744
|
+
_IE,
|
|
745
|
+
{
|
|
746
|
+
[_e]: _s,
|
|
747
|
+
[_hE]: 500,
|
|
748
|
+
[_aQE]: [`InternalException`, 500],
|
|
749
|
+
},
|
|
750
|
+
[_C, _M],
|
|
751
|
+
[0, 0],
|
|
752
|
+
];
|
|
753
|
+
schema.TypeRegistry.for(n0).registerError(InternalException, InternalException$1);
|
|
754
|
+
var IntOptions = [3, n0, _IO, 0, [_DV, _SFo, _FE, _SE, _RE, _SEo], [1, 0, 2, 2, 2, 2]];
|
|
755
|
+
var InvalidTypeException = [
|
|
756
|
+
-3,
|
|
757
|
+
n0,
|
|
758
|
+
_ITE,
|
|
759
|
+
{
|
|
760
|
+
[_e]: _c,
|
|
761
|
+
[_hE]: 409,
|
|
762
|
+
[_aQE]: [`InvalidType`, 409],
|
|
763
|
+
},
|
|
764
|
+
[_C, _M],
|
|
765
|
+
[0, 0],
|
|
766
|
+
];
|
|
767
|
+
schema.TypeRegistry.for(n0).registerError(InvalidTypeException, InvalidTypeException$1);
|
|
768
|
+
var LatLonOptions = [
|
|
769
|
+
3,
|
|
770
|
+
n0,
|
|
771
|
+
_LLO,
|
|
772
|
+
0,
|
|
773
|
+
[_DV, _SFo, _FE, _SE, _RE, _SEo],
|
|
774
|
+
[0, 0, 2, 2, 2, 2],
|
|
775
|
+
];
|
|
776
|
+
var LimitExceededException = [
|
|
777
|
+
-3,
|
|
778
|
+
n0,
|
|
779
|
+
_LEE,
|
|
780
|
+
{
|
|
781
|
+
[_e]: _c,
|
|
782
|
+
[_hE]: 409,
|
|
783
|
+
[_aQE]: [`LimitExceeded`, 409],
|
|
784
|
+
},
|
|
785
|
+
[_C, _M],
|
|
786
|
+
[0, 0],
|
|
787
|
+
];
|
|
788
|
+
schema.TypeRegistry.for(n0).registerError(LimitExceededException, LimitExceededException$1);
|
|
789
|
+
var Limits = [3, n0, _L, 0, [_MRC, _MPC], [1, 1]];
|
|
790
|
+
var ListDomainNamesResponse = [3, n0, _LDNR, 0, [_DNo], [128 | 0]];
|
|
791
|
+
var LiteralArrayOptions = [3, n0, _LAO, 0, [_DV, _SF, _FE, _SE, _RE], [0, 0, 2, 2, 2]];
|
|
792
|
+
var LiteralOptions = [
|
|
793
|
+
3,
|
|
794
|
+
n0,
|
|
795
|
+
_LO,
|
|
796
|
+
0,
|
|
797
|
+
[_DV, _SFo, _FE, _SE, _RE, _SEo],
|
|
798
|
+
[0, 0, 2, 2, 2, 2],
|
|
799
|
+
];
|
|
800
|
+
var OptionStatus = [3, n0, _OS, 0, [_CD, _UD, _UV, _Sta, _PD], [4, 4, 1, 0, 2]];
|
|
801
|
+
var ResourceAlreadyExistsException = [
|
|
802
|
+
-3,
|
|
803
|
+
n0,
|
|
804
|
+
_RAEE,
|
|
805
|
+
{
|
|
806
|
+
[_e]: _c,
|
|
807
|
+
[_hE]: 409,
|
|
808
|
+
[_aQE]: [`ResourceAlreadyExists`, 409],
|
|
809
|
+
},
|
|
810
|
+
[_C, _M],
|
|
811
|
+
[0, 0],
|
|
812
|
+
];
|
|
813
|
+
schema.TypeRegistry.for(n0).registerError(ResourceAlreadyExistsException, ResourceAlreadyExistsException$1);
|
|
814
|
+
var ResourceNotFoundException = [
|
|
815
|
+
-3,
|
|
816
|
+
n0,
|
|
817
|
+
_RNFE,
|
|
818
|
+
{
|
|
819
|
+
[_e]: _c,
|
|
820
|
+
[_hE]: 409,
|
|
821
|
+
[_aQE]: [`ResourceNotFound`, 409],
|
|
822
|
+
},
|
|
823
|
+
[_C, _M],
|
|
824
|
+
[0, 0],
|
|
825
|
+
];
|
|
826
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
827
|
+
var ScalingParameters = [3, n0, _SP, 0, [_DIT, _DRC, _DPC], [0, 1, 1]];
|
|
828
|
+
var ScalingParametersStatus = [
|
|
829
|
+
3,
|
|
830
|
+
n0,
|
|
831
|
+
_SPS,
|
|
832
|
+
0,
|
|
833
|
+
[_O, _S],
|
|
834
|
+
[() => ScalingParameters, () => OptionStatus],
|
|
835
|
+
];
|
|
836
|
+
var ServiceEndpoint = [3, n0, _SEe, 0, [_En], [0]];
|
|
837
|
+
var Suggester = [3, n0, _Su, 0, [_SN, _DSO], [0, () => DocumentSuggesterOptions]];
|
|
838
|
+
var SuggesterStatus = [3, n0, _SSu, 0, [_O, _S], [() => Suggester, () => OptionStatus]];
|
|
839
|
+
var TextArrayOptions = [3, n0, _TAO, 0, [_DV, _SF, _RE, _HE, _ASn], [0, 0, 2, 2, 0]];
|
|
840
|
+
var TextOptions = [3, n0, _TO, 0, [_DV, _SFo, _RE, _SEo, _HE, _ASn], [0, 0, 2, 2, 2, 0]];
|
|
841
|
+
var UpdateAvailabilityOptionsRequest = [3, n0, _UAOR, 0, [_DN, _MAZ], [0, 2]];
|
|
842
|
+
var UpdateAvailabilityOptionsResponse = [
|
|
843
|
+
3,
|
|
844
|
+
n0,
|
|
845
|
+
_UAORp,
|
|
846
|
+
0,
|
|
847
|
+
[_AOv],
|
|
848
|
+
[() => AvailabilityOptionsStatus],
|
|
849
|
+
];
|
|
850
|
+
var UpdateDomainEndpointOptionsRequest = [
|
|
851
|
+
3,
|
|
852
|
+
n0,
|
|
853
|
+
_UDEOR,
|
|
854
|
+
0,
|
|
855
|
+
[_DN, _DEO],
|
|
856
|
+
[0, () => DomainEndpointOptions],
|
|
857
|
+
];
|
|
858
|
+
var UpdateDomainEndpointOptionsResponse = [
|
|
859
|
+
3,
|
|
860
|
+
n0,
|
|
861
|
+
_UDEORp,
|
|
862
|
+
0,
|
|
863
|
+
[_DEO],
|
|
864
|
+
[() => DomainEndpointOptionsStatus],
|
|
865
|
+
];
|
|
866
|
+
var UpdateScalingParametersRequest = [
|
|
867
|
+
3,
|
|
868
|
+
n0,
|
|
869
|
+
_USPR,
|
|
870
|
+
0,
|
|
871
|
+
[_DN, _SP],
|
|
872
|
+
[0, () => ScalingParameters],
|
|
873
|
+
];
|
|
874
|
+
var UpdateScalingParametersResponse = [
|
|
875
|
+
3,
|
|
876
|
+
n0,
|
|
877
|
+
_USPRp,
|
|
878
|
+
0,
|
|
879
|
+
[_SP],
|
|
880
|
+
[() => ScalingParametersStatus],
|
|
881
|
+
];
|
|
882
|
+
var UpdateServiceAccessPoliciesRequest = [3, n0, _USAPR, 0, [_DN, _AP], [0, 0]];
|
|
883
|
+
var UpdateServiceAccessPoliciesResponse = [
|
|
884
|
+
3,
|
|
885
|
+
n0,
|
|
886
|
+
_USAPRp,
|
|
887
|
+
0,
|
|
888
|
+
[_AP],
|
|
889
|
+
[() => AccessPoliciesStatus],
|
|
890
|
+
];
|
|
891
|
+
var ValidationException = [
|
|
892
|
+
-3,
|
|
893
|
+
n0,
|
|
894
|
+
_VE,
|
|
895
|
+
{
|
|
896
|
+
[_e]: _c,
|
|
897
|
+
[_hE]: 400,
|
|
898
|
+
},
|
|
899
|
+
[_C, _M],
|
|
900
|
+
[0, 0],
|
|
901
|
+
];
|
|
902
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
903
|
+
var __Unit = "unit";
|
|
904
|
+
var CloudSearchServiceException = [-3, _sm, "CloudSearchServiceException", 0, [], []];
|
|
905
|
+
schema.TypeRegistry.for(_sm).registerError(CloudSearchServiceException, CloudSearchServiceException$1);
|
|
906
|
+
var AnalysisSchemeStatusList = [1, n0, _ASSL, 0, () => AnalysisSchemeStatus];
|
|
907
|
+
var DomainStatusList = [1, n0, _DSL, 0, () => DomainStatus];
|
|
908
|
+
var ExpressionStatusList = [1, n0, _ESL, 0, () => ExpressionStatus];
|
|
909
|
+
var IndexFieldStatusList = [1, n0, _IFSL, 0, () => IndexFieldStatus];
|
|
910
|
+
var SuggesterStatusList = [1, n0, _SSL, 0, () => SuggesterStatus];
|
|
911
|
+
var BuildSuggesters = [
|
|
912
|
+
9,
|
|
913
|
+
n0,
|
|
914
|
+
_BS,
|
|
915
|
+
0,
|
|
916
|
+
() => BuildSuggestersRequest,
|
|
917
|
+
() => BuildSuggestersResponse,
|
|
918
|
+
];
|
|
919
|
+
var CreateDomain = [
|
|
920
|
+
9,
|
|
921
|
+
n0,
|
|
922
|
+
_CDr,
|
|
923
|
+
0,
|
|
924
|
+
() => CreateDomainRequest,
|
|
925
|
+
() => CreateDomainResponse,
|
|
926
|
+
];
|
|
927
|
+
var DefineAnalysisScheme = [
|
|
928
|
+
9,
|
|
929
|
+
n0,
|
|
930
|
+
_DAS,
|
|
931
|
+
0,
|
|
932
|
+
() => DefineAnalysisSchemeRequest,
|
|
933
|
+
() => DefineAnalysisSchemeResponse,
|
|
934
|
+
];
|
|
935
|
+
var DefineExpression = [
|
|
936
|
+
9,
|
|
937
|
+
n0,
|
|
938
|
+
_DE,
|
|
939
|
+
0,
|
|
940
|
+
() => DefineExpressionRequest,
|
|
941
|
+
() => DefineExpressionResponse,
|
|
942
|
+
];
|
|
943
|
+
var DefineIndexField = [
|
|
944
|
+
9,
|
|
945
|
+
n0,
|
|
946
|
+
_DIF,
|
|
947
|
+
0,
|
|
948
|
+
() => DefineIndexFieldRequest,
|
|
949
|
+
() => DefineIndexFieldResponse,
|
|
950
|
+
];
|
|
951
|
+
var DefineSuggester = [
|
|
952
|
+
9,
|
|
953
|
+
n0,
|
|
954
|
+
_DSe,
|
|
955
|
+
0,
|
|
956
|
+
() => DefineSuggesterRequest,
|
|
957
|
+
() => DefineSuggesterResponse,
|
|
958
|
+
];
|
|
959
|
+
var DeleteAnalysisScheme = [
|
|
960
|
+
9,
|
|
961
|
+
n0,
|
|
962
|
+
_DASe,
|
|
963
|
+
0,
|
|
964
|
+
() => DeleteAnalysisSchemeRequest,
|
|
965
|
+
() => DeleteAnalysisSchemeResponse,
|
|
966
|
+
];
|
|
967
|
+
var DeleteDomain = [9, n0, _DD, 0, () => DeleteDomainRequest, () => DeleteDomainResponse];
|
|
968
|
+
var DeleteExpression = [
|
|
969
|
+
9,
|
|
970
|
+
n0,
|
|
971
|
+
_DEe,
|
|
972
|
+
0,
|
|
973
|
+
() => DeleteExpressionRequest,
|
|
974
|
+
() => DeleteExpressionResponse,
|
|
975
|
+
];
|
|
976
|
+
var DeleteIndexField = [
|
|
977
|
+
9,
|
|
978
|
+
n0,
|
|
979
|
+
_DIFe,
|
|
980
|
+
0,
|
|
981
|
+
() => DeleteIndexFieldRequest,
|
|
982
|
+
() => DeleteIndexFieldResponse,
|
|
983
|
+
];
|
|
984
|
+
var DeleteSuggester = [
|
|
985
|
+
9,
|
|
986
|
+
n0,
|
|
987
|
+
_DSel,
|
|
988
|
+
0,
|
|
989
|
+
() => DeleteSuggesterRequest,
|
|
990
|
+
() => DeleteSuggesterResponse,
|
|
991
|
+
];
|
|
992
|
+
var DescribeAnalysisSchemes = [
|
|
993
|
+
9,
|
|
994
|
+
n0,
|
|
995
|
+
_DASes,
|
|
996
|
+
0,
|
|
997
|
+
() => DescribeAnalysisSchemesRequest,
|
|
998
|
+
() => DescribeAnalysisSchemesResponse,
|
|
999
|
+
];
|
|
1000
|
+
var DescribeAvailabilityOptions = [
|
|
1001
|
+
9,
|
|
1002
|
+
n0,
|
|
1003
|
+
_DAOe,
|
|
1004
|
+
0,
|
|
1005
|
+
() => DescribeAvailabilityOptionsRequest,
|
|
1006
|
+
() => DescribeAvailabilityOptionsResponse,
|
|
1007
|
+
];
|
|
1008
|
+
var DescribeDomainEndpointOptions = [
|
|
1009
|
+
9,
|
|
1010
|
+
n0,
|
|
1011
|
+
_DDEO,
|
|
1012
|
+
0,
|
|
1013
|
+
() => DescribeDomainEndpointOptionsRequest,
|
|
1014
|
+
() => DescribeDomainEndpointOptionsResponse,
|
|
1015
|
+
];
|
|
1016
|
+
var DescribeDomains = [
|
|
1017
|
+
9,
|
|
1018
|
+
n0,
|
|
1019
|
+
_DDe,
|
|
1020
|
+
0,
|
|
1021
|
+
() => DescribeDomainsRequest,
|
|
1022
|
+
() => DescribeDomainsResponse,
|
|
1023
|
+
];
|
|
1024
|
+
var DescribeExpressions = [
|
|
1025
|
+
9,
|
|
1026
|
+
n0,
|
|
1027
|
+
_DEes,
|
|
1028
|
+
0,
|
|
1029
|
+
() => DescribeExpressionsRequest,
|
|
1030
|
+
() => DescribeExpressionsResponse,
|
|
1031
|
+
];
|
|
1032
|
+
var DescribeIndexFields = [
|
|
1033
|
+
9,
|
|
1034
|
+
n0,
|
|
1035
|
+
_DIFes,
|
|
1036
|
+
0,
|
|
1037
|
+
() => DescribeIndexFieldsRequest,
|
|
1038
|
+
() => DescribeIndexFieldsResponse,
|
|
1039
|
+
];
|
|
1040
|
+
var DescribeScalingParameters = [
|
|
1041
|
+
9,
|
|
1042
|
+
n0,
|
|
1043
|
+
_DSP,
|
|
1044
|
+
0,
|
|
1045
|
+
() => DescribeScalingParametersRequest,
|
|
1046
|
+
() => DescribeScalingParametersResponse,
|
|
1047
|
+
];
|
|
1048
|
+
var DescribeServiceAccessPolicies = [
|
|
1049
|
+
9,
|
|
1050
|
+
n0,
|
|
1051
|
+
_DSAP,
|
|
1052
|
+
0,
|
|
1053
|
+
() => DescribeServiceAccessPoliciesRequest,
|
|
1054
|
+
() => DescribeServiceAccessPoliciesResponse,
|
|
1055
|
+
];
|
|
1056
|
+
var DescribeSuggesters = [
|
|
1057
|
+
9,
|
|
1058
|
+
n0,
|
|
1059
|
+
_DSes,
|
|
1060
|
+
0,
|
|
1061
|
+
() => DescribeSuggestersRequest,
|
|
1062
|
+
() => DescribeSuggestersResponse,
|
|
1063
|
+
];
|
|
1064
|
+
var IndexDocuments = [
|
|
1065
|
+
9,
|
|
1066
|
+
n0,
|
|
1067
|
+
_ID,
|
|
1068
|
+
0,
|
|
1069
|
+
() => IndexDocumentsRequest,
|
|
1070
|
+
() => IndexDocumentsResponse,
|
|
1071
|
+
];
|
|
1072
|
+
var ListDomainNames = [9, n0, _LDN, 0, () => __Unit, () => ListDomainNamesResponse];
|
|
1073
|
+
var UpdateAvailabilityOptions = [
|
|
1074
|
+
9,
|
|
1075
|
+
n0,
|
|
1076
|
+
_UAO,
|
|
1077
|
+
0,
|
|
1078
|
+
() => UpdateAvailabilityOptionsRequest,
|
|
1079
|
+
() => UpdateAvailabilityOptionsResponse,
|
|
1080
|
+
];
|
|
1081
|
+
var UpdateDomainEndpointOptions = [
|
|
1082
|
+
9,
|
|
1083
|
+
n0,
|
|
1084
|
+
_UDEO,
|
|
1085
|
+
0,
|
|
1086
|
+
() => UpdateDomainEndpointOptionsRequest,
|
|
1087
|
+
() => UpdateDomainEndpointOptionsResponse,
|
|
1088
|
+
];
|
|
1089
|
+
var UpdateScalingParameters = [
|
|
1090
|
+
9,
|
|
1091
|
+
n0,
|
|
1092
|
+
_USP,
|
|
1093
|
+
0,
|
|
1094
|
+
() => UpdateScalingParametersRequest,
|
|
1095
|
+
() => UpdateScalingParametersResponse,
|
|
1096
|
+
];
|
|
1097
|
+
var UpdateServiceAccessPolicies = [
|
|
1098
|
+
9,
|
|
1099
|
+
n0,
|
|
1100
|
+
_USAP,
|
|
1101
|
+
0,
|
|
1102
|
+
() => UpdateServiceAccessPoliciesRequest,
|
|
1103
|
+
() => UpdateServiceAccessPoliciesResponse,
|
|
1104
|
+
];
|
|
2803
1105
|
|
|
2804
1106
|
class BuildSuggestersCommand extends smithyClient.Command
|
|
2805
1107
|
.classBuilder()
|
|
2806
1108
|
.ep(commonParams)
|
|
2807
1109
|
.m(function (Command, cs, config, o) {
|
|
2808
|
-
return [
|
|
2809
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2810
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2811
|
-
];
|
|
1110
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2812
1111
|
})
|
|
2813
1112
|
.s("A9SearchCloudConfigService2013", "BuildSuggesters", {})
|
|
2814
1113
|
.n("CloudSearchClient", "BuildSuggestersCommand")
|
|
2815
|
-
.
|
|
2816
|
-
.ser(se_BuildSuggestersCommand)
|
|
2817
|
-
.de(de_BuildSuggestersCommand)
|
|
1114
|
+
.sc(BuildSuggesters)
|
|
2818
1115
|
.build() {
|
|
2819
1116
|
}
|
|
2820
1117
|
|
|
@@ -2822,16 +1119,11 @@ class CreateDomainCommand extends smithyClient.Command
|
|
|
2822
1119
|
.classBuilder()
|
|
2823
1120
|
.ep(commonParams)
|
|
2824
1121
|
.m(function (Command, cs, config, o) {
|
|
2825
|
-
return [
|
|
2826
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2827
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2828
|
-
];
|
|
1122
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2829
1123
|
})
|
|
2830
1124
|
.s("A9SearchCloudConfigService2013", "CreateDomain", {})
|
|
2831
1125
|
.n("CloudSearchClient", "CreateDomainCommand")
|
|
2832
|
-
.
|
|
2833
|
-
.ser(se_CreateDomainCommand)
|
|
2834
|
-
.de(de_CreateDomainCommand)
|
|
1126
|
+
.sc(CreateDomain)
|
|
2835
1127
|
.build() {
|
|
2836
1128
|
}
|
|
2837
1129
|
|
|
@@ -2839,16 +1131,11 @@ class DefineAnalysisSchemeCommand extends smithyClient.Command
|
|
|
2839
1131
|
.classBuilder()
|
|
2840
1132
|
.ep(commonParams)
|
|
2841
1133
|
.m(function (Command, cs, config, o) {
|
|
2842
|
-
return [
|
|
2843
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2844
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2845
|
-
];
|
|
1134
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2846
1135
|
})
|
|
2847
1136
|
.s("A9SearchCloudConfigService2013", "DefineAnalysisScheme", {})
|
|
2848
1137
|
.n("CloudSearchClient", "DefineAnalysisSchemeCommand")
|
|
2849
|
-
.
|
|
2850
|
-
.ser(se_DefineAnalysisSchemeCommand)
|
|
2851
|
-
.de(de_DefineAnalysisSchemeCommand)
|
|
1138
|
+
.sc(DefineAnalysisScheme)
|
|
2852
1139
|
.build() {
|
|
2853
1140
|
}
|
|
2854
1141
|
|
|
@@ -2856,16 +1143,11 @@ class DefineExpressionCommand extends smithyClient.Command
|
|
|
2856
1143
|
.classBuilder()
|
|
2857
1144
|
.ep(commonParams)
|
|
2858
1145
|
.m(function (Command, cs, config, o) {
|
|
2859
|
-
return [
|
|
2860
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2861
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2862
|
-
];
|
|
1146
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2863
1147
|
})
|
|
2864
1148
|
.s("A9SearchCloudConfigService2013", "DefineExpression", {})
|
|
2865
1149
|
.n("CloudSearchClient", "DefineExpressionCommand")
|
|
2866
|
-
.
|
|
2867
|
-
.ser(se_DefineExpressionCommand)
|
|
2868
|
-
.de(de_DefineExpressionCommand)
|
|
1150
|
+
.sc(DefineExpression)
|
|
2869
1151
|
.build() {
|
|
2870
1152
|
}
|
|
2871
1153
|
|
|
@@ -2873,16 +1155,11 @@ class DefineIndexFieldCommand extends smithyClient.Command
|
|
|
2873
1155
|
.classBuilder()
|
|
2874
1156
|
.ep(commonParams)
|
|
2875
1157
|
.m(function (Command, cs, config, o) {
|
|
2876
|
-
return [
|
|
2877
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2878
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2879
|
-
];
|
|
1158
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2880
1159
|
})
|
|
2881
1160
|
.s("A9SearchCloudConfigService2013", "DefineIndexField", {})
|
|
2882
1161
|
.n("CloudSearchClient", "DefineIndexFieldCommand")
|
|
2883
|
-
.
|
|
2884
|
-
.ser(se_DefineIndexFieldCommand)
|
|
2885
|
-
.de(de_DefineIndexFieldCommand)
|
|
1162
|
+
.sc(DefineIndexField)
|
|
2886
1163
|
.build() {
|
|
2887
1164
|
}
|
|
2888
1165
|
|
|
@@ -2890,16 +1167,11 @@ class DefineSuggesterCommand extends smithyClient.Command
|
|
|
2890
1167
|
.classBuilder()
|
|
2891
1168
|
.ep(commonParams)
|
|
2892
1169
|
.m(function (Command, cs, config, o) {
|
|
2893
|
-
return [
|
|
2894
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2895
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2896
|
-
];
|
|
1170
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2897
1171
|
})
|
|
2898
1172
|
.s("A9SearchCloudConfigService2013", "DefineSuggester", {})
|
|
2899
1173
|
.n("CloudSearchClient", "DefineSuggesterCommand")
|
|
2900
|
-
.
|
|
2901
|
-
.ser(se_DefineSuggesterCommand)
|
|
2902
|
-
.de(de_DefineSuggesterCommand)
|
|
1174
|
+
.sc(DefineSuggester)
|
|
2903
1175
|
.build() {
|
|
2904
1176
|
}
|
|
2905
1177
|
|
|
@@ -2907,16 +1179,11 @@ class DeleteAnalysisSchemeCommand extends smithyClient.Command
|
|
|
2907
1179
|
.classBuilder()
|
|
2908
1180
|
.ep(commonParams)
|
|
2909
1181
|
.m(function (Command, cs, config, o) {
|
|
2910
|
-
return [
|
|
2911
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2912
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2913
|
-
];
|
|
1182
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2914
1183
|
})
|
|
2915
1184
|
.s("A9SearchCloudConfigService2013", "DeleteAnalysisScheme", {})
|
|
2916
1185
|
.n("CloudSearchClient", "DeleteAnalysisSchemeCommand")
|
|
2917
|
-
.
|
|
2918
|
-
.ser(se_DeleteAnalysisSchemeCommand)
|
|
2919
|
-
.de(de_DeleteAnalysisSchemeCommand)
|
|
1186
|
+
.sc(DeleteAnalysisScheme)
|
|
2920
1187
|
.build() {
|
|
2921
1188
|
}
|
|
2922
1189
|
|
|
@@ -2924,16 +1191,11 @@ class DeleteDomainCommand extends smithyClient.Command
|
|
|
2924
1191
|
.classBuilder()
|
|
2925
1192
|
.ep(commonParams)
|
|
2926
1193
|
.m(function (Command, cs, config, o) {
|
|
2927
|
-
return [
|
|
2928
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2929
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2930
|
-
];
|
|
1194
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2931
1195
|
})
|
|
2932
1196
|
.s("A9SearchCloudConfigService2013", "DeleteDomain", {})
|
|
2933
1197
|
.n("CloudSearchClient", "DeleteDomainCommand")
|
|
2934
|
-
.
|
|
2935
|
-
.ser(se_DeleteDomainCommand)
|
|
2936
|
-
.de(de_DeleteDomainCommand)
|
|
1198
|
+
.sc(DeleteDomain)
|
|
2937
1199
|
.build() {
|
|
2938
1200
|
}
|
|
2939
1201
|
|
|
@@ -2941,16 +1203,11 @@ class DeleteExpressionCommand extends smithyClient.Command
|
|
|
2941
1203
|
.classBuilder()
|
|
2942
1204
|
.ep(commonParams)
|
|
2943
1205
|
.m(function (Command, cs, config, o) {
|
|
2944
|
-
return [
|
|
2945
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2946
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2947
|
-
];
|
|
1206
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2948
1207
|
})
|
|
2949
1208
|
.s("A9SearchCloudConfigService2013", "DeleteExpression", {})
|
|
2950
1209
|
.n("CloudSearchClient", "DeleteExpressionCommand")
|
|
2951
|
-
.
|
|
2952
|
-
.ser(se_DeleteExpressionCommand)
|
|
2953
|
-
.de(de_DeleteExpressionCommand)
|
|
1210
|
+
.sc(DeleteExpression)
|
|
2954
1211
|
.build() {
|
|
2955
1212
|
}
|
|
2956
1213
|
|
|
@@ -2958,16 +1215,11 @@ class DeleteIndexFieldCommand extends smithyClient.Command
|
|
|
2958
1215
|
.classBuilder()
|
|
2959
1216
|
.ep(commonParams)
|
|
2960
1217
|
.m(function (Command, cs, config, o) {
|
|
2961
|
-
return [
|
|
2962
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2963
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2964
|
-
];
|
|
1218
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2965
1219
|
})
|
|
2966
1220
|
.s("A9SearchCloudConfigService2013", "DeleteIndexField", {})
|
|
2967
1221
|
.n("CloudSearchClient", "DeleteIndexFieldCommand")
|
|
2968
|
-
.
|
|
2969
|
-
.ser(se_DeleteIndexFieldCommand)
|
|
2970
|
-
.de(de_DeleteIndexFieldCommand)
|
|
1222
|
+
.sc(DeleteIndexField)
|
|
2971
1223
|
.build() {
|
|
2972
1224
|
}
|
|
2973
1225
|
|
|
@@ -2975,16 +1227,11 @@ class DeleteSuggesterCommand extends smithyClient.Command
|
|
|
2975
1227
|
.classBuilder()
|
|
2976
1228
|
.ep(commonParams)
|
|
2977
1229
|
.m(function (Command, cs, config, o) {
|
|
2978
|
-
return [
|
|
2979
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2980
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2981
|
-
];
|
|
1230
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2982
1231
|
})
|
|
2983
1232
|
.s("A9SearchCloudConfigService2013", "DeleteSuggester", {})
|
|
2984
1233
|
.n("CloudSearchClient", "DeleteSuggesterCommand")
|
|
2985
|
-
.
|
|
2986
|
-
.ser(se_DeleteSuggesterCommand)
|
|
2987
|
-
.de(de_DeleteSuggesterCommand)
|
|
1234
|
+
.sc(DeleteSuggester)
|
|
2988
1235
|
.build() {
|
|
2989
1236
|
}
|
|
2990
1237
|
|
|
@@ -2992,16 +1239,11 @@ class DescribeAnalysisSchemesCommand extends smithyClient.Command
|
|
|
2992
1239
|
.classBuilder()
|
|
2993
1240
|
.ep(commonParams)
|
|
2994
1241
|
.m(function (Command, cs, config, o) {
|
|
2995
|
-
return [
|
|
2996
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2997
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2998
|
-
];
|
|
1242
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2999
1243
|
})
|
|
3000
1244
|
.s("A9SearchCloudConfigService2013", "DescribeAnalysisSchemes", {})
|
|
3001
1245
|
.n("CloudSearchClient", "DescribeAnalysisSchemesCommand")
|
|
3002
|
-
.
|
|
3003
|
-
.ser(se_DescribeAnalysisSchemesCommand)
|
|
3004
|
-
.de(de_DescribeAnalysisSchemesCommand)
|
|
1246
|
+
.sc(DescribeAnalysisSchemes)
|
|
3005
1247
|
.build() {
|
|
3006
1248
|
}
|
|
3007
1249
|
|
|
@@ -3009,16 +1251,11 @@ class DescribeAvailabilityOptionsCommand extends smithyClient.Command
|
|
|
3009
1251
|
.classBuilder()
|
|
3010
1252
|
.ep(commonParams)
|
|
3011
1253
|
.m(function (Command, cs, config, o) {
|
|
3012
|
-
return [
|
|
3013
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3014
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3015
|
-
];
|
|
1254
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3016
1255
|
})
|
|
3017
1256
|
.s("A9SearchCloudConfigService2013", "DescribeAvailabilityOptions", {})
|
|
3018
1257
|
.n("CloudSearchClient", "DescribeAvailabilityOptionsCommand")
|
|
3019
|
-
.
|
|
3020
|
-
.ser(se_DescribeAvailabilityOptionsCommand)
|
|
3021
|
-
.de(de_DescribeAvailabilityOptionsCommand)
|
|
1258
|
+
.sc(DescribeAvailabilityOptions)
|
|
3022
1259
|
.build() {
|
|
3023
1260
|
}
|
|
3024
1261
|
|
|
@@ -3026,16 +1263,11 @@ class DescribeDomainEndpointOptionsCommand extends smithyClient.Command
|
|
|
3026
1263
|
.classBuilder()
|
|
3027
1264
|
.ep(commonParams)
|
|
3028
1265
|
.m(function (Command, cs, config, o) {
|
|
3029
|
-
return [
|
|
3030
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3031
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3032
|
-
];
|
|
1266
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3033
1267
|
})
|
|
3034
1268
|
.s("A9SearchCloudConfigService2013", "DescribeDomainEndpointOptions", {})
|
|
3035
1269
|
.n("CloudSearchClient", "DescribeDomainEndpointOptionsCommand")
|
|
3036
|
-
.
|
|
3037
|
-
.ser(se_DescribeDomainEndpointOptionsCommand)
|
|
3038
|
-
.de(de_DescribeDomainEndpointOptionsCommand)
|
|
1270
|
+
.sc(DescribeDomainEndpointOptions)
|
|
3039
1271
|
.build() {
|
|
3040
1272
|
}
|
|
3041
1273
|
|
|
@@ -3043,16 +1275,11 @@ class DescribeDomainsCommand extends smithyClient.Command
|
|
|
3043
1275
|
.classBuilder()
|
|
3044
1276
|
.ep(commonParams)
|
|
3045
1277
|
.m(function (Command, cs, config, o) {
|
|
3046
|
-
return [
|
|
3047
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3048
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3049
|
-
];
|
|
1278
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3050
1279
|
})
|
|
3051
1280
|
.s("A9SearchCloudConfigService2013", "DescribeDomains", {})
|
|
3052
1281
|
.n("CloudSearchClient", "DescribeDomainsCommand")
|
|
3053
|
-
.
|
|
3054
|
-
.ser(se_DescribeDomainsCommand)
|
|
3055
|
-
.de(de_DescribeDomainsCommand)
|
|
1282
|
+
.sc(DescribeDomains)
|
|
3056
1283
|
.build() {
|
|
3057
1284
|
}
|
|
3058
1285
|
|
|
@@ -3060,16 +1287,11 @@ class DescribeExpressionsCommand extends smithyClient.Command
|
|
|
3060
1287
|
.classBuilder()
|
|
3061
1288
|
.ep(commonParams)
|
|
3062
1289
|
.m(function (Command, cs, config, o) {
|
|
3063
|
-
return [
|
|
3064
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3065
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3066
|
-
];
|
|
1290
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3067
1291
|
})
|
|
3068
1292
|
.s("A9SearchCloudConfigService2013", "DescribeExpressions", {})
|
|
3069
1293
|
.n("CloudSearchClient", "DescribeExpressionsCommand")
|
|
3070
|
-
.
|
|
3071
|
-
.ser(se_DescribeExpressionsCommand)
|
|
3072
|
-
.de(de_DescribeExpressionsCommand)
|
|
1294
|
+
.sc(DescribeExpressions)
|
|
3073
1295
|
.build() {
|
|
3074
1296
|
}
|
|
3075
1297
|
|
|
@@ -3077,16 +1299,11 @@ class DescribeIndexFieldsCommand extends smithyClient.Command
|
|
|
3077
1299
|
.classBuilder()
|
|
3078
1300
|
.ep(commonParams)
|
|
3079
1301
|
.m(function (Command, cs, config, o) {
|
|
3080
|
-
return [
|
|
3081
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3082
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3083
|
-
];
|
|
1302
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3084
1303
|
})
|
|
3085
1304
|
.s("A9SearchCloudConfigService2013", "DescribeIndexFields", {})
|
|
3086
1305
|
.n("CloudSearchClient", "DescribeIndexFieldsCommand")
|
|
3087
|
-
.
|
|
3088
|
-
.ser(se_DescribeIndexFieldsCommand)
|
|
3089
|
-
.de(de_DescribeIndexFieldsCommand)
|
|
1306
|
+
.sc(DescribeIndexFields)
|
|
3090
1307
|
.build() {
|
|
3091
1308
|
}
|
|
3092
1309
|
|
|
@@ -3094,16 +1311,11 @@ class DescribeScalingParametersCommand extends smithyClient.Command
|
|
|
3094
1311
|
.classBuilder()
|
|
3095
1312
|
.ep(commonParams)
|
|
3096
1313
|
.m(function (Command, cs, config, o) {
|
|
3097
|
-
return [
|
|
3098
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3099
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3100
|
-
];
|
|
1314
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3101
1315
|
})
|
|
3102
1316
|
.s("A9SearchCloudConfigService2013", "DescribeScalingParameters", {})
|
|
3103
1317
|
.n("CloudSearchClient", "DescribeScalingParametersCommand")
|
|
3104
|
-
.
|
|
3105
|
-
.ser(se_DescribeScalingParametersCommand)
|
|
3106
|
-
.de(de_DescribeScalingParametersCommand)
|
|
1318
|
+
.sc(DescribeScalingParameters)
|
|
3107
1319
|
.build() {
|
|
3108
1320
|
}
|
|
3109
1321
|
|
|
@@ -3111,16 +1323,11 @@ class DescribeServiceAccessPoliciesCommand extends smithyClient.Command
|
|
|
3111
1323
|
.classBuilder()
|
|
3112
1324
|
.ep(commonParams)
|
|
3113
1325
|
.m(function (Command, cs, config, o) {
|
|
3114
|
-
return [
|
|
3115
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3116
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3117
|
-
];
|
|
1326
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3118
1327
|
})
|
|
3119
1328
|
.s("A9SearchCloudConfigService2013", "DescribeServiceAccessPolicies", {})
|
|
3120
1329
|
.n("CloudSearchClient", "DescribeServiceAccessPoliciesCommand")
|
|
3121
|
-
.
|
|
3122
|
-
.ser(se_DescribeServiceAccessPoliciesCommand)
|
|
3123
|
-
.de(de_DescribeServiceAccessPoliciesCommand)
|
|
1330
|
+
.sc(DescribeServiceAccessPolicies)
|
|
3124
1331
|
.build() {
|
|
3125
1332
|
}
|
|
3126
1333
|
|
|
@@ -3128,16 +1335,11 @@ class DescribeSuggestersCommand extends smithyClient.Command
|
|
|
3128
1335
|
.classBuilder()
|
|
3129
1336
|
.ep(commonParams)
|
|
3130
1337
|
.m(function (Command, cs, config, o) {
|
|
3131
|
-
return [
|
|
3132
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3133
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3134
|
-
];
|
|
1338
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3135
1339
|
})
|
|
3136
1340
|
.s("A9SearchCloudConfigService2013", "DescribeSuggesters", {})
|
|
3137
1341
|
.n("CloudSearchClient", "DescribeSuggestersCommand")
|
|
3138
|
-
.
|
|
3139
|
-
.ser(se_DescribeSuggestersCommand)
|
|
3140
|
-
.de(de_DescribeSuggestersCommand)
|
|
1342
|
+
.sc(DescribeSuggesters)
|
|
3141
1343
|
.build() {
|
|
3142
1344
|
}
|
|
3143
1345
|
|
|
@@ -3145,16 +1347,11 @@ class IndexDocumentsCommand extends smithyClient.Command
|
|
|
3145
1347
|
.classBuilder()
|
|
3146
1348
|
.ep(commonParams)
|
|
3147
1349
|
.m(function (Command, cs, config, o) {
|
|
3148
|
-
return [
|
|
3149
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3150
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3151
|
-
];
|
|
1350
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3152
1351
|
})
|
|
3153
1352
|
.s("A9SearchCloudConfigService2013", "IndexDocuments", {})
|
|
3154
1353
|
.n("CloudSearchClient", "IndexDocumentsCommand")
|
|
3155
|
-
.
|
|
3156
|
-
.ser(se_IndexDocumentsCommand)
|
|
3157
|
-
.de(de_IndexDocumentsCommand)
|
|
1354
|
+
.sc(IndexDocuments)
|
|
3158
1355
|
.build() {
|
|
3159
1356
|
}
|
|
3160
1357
|
|
|
@@ -3162,16 +1359,11 @@ class ListDomainNamesCommand extends smithyClient.Command
|
|
|
3162
1359
|
.classBuilder()
|
|
3163
1360
|
.ep(commonParams)
|
|
3164
1361
|
.m(function (Command, cs, config, o) {
|
|
3165
|
-
return [
|
|
3166
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3167
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3168
|
-
];
|
|
1362
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3169
1363
|
})
|
|
3170
1364
|
.s("A9SearchCloudConfigService2013", "ListDomainNames", {})
|
|
3171
1365
|
.n("CloudSearchClient", "ListDomainNamesCommand")
|
|
3172
|
-
.
|
|
3173
|
-
.ser(se_ListDomainNamesCommand)
|
|
3174
|
-
.de(de_ListDomainNamesCommand)
|
|
1366
|
+
.sc(ListDomainNames)
|
|
3175
1367
|
.build() {
|
|
3176
1368
|
}
|
|
3177
1369
|
|
|
@@ -3179,16 +1371,11 @@ class UpdateAvailabilityOptionsCommand extends smithyClient.Command
|
|
|
3179
1371
|
.classBuilder()
|
|
3180
1372
|
.ep(commonParams)
|
|
3181
1373
|
.m(function (Command, cs, config, o) {
|
|
3182
|
-
return [
|
|
3183
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3184
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3185
|
-
];
|
|
1374
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3186
1375
|
})
|
|
3187
1376
|
.s("A9SearchCloudConfigService2013", "UpdateAvailabilityOptions", {})
|
|
3188
1377
|
.n("CloudSearchClient", "UpdateAvailabilityOptionsCommand")
|
|
3189
|
-
.
|
|
3190
|
-
.ser(se_UpdateAvailabilityOptionsCommand)
|
|
3191
|
-
.de(de_UpdateAvailabilityOptionsCommand)
|
|
1378
|
+
.sc(UpdateAvailabilityOptions)
|
|
3192
1379
|
.build() {
|
|
3193
1380
|
}
|
|
3194
1381
|
|
|
@@ -3196,16 +1383,11 @@ class UpdateDomainEndpointOptionsCommand extends smithyClient.Command
|
|
|
3196
1383
|
.classBuilder()
|
|
3197
1384
|
.ep(commonParams)
|
|
3198
1385
|
.m(function (Command, cs, config, o) {
|
|
3199
|
-
return [
|
|
3200
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3201
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3202
|
-
];
|
|
1386
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3203
1387
|
})
|
|
3204
1388
|
.s("A9SearchCloudConfigService2013", "UpdateDomainEndpointOptions", {})
|
|
3205
1389
|
.n("CloudSearchClient", "UpdateDomainEndpointOptionsCommand")
|
|
3206
|
-
.
|
|
3207
|
-
.ser(se_UpdateDomainEndpointOptionsCommand)
|
|
3208
|
-
.de(de_UpdateDomainEndpointOptionsCommand)
|
|
1390
|
+
.sc(UpdateDomainEndpointOptions)
|
|
3209
1391
|
.build() {
|
|
3210
1392
|
}
|
|
3211
1393
|
|
|
@@ -3213,16 +1395,11 @@ class UpdateScalingParametersCommand extends smithyClient.Command
|
|
|
3213
1395
|
.classBuilder()
|
|
3214
1396
|
.ep(commonParams)
|
|
3215
1397
|
.m(function (Command, cs, config, o) {
|
|
3216
|
-
return [
|
|
3217
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3218
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3219
|
-
];
|
|
1398
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3220
1399
|
})
|
|
3221
1400
|
.s("A9SearchCloudConfigService2013", "UpdateScalingParameters", {})
|
|
3222
1401
|
.n("CloudSearchClient", "UpdateScalingParametersCommand")
|
|
3223
|
-
.
|
|
3224
|
-
.ser(se_UpdateScalingParametersCommand)
|
|
3225
|
-
.de(de_UpdateScalingParametersCommand)
|
|
1402
|
+
.sc(UpdateScalingParameters)
|
|
3226
1403
|
.build() {
|
|
3227
1404
|
}
|
|
3228
1405
|
|
|
@@ -3230,16 +1407,11 @@ class UpdateServiceAccessPoliciesCommand extends smithyClient.Command
|
|
|
3230
1407
|
.classBuilder()
|
|
3231
1408
|
.ep(commonParams)
|
|
3232
1409
|
.m(function (Command, cs, config, o) {
|
|
3233
|
-
return [
|
|
3234
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3235
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3236
|
-
];
|
|
1410
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3237
1411
|
})
|
|
3238
1412
|
.s("A9SearchCloudConfigService2013", "UpdateServiceAccessPolicies", {})
|
|
3239
1413
|
.n("CloudSearchClient", "UpdateServiceAccessPoliciesCommand")
|
|
3240
|
-
.
|
|
3241
|
-
.ser(se_UpdateServiceAccessPoliciesCommand)
|
|
3242
|
-
.de(de_UpdateServiceAccessPoliciesCommand)
|
|
1414
|
+
.sc(UpdateServiceAccessPolicies)
|
|
3243
1415
|
.build() {
|
|
3244
1416
|
}
|
|
3245
1417
|
|
|
@@ -3285,11 +1457,11 @@ Object.defineProperty(exports, "__Client", {
|
|
|
3285
1457
|
});
|
|
3286
1458
|
exports.AlgorithmicStemming = AlgorithmicStemming;
|
|
3287
1459
|
exports.AnalysisSchemeLanguage = AnalysisSchemeLanguage;
|
|
3288
|
-
exports.BaseException = BaseException;
|
|
1460
|
+
exports.BaseException = BaseException$1;
|
|
3289
1461
|
exports.BuildSuggestersCommand = BuildSuggestersCommand;
|
|
3290
1462
|
exports.CloudSearch = CloudSearch;
|
|
3291
1463
|
exports.CloudSearchClient = CloudSearchClient;
|
|
3292
|
-
exports.CloudSearchServiceException = CloudSearchServiceException;
|
|
1464
|
+
exports.CloudSearchServiceException = CloudSearchServiceException$1;
|
|
3293
1465
|
exports.CreateDomainCommand = CreateDomainCommand;
|
|
3294
1466
|
exports.DefineAnalysisSchemeCommand = DefineAnalysisSchemeCommand;
|
|
3295
1467
|
exports.DefineExpressionCommand = DefineExpressionCommand;
|
|
@@ -3309,21 +1481,21 @@ exports.DescribeIndexFieldsCommand = DescribeIndexFieldsCommand;
|
|
|
3309
1481
|
exports.DescribeScalingParametersCommand = DescribeScalingParametersCommand;
|
|
3310
1482
|
exports.DescribeServiceAccessPoliciesCommand = DescribeServiceAccessPoliciesCommand;
|
|
3311
1483
|
exports.DescribeSuggestersCommand = DescribeSuggestersCommand;
|
|
3312
|
-
exports.DisabledOperationException = DisabledOperationException;
|
|
1484
|
+
exports.DisabledOperationException = DisabledOperationException$1;
|
|
3313
1485
|
exports.IndexDocumentsCommand = IndexDocumentsCommand;
|
|
3314
1486
|
exports.IndexFieldType = IndexFieldType;
|
|
3315
|
-
exports.InternalException = InternalException;
|
|
3316
|
-
exports.InvalidTypeException = InvalidTypeException;
|
|
3317
|
-
exports.LimitExceededException = LimitExceededException;
|
|
1487
|
+
exports.InternalException = InternalException$1;
|
|
1488
|
+
exports.InvalidTypeException = InvalidTypeException$1;
|
|
1489
|
+
exports.LimitExceededException = LimitExceededException$1;
|
|
3318
1490
|
exports.ListDomainNamesCommand = ListDomainNamesCommand;
|
|
3319
1491
|
exports.OptionState = OptionState;
|
|
3320
1492
|
exports.PartitionInstanceType = PartitionInstanceType;
|
|
3321
|
-
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
|
|
3322
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1493
|
+
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException$1;
|
|
1494
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
3323
1495
|
exports.SuggesterFuzzyMatching = SuggesterFuzzyMatching;
|
|
3324
1496
|
exports.TLSSecurityPolicy = TLSSecurityPolicy;
|
|
3325
1497
|
exports.UpdateAvailabilityOptionsCommand = UpdateAvailabilityOptionsCommand;
|
|
3326
1498
|
exports.UpdateDomainEndpointOptionsCommand = UpdateDomainEndpointOptionsCommand;
|
|
3327
1499
|
exports.UpdateScalingParametersCommand = UpdateScalingParametersCommand;
|
|
3328
1500
|
exports.UpdateServiceAccessPoliciesCommand = UpdateServiceAccessPoliciesCommand;
|
|
3329
|
-
exports.ValidationException = ValidationException;
|
|
1501
|
+
exports.ValidationException = ValidationException$1;
|