@aws-sdk/client-cloudsearch 3.1074.0 → 3.1076.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 +1196 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/CloudSearchServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -129
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -39
- package/dist-cjs/schemas/schemas_0.js +0 -851
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsQueryProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultCloudSearchHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "cloudsearch",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultCloudSearchHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,1024 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://cloudsearch-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://cloudsearch-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://cloudsearch.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://cloudsearch.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class CloudSearchServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, CloudSearchServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class BaseException extends CloudSearchServiceException {
|
|
140
|
+
name = "BaseException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
Code;
|
|
143
|
+
Message;
|
|
144
|
+
constructor(opts) {
|
|
145
|
+
super({
|
|
146
|
+
name: "BaseException",
|
|
147
|
+
$fault: "client",
|
|
148
|
+
...opts,
|
|
149
|
+
});
|
|
150
|
+
Object.setPrototypeOf(this, BaseException.prototype);
|
|
151
|
+
this.Code = opts.Code;
|
|
152
|
+
this.Message = opts.Message;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
class InternalException extends CloudSearchServiceException {
|
|
156
|
+
name = "InternalException";
|
|
157
|
+
$fault = "server";
|
|
158
|
+
Code;
|
|
159
|
+
Message;
|
|
160
|
+
constructor(opts) {
|
|
161
|
+
super({
|
|
162
|
+
name: "InternalException",
|
|
163
|
+
$fault: "server",
|
|
164
|
+
...opts,
|
|
165
|
+
});
|
|
166
|
+
Object.setPrototypeOf(this, InternalException.prototype);
|
|
167
|
+
this.Code = opts.Code;
|
|
168
|
+
this.Message = opts.Message;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
class ResourceNotFoundException extends CloudSearchServiceException {
|
|
172
|
+
name = "ResourceNotFoundException";
|
|
173
|
+
$fault = "client";
|
|
174
|
+
Code;
|
|
175
|
+
Message;
|
|
176
|
+
constructor(opts) {
|
|
177
|
+
super({
|
|
178
|
+
name: "ResourceNotFoundException",
|
|
179
|
+
$fault: "client",
|
|
180
|
+
...opts,
|
|
181
|
+
});
|
|
182
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
183
|
+
this.Code = opts.Code;
|
|
184
|
+
this.Message = opts.Message;
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
class ValidationException extends CloudSearchServiceException {
|
|
188
|
+
name = "ValidationException";
|
|
189
|
+
$fault = "client";
|
|
190
|
+
Code;
|
|
191
|
+
Message;
|
|
192
|
+
constructor(opts) {
|
|
193
|
+
super({
|
|
194
|
+
name: "ValidationException",
|
|
195
|
+
$fault: "client",
|
|
196
|
+
...opts,
|
|
197
|
+
});
|
|
198
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
199
|
+
this.Code = opts.Code;
|
|
200
|
+
this.Message = opts.Message;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
class LimitExceededException extends CloudSearchServiceException {
|
|
204
|
+
name = "LimitExceededException";
|
|
205
|
+
$fault = "client";
|
|
206
|
+
Code;
|
|
207
|
+
Message;
|
|
208
|
+
constructor(opts) {
|
|
209
|
+
super({
|
|
210
|
+
name: "LimitExceededException",
|
|
211
|
+
$fault: "client",
|
|
212
|
+
...opts,
|
|
213
|
+
});
|
|
214
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
215
|
+
this.Code = opts.Code;
|
|
216
|
+
this.Message = opts.Message;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
class ResourceAlreadyExistsException extends CloudSearchServiceException {
|
|
220
|
+
name = "ResourceAlreadyExistsException";
|
|
221
|
+
$fault = "client";
|
|
222
|
+
Code;
|
|
223
|
+
Message;
|
|
224
|
+
constructor(opts) {
|
|
225
|
+
super({
|
|
226
|
+
name: "ResourceAlreadyExistsException",
|
|
227
|
+
$fault: "client",
|
|
228
|
+
...opts,
|
|
229
|
+
});
|
|
230
|
+
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
231
|
+
this.Code = opts.Code;
|
|
232
|
+
this.Message = opts.Message;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
class InvalidTypeException extends CloudSearchServiceException {
|
|
236
|
+
name = "InvalidTypeException";
|
|
237
|
+
$fault = "client";
|
|
238
|
+
Code;
|
|
239
|
+
Message;
|
|
240
|
+
constructor(opts) {
|
|
241
|
+
super({
|
|
242
|
+
name: "InvalidTypeException",
|
|
243
|
+
$fault: "client",
|
|
244
|
+
...opts,
|
|
245
|
+
});
|
|
246
|
+
Object.setPrototypeOf(this, InvalidTypeException.prototype);
|
|
247
|
+
this.Code = opts.Code;
|
|
248
|
+
this.Message = opts.Message;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
class DisabledOperationException extends CloudSearchServiceException {
|
|
252
|
+
name = "DisabledOperationException";
|
|
253
|
+
$fault = "client";
|
|
254
|
+
Code;
|
|
255
|
+
Message;
|
|
256
|
+
constructor(opts) {
|
|
257
|
+
super({
|
|
258
|
+
name: "DisabledOperationException",
|
|
259
|
+
$fault: "client",
|
|
260
|
+
...opts,
|
|
261
|
+
});
|
|
262
|
+
Object.setPrototypeOf(this, DisabledOperationException.prototype);
|
|
263
|
+
this.Code = opts.Code;
|
|
264
|
+
this.Message = opts.Message;
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
const _AO = "AnalysisOptions";
|
|
269
|
+
const _AOS = "AvailabilityOptionsStatus";
|
|
270
|
+
const _AOv = "AvailabilityOptions";
|
|
271
|
+
const _AP = "AccessPolicies";
|
|
272
|
+
const _APS = "AccessPoliciesStatus";
|
|
273
|
+
const _ARN = "ARN";
|
|
274
|
+
const _AS = "AlgorithmicStemming";
|
|
275
|
+
const _ASL = "AnalysisSchemeLanguage";
|
|
276
|
+
const _ASN = "AnalysisSchemeName";
|
|
277
|
+
const _ASNn = "AnalysisSchemeNames";
|
|
278
|
+
const _ASS = "AnalysisSchemeStatus";
|
|
279
|
+
const _ASSL = "AnalysisSchemeStatusList";
|
|
280
|
+
const _ASn = "AnalysisScheme";
|
|
281
|
+
const _ASna = "AnalysisSchemes";
|
|
282
|
+
const _BE = "BaseException";
|
|
283
|
+
const _BS = "BuildSuggesters";
|
|
284
|
+
const _BSR = "BuildSuggestersRequest";
|
|
285
|
+
const _BSRu = "BuildSuggestersResponse";
|
|
286
|
+
const _C = "Code";
|
|
287
|
+
const _CD = "CreationDate";
|
|
288
|
+
const _CDR = "CreateDomainRequest";
|
|
289
|
+
const _CDRr = "CreateDomainResponse";
|
|
290
|
+
const _CDr = "CreateDomain";
|
|
291
|
+
const _Cr = "Created";
|
|
292
|
+
const _D = "Deployed";
|
|
293
|
+
const _DAO = "DateArrayOptions";
|
|
294
|
+
const _DAOR = "DescribeAvailabilityOptionsRequest";
|
|
295
|
+
const _DAORe = "DescribeAvailabilityOptionsResponse";
|
|
296
|
+
const _DAOe = "DescribeAvailabilityOptions";
|
|
297
|
+
const _DAOo = "DoubleArrayOptions";
|
|
298
|
+
const _DAS = "DefineAnalysisScheme";
|
|
299
|
+
const _DASR = "DefineAnalysisSchemeRequest";
|
|
300
|
+
const _DASRe = "DefineAnalysisSchemeResponse";
|
|
301
|
+
const _DASRel = "DeleteAnalysisSchemeRequest";
|
|
302
|
+
const _DASRele = "DeleteAnalysisSchemeResponse";
|
|
303
|
+
const _DASRes = "DescribeAnalysisSchemesRequest";
|
|
304
|
+
const _DASResc = "DescribeAnalysisSchemesResponse";
|
|
305
|
+
const _DASe = "DeleteAnalysisScheme";
|
|
306
|
+
const _DASes = "DescribeAnalysisSchemes";
|
|
307
|
+
const _DD = "DeleteDomain";
|
|
308
|
+
const _DDEO = "DescribeDomainEndpointOptions";
|
|
309
|
+
const _DDEOR = "DescribeDomainEndpointOptionsRequest";
|
|
310
|
+
const _DDEORe = "DescribeDomainEndpointOptionsResponse";
|
|
311
|
+
const _DDR = "DeleteDomainRequest";
|
|
312
|
+
const _DDRe = "DeleteDomainResponse";
|
|
313
|
+
const _DDRes = "DescribeDomainsRequest";
|
|
314
|
+
const _DDResc = "DescribeDomainsResponse";
|
|
315
|
+
const _DDe = "DescribeDomains";
|
|
316
|
+
const _DE = "DefineExpression";
|
|
317
|
+
const _DEO = "DomainEndpointOptions";
|
|
318
|
+
const _DEOS = "DomainEndpointOptionsStatus";
|
|
319
|
+
const _DER = "DefineExpressionRequest";
|
|
320
|
+
const _DERe = "DefineExpressionResponse";
|
|
321
|
+
const _DERel = "DeleteExpressionRequest";
|
|
322
|
+
const _DERele = "DeleteExpressionResponse";
|
|
323
|
+
const _DERes = "DescribeExpressionsRequest";
|
|
324
|
+
const _DEResc = "DescribeExpressionsResponse";
|
|
325
|
+
const _DEe = "DeleteExpression";
|
|
326
|
+
const _DEes = "DescribeExpressions";
|
|
327
|
+
const _DI = "DomainId";
|
|
328
|
+
const _DIF = "DefineIndexField";
|
|
329
|
+
const _DIFR = "DefineIndexFieldRequest";
|
|
330
|
+
const _DIFRe = "DefineIndexFieldResponse";
|
|
331
|
+
const _DIFRel = "DeleteIndexFieldRequest";
|
|
332
|
+
const _DIFRele = "DeleteIndexFieldResponse";
|
|
333
|
+
const _DIFRes = "DescribeIndexFieldsRequest";
|
|
334
|
+
const _DIFResc = "DescribeIndexFieldsResponse";
|
|
335
|
+
const _DIFe = "DeleteIndexField";
|
|
336
|
+
const _DIFes = "DescribeIndexFields";
|
|
337
|
+
const _DIT = "DesiredInstanceType";
|
|
338
|
+
const _DN = "DomainName";
|
|
339
|
+
const _DNo = "DomainNames";
|
|
340
|
+
const _DO = "DateOptions";
|
|
341
|
+
const _DOE = "DisabledOperationException";
|
|
342
|
+
const _DOo = "DoubleOptions";
|
|
343
|
+
const _DPC = "DesiredPartitionCount";
|
|
344
|
+
const _DRC = "DesiredReplicationCount";
|
|
345
|
+
const _DS = "DomainStatus";
|
|
346
|
+
const _DSAP = "DescribeServiceAccessPolicies";
|
|
347
|
+
const _DSAPR = "DescribeServiceAccessPoliciesRequest";
|
|
348
|
+
const _DSAPRe = "DescribeServiceAccessPoliciesResponse";
|
|
349
|
+
const _DSL = "DomainStatusList";
|
|
350
|
+
const _DSO = "DocumentSuggesterOptions";
|
|
351
|
+
const _DSP = "DescribeScalingParameters";
|
|
352
|
+
const _DSPR = "DescribeScalingParametersRequest";
|
|
353
|
+
const _DSPRe = "DescribeScalingParametersResponse";
|
|
354
|
+
const _DSR = "DefineSuggesterRequest";
|
|
355
|
+
const _DSRe = "DefineSuggesterResponse";
|
|
356
|
+
const _DSRel = "DeleteSuggesterRequest";
|
|
357
|
+
const _DSRele = "DeleteSuggesterResponse";
|
|
358
|
+
const _DSRes = "DescribeSuggestersRequest";
|
|
359
|
+
const _DSResc = "DescribeSuggestersResponse";
|
|
360
|
+
const _DSe = "DefineSuggester";
|
|
361
|
+
const _DSel = "DeleteSuggester";
|
|
362
|
+
const _DSes = "DescribeSuggesters";
|
|
363
|
+
const _DSo = "DocService";
|
|
364
|
+
const _DV = "DefaultValue";
|
|
365
|
+
const _De = "Deleted";
|
|
366
|
+
const _E = "Expression";
|
|
367
|
+
const _EHTTPS = "EnforceHTTPS";
|
|
368
|
+
const _EN = "ExpressionName";
|
|
369
|
+
const _ENx = "ExpressionNames";
|
|
370
|
+
const _ES = "ExpressionStatus";
|
|
371
|
+
const _ESL = "ExpressionStatusList";
|
|
372
|
+
const _EV = "ExpressionValue";
|
|
373
|
+
const _En = "Endpoint";
|
|
374
|
+
const _Ex = "Expressions";
|
|
375
|
+
const _FE = "FacetEnabled";
|
|
376
|
+
const _FM = "FuzzyMatching";
|
|
377
|
+
const _FN = "FieldNames";
|
|
378
|
+
const _HE = "HighlightEnabled";
|
|
379
|
+
const _IAO = "IntArrayOptions";
|
|
380
|
+
const _ID = "IndexDocuments";
|
|
381
|
+
const _IDR = "IndexDocumentsRequest";
|
|
382
|
+
const _IDRn = "IndexDocumentsResponse";
|
|
383
|
+
const _IE = "InternalException";
|
|
384
|
+
const _IF = "IndexField";
|
|
385
|
+
const _IFN = "IndexFieldName";
|
|
386
|
+
const _IFS = "IndexFieldStatus";
|
|
387
|
+
const _IFSL = "IndexFieldStatusList";
|
|
388
|
+
const _IFT = "IndexFieldType";
|
|
389
|
+
const _IFn = "IndexFields";
|
|
390
|
+
const _IO = "IntOptions";
|
|
391
|
+
const _ITE = "InvalidTypeException";
|
|
392
|
+
const _JTD = "JapaneseTokenizationDictionary";
|
|
393
|
+
const _L = "Limits";
|
|
394
|
+
const _LAO = "LiteralArrayOptions";
|
|
395
|
+
const _LDN = "ListDomainNames";
|
|
396
|
+
const _LDNR = "ListDomainNamesResponse";
|
|
397
|
+
const _LEE = "LimitExceededException";
|
|
398
|
+
const _LLO = "LatLonOptions";
|
|
399
|
+
const _LO = "LiteralOptions";
|
|
400
|
+
const _M = "Message";
|
|
401
|
+
const _MAZ = "MultiAZ";
|
|
402
|
+
const _MPC = "MaximumPartitionCount";
|
|
403
|
+
const _MRC = "MaximumReplicationCount";
|
|
404
|
+
const _O = "Options";
|
|
405
|
+
const _OS = "OptionStatus";
|
|
406
|
+
const _P = "Processing";
|
|
407
|
+
const _PD = "PendingDeletion";
|
|
408
|
+
const _RAEE = "ResourceAlreadyExistsException";
|
|
409
|
+
const _RE = "ReturnEnabled";
|
|
410
|
+
const _RID = "RequiresIndexDocuments";
|
|
411
|
+
const _RNFE = "ResourceNotFoundException";
|
|
412
|
+
const _S = "Status";
|
|
413
|
+
const _SD = "StemmingDictionary";
|
|
414
|
+
const _SE = "SearchEnabled";
|
|
415
|
+
const _SEe = "ServiceEndpoint";
|
|
416
|
+
const _SEo = "SortEnabled";
|
|
417
|
+
const _SEor = "SortExpression";
|
|
418
|
+
const _SF = "SourceFields";
|
|
419
|
+
const _SFo = "SourceField";
|
|
420
|
+
const _SIC = "SearchInstanceCount";
|
|
421
|
+
const _SIT = "SearchInstanceType";
|
|
422
|
+
const _SN = "SuggesterName";
|
|
423
|
+
const _SNu = "SuggesterNames";
|
|
424
|
+
const _SP = "ScalingParameters";
|
|
425
|
+
const _SPC = "SearchPartitionCount";
|
|
426
|
+
const _SPS = "ScalingParametersStatus";
|
|
427
|
+
const _SS = "SearchService";
|
|
428
|
+
const _SSL = "SuggesterStatusList";
|
|
429
|
+
const _SSu = "SuggesterStatus";
|
|
430
|
+
const _St = "Stopwords";
|
|
431
|
+
const _Sta = "State";
|
|
432
|
+
const _Su = "Suggester";
|
|
433
|
+
const _Sug = "Suggesters";
|
|
434
|
+
const _Sy = "Synonyms";
|
|
435
|
+
const _TAO = "TextArrayOptions";
|
|
436
|
+
const _TLSSP = "TLSSecurityPolicy";
|
|
437
|
+
const _TO = "TextOptions";
|
|
438
|
+
const _UAO = "UpdateAvailabilityOptions";
|
|
439
|
+
const _UAOR = "UpdateAvailabilityOptionsRequest";
|
|
440
|
+
const _UAORp = "UpdateAvailabilityOptionsResponse";
|
|
441
|
+
const _UD = "UpdateDate";
|
|
442
|
+
const _UDEO = "UpdateDomainEndpointOptions";
|
|
443
|
+
const _UDEOR = "UpdateDomainEndpointOptionsRequest";
|
|
444
|
+
const _UDEORp = "UpdateDomainEndpointOptionsResponse";
|
|
445
|
+
const _USAP = "UpdateServiceAccessPolicies";
|
|
446
|
+
const _USAPR = "UpdateServiceAccessPoliciesRequest";
|
|
447
|
+
const _USAPRp = "UpdateServiceAccessPoliciesResponse";
|
|
448
|
+
const _USP = "UpdateScalingParameters";
|
|
449
|
+
const _USPR = "UpdateScalingParametersRequest";
|
|
450
|
+
const _USPRp = "UpdateScalingParametersResponse";
|
|
451
|
+
const _UV = "UpdateVersion";
|
|
452
|
+
const _VE = "ValidationException";
|
|
453
|
+
const _aQE = "awsQueryError";
|
|
454
|
+
const _c = "client";
|
|
455
|
+
const _e = "error";
|
|
456
|
+
const _hE = "httpError";
|
|
457
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.cloudsearch";
|
|
458
|
+
const _se = "server";
|
|
459
|
+
const n0 = "com.amazonaws.cloudsearch";
|
|
460
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
461
|
+
var CloudSearchServiceException$ = [-3, _s, "CloudSearchServiceException", 0, [], []];
|
|
462
|
+
_s_registry.registerError(CloudSearchServiceException$, CloudSearchServiceException);
|
|
463
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
464
|
+
var BaseException$ = [-3, n0, _BE,
|
|
465
|
+
{ [_e]: _c },
|
|
466
|
+
[_C, _M],
|
|
467
|
+
[0, 0]
|
|
468
|
+
];
|
|
469
|
+
n0_registry.registerError(BaseException$, BaseException);
|
|
470
|
+
var DisabledOperationException$ = [-3, n0, _DOE,
|
|
471
|
+
{ [_aQE]: [`DisabledAction`, 409], [_e]: _c, [_hE]: 409 },
|
|
472
|
+
[_C, _M],
|
|
473
|
+
[0, 0]
|
|
474
|
+
];
|
|
475
|
+
n0_registry.registerError(DisabledOperationException$, DisabledOperationException);
|
|
476
|
+
var InternalException$ = [-3, n0, _IE,
|
|
477
|
+
{ [_aQE]: [`InternalException`, 500], [_e]: _se, [_hE]: 500 },
|
|
478
|
+
[_C, _M],
|
|
479
|
+
[0, 0]
|
|
480
|
+
];
|
|
481
|
+
n0_registry.registerError(InternalException$, InternalException);
|
|
482
|
+
var InvalidTypeException$ = [-3, n0, _ITE,
|
|
483
|
+
{ [_aQE]: [`InvalidType`, 409], [_e]: _c, [_hE]: 409 },
|
|
484
|
+
[_C, _M],
|
|
485
|
+
[0, 0]
|
|
486
|
+
];
|
|
487
|
+
n0_registry.registerError(InvalidTypeException$, InvalidTypeException);
|
|
488
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
489
|
+
{ [_aQE]: [`LimitExceeded`, 409], [_e]: _c, [_hE]: 409 },
|
|
490
|
+
[_C, _M],
|
|
491
|
+
[0, 0]
|
|
492
|
+
];
|
|
493
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
494
|
+
var ResourceAlreadyExistsException$ = [-3, n0, _RAEE,
|
|
495
|
+
{ [_aQE]: [`ResourceAlreadyExists`, 409], [_e]: _c, [_hE]: 409 },
|
|
496
|
+
[_C, _M],
|
|
497
|
+
[0, 0]
|
|
498
|
+
];
|
|
499
|
+
n0_registry.registerError(ResourceAlreadyExistsException$, ResourceAlreadyExistsException);
|
|
500
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
501
|
+
{ [_aQE]: [`ResourceNotFound`, 409], [_e]: _c, [_hE]: 409 },
|
|
502
|
+
[_C, _M],
|
|
503
|
+
[0, 0]
|
|
504
|
+
];
|
|
505
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
506
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
507
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
508
|
+
[_C, _M],
|
|
509
|
+
[0, 0]
|
|
510
|
+
];
|
|
511
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
512
|
+
const errorTypeRegistries = [
|
|
513
|
+
_s_registry,
|
|
514
|
+
n0_registry,
|
|
515
|
+
];
|
|
516
|
+
var AccessPoliciesStatus$ = [3, n0, _APS,
|
|
517
|
+
0,
|
|
518
|
+
[_O, _S],
|
|
519
|
+
[0, () => OptionStatus$], 2
|
|
520
|
+
];
|
|
521
|
+
var AnalysisOptions$ = [3, n0, _AO,
|
|
522
|
+
0,
|
|
523
|
+
[_Sy, _St, _SD, _JTD, _AS],
|
|
524
|
+
[0, 0, 0, 0, 0]
|
|
525
|
+
];
|
|
526
|
+
var AnalysisScheme$ = [3, n0, _ASn,
|
|
527
|
+
0,
|
|
528
|
+
[_ASN, _ASL, _AO],
|
|
529
|
+
[0, 0, () => AnalysisOptions$], 2
|
|
530
|
+
];
|
|
531
|
+
var AnalysisSchemeStatus$ = [3, n0, _ASS,
|
|
532
|
+
0,
|
|
533
|
+
[_O, _S],
|
|
534
|
+
[() => AnalysisScheme$, () => OptionStatus$], 2
|
|
535
|
+
];
|
|
536
|
+
var AvailabilityOptionsStatus$ = [3, n0, _AOS,
|
|
537
|
+
0,
|
|
538
|
+
[_O, _S],
|
|
539
|
+
[2, () => OptionStatus$], 2
|
|
540
|
+
];
|
|
541
|
+
var BuildSuggestersRequest$ = [3, n0, _BSR,
|
|
542
|
+
0,
|
|
543
|
+
[_DN],
|
|
544
|
+
[0], 1
|
|
545
|
+
];
|
|
546
|
+
var BuildSuggestersResponse$ = [3, n0, _BSRu,
|
|
547
|
+
0,
|
|
548
|
+
[_FN],
|
|
549
|
+
[64 | 0]
|
|
550
|
+
];
|
|
551
|
+
var CreateDomainRequest$ = [3, n0, _CDR,
|
|
552
|
+
0,
|
|
553
|
+
[_DN],
|
|
554
|
+
[0], 1
|
|
555
|
+
];
|
|
556
|
+
var CreateDomainResponse$ = [3, n0, _CDRr,
|
|
557
|
+
0,
|
|
558
|
+
[_DS],
|
|
559
|
+
[() => DomainStatus$]
|
|
560
|
+
];
|
|
561
|
+
var DateArrayOptions$ = [3, n0, _DAO,
|
|
562
|
+
0,
|
|
563
|
+
[_DV, _SF, _FE, _SE, _RE],
|
|
564
|
+
[0, 0, 2, 2, 2]
|
|
565
|
+
];
|
|
566
|
+
var DateOptions$ = [3, n0, _DO,
|
|
567
|
+
0,
|
|
568
|
+
[_DV, _SFo, _FE, _SE, _RE, _SEo],
|
|
569
|
+
[0, 0, 2, 2, 2, 2]
|
|
570
|
+
];
|
|
571
|
+
var DefineAnalysisSchemeRequest$ = [3, n0, _DASR,
|
|
572
|
+
0,
|
|
573
|
+
[_DN, _ASn],
|
|
574
|
+
[0, () => AnalysisScheme$], 2
|
|
575
|
+
];
|
|
576
|
+
var DefineAnalysisSchemeResponse$ = [3, n0, _DASRe,
|
|
577
|
+
0,
|
|
578
|
+
[_ASn],
|
|
579
|
+
[() => AnalysisSchemeStatus$], 1
|
|
580
|
+
];
|
|
581
|
+
var DefineExpressionRequest$ = [3, n0, _DER,
|
|
582
|
+
0,
|
|
583
|
+
[_DN, _E],
|
|
584
|
+
[0, () => Expression$], 2
|
|
585
|
+
];
|
|
586
|
+
var DefineExpressionResponse$ = [3, n0, _DERe,
|
|
587
|
+
0,
|
|
588
|
+
[_E],
|
|
589
|
+
[() => ExpressionStatus$], 1
|
|
590
|
+
];
|
|
591
|
+
var DefineIndexFieldRequest$ = [3, n0, _DIFR,
|
|
592
|
+
0,
|
|
593
|
+
[_DN, _IF],
|
|
594
|
+
[0, () => IndexField$], 2
|
|
595
|
+
];
|
|
596
|
+
var DefineIndexFieldResponse$ = [3, n0, _DIFRe,
|
|
597
|
+
0,
|
|
598
|
+
[_IF],
|
|
599
|
+
[() => IndexFieldStatus$], 1
|
|
600
|
+
];
|
|
601
|
+
var DefineSuggesterRequest$ = [3, n0, _DSR,
|
|
602
|
+
0,
|
|
603
|
+
[_DN, _Su],
|
|
604
|
+
[0, () => Suggester$], 2
|
|
605
|
+
];
|
|
606
|
+
var DefineSuggesterResponse$ = [3, n0, _DSRe,
|
|
607
|
+
0,
|
|
608
|
+
[_Su],
|
|
609
|
+
[() => SuggesterStatus$], 1
|
|
610
|
+
];
|
|
611
|
+
var DeleteAnalysisSchemeRequest$ = [3, n0, _DASRel,
|
|
612
|
+
0,
|
|
613
|
+
[_DN, _ASN],
|
|
614
|
+
[0, 0], 2
|
|
615
|
+
];
|
|
616
|
+
var DeleteAnalysisSchemeResponse$ = [3, n0, _DASRele,
|
|
617
|
+
0,
|
|
618
|
+
[_ASn],
|
|
619
|
+
[() => AnalysisSchemeStatus$], 1
|
|
620
|
+
];
|
|
621
|
+
var DeleteDomainRequest$ = [3, n0, _DDR,
|
|
622
|
+
0,
|
|
623
|
+
[_DN],
|
|
624
|
+
[0], 1
|
|
625
|
+
];
|
|
626
|
+
var DeleteDomainResponse$ = [3, n0, _DDRe,
|
|
627
|
+
0,
|
|
628
|
+
[_DS],
|
|
629
|
+
[() => DomainStatus$]
|
|
630
|
+
];
|
|
631
|
+
var DeleteExpressionRequest$ = [3, n0, _DERel,
|
|
632
|
+
0,
|
|
633
|
+
[_DN, _EN],
|
|
634
|
+
[0, 0], 2
|
|
635
|
+
];
|
|
636
|
+
var DeleteExpressionResponse$ = [3, n0, _DERele,
|
|
637
|
+
0,
|
|
638
|
+
[_E],
|
|
639
|
+
[() => ExpressionStatus$], 1
|
|
640
|
+
];
|
|
641
|
+
var DeleteIndexFieldRequest$ = [3, n0, _DIFRel,
|
|
642
|
+
0,
|
|
643
|
+
[_DN, _IFN],
|
|
644
|
+
[0, 0], 2
|
|
645
|
+
];
|
|
646
|
+
var DeleteIndexFieldResponse$ = [3, n0, _DIFRele,
|
|
647
|
+
0,
|
|
648
|
+
[_IF],
|
|
649
|
+
[() => IndexFieldStatus$], 1
|
|
650
|
+
];
|
|
651
|
+
var DeleteSuggesterRequest$ = [3, n0, _DSRel,
|
|
652
|
+
0,
|
|
653
|
+
[_DN, _SN],
|
|
654
|
+
[0, 0], 2
|
|
655
|
+
];
|
|
656
|
+
var DeleteSuggesterResponse$ = [3, n0, _DSRele,
|
|
657
|
+
0,
|
|
658
|
+
[_Su],
|
|
659
|
+
[() => SuggesterStatus$], 1
|
|
660
|
+
];
|
|
661
|
+
var DescribeAnalysisSchemesRequest$ = [3, n0, _DASRes,
|
|
662
|
+
0,
|
|
663
|
+
[_DN, _ASNn, _D],
|
|
664
|
+
[0, 64 | 0, 2], 1
|
|
665
|
+
];
|
|
666
|
+
var DescribeAnalysisSchemesResponse$ = [3, n0, _DASResc,
|
|
667
|
+
0,
|
|
668
|
+
[_ASna],
|
|
669
|
+
[() => AnalysisSchemeStatusList], 1
|
|
670
|
+
];
|
|
671
|
+
var DescribeAvailabilityOptionsRequest$ = [3, n0, _DAOR,
|
|
672
|
+
0,
|
|
673
|
+
[_DN, _D],
|
|
674
|
+
[0, 2], 1
|
|
675
|
+
];
|
|
676
|
+
var DescribeAvailabilityOptionsResponse$ = [3, n0, _DAORe,
|
|
677
|
+
0,
|
|
678
|
+
[_AOv],
|
|
679
|
+
[() => AvailabilityOptionsStatus$]
|
|
680
|
+
];
|
|
681
|
+
var DescribeDomainEndpointOptionsRequest$ = [3, n0, _DDEOR,
|
|
682
|
+
0,
|
|
683
|
+
[_DN, _D],
|
|
684
|
+
[0, 2], 1
|
|
685
|
+
];
|
|
686
|
+
var DescribeDomainEndpointOptionsResponse$ = [3, n0, _DDEORe,
|
|
687
|
+
0,
|
|
688
|
+
[_DEO],
|
|
689
|
+
[() => DomainEndpointOptionsStatus$]
|
|
690
|
+
];
|
|
691
|
+
var DescribeDomainsRequest$ = [3, n0, _DDRes,
|
|
692
|
+
0,
|
|
693
|
+
[_DNo],
|
|
694
|
+
[64 | 0]
|
|
695
|
+
];
|
|
696
|
+
var DescribeDomainsResponse$ = [3, n0, _DDResc,
|
|
697
|
+
0,
|
|
698
|
+
[_DSL],
|
|
699
|
+
[() => DomainStatusList], 1
|
|
700
|
+
];
|
|
701
|
+
var DescribeExpressionsRequest$ = [3, n0, _DERes,
|
|
702
|
+
0,
|
|
703
|
+
[_DN, _ENx, _D],
|
|
704
|
+
[0, 64 | 0, 2], 1
|
|
705
|
+
];
|
|
706
|
+
var DescribeExpressionsResponse$ = [3, n0, _DEResc,
|
|
707
|
+
0,
|
|
708
|
+
[_Ex],
|
|
709
|
+
[() => ExpressionStatusList], 1
|
|
710
|
+
];
|
|
711
|
+
var DescribeIndexFieldsRequest$ = [3, n0, _DIFRes,
|
|
712
|
+
0,
|
|
713
|
+
[_DN, _FN, _D],
|
|
714
|
+
[0, 64 | 0, 2], 1
|
|
715
|
+
];
|
|
716
|
+
var DescribeIndexFieldsResponse$ = [3, n0, _DIFResc,
|
|
717
|
+
0,
|
|
718
|
+
[_IFn],
|
|
719
|
+
[() => IndexFieldStatusList], 1
|
|
720
|
+
];
|
|
721
|
+
var DescribeScalingParametersRequest$ = [3, n0, _DSPR,
|
|
722
|
+
0,
|
|
723
|
+
[_DN],
|
|
724
|
+
[0], 1
|
|
725
|
+
];
|
|
726
|
+
var DescribeScalingParametersResponse$ = [3, n0, _DSPRe,
|
|
727
|
+
0,
|
|
728
|
+
[_SP],
|
|
729
|
+
[() => ScalingParametersStatus$], 1
|
|
730
|
+
];
|
|
731
|
+
var DescribeServiceAccessPoliciesRequest$ = [3, n0, _DSAPR,
|
|
732
|
+
0,
|
|
733
|
+
[_DN, _D],
|
|
734
|
+
[0, 2], 1
|
|
735
|
+
];
|
|
736
|
+
var DescribeServiceAccessPoliciesResponse$ = [3, n0, _DSAPRe,
|
|
737
|
+
0,
|
|
738
|
+
[_AP],
|
|
739
|
+
[() => AccessPoliciesStatus$], 1
|
|
740
|
+
];
|
|
741
|
+
var DescribeSuggestersRequest$ = [3, n0, _DSRes,
|
|
742
|
+
0,
|
|
743
|
+
[_DN, _SNu, _D],
|
|
744
|
+
[0, 64 | 0, 2], 1
|
|
745
|
+
];
|
|
746
|
+
var DescribeSuggestersResponse$ = [3, n0, _DSResc,
|
|
747
|
+
0,
|
|
748
|
+
[_Sug],
|
|
749
|
+
[() => SuggesterStatusList], 1
|
|
750
|
+
];
|
|
751
|
+
var DocumentSuggesterOptions$ = [3, n0, _DSO,
|
|
752
|
+
0,
|
|
753
|
+
[_SFo, _FM, _SEor],
|
|
754
|
+
[0, 0, 0], 1
|
|
755
|
+
];
|
|
756
|
+
var DomainEndpointOptions$ = [3, n0, _DEO,
|
|
757
|
+
0,
|
|
758
|
+
[_EHTTPS, _TLSSP],
|
|
759
|
+
[2, 0]
|
|
760
|
+
];
|
|
761
|
+
var DomainEndpointOptionsStatus$ = [3, n0, _DEOS,
|
|
762
|
+
0,
|
|
763
|
+
[_O, _S],
|
|
764
|
+
[() => DomainEndpointOptions$, () => OptionStatus$], 2
|
|
765
|
+
];
|
|
766
|
+
var DomainStatus$ = [3, n0, _DS,
|
|
767
|
+
0,
|
|
768
|
+
[_DI, _DN, _RID, _ARN, _Cr, _De, _DSo, _SS, _P, _SIT, _SPC, _SIC, _L],
|
|
769
|
+
[0, 0, 2, 0, 2, 2, () => ServiceEndpoint$, () => ServiceEndpoint$, 2, 0, 1, 1, () => Limits$], 3
|
|
770
|
+
];
|
|
771
|
+
var DoubleArrayOptions$ = [3, n0, _DAOo,
|
|
772
|
+
0,
|
|
773
|
+
[_DV, _SF, _FE, _SE, _RE],
|
|
774
|
+
[1, 0, 2, 2, 2]
|
|
775
|
+
];
|
|
776
|
+
var DoubleOptions$ = [3, n0, _DOo,
|
|
777
|
+
0,
|
|
778
|
+
[_DV, _SFo, _FE, _SE, _RE, _SEo],
|
|
779
|
+
[1, 0, 2, 2, 2, 2]
|
|
780
|
+
];
|
|
781
|
+
var Expression$ = [3, n0, _E,
|
|
782
|
+
0,
|
|
783
|
+
[_EN, _EV],
|
|
784
|
+
[0, 0], 2
|
|
785
|
+
];
|
|
786
|
+
var ExpressionStatus$ = [3, n0, _ES,
|
|
787
|
+
0,
|
|
788
|
+
[_O, _S],
|
|
789
|
+
[() => Expression$, () => OptionStatus$], 2
|
|
790
|
+
];
|
|
791
|
+
var IndexDocumentsRequest$ = [3, n0, _IDR,
|
|
792
|
+
0,
|
|
793
|
+
[_DN],
|
|
794
|
+
[0], 1
|
|
795
|
+
];
|
|
796
|
+
var IndexDocumentsResponse$ = [3, n0, _IDRn,
|
|
797
|
+
0,
|
|
798
|
+
[_FN],
|
|
799
|
+
[64 | 0]
|
|
800
|
+
];
|
|
801
|
+
var IndexField$ = [3, n0, _IF,
|
|
802
|
+
0,
|
|
803
|
+
[_IFN, _IFT, _IO, _DOo, _LO, _TO, _DO, _LLO, _IAO, _DAOo, _LAO, _TAO, _DAO],
|
|
804
|
+
[0, 0, () => IntOptions$, () => DoubleOptions$, () => LiteralOptions$, () => TextOptions$, () => DateOptions$, () => LatLonOptions$, () => IntArrayOptions$, () => DoubleArrayOptions$, () => LiteralArrayOptions$, () => TextArrayOptions$, () => DateArrayOptions$], 2
|
|
805
|
+
];
|
|
806
|
+
var IndexFieldStatus$ = [3, n0, _IFS,
|
|
807
|
+
0,
|
|
808
|
+
[_O, _S],
|
|
809
|
+
[() => IndexField$, () => OptionStatus$], 2
|
|
810
|
+
];
|
|
811
|
+
var IntArrayOptions$ = [3, n0, _IAO,
|
|
812
|
+
0,
|
|
813
|
+
[_DV, _SF, _FE, _SE, _RE],
|
|
814
|
+
[1, 0, 2, 2, 2]
|
|
815
|
+
];
|
|
816
|
+
var IntOptions$ = [3, n0, _IO,
|
|
817
|
+
0,
|
|
818
|
+
[_DV, _SFo, _FE, _SE, _RE, _SEo],
|
|
819
|
+
[1, 0, 2, 2, 2, 2]
|
|
820
|
+
];
|
|
821
|
+
var LatLonOptions$ = [3, n0, _LLO,
|
|
822
|
+
0,
|
|
823
|
+
[_DV, _SFo, _FE, _SE, _RE, _SEo],
|
|
824
|
+
[0, 0, 2, 2, 2, 2]
|
|
825
|
+
];
|
|
826
|
+
var Limits$ = [3, n0, _L,
|
|
827
|
+
0,
|
|
828
|
+
[_MRC, _MPC],
|
|
829
|
+
[1, 1], 2
|
|
830
|
+
];
|
|
831
|
+
var ListDomainNamesResponse$ = [3, n0, _LDNR,
|
|
832
|
+
0,
|
|
833
|
+
[_DNo],
|
|
834
|
+
[128 | 0]
|
|
835
|
+
];
|
|
836
|
+
var LiteralArrayOptions$ = [3, n0, _LAO,
|
|
837
|
+
0,
|
|
838
|
+
[_DV, _SF, _FE, _SE, _RE],
|
|
839
|
+
[0, 0, 2, 2, 2]
|
|
840
|
+
];
|
|
841
|
+
var LiteralOptions$ = [3, n0, _LO,
|
|
842
|
+
0,
|
|
843
|
+
[_DV, _SFo, _FE, _SE, _RE, _SEo],
|
|
844
|
+
[0, 0, 2, 2, 2, 2]
|
|
845
|
+
];
|
|
846
|
+
var OptionStatus$ = [3, n0, _OS,
|
|
847
|
+
0,
|
|
848
|
+
[_CD, _UD, _Sta, _UV, _PD],
|
|
849
|
+
[4, 4, 0, 1, 2], 3
|
|
850
|
+
];
|
|
851
|
+
var ScalingParameters$ = [3, n0, _SP,
|
|
852
|
+
0,
|
|
853
|
+
[_DIT, _DRC, _DPC],
|
|
854
|
+
[0, 1, 1]
|
|
855
|
+
];
|
|
856
|
+
var ScalingParametersStatus$ = [3, n0, _SPS,
|
|
857
|
+
0,
|
|
858
|
+
[_O, _S],
|
|
859
|
+
[() => ScalingParameters$, () => OptionStatus$], 2
|
|
860
|
+
];
|
|
861
|
+
var ServiceEndpoint$ = [3, n0, _SEe,
|
|
862
|
+
0,
|
|
863
|
+
[_En],
|
|
864
|
+
[0]
|
|
865
|
+
];
|
|
866
|
+
var Suggester$ = [3, n0, _Su,
|
|
867
|
+
0,
|
|
868
|
+
[_SN, _DSO],
|
|
869
|
+
[0, () => DocumentSuggesterOptions$], 2
|
|
870
|
+
];
|
|
871
|
+
var SuggesterStatus$ = [3, n0, _SSu,
|
|
872
|
+
0,
|
|
873
|
+
[_O, _S],
|
|
874
|
+
[() => Suggester$, () => OptionStatus$], 2
|
|
875
|
+
];
|
|
876
|
+
var TextArrayOptions$ = [3, n0, _TAO,
|
|
877
|
+
0,
|
|
878
|
+
[_DV, _SF, _RE, _HE, _ASn],
|
|
879
|
+
[0, 0, 2, 2, 0]
|
|
880
|
+
];
|
|
881
|
+
var TextOptions$ = [3, n0, _TO,
|
|
882
|
+
0,
|
|
883
|
+
[_DV, _SFo, _RE, _SEo, _HE, _ASn],
|
|
884
|
+
[0, 0, 2, 2, 2, 0]
|
|
885
|
+
];
|
|
886
|
+
var UpdateAvailabilityOptionsRequest$ = [3, n0, _UAOR,
|
|
887
|
+
0,
|
|
888
|
+
[_DN, _MAZ],
|
|
889
|
+
[0, 2], 2
|
|
890
|
+
];
|
|
891
|
+
var UpdateAvailabilityOptionsResponse$ = [3, n0, _UAORp,
|
|
892
|
+
0,
|
|
893
|
+
[_AOv],
|
|
894
|
+
[() => AvailabilityOptionsStatus$]
|
|
895
|
+
];
|
|
896
|
+
var UpdateDomainEndpointOptionsRequest$ = [3, n0, _UDEOR,
|
|
897
|
+
0,
|
|
898
|
+
[_DN, _DEO],
|
|
899
|
+
[0, () => DomainEndpointOptions$], 2
|
|
900
|
+
];
|
|
901
|
+
var UpdateDomainEndpointOptionsResponse$ = [3, n0, _UDEORp,
|
|
902
|
+
0,
|
|
903
|
+
[_DEO],
|
|
904
|
+
[() => DomainEndpointOptionsStatus$]
|
|
905
|
+
];
|
|
906
|
+
var UpdateScalingParametersRequest$ = [3, n0, _USPR,
|
|
907
|
+
0,
|
|
908
|
+
[_DN, _SP],
|
|
909
|
+
[0, () => ScalingParameters$], 2
|
|
910
|
+
];
|
|
911
|
+
var UpdateScalingParametersResponse$ = [3, n0, _USPRp,
|
|
912
|
+
0,
|
|
913
|
+
[_SP],
|
|
914
|
+
[() => ScalingParametersStatus$], 1
|
|
915
|
+
];
|
|
916
|
+
var UpdateServiceAccessPoliciesRequest$ = [3, n0, _USAPR,
|
|
917
|
+
0,
|
|
918
|
+
[_DN, _AP],
|
|
919
|
+
[0, 0], 2
|
|
920
|
+
];
|
|
921
|
+
var UpdateServiceAccessPoliciesResponse$ = [3, n0, _USAPRp,
|
|
922
|
+
0,
|
|
923
|
+
[_AP],
|
|
924
|
+
[() => AccessPoliciesStatus$], 1
|
|
925
|
+
];
|
|
926
|
+
var __Unit = "unit";
|
|
927
|
+
var AnalysisSchemeStatusList = [1, n0, _ASSL,
|
|
928
|
+
0, () => AnalysisSchemeStatus$
|
|
929
|
+
];
|
|
930
|
+
var DomainStatusList = [1, n0, _DSL,
|
|
931
|
+
0, () => DomainStatus$
|
|
932
|
+
];
|
|
933
|
+
var ExpressionStatusList = [1, n0, _ESL,
|
|
934
|
+
0, () => ExpressionStatus$
|
|
935
|
+
];
|
|
936
|
+
var IndexFieldStatusList = [1, n0, _IFSL,
|
|
937
|
+
0, () => IndexFieldStatus$
|
|
938
|
+
];
|
|
939
|
+
var SuggesterStatusList = [1, n0, _SSL,
|
|
940
|
+
0, () => SuggesterStatus$
|
|
941
|
+
];
|
|
942
|
+
var BuildSuggesters$ = [9, n0, _BS,
|
|
943
|
+
0, () => BuildSuggestersRequest$, () => BuildSuggestersResponse$
|
|
944
|
+
];
|
|
945
|
+
var CreateDomain$ = [9, n0, _CDr,
|
|
946
|
+
0, () => CreateDomainRequest$, () => CreateDomainResponse$
|
|
947
|
+
];
|
|
948
|
+
var DefineAnalysisScheme$ = [9, n0, _DAS,
|
|
949
|
+
0, () => DefineAnalysisSchemeRequest$, () => DefineAnalysisSchemeResponse$
|
|
950
|
+
];
|
|
951
|
+
var DefineExpression$ = [9, n0, _DE,
|
|
952
|
+
0, () => DefineExpressionRequest$, () => DefineExpressionResponse$
|
|
953
|
+
];
|
|
954
|
+
var DefineIndexField$ = [9, n0, _DIF,
|
|
955
|
+
0, () => DefineIndexFieldRequest$, () => DefineIndexFieldResponse$
|
|
956
|
+
];
|
|
957
|
+
var DefineSuggester$ = [9, n0, _DSe,
|
|
958
|
+
0, () => DefineSuggesterRequest$, () => DefineSuggesterResponse$
|
|
959
|
+
];
|
|
960
|
+
var DeleteAnalysisScheme$ = [9, n0, _DASe,
|
|
961
|
+
0, () => DeleteAnalysisSchemeRequest$, () => DeleteAnalysisSchemeResponse$
|
|
962
|
+
];
|
|
963
|
+
var DeleteDomain$ = [9, n0, _DD,
|
|
964
|
+
0, () => DeleteDomainRequest$, () => DeleteDomainResponse$
|
|
965
|
+
];
|
|
966
|
+
var DeleteExpression$ = [9, n0, _DEe,
|
|
967
|
+
0, () => DeleteExpressionRequest$, () => DeleteExpressionResponse$
|
|
968
|
+
];
|
|
969
|
+
var DeleteIndexField$ = [9, n0, _DIFe,
|
|
970
|
+
0, () => DeleteIndexFieldRequest$, () => DeleteIndexFieldResponse$
|
|
971
|
+
];
|
|
972
|
+
var DeleteSuggester$ = [9, n0, _DSel,
|
|
973
|
+
0, () => DeleteSuggesterRequest$, () => DeleteSuggesterResponse$
|
|
974
|
+
];
|
|
975
|
+
var DescribeAnalysisSchemes$ = [9, n0, _DASes,
|
|
976
|
+
0, () => DescribeAnalysisSchemesRequest$, () => DescribeAnalysisSchemesResponse$
|
|
977
|
+
];
|
|
978
|
+
var DescribeAvailabilityOptions$ = [9, n0, _DAOe,
|
|
979
|
+
0, () => DescribeAvailabilityOptionsRequest$, () => DescribeAvailabilityOptionsResponse$
|
|
980
|
+
];
|
|
981
|
+
var DescribeDomainEndpointOptions$ = [9, n0, _DDEO,
|
|
982
|
+
0, () => DescribeDomainEndpointOptionsRequest$, () => DescribeDomainEndpointOptionsResponse$
|
|
983
|
+
];
|
|
984
|
+
var DescribeDomains$ = [9, n0, _DDe,
|
|
985
|
+
0, () => DescribeDomainsRequest$, () => DescribeDomainsResponse$
|
|
986
|
+
];
|
|
987
|
+
var DescribeExpressions$ = [9, n0, _DEes,
|
|
988
|
+
0, () => DescribeExpressionsRequest$, () => DescribeExpressionsResponse$
|
|
989
|
+
];
|
|
990
|
+
var DescribeIndexFields$ = [9, n0, _DIFes,
|
|
991
|
+
0, () => DescribeIndexFieldsRequest$, () => DescribeIndexFieldsResponse$
|
|
992
|
+
];
|
|
993
|
+
var DescribeScalingParameters$ = [9, n0, _DSP,
|
|
994
|
+
0, () => DescribeScalingParametersRequest$, () => DescribeScalingParametersResponse$
|
|
995
|
+
];
|
|
996
|
+
var DescribeServiceAccessPolicies$ = [9, n0, _DSAP,
|
|
997
|
+
0, () => DescribeServiceAccessPoliciesRequest$, () => DescribeServiceAccessPoliciesResponse$
|
|
998
|
+
];
|
|
999
|
+
var DescribeSuggesters$ = [9, n0, _DSes,
|
|
1000
|
+
0, () => DescribeSuggestersRequest$, () => DescribeSuggestersResponse$
|
|
1001
|
+
];
|
|
1002
|
+
var IndexDocuments$ = [9, n0, _ID,
|
|
1003
|
+
0, () => IndexDocumentsRequest$, () => IndexDocumentsResponse$
|
|
1004
|
+
];
|
|
1005
|
+
var ListDomainNames$ = [9, n0, _LDN,
|
|
1006
|
+
0, () => __Unit, () => ListDomainNamesResponse$
|
|
1007
|
+
];
|
|
1008
|
+
var UpdateAvailabilityOptions$ = [9, n0, _UAO,
|
|
1009
|
+
0, () => UpdateAvailabilityOptionsRequest$, () => UpdateAvailabilityOptionsResponse$
|
|
1010
|
+
];
|
|
1011
|
+
var UpdateDomainEndpointOptions$ = [9, n0, _UDEO,
|
|
1012
|
+
0, () => UpdateDomainEndpointOptionsRequest$, () => UpdateDomainEndpointOptionsResponse$
|
|
1013
|
+
];
|
|
1014
|
+
var UpdateScalingParameters$ = [9, n0, _USP,
|
|
1015
|
+
0, () => UpdateScalingParametersRequest$, () => UpdateScalingParametersResponse$
|
|
1016
|
+
];
|
|
1017
|
+
var UpdateServiceAccessPolicies$ = [9, n0, _USAP,
|
|
1018
|
+
0, () => UpdateServiceAccessPoliciesRequest$, () => UpdateServiceAccessPoliciesResponse$
|
|
1019
|
+
];
|
|
1020
|
+
|
|
1021
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1022
|
+
return {
|
|
1023
|
+
apiVersion: "2013-01-01",
|
|
1024
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1025
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1026
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1027
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1028
|
+
extensions: config?.extensions ?? [],
|
|
1029
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultCloudSearchHttpAuthSchemeProvider,
|
|
1030
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1031
|
+
{
|
|
1032
|
+
schemeId: "aws.auth#sigv4",
|
|
1033
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1034
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1035
|
+
},
|
|
1036
|
+
],
|
|
1037
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1038
|
+
protocol: config?.protocol ?? AwsQueryProtocol,
|
|
1039
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1040
|
+
defaultNamespace: "com.amazonaws.cloudsearch",
|
|
1041
|
+
errorTypeRegistries,
|
|
1042
|
+
xmlNamespace: "http://cloudsearch.amazonaws.com/doc/2013-01-01/",
|
|
1043
|
+
version: "2013-01-01",
|
|
1044
|
+
serviceTarget: "A9SearchCloudConfigService2013",
|
|
1045
|
+
},
|
|
1046
|
+
serviceId: config?.serviceId ?? "CloudSearch",
|
|
1047
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1048
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1049
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1050
|
+
};
|
|
1051
|
+
};
|
|
1052
|
+
|
|
1053
|
+
const getRuntimeConfig = (config) => {
|
|
1054
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1055
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1056
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1057
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1058
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1059
|
+
const loaderConfig = {
|
|
1060
|
+
profile: config?.profile,
|
|
1061
|
+
logger: clientSharedValues.logger,
|
|
1062
|
+
};
|
|
1063
|
+
return {
|
|
1064
|
+
...clientSharedValues,
|
|
1065
|
+
...config,
|
|
1066
|
+
runtime: "node",
|
|
1067
|
+
defaultsMode,
|
|
1068
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1069
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1070
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1071
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1072
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1073
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1074
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1075
|
+
retryMode: config?.retryMode ??
|
|
1076
|
+
loadConfig({
|
|
1077
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1078
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1079
|
+
}, config),
|
|
1080
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1081
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1082
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1083
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1084
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1085
|
+
};
|
|
1086
|
+
};
|
|
1087
|
+
|
|
34
1088
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1089
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1090
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -546,38 +1600,165 @@ const PartitionInstanceType = {
|
|
|
546
1600
|
search_xlarge: "search.xlarge",
|
|
547
1601
|
};
|
|
548
1602
|
|
|
1603
|
+
exports.AccessPoliciesStatus$ = AccessPoliciesStatus$;
|
|
549
1604
|
exports.AlgorithmicStemming = AlgorithmicStemming;
|
|
1605
|
+
exports.AnalysisOptions$ = AnalysisOptions$;
|
|
1606
|
+
exports.AnalysisScheme$ = AnalysisScheme$;
|
|
550
1607
|
exports.AnalysisSchemeLanguage = AnalysisSchemeLanguage;
|
|
1608
|
+
exports.AnalysisSchemeStatus$ = AnalysisSchemeStatus$;
|
|
1609
|
+
exports.AvailabilityOptionsStatus$ = AvailabilityOptionsStatus$;
|
|
1610
|
+
exports.BaseException = BaseException;
|
|
1611
|
+
exports.BaseException$ = BaseException$;
|
|
1612
|
+
exports.BuildSuggesters$ = BuildSuggesters$;
|
|
551
1613
|
exports.BuildSuggestersCommand = BuildSuggestersCommand;
|
|
1614
|
+
exports.BuildSuggestersRequest$ = BuildSuggestersRequest$;
|
|
1615
|
+
exports.BuildSuggestersResponse$ = BuildSuggestersResponse$;
|
|
552
1616
|
exports.CloudSearch = CloudSearch;
|
|
553
1617
|
exports.CloudSearchClient = CloudSearchClient;
|
|
1618
|
+
exports.CloudSearchServiceException = CloudSearchServiceException;
|
|
1619
|
+
exports.CloudSearchServiceException$ = CloudSearchServiceException$;
|
|
1620
|
+
exports.CreateDomain$ = CreateDomain$;
|
|
554
1621
|
exports.CreateDomainCommand = CreateDomainCommand;
|
|
1622
|
+
exports.CreateDomainRequest$ = CreateDomainRequest$;
|
|
1623
|
+
exports.CreateDomainResponse$ = CreateDomainResponse$;
|
|
1624
|
+
exports.DateArrayOptions$ = DateArrayOptions$;
|
|
1625
|
+
exports.DateOptions$ = DateOptions$;
|
|
1626
|
+
exports.DefineAnalysisScheme$ = DefineAnalysisScheme$;
|
|
555
1627
|
exports.DefineAnalysisSchemeCommand = DefineAnalysisSchemeCommand;
|
|
1628
|
+
exports.DefineAnalysisSchemeRequest$ = DefineAnalysisSchemeRequest$;
|
|
1629
|
+
exports.DefineAnalysisSchemeResponse$ = DefineAnalysisSchemeResponse$;
|
|
1630
|
+
exports.DefineExpression$ = DefineExpression$;
|
|
556
1631
|
exports.DefineExpressionCommand = DefineExpressionCommand;
|
|
1632
|
+
exports.DefineExpressionRequest$ = DefineExpressionRequest$;
|
|
1633
|
+
exports.DefineExpressionResponse$ = DefineExpressionResponse$;
|
|
1634
|
+
exports.DefineIndexField$ = DefineIndexField$;
|
|
557
1635
|
exports.DefineIndexFieldCommand = DefineIndexFieldCommand;
|
|
1636
|
+
exports.DefineIndexFieldRequest$ = DefineIndexFieldRequest$;
|
|
1637
|
+
exports.DefineIndexFieldResponse$ = DefineIndexFieldResponse$;
|
|
1638
|
+
exports.DefineSuggester$ = DefineSuggester$;
|
|
558
1639
|
exports.DefineSuggesterCommand = DefineSuggesterCommand;
|
|
1640
|
+
exports.DefineSuggesterRequest$ = DefineSuggesterRequest$;
|
|
1641
|
+
exports.DefineSuggesterResponse$ = DefineSuggesterResponse$;
|
|
1642
|
+
exports.DeleteAnalysisScheme$ = DeleteAnalysisScheme$;
|
|
559
1643
|
exports.DeleteAnalysisSchemeCommand = DeleteAnalysisSchemeCommand;
|
|
1644
|
+
exports.DeleteAnalysisSchemeRequest$ = DeleteAnalysisSchemeRequest$;
|
|
1645
|
+
exports.DeleteAnalysisSchemeResponse$ = DeleteAnalysisSchemeResponse$;
|
|
1646
|
+
exports.DeleteDomain$ = DeleteDomain$;
|
|
560
1647
|
exports.DeleteDomainCommand = DeleteDomainCommand;
|
|
1648
|
+
exports.DeleteDomainRequest$ = DeleteDomainRequest$;
|
|
1649
|
+
exports.DeleteDomainResponse$ = DeleteDomainResponse$;
|
|
1650
|
+
exports.DeleteExpression$ = DeleteExpression$;
|
|
561
1651
|
exports.DeleteExpressionCommand = DeleteExpressionCommand;
|
|
1652
|
+
exports.DeleteExpressionRequest$ = DeleteExpressionRequest$;
|
|
1653
|
+
exports.DeleteExpressionResponse$ = DeleteExpressionResponse$;
|
|
1654
|
+
exports.DeleteIndexField$ = DeleteIndexField$;
|
|
562
1655
|
exports.DeleteIndexFieldCommand = DeleteIndexFieldCommand;
|
|
1656
|
+
exports.DeleteIndexFieldRequest$ = DeleteIndexFieldRequest$;
|
|
1657
|
+
exports.DeleteIndexFieldResponse$ = DeleteIndexFieldResponse$;
|
|
1658
|
+
exports.DeleteSuggester$ = DeleteSuggester$;
|
|
563
1659
|
exports.DeleteSuggesterCommand = DeleteSuggesterCommand;
|
|
1660
|
+
exports.DeleteSuggesterRequest$ = DeleteSuggesterRequest$;
|
|
1661
|
+
exports.DeleteSuggesterResponse$ = DeleteSuggesterResponse$;
|
|
1662
|
+
exports.DescribeAnalysisSchemes$ = DescribeAnalysisSchemes$;
|
|
564
1663
|
exports.DescribeAnalysisSchemesCommand = DescribeAnalysisSchemesCommand;
|
|
1664
|
+
exports.DescribeAnalysisSchemesRequest$ = DescribeAnalysisSchemesRequest$;
|
|
1665
|
+
exports.DescribeAnalysisSchemesResponse$ = DescribeAnalysisSchemesResponse$;
|
|
1666
|
+
exports.DescribeAvailabilityOptions$ = DescribeAvailabilityOptions$;
|
|
565
1667
|
exports.DescribeAvailabilityOptionsCommand = DescribeAvailabilityOptionsCommand;
|
|
1668
|
+
exports.DescribeAvailabilityOptionsRequest$ = DescribeAvailabilityOptionsRequest$;
|
|
1669
|
+
exports.DescribeAvailabilityOptionsResponse$ = DescribeAvailabilityOptionsResponse$;
|
|
1670
|
+
exports.DescribeDomainEndpointOptions$ = DescribeDomainEndpointOptions$;
|
|
566
1671
|
exports.DescribeDomainEndpointOptionsCommand = DescribeDomainEndpointOptionsCommand;
|
|
1672
|
+
exports.DescribeDomainEndpointOptionsRequest$ = DescribeDomainEndpointOptionsRequest$;
|
|
1673
|
+
exports.DescribeDomainEndpointOptionsResponse$ = DescribeDomainEndpointOptionsResponse$;
|
|
1674
|
+
exports.DescribeDomains$ = DescribeDomains$;
|
|
567
1675
|
exports.DescribeDomainsCommand = DescribeDomainsCommand;
|
|
1676
|
+
exports.DescribeDomainsRequest$ = DescribeDomainsRequest$;
|
|
1677
|
+
exports.DescribeDomainsResponse$ = DescribeDomainsResponse$;
|
|
1678
|
+
exports.DescribeExpressions$ = DescribeExpressions$;
|
|
568
1679
|
exports.DescribeExpressionsCommand = DescribeExpressionsCommand;
|
|
1680
|
+
exports.DescribeExpressionsRequest$ = DescribeExpressionsRequest$;
|
|
1681
|
+
exports.DescribeExpressionsResponse$ = DescribeExpressionsResponse$;
|
|
1682
|
+
exports.DescribeIndexFields$ = DescribeIndexFields$;
|
|
569
1683
|
exports.DescribeIndexFieldsCommand = DescribeIndexFieldsCommand;
|
|
1684
|
+
exports.DescribeIndexFieldsRequest$ = DescribeIndexFieldsRequest$;
|
|
1685
|
+
exports.DescribeIndexFieldsResponse$ = DescribeIndexFieldsResponse$;
|
|
1686
|
+
exports.DescribeScalingParameters$ = DescribeScalingParameters$;
|
|
570
1687
|
exports.DescribeScalingParametersCommand = DescribeScalingParametersCommand;
|
|
1688
|
+
exports.DescribeScalingParametersRequest$ = DescribeScalingParametersRequest$;
|
|
1689
|
+
exports.DescribeScalingParametersResponse$ = DescribeScalingParametersResponse$;
|
|
1690
|
+
exports.DescribeServiceAccessPolicies$ = DescribeServiceAccessPolicies$;
|
|
571
1691
|
exports.DescribeServiceAccessPoliciesCommand = DescribeServiceAccessPoliciesCommand;
|
|
1692
|
+
exports.DescribeServiceAccessPoliciesRequest$ = DescribeServiceAccessPoliciesRequest$;
|
|
1693
|
+
exports.DescribeServiceAccessPoliciesResponse$ = DescribeServiceAccessPoliciesResponse$;
|
|
1694
|
+
exports.DescribeSuggesters$ = DescribeSuggesters$;
|
|
572
1695
|
exports.DescribeSuggestersCommand = DescribeSuggestersCommand;
|
|
1696
|
+
exports.DescribeSuggestersRequest$ = DescribeSuggestersRequest$;
|
|
1697
|
+
exports.DescribeSuggestersResponse$ = DescribeSuggestersResponse$;
|
|
1698
|
+
exports.DisabledOperationException = DisabledOperationException;
|
|
1699
|
+
exports.DisabledOperationException$ = DisabledOperationException$;
|
|
1700
|
+
exports.DocumentSuggesterOptions$ = DocumentSuggesterOptions$;
|
|
1701
|
+
exports.DomainEndpointOptions$ = DomainEndpointOptions$;
|
|
1702
|
+
exports.DomainEndpointOptionsStatus$ = DomainEndpointOptionsStatus$;
|
|
1703
|
+
exports.DomainStatus$ = DomainStatus$;
|
|
1704
|
+
exports.DoubleArrayOptions$ = DoubleArrayOptions$;
|
|
1705
|
+
exports.DoubleOptions$ = DoubleOptions$;
|
|
1706
|
+
exports.Expression$ = Expression$;
|
|
1707
|
+
exports.ExpressionStatus$ = ExpressionStatus$;
|
|
1708
|
+
exports.IndexDocuments$ = IndexDocuments$;
|
|
573
1709
|
exports.IndexDocumentsCommand = IndexDocumentsCommand;
|
|
1710
|
+
exports.IndexDocumentsRequest$ = IndexDocumentsRequest$;
|
|
1711
|
+
exports.IndexDocumentsResponse$ = IndexDocumentsResponse$;
|
|
1712
|
+
exports.IndexField$ = IndexField$;
|
|
1713
|
+
exports.IndexFieldStatus$ = IndexFieldStatus$;
|
|
574
1714
|
exports.IndexFieldType = IndexFieldType;
|
|
1715
|
+
exports.IntArrayOptions$ = IntArrayOptions$;
|
|
1716
|
+
exports.IntOptions$ = IntOptions$;
|
|
1717
|
+
exports.InternalException = InternalException;
|
|
1718
|
+
exports.InternalException$ = InternalException$;
|
|
1719
|
+
exports.InvalidTypeException = InvalidTypeException;
|
|
1720
|
+
exports.InvalidTypeException$ = InvalidTypeException$;
|
|
1721
|
+
exports.LatLonOptions$ = LatLonOptions$;
|
|
1722
|
+
exports.LimitExceededException = LimitExceededException;
|
|
1723
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
1724
|
+
exports.Limits$ = Limits$;
|
|
1725
|
+
exports.ListDomainNames$ = ListDomainNames$;
|
|
575
1726
|
exports.ListDomainNamesCommand = ListDomainNamesCommand;
|
|
1727
|
+
exports.ListDomainNamesResponse$ = ListDomainNamesResponse$;
|
|
1728
|
+
exports.LiteralArrayOptions$ = LiteralArrayOptions$;
|
|
1729
|
+
exports.LiteralOptions$ = LiteralOptions$;
|
|
576
1730
|
exports.OptionState = OptionState;
|
|
1731
|
+
exports.OptionStatus$ = OptionStatus$;
|
|
577
1732
|
exports.PartitionInstanceType = PartitionInstanceType;
|
|
1733
|
+
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
|
|
1734
|
+
exports.ResourceAlreadyExistsException$ = ResourceAlreadyExistsException$;
|
|
1735
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1736
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1737
|
+
exports.ScalingParameters$ = ScalingParameters$;
|
|
1738
|
+
exports.ScalingParametersStatus$ = ScalingParametersStatus$;
|
|
1739
|
+
exports.ServiceEndpoint$ = ServiceEndpoint$;
|
|
1740
|
+
exports.Suggester$ = Suggester$;
|
|
578
1741
|
exports.SuggesterFuzzyMatching = SuggesterFuzzyMatching;
|
|
1742
|
+
exports.SuggesterStatus$ = SuggesterStatus$;
|
|
579
1743
|
exports.TLSSecurityPolicy = TLSSecurityPolicy;
|
|
1744
|
+
exports.TextArrayOptions$ = TextArrayOptions$;
|
|
1745
|
+
exports.TextOptions$ = TextOptions$;
|
|
1746
|
+
exports.UpdateAvailabilityOptions$ = UpdateAvailabilityOptions$;
|
|
580
1747
|
exports.UpdateAvailabilityOptionsCommand = UpdateAvailabilityOptionsCommand;
|
|
1748
|
+
exports.UpdateAvailabilityOptionsRequest$ = UpdateAvailabilityOptionsRequest$;
|
|
1749
|
+
exports.UpdateAvailabilityOptionsResponse$ = UpdateAvailabilityOptionsResponse$;
|
|
1750
|
+
exports.UpdateDomainEndpointOptions$ = UpdateDomainEndpointOptions$;
|
|
581
1751
|
exports.UpdateDomainEndpointOptionsCommand = UpdateDomainEndpointOptionsCommand;
|
|
1752
|
+
exports.UpdateDomainEndpointOptionsRequest$ = UpdateDomainEndpointOptionsRequest$;
|
|
1753
|
+
exports.UpdateDomainEndpointOptionsResponse$ = UpdateDomainEndpointOptionsResponse$;
|
|
1754
|
+
exports.UpdateScalingParameters$ = UpdateScalingParameters$;
|
|
582
1755
|
exports.UpdateScalingParametersCommand = UpdateScalingParametersCommand;
|
|
1756
|
+
exports.UpdateScalingParametersRequest$ = UpdateScalingParametersRequest$;
|
|
1757
|
+
exports.UpdateScalingParametersResponse$ = UpdateScalingParametersResponse$;
|
|
1758
|
+
exports.UpdateServiceAccessPolicies$ = UpdateServiceAccessPolicies$;
|
|
583
1759
|
exports.UpdateServiceAccessPoliciesCommand = UpdateServiceAccessPoliciesCommand;
|
|
1760
|
+
exports.UpdateServiceAccessPoliciesRequest$ = UpdateServiceAccessPoliciesRequest$;
|
|
1761
|
+
exports.UpdateServiceAccessPoliciesResponse$ = UpdateServiceAccessPoliciesResponse$;
|
|
1762
|
+
exports.ValidationException = ValidationException;
|
|
1763
|
+
exports.ValidationException$ = ValidationException$;
|
|
1764
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|