@aws-sdk/client-backupsearch 3.986.0 → 3.988.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +31 -674
- package/dist-cjs/models/BackupSearchServiceException.js +12 -0
- package/dist-cjs/models/errors.js +123 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +488 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +49 -43
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var BackupSearchServiceException = require('./models/BackupSearchServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -108,598 +111,6 @@ class BackupSearchClient extends smithyClient.Client {
|
|
|
108
111
|
}
|
|
109
112
|
}
|
|
110
113
|
|
|
111
|
-
class BackupSearchServiceException extends smithyClient.ServiceException {
|
|
112
|
-
constructor(options) {
|
|
113
|
-
super(options);
|
|
114
|
-
Object.setPrototypeOf(this, BackupSearchServiceException.prototype);
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
class AccessDeniedException extends BackupSearchServiceException {
|
|
119
|
-
name = "AccessDeniedException";
|
|
120
|
-
$fault = "client";
|
|
121
|
-
constructor(opts) {
|
|
122
|
-
super({
|
|
123
|
-
name: "AccessDeniedException",
|
|
124
|
-
$fault: "client",
|
|
125
|
-
...opts,
|
|
126
|
-
});
|
|
127
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
class ConflictException extends BackupSearchServiceException {
|
|
131
|
-
name = "ConflictException";
|
|
132
|
-
$fault = "client";
|
|
133
|
-
resourceId;
|
|
134
|
-
resourceType;
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "ConflictException",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
142
|
-
this.resourceId = opts.resourceId;
|
|
143
|
-
this.resourceType = opts.resourceType;
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
class InternalServerException extends BackupSearchServiceException {
|
|
147
|
-
name = "InternalServerException";
|
|
148
|
-
$fault = "server";
|
|
149
|
-
$retryable = {};
|
|
150
|
-
retryAfterSeconds;
|
|
151
|
-
constructor(opts) {
|
|
152
|
-
super({
|
|
153
|
-
name: "InternalServerException",
|
|
154
|
-
$fault: "server",
|
|
155
|
-
...opts,
|
|
156
|
-
});
|
|
157
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
158
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
class ResourceNotFoundException extends BackupSearchServiceException {
|
|
162
|
-
name = "ResourceNotFoundException";
|
|
163
|
-
$fault = "client";
|
|
164
|
-
resourceId;
|
|
165
|
-
resourceType;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "ResourceNotFoundException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
173
|
-
this.resourceId = opts.resourceId;
|
|
174
|
-
this.resourceType = opts.resourceType;
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
class ThrottlingException extends BackupSearchServiceException {
|
|
178
|
-
name = "ThrottlingException";
|
|
179
|
-
$fault = "client";
|
|
180
|
-
$retryable = {
|
|
181
|
-
throttling: true,
|
|
182
|
-
};
|
|
183
|
-
serviceCode;
|
|
184
|
-
quotaCode;
|
|
185
|
-
retryAfterSeconds;
|
|
186
|
-
constructor(opts) {
|
|
187
|
-
super({
|
|
188
|
-
name: "ThrottlingException",
|
|
189
|
-
$fault: "client",
|
|
190
|
-
...opts,
|
|
191
|
-
});
|
|
192
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
193
|
-
this.serviceCode = opts.serviceCode;
|
|
194
|
-
this.quotaCode = opts.quotaCode;
|
|
195
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
class ValidationException extends BackupSearchServiceException {
|
|
199
|
-
name = "ValidationException";
|
|
200
|
-
$fault = "client";
|
|
201
|
-
constructor(opts) {
|
|
202
|
-
super({
|
|
203
|
-
name: "ValidationException",
|
|
204
|
-
$fault: "client",
|
|
205
|
-
...opts,
|
|
206
|
-
});
|
|
207
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
class ServiceQuotaExceededException extends BackupSearchServiceException {
|
|
211
|
-
name = "ServiceQuotaExceededException";
|
|
212
|
-
$fault = "client";
|
|
213
|
-
resourceId;
|
|
214
|
-
resourceType;
|
|
215
|
-
serviceCode;
|
|
216
|
-
quotaCode;
|
|
217
|
-
constructor(opts) {
|
|
218
|
-
super({
|
|
219
|
-
name: "ServiceQuotaExceededException",
|
|
220
|
-
$fault: "client",
|
|
221
|
-
...opts,
|
|
222
|
-
});
|
|
223
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
224
|
-
this.resourceId = opts.resourceId;
|
|
225
|
-
this.resourceType = opts.resourceType;
|
|
226
|
-
this.serviceCode = opts.serviceCode;
|
|
227
|
-
this.quotaCode = opts.quotaCode;
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
const _ADE = "AccessDeniedException";
|
|
232
|
-
const _BCT = "BackupCreationTime";
|
|
233
|
-
const _BCTF = "BackupCreationTimeFilter";
|
|
234
|
-
const _BRA = "BackupResourceArn";
|
|
235
|
-
const _BRAa = "BackupResourceArns";
|
|
236
|
-
const _BRCT = "BackupResourceCreationTime";
|
|
237
|
-
const _BRT = "BackupResourceTypes";
|
|
238
|
-
const _BRTa = "BackupResourceTags";
|
|
239
|
-
const _BS = "ByStatus";
|
|
240
|
-
const _BVN = "BackupVaultName";
|
|
241
|
-
const _CA = "CreatedAfter";
|
|
242
|
-
const _CB = "CreatedBefore";
|
|
243
|
-
const _CE = "ConflictException";
|
|
244
|
-
const _CSP = "CurrentSearchProgress";
|
|
245
|
-
const _CT = "CreationTimes";
|
|
246
|
-
const _CTl = "ClientToken";
|
|
247
|
-
const _CTo = "CompletionTime";
|
|
248
|
-
const _CTr = "CreationTime";
|
|
249
|
-
const _DB = "DestinationBucket";
|
|
250
|
-
const _DP = "DestinationPrefix";
|
|
251
|
-
const _EBSIF = "EBSItemFilter";
|
|
252
|
-
const _EBSIFt = "EBSItemFilters";
|
|
253
|
-
const _EBSRI = "EBSResultItem";
|
|
254
|
-
const _EJ = "ExportJobs";
|
|
255
|
-
const _EJA = "ExportJobArn";
|
|
256
|
-
const _EJI = "ExportJobIdentifier";
|
|
257
|
-
const _EJS = "ExportJobSummary";
|
|
258
|
-
const _EJSx = "ExportJobSummaries";
|
|
259
|
-
const _EKA = "EncryptionKeyArn";
|
|
260
|
-
const _ES = "ExportSpecification";
|
|
261
|
-
const _ET = "ETags";
|
|
262
|
-
const _ETa = "ETag";
|
|
263
|
-
const _FP = "FilePath";
|
|
264
|
-
const _FPi = "FilePaths";
|
|
265
|
-
const _FS = "FileSize";
|
|
266
|
-
const _FSI = "FileSystemIdentifier";
|
|
267
|
-
const _GSJ = "GetSearchJob";
|
|
268
|
-
const _GSJI = "GetSearchJobInput";
|
|
269
|
-
const _GSJO = "GetSearchJobOutput";
|
|
270
|
-
const _GSREJ = "GetSearchResultExportJob";
|
|
271
|
-
const _GSREJI = "GetSearchResultExportJobInput";
|
|
272
|
-
const _GSREJO = "GetSearchResultExportJobOutput";
|
|
273
|
-
const _ICT = "IndexCreationTime";
|
|
274
|
-
const _IF = "ItemFilters";
|
|
275
|
-
const _IMC = "ItemsMatchedCount";
|
|
276
|
-
const _ISC = "ItemsScannedCount";
|
|
277
|
-
const _ISE = "InternalServerException";
|
|
278
|
-
const _LC = "LongCondition";
|
|
279
|
-
const _LCL = "LongConditionList";
|
|
280
|
-
const _LMT = "LastModificationTimes";
|
|
281
|
-
const _LMTa = "LastModifiedTime";
|
|
282
|
-
const _LSJ = "ListSearchJobs";
|
|
283
|
-
const _LSJB = "ListSearchJobBackups";
|
|
284
|
-
const _LSJBI = "ListSearchJobBackupsInput";
|
|
285
|
-
const _LSJBO = "ListSearchJobBackupsOutput";
|
|
286
|
-
const _LSJI = "ListSearchJobsInput";
|
|
287
|
-
const _LSJO = "ListSearchJobsOutput";
|
|
288
|
-
const _LSJR = "ListSearchJobResults";
|
|
289
|
-
const _LSJRI = "ListSearchJobResultsInput";
|
|
290
|
-
const _LSJRO = "ListSearchJobResultsOutput";
|
|
291
|
-
const _LSREJ = "ListSearchResultExportJobs";
|
|
292
|
-
const _LSREJI = "ListSearchResultExportJobsInput";
|
|
293
|
-
const _LSREJO = "ListSearchResultExportJobsOutput";
|
|
294
|
-
const _LTFR = "ListTagsForResource";
|
|
295
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
296
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
297
|
-
const _MR = "MaxResults";
|
|
298
|
-
const _N = "Name";
|
|
299
|
-
const _NT = "NextToken";
|
|
300
|
-
const _O = "Operator";
|
|
301
|
-
const _OK = "ObjectKey";
|
|
302
|
-
const _OKb = "ObjectKeys";
|
|
303
|
-
const _OS = "ObjectSize";
|
|
304
|
-
const _R = "Results";
|
|
305
|
-
const _RA = "Retry-After";
|
|
306
|
-
const _RAe = "ResourceArn";
|
|
307
|
-
const _RAo = "RoleArn";
|
|
308
|
-
const _RI = "ResultItem";
|
|
309
|
-
const _RNFE = "ResourceNotFoundException";
|
|
310
|
-
const _RPSC = "RecoveryPointsScannedCount";
|
|
311
|
-
const _RT = "ResourceType";
|
|
312
|
-
const _S = "Sizes";
|
|
313
|
-
const _SC = "StringCondition";
|
|
314
|
-
const _SCL = "StringConditionList";
|
|
315
|
-
const _SES = "S3ExportSpecification";
|
|
316
|
-
const _SIF = "S3ItemFilters";
|
|
317
|
-
const _SIFt = "S3ItemFilter";
|
|
318
|
-
const _SJ = "SearchJobs";
|
|
319
|
-
const _SJA = "SearchJobArn";
|
|
320
|
-
const _SJBR = "SearchJobBackupsResult";
|
|
321
|
-
const _SJBRe = "SearchJobBackupsResults";
|
|
322
|
-
const _SJI = "SearchJobIdentifier";
|
|
323
|
-
const _SJS = "SearchJobSummary";
|
|
324
|
-
const _SM = "StatusMessage";
|
|
325
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
326
|
-
const _SRA = "SourceResourceArn";
|
|
327
|
-
const _SRAo = "SourceResourceArns";
|
|
328
|
-
const _SRI = "S3ResultItem";
|
|
329
|
-
const _SS = "SearchScope";
|
|
330
|
-
const _SSJ = "StartSearchJob";
|
|
331
|
-
const _SSJI = "StartSearchJobInput";
|
|
332
|
-
const _SSJIt = "StopSearchJobInput";
|
|
333
|
-
const _SSJO = "StartSearchJobOutput";
|
|
334
|
-
const _SSJOt = "StopSearchJobOutput";
|
|
335
|
-
const _SSJt = "StopSearchJob";
|
|
336
|
-
const _SSREJ = "StartSearchResultExportJob";
|
|
337
|
-
const _SSREJI = "StartSearchResultExportJobInput";
|
|
338
|
-
const _SSREJO = "StartSearchResultExportJobOutput";
|
|
339
|
-
const _SSS = "SearchScopeSummary";
|
|
340
|
-
const _St = "Status";
|
|
341
|
-
const _T = "Tags";
|
|
342
|
-
const _TC = "TimeCondition";
|
|
343
|
-
const _TCL = "TimeConditionList";
|
|
344
|
-
const _TE = "ThrottlingException";
|
|
345
|
-
const _TITSC = "TotalItemsToScanCount";
|
|
346
|
-
const _TK = "TagKeys";
|
|
347
|
-
const _TM = "TagMap";
|
|
348
|
-
const _TR = "TagResource";
|
|
349
|
-
const _TRPTSC = "TotalRecoveryPointsToScanCount";
|
|
350
|
-
const _TRR = "TagResourceRequest";
|
|
351
|
-
const _TRRa = "TagResourceResponse";
|
|
352
|
-
const _UR = "UntagResource";
|
|
353
|
-
const _URR = "UntagResourceRequest";
|
|
354
|
-
const _URRn = "UntagResourceResponse";
|
|
355
|
-
const _V = "Value";
|
|
356
|
-
const _VE = "ValidationException";
|
|
357
|
-
const _VI = "VersionIds";
|
|
358
|
-
const _VIe = "VersionId";
|
|
359
|
-
const _c = "client";
|
|
360
|
-
const _e = "error";
|
|
361
|
-
const _h = "http";
|
|
362
|
-
const _hE = "httpError";
|
|
363
|
-
const _hH = "httpHeader";
|
|
364
|
-
const _hQ = "httpQuery";
|
|
365
|
-
const _m = "message";
|
|
366
|
-
const _mR = "maxResults";
|
|
367
|
-
const _nT = "nextToken";
|
|
368
|
-
const _qC = "quotaCode";
|
|
369
|
-
const _rAS = "retryAfterSeconds";
|
|
370
|
-
const _rI = "resourceId";
|
|
371
|
-
const _rT = "resourceType";
|
|
372
|
-
const _s = "server";
|
|
373
|
-
const _sC = "serviceCode";
|
|
374
|
-
const _sES = "s3ExportSpecification";
|
|
375
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.backupsearch";
|
|
376
|
-
const _sp = "sparse";
|
|
377
|
-
const _tK = "tagKeys";
|
|
378
|
-
const n0 = "com.amazonaws.backupsearch";
|
|
379
|
-
var FilePath = [0, n0, _FP, 8, 0];
|
|
380
|
-
var ObjectKey = [0, n0, _OK, 8, 0];
|
|
381
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
382
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
383
|
-
[_m],
|
|
384
|
-
[0], 1
|
|
385
|
-
];
|
|
386
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
387
|
-
var BackupCreationTimeFilter$ = [3, n0, _BCTF,
|
|
388
|
-
0,
|
|
389
|
-
[_CA, _CB],
|
|
390
|
-
[4, 4]
|
|
391
|
-
];
|
|
392
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
393
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
394
|
-
[_m, _rI, _rT],
|
|
395
|
-
[0, 0, 0], 3
|
|
396
|
-
];
|
|
397
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
398
|
-
var CurrentSearchProgress$ = [3, n0, _CSP,
|
|
399
|
-
0,
|
|
400
|
-
[_RPSC, _ISC, _IMC],
|
|
401
|
-
[1, 1, 1]
|
|
402
|
-
];
|
|
403
|
-
var EBSItemFilter$ = [3, n0, _EBSIF,
|
|
404
|
-
0,
|
|
405
|
-
[_FPi, _S, _CT, _LMT],
|
|
406
|
-
[() => StringConditionList, () => LongConditionList, () => TimeConditionList, () => TimeConditionList]
|
|
407
|
-
];
|
|
408
|
-
var EBSResultItem$ = [3, n0, _EBSRI,
|
|
409
|
-
0,
|
|
410
|
-
[_BRA, _SRA, _BVN, _FSI, _FP, _FS, _CTr, _LMTa],
|
|
411
|
-
[0, 0, 0, 0, [() => FilePath, 0], 1, 4, 4]
|
|
412
|
-
];
|
|
413
|
-
var ExportJobSummary$ = [3, n0, _EJS,
|
|
414
|
-
0,
|
|
415
|
-
[_EJI, _EJA, _St, _CTr, _CTo, _SM, _SJA],
|
|
416
|
-
[0, 0, 0, 4, 4, 0, 0], 1
|
|
417
|
-
];
|
|
418
|
-
var GetSearchJobInput$ = [3, n0, _GSJI,
|
|
419
|
-
0,
|
|
420
|
-
[_SJI],
|
|
421
|
-
[[0, 1]], 1
|
|
422
|
-
];
|
|
423
|
-
var GetSearchJobOutput$ = [3, n0, _GSJO,
|
|
424
|
-
0,
|
|
425
|
-
[_St, _SS, _IF, _CTr, _SJI, _SJA, _N, _SSS, _CSP, _SM, _EKA, _CTo],
|
|
426
|
-
[0, [() => SearchScope$, 0], () => ItemFilters$, 4, 0, 0, 0, () => SearchScopeSummary$, () => CurrentSearchProgress$, 0, 0, 4], 6
|
|
427
|
-
];
|
|
428
|
-
var GetSearchResultExportJobInput$ = [3, n0, _GSREJI,
|
|
429
|
-
0,
|
|
430
|
-
[_EJI],
|
|
431
|
-
[[0, 1]], 1
|
|
432
|
-
];
|
|
433
|
-
var GetSearchResultExportJobOutput$ = [3, n0, _GSREJO,
|
|
434
|
-
0,
|
|
435
|
-
[_EJI, _EJA, _St, _CTr, _CTo, _SM, _ES, _SJA],
|
|
436
|
-
[0, 0, 0, 4, 4, 0, () => ExportSpecification$, 0], 1
|
|
437
|
-
];
|
|
438
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
439
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
440
|
-
[_m, _rAS],
|
|
441
|
-
[0, [1, { [_hH]: _RA }]], 1
|
|
442
|
-
];
|
|
443
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
444
|
-
var ItemFilters$ = [3, n0, _IF,
|
|
445
|
-
0,
|
|
446
|
-
[_SIF, _EBSIFt],
|
|
447
|
-
[() => S3ItemFilters, () => EBSItemFilters]
|
|
448
|
-
];
|
|
449
|
-
var ListSearchJobBackupsInput$ = [3, n0, _LSJBI,
|
|
450
|
-
0,
|
|
451
|
-
[_SJI, _NT, _MR],
|
|
452
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
453
|
-
];
|
|
454
|
-
var ListSearchJobBackupsOutput$ = [3, n0, _LSJBO,
|
|
455
|
-
0,
|
|
456
|
-
[_R, _NT],
|
|
457
|
-
[() => SearchJobBackupsResults, 0], 1
|
|
458
|
-
];
|
|
459
|
-
var ListSearchJobResultsInput$ = [3, n0, _LSJRI,
|
|
460
|
-
0,
|
|
461
|
-
[_SJI, _NT, _MR],
|
|
462
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
463
|
-
];
|
|
464
|
-
var ListSearchJobResultsOutput$ = [3, n0, _LSJRO,
|
|
465
|
-
0,
|
|
466
|
-
[_R, _NT],
|
|
467
|
-
[[() => Results, 0], 0], 1
|
|
468
|
-
];
|
|
469
|
-
var ListSearchJobsInput$ = [3, n0, _LSJI,
|
|
470
|
-
0,
|
|
471
|
-
[_BS, _NT, _MR],
|
|
472
|
-
[[0, { [_hQ]: _St }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
473
|
-
];
|
|
474
|
-
var ListSearchJobsOutput$ = [3, n0, _LSJO,
|
|
475
|
-
0,
|
|
476
|
-
[_SJ, _NT],
|
|
477
|
-
[() => SearchJobs, 0], 1
|
|
478
|
-
];
|
|
479
|
-
var ListSearchResultExportJobsInput$ = [3, n0, _LSREJI,
|
|
480
|
-
0,
|
|
481
|
-
[_St, _SJI, _NT, _MR],
|
|
482
|
-
[[0, { [_hQ]: _St }], [0, { [_hQ]: _SJI }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
483
|
-
];
|
|
484
|
-
var ListSearchResultExportJobsOutput$ = [3, n0, _LSREJO,
|
|
485
|
-
0,
|
|
486
|
-
[_EJ, _NT],
|
|
487
|
-
[() => ExportJobSummaries, 0], 1
|
|
488
|
-
];
|
|
489
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
490
|
-
0,
|
|
491
|
-
[_RAe],
|
|
492
|
-
[[0, 1]], 1
|
|
493
|
-
];
|
|
494
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
495
|
-
0,
|
|
496
|
-
[_T],
|
|
497
|
-
[[() => TagMap, 0]]
|
|
498
|
-
];
|
|
499
|
-
var LongCondition$ = [3, n0, _LC,
|
|
500
|
-
0,
|
|
501
|
-
[_V, _O],
|
|
502
|
-
[1, 0], 1
|
|
503
|
-
];
|
|
504
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
505
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
506
|
-
[_m, _rI, _rT],
|
|
507
|
-
[0, 0, 0], 3
|
|
508
|
-
];
|
|
509
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
510
|
-
var S3ExportSpecification$ = [3, n0, _SES,
|
|
511
|
-
0,
|
|
512
|
-
[_DB, _DP],
|
|
513
|
-
[0, 0], 1
|
|
514
|
-
];
|
|
515
|
-
var S3ItemFilter$ = [3, n0, _SIFt,
|
|
516
|
-
0,
|
|
517
|
-
[_OKb, _S, _CT, _VI, _ET],
|
|
518
|
-
[() => StringConditionList, () => LongConditionList, () => TimeConditionList, () => StringConditionList, () => StringConditionList]
|
|
519
|
-
];
|
|
520
|
-
var S3ResultItem$ = [3, n0, _SRI,
|
|
521
|
-
0,
|
|
522
|
-
[_BRA, _SRA, _BVN, _OK, _OS, _CTr, _ETa, _VIe],
|
|
523
|
-
[0, 0, 0, [() => ObjectKey, 0], 1, 4, 0, 0]
|
|
524
|
-
];
|
|
525
|
-
var SearchJobBackupsResult$ = [3, n0, _SJBR,
|
|
526
|
-
0,
|
|
527
|
-
[_St, _SM, _RT, _BRA, _SRA, _ICT, _BCT],
|
|
528
|
-
[0, 0, 0, 0, 0, 4, 4]
|
|
529
|
-
];
|
|
530
|
-
var SearchJobSummary$ = [3, n0, _SJS,
|
|
531
|
-
0,
|
|
532
|
-
[_SJI, _SJA, _N, _St, _CTr, _CTo, _SSS, _SM],
|
|
533
|
-
[0, 0, 0, 0, 4, 4, () => SearchScopeSummary$, 0]
|
|
534
|
-
];
|
|
535
|
-
var SearchScope$ = [3, n0, _SS,
|
|
536
|
-
0,
|
|
537
|
-
[_BRT, _BRCT, _SRAo, _BRAa, _BRTa],
|
|
538
|
-
[64 | 0, () => BackupCreationTimeFilter$, 64 | 0, 64 | 0, [() => TagMap, 0]], 1
|
|
539
|
-
];
|
|
540
|
-
var SearchScopeSummary$ = [3, n0, _SSS,
|
|
541
|
-
0,
|
|
542
|
-
[_TRPTSC, _TITSC],
|
|
543
|
-
[1, 1]
|
|
544
|
-
];
|
|
545
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
546
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
547
|
-
[_m, _rI, _rT, _sC, _qC],
|
|
548
|
-
[0, 0, 0, 0, 0], 5
|
|
549
|
-
];
|
|
550
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
551
|
-
var StartSearchJobInput$ = [3, n0, _SSJI,
|
|
552
|
-
0,
|
|
553
|
-
[_SS, _T, _N, _EKA, _CTl, _IF],
|
|
554
|
-
[[() => SearchScope$, 0], [() => TagMap, 0], 0, 0, 0, () => ItemFilters$], 1
|
|
555
|
-
];
|
|
556
|
-
var StartSearchJobOutput$ = [3, n0, _SSJO,
|
|
557
|
-
0,
|
|
558
|
-
[_SJA, _CTr, _SJI],
|
|
559
|
-
[0, 4, 0]
|
|
560
|
-
];
|
|
561
|
-
var StartSearchResultExportJobInput$ = [3, n0, _SSREJI,
|
|
562
|
-
0,
|
|
563
|
-
[_SJI, _ES, _CTl, _T, _RAo],
|
|
564
|
-
[0, () => ExportSpecification$, 0, [() => TagMap, 0], 0], 2
|
|
565
|
-
];
|
|
566
|
-
var StartSearchResultExportJobOutput$ = [3, n0, _SSREJO,
|
|
567
|
-
0,
|
|
568
|
-
[_EJI, _EJA],
|
|
569
|
-
[0, 0], 1
|
|
570
|
-
];
|
|
571
|
-
var StopSearchJobInput$ = [3, n0, _SSJIt,
|
|
572
|
-
0,
|
|
573
|
-
[_SJI],
|
|
574
|
-
[[0, 1]], 1
|
|
575
|
-
];
|
|
576
|
-
var StopSearchJobOutput$ = [3, n0, _SSJOt,
|
|
577
|
-
0,
|
|
578
|
-
[],
|
|
579
|
-
[]
|
|
580
|
-
];
|
|
581
|
-
var StringCondition$ = [3, n0, _SC,
|
|
582
|
-
0,
|
|
583
|
-
[_V, _O],
|
|
584
|
-
[0, 0], 1
|
|
585
|
-
];
|
|
586
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
587
|
-
0,
|
|
588
|
-
[_RAe, _T],
|
|
589
|
-
[[0, 1], [() => TagMap, 0]], 2
|
|
590
|
-
];
|
|
591
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
592
|
-
0,
|
|
593
|
-
[],
|
|
594
|
-
[]
|
|
595
|
-
];
|
|
596
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
597
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
598
|
-
[_m, _sC, _qC, _rAS],
|
|
599
|
-
[0, 0, 0, [1, { [_hH]: _RA }]], 1
|
|
600
|
-
];
|
|
601
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
602
|
-
var TimeCondition$ = [3, n0, _TC,
|
|
603
|
-
0,
|
|
604
|
-
[_V, _O],
|
|
605
|
-
[4, 0], 1
|
|
606
|
-
];
|
|
607
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
608
|
-
0,
|
|
609
|
-
[_RAe, _TK],
|
|
610
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
611
|
-
];
|
|
612
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
613
|
-
0,
|
|
614
|
-
[],
|
|
615
|
-
[]
|
|
616
|
-
];
|
|
617
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
618
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
619
|
-
[_m],
|
|
620
|
-
[0], 1
|
|
621
|
-
];
|
|
622
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
623
|
-
var BackupSearchServiceException$ = [-3, _sm, "BackupSearchServiceException", 0, [], []];
|
|
624
|
-
schema.TypeRegistry.for(_sm).registerError(BackupSearchServiceException$, BackupSearchServiceException);
|
|
625
|
-
var EBSItemFilters = [1, n0, _EBSIFt,
|
|
626
|
-
0, () => EBSItemFilter$
|
|
627
|
-
];
|
|
628
|
-
var ExportJobSummaries = [1, n0, _EJSx,
|
|
629
|
-
0, () => ExportJobSummary$
|
|
630
|
-
];
|
|
631
|
-
var LongConditionList = [1, n0, _LCL,
|
|
632
|
-
0, () => LongCondition$
|
|
633
|
-
];
|
|
634
|
-
var Results = [1, n0, _R,
|
|
635
|
-
0, [() => ResultItem$,
|
|
636
|
-
0]
|
|
637
|
-
];
|
|
638
|
-
var S3ItemFilters = [1, n0, _SIF,
|
|
639
|
-
0, () => S3ItemFilter$
|
|
640
|
-
];
|
|
641
|
-
var SearchJobBackupsResults = [1, n0, _SJBRe,
|
|
642
|
-
0, () => SearchJobBackupsResult$
|
|
643
|
-
];
|
|
644
|
-
var SearchJobs = [1, n0, _SJ,
|
|
645
|
-
0, () => SearchJobSummary$
|
|
646
|
-
];
|
|
647
|
-
var StringConditionList = [1, n0, _SCL,
|
|
648
|
-
0, () => StringCondition$
|
|
649
|
-
];
|
|
650
|
-
var TimeConditionList = [1, n0, _TCL,
|
|
651
|
-
0, () => TimeCondition$
|
|
652
|
-
];
|
|
653
|
-
var TagMap = [2, n0, _TM,
|
|
654
|
-
{ [_sp]: 1 }, 0, 0
|
|
655
|
-
];
|
|
656
|
-
var ExportSpecification$ = [4, n0, _ES,
|
|
657
|
-
0,
|
|
658
|
-
[_sES],
|
|
659
|
-
[() => S3ExportSpecification$]
|
|
660
|
-
];
|
|
661
|
-
var ResultItem$ = [4, n0, _RI,
|
|
662
|
-
0,
|
|
663
|
-
[_SRI, _EBSRI],
|
|
664
|
-
[[() => S3ResultItem$, 0], [() => EBSResultItem$, 0]]
|
|
665
|
-
];
|
|
666
|
-
var GetSearchJob$ = [9, n0, _GSJ,
|
|
667
|
-
{ [_h]: ["GET", "/search-jobs/{SearchJobIdentifier}", 200] }, () => GetSearchJobInput$, () => GetSearchJobOutput$
|
|
668
|
-
];
|
|
669
|
-
var GetSearchResultExportJob$ = [9, n0, _GSREJ,
|
|
670
|
-
{ [_h]: ["GET", "/export-search-jobs/{ExportJobIdentifier}", 200] }, () => GetSearchResultExportJobInput$, () => GetSearchResultExportJobOutput$
|
|
671
|
-
];
|
|
672
|
-
var ListSearchJobBackups$ = [9, n0, _LSJB,
|
|
673
|
-
{ [_h]: ["GET", "/search-jobs/{SearchJobIdentifier}/backups", 200] }, () => ListSearchJobBackupsInput$, () => ListSearchJobBackupsOutput$
|
|
674
|
-
];
|
|
675
|
-
var ListSearchJobResults$ = [9, n0, _LSJR,
|
|
676
|
-
{ [_h]: ["GET", "/search-jobs/{SearchJobIdentifier}/search-results", 200] }, () => ListSearchJobResultsInput$, () => ListSearchJobResultsOutput$
|
|
677
|
-
];
|
|
678
|
-
var ListSearchJobs$ = [9, n0, _LSJ,
|
|
679
|
-
{ [_h]: ["GET", "/search-jobs", 200] }, () => ListSearchJobsInput$, () => ListSearchJobsOutput$
|
|
680
|
-
];
|
|
681
|
-
var ListSearchResultExportJobs$ = [9, n0, _LSREJ,
|
|
682
|
-
{ [_h]: ["GET", "/export-search-jobs", 200] }, () => ListSearchResultExportJobsInput$, () => ListSearchResultExportJobsOutput$
|
|
683
|
-
];
|
|
684
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
685
|
-
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
686
|
-
];
|
|
687
|
-
var StartSearchJob$ = [9, n0, _SSJ,
|
|
688
|
-
{ [_h]: ["PUT", "/search-jobs", 200] }, () => StartSearchJobInput$, () => StartSearchJobOutput$
|
|
689
|
-
];
|
|
690
|
-
var StartSearchResultExportJob$ = [9, n0, _SSREJ,
|
|
691
|
-
{ [_h]: ["PUT", "/export-search-jobs", 200] }, () => StartSearchResultExportJobInput$, () => StartSearchResultExportJobOutput$
|
|
692
|
-
];
|
|
693
|
-
var StopSearchJob$ = [9, n0, _SSJt,
|
|
694
|
-
{ [_h]: ["PUT", "/search-jobs/{SearchJobIdentifier}/actions/cancel", 200] }, () => StopSearchJobInput$, () => StopSearchJobOutput$
|
|
695
|
-
];
|
|
696
|
-
var TagResource$ = [9, n0, _TR,
|
|
697
|
-
{ [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
698
|
-
];
|
|
699
|
-
var UntagResource$ = [9, n0, _UR,
|
|
700
|
-
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
701
|
-
];
|
|
702
|
-
|
|
703
114
|
class GetSearchJobCommand extends smithyClient.Command
|
|
704
115
|
.classBuilder()
|
|
705
116
|
.ep(commonParams)
|
|
@@ -708,7 +119,7 @@ class GetSearchJobCommand extends smithyClient.Command
|
|
|
708
119
|
})
|
|
709
120
|
.s("CryoBackupSearchService", "GetSearchJob", {})
|
|
710
121
|
.n("BackupSearchClient", "GetSearchJobCommand")
|
|
711
|
-
.sc(GetSearchJob$)
|
|
122
|
+
.sc(schemas_0.GetSearchJob$)
|
|
712
123
|
.build() {
|
|
713
124
|
}
|
|
714
125
|
|
|
@@ -720,7 +131,7 @@ class GetSearchResultExportJobCommand extends smithyClient.Command
|
|
|
720
131
|
})
|
|
721
132
|
.s("CryoBackupSearchService", "GetSearchResultExportJob", {})
|
|
722
133
|
.n("BackupSearchClient", "GetSearchResultExportJobCommand")
|
|
723
|
-
.sc(GetSearchResultExportJob$)
|
|
134
|
+
.sc(schemas_0.GetSearchResultExportJob$)
|
|
724
135
|
.build() {
|
|
725
136
|
}
|
|
726
137
|
|
|
@@ -732,7 +143,7 @@ class ListSearchJobBackupsCommand extends smithyClient.Command
|
|
|
732
143
|
})
|
|
733
144
|
.s("CryoBackupSearchService", "ListSearchJobBackups", {})
|
|
734
145
|
.n("BackupSearchClient", "ListSearchJobBackupsCommand")
|
|
735
|
-
.sc(ListSearchJobBackups$)
|
|
146
|
+
.sc(schemas_0.ListSearchJobBackups$)
|
|
736
147
|
.build() {
|
|
737
148
|
}
|
|
738
149
|
|
|
@@ -744,7 +155,7 @@ class ListSearchJobResultsCommand extends smithyClient.Command
|
|
|
744
155
|
})
|
|
745
156
|
.s("CryoBackupSearchService", "ListSearchJobResults", {})
|
|
746
157
|
.n("BackupSearchClient", "ListSearchJobResultsCommand")
|
|
747
|
-
.sc(ListSearchJobResults$)
|
|
158
|
+
.sc(schemas_0.ListSearchJobResults$)
|
|
748
159
|
.build() {
|
|
749
160
|
}
|
|
750
161
|
|
|
@@ -756,7 +167,7 @@ class ListSearchJobsCommand extends smithyClient.Command
|
|
|
756
167
|
})
|
|
757
168
|
.s("CryoBackupSearchService", "ListSearchJobs", {})
|
|
758
169
|
.n("BackupSearchClient", "ListSearchJobsCommand")
|
|
759
|
-
.sc(ListSearchJobs$)
|
|
170
|
+
.sc(schemas_0.ListSearchJobs$)
|
|
760
171
|
.build() {
|
|
761
172
|
}
|
|
762
173
|
|
|
@@ -768,7 +179,7 @@ class ListSearchResultExportJobsCommand extends smithyClient.Command
|
|
|
768
179
|
})
|
|
769
180
|
.s("CryoBackupSearchService", "ListSearchResultExportJobs", {})
|
|
770
181
|
.n("BackupSearchClient", "ListSearchResultExportJobsCommand")
|
|
771
|
-
.sc(ListSearchResultExportJobs$)
|
|
182
|
+
.sc(schemas_0.ListSearchResultExportJobs$)
|
|
772
183
|
.build() {
|
|
773
184
|
}
|
|
774
185
|
|
|
@@ -780,7 +191,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
780
191
|
})
|
|
781
192
|
.s("CryoBackupSearchService", "ListTagsForResource", {})
|
|
782
193
|
.n("BackupSearchClient", "ListTagsForResourceCommand")
|
|
783
|
-
.sc(ListTagsForResource$)
|
|
194
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
784
195
|
.build() {
|
|
785
196
|
}
|
|
786
197
|
|
|
@@ -792,7 +203,7 @@ class StartSearchJobCommand extends smithyClient.Command
|
|
|
792
203
|
})
|
|
793
204
|
.s("CryoBackupSearchService", "StartSearchJob", {})
|
|
794
205
|
.n("BackupSearchClient", "StartSearchJobCommand")
|
|
795
|
-
.sc(StartSearchJob$)
|
|
206
|
+
.sc(schemas_0.StartSearchJob$)
|
|
796
207
|
.build() {
|
|
797
208
|
}
|
|
798
209
|
|
|
@@ -804,7 +215,7 @@ class StartSearchResultExportJobCommand extends smithyClient.Command
|
|
|
804
215
|
})
|
|
805
216
|
.s("CryoBackupSearchService", "StartSearchResultExportJob", {})
|
|
806
217
|
.n("BackupSearchClient", "StartSearchResultExportJobCommand")
|
|
807
|
-
.sc(StartSearchResultExportJob$)
|
|
218
|
+
.sc(schemas_0.StartSearchResultExportJob$)
|
|
808
219
|
.build() {
|
|
809
220
|
}
|
|
810
221
|
|
|
@@ -816,7 +227,7 @@ class StopSearchJobCommand extends smithyClient.Command
|
|
|
816
227
|
})
|
|
817
228
|
.s("CryoBackupSearchService", "StopSearchJob", {})
|
|
818
229
|
.n("BackupSearchClient", "StopSearchJobCommand")
|
|
819
|
-
.sc(StopSearchJob$)
|
|
230
|
+
.sc(schemas_0.StopSearchJob$)
|
|
820
231
|
.build() {
|
|
821
232
|
}
|
|
822
233
|
|
|
@@ -828,7 +239,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
828
239
|
})
|
|
829
240
|
.s("CryoBackupSearchService", "TagResource", {})
|
|
830
241
|
.n("BackupSearchClient", "TagResourceCommand")
|
|
831
|
-
.sc(TagResource$)
|
|
242
|
+
.sc(schemas_0.TagResource$)
|
|
832
243
|
.build() {
|
|
833
244
|
}
|
|
834
245
|
|
|
@@ -840,7 +251,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
840
251
|
})
|
|
841
252
|
.s("CryoBackupSearchService", "UntagResource", {})
|
|
842
253
|
.n("BackupSearchClient", "UntagResourceCommand")
|
|
843
|
-
.sc(UntagResource$)
|
|
254
|
+
.sc(schemas_0.UntagResource$)
|
|
844
255
|
.build() {
|
|
845
256
|
}
|
|
846
257
|
|
|
@@ -923,97 +334,43 @@ Object.defineProperty(exports, "__Client", {
|
|
|
923
334
|
enumerable: true,
|
|
924
335
|
get: function () { return smithyClient.Client; }
|
|
925
336
|
});
|
|
926
|
-
exports
|
|
927
|
-
|
|
928
|
-
|
|
337
|
+
Object.defineProperty(exports, "BackupSearchServiceException", {
|
|
338
|
+
enumerable: true,
|
|
339
|
+
get: function () { return BackupSearchServiceException.BackupSearchServiceException; }
|
|
340
|
+
});
|
|
929
341
|
exports.BackupSearch = BackupSearch;
|
|
930
342
|
exports.BackupSearchClient = BackupSearchClient;
|
|
931
|
-
exports.BackupSearchServiceException = BackupSearchServiceException;
|
|
932
|
-
exports.BackupSearchServiceException$ = BackupSearchServiceException$;
|
|
933
|
-
exports.ConflictException = ConflictException;
|
|
934
|
-
exports.ConflictException$ = ConflictException$;
|
|
935
|
-
exports.CurrentSearchProgress$ = CurrentSearchProgress$;
|
|
936
|
-
exports.EBSItemFilter$ = EBSItemFilter$;
|
|
937
|
-
exports.EBSResultItem$ = EBSResultItem$;
|
|
938
343
|
exports.ExportJobStatus = ExportJobStatus;
|
|
939
|
-
exports.ExportJobSummary$ = ExportJobSummary$;
|
|
940
|
-
exports.ExportSpecification$ = ExportSpecification$;
|
|
941
|
-
exports.GetSearchJob$ = GetSearchJob$;
|
|
942
344
|
exports.GetSearchJobCommand = GetSearchJobCommand;
|
|
943
|
-
exports.GetSearchJobInput$ = GetSearchJobInput$;
|
|
944
|
-
exports.GetSearchJobOutput$ = GetSearchJobOutput$;
|
|
945
|
-
exports.GetSearchResultExportJob$ = GetSearchResultExportJob$;
|
|
946
345
|
exports.GetSearchResultExportJobCommand = GetSearchResultExportJobCommand;
|
|
947
|
-
exports.GetSearchResultExportJobInput$ = GetSearchResultExportJobInput$;
|
|
948
|
-
exports.GetSearchResultExportJobOutput$ = GetSearchResultExportJobOutput$;
|
|
949
|
-
exports.InternalServerException = InternalServerException;
|
|
950
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
951
|
-
exports.ItemFilters$ = ItemFilters$;
|
|
952
|
-
exports.ListSearchJobBackups$ = ListSearchJobBackups$;
|
|
953
346
|
exports.ListSearchJobBackupsCommand = ListSearchJobBackupsCommand;
|
|
954
|
-
exports.ListSearchJobBackupsInput$ = ListSearchJobBackupsInput$;
|
|
955
|
-
exports.ListSearchJobBackupsOutput$ = ListSearchJobBackupsOutput$;
|
|
956
|
-
exports.ListSearchJobResults$ = ListSearchJobResults$;
|
|
957
347
|
exports.ListSearchJobResultsCommand = ListSearchJobResultsCommand;
|
|
958
|
-
exports.ListSearchJobResultsInput$ = ListSearchJobResultsInput$;
|
|
959
|
-
exports.ListSearchJobResultsOutput$ = ListSearchJobResultsOutput$;
|
|
960
|
-
exports.ListSearchJobs$ = ListSearchJobs$;
|
|
961
348
|
exports.ListSearchJobsCommand = ListSearchJobsCommand;
|
|
962
|
-
exports.ListSearchJobsInput$ = ListSearchJobsInput$;
|
|
963
|
-
exports.ListSearchJobsOutput$ = ListSearchJobsOutput$;
|
|
964
|
-
exports.ListSearchResultExportJobs$ = ListSearchResultExportJobs$;
|
|
965
349
|
exports.ListSearchResultExportJobsCommand = ListSearchResultExportJobsCommand;
|
|
966
|
-
exports.ListSearchResultExportJobsInput$ = ListSearchResultExportJobsInput$;
|
|
967
|
-
exports.ListSearchResultExportJobsOutput$ = ListSearchResultExportJobsOutput$;
|
|
968
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
969
350
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
970
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
971
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
972
|
-
exports.LongCondition$ = LongCondition$;
|
|
973
351
|
exports.LongConditionOperator = LongConditionOperator;
|
|
974
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
975
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
976
352
|
exports.ResourceType = ResourceType;
|
|
977
|
-
exports.ResultItem$ = ResultItem$;
|
|
978
|
-
exports.S3ExportSpecification$ = S3ExportSpecification$;
|
|
979
|
-
exports.S3ItemFilter$ = S3ItemFilter$;
|
|
980
|
-
exports.S3ResultItem$ = S3ResultItem$;
|
|
981
|
-
exports.SearchJobBackupsResult$ = SearchJobBackupsResult$;
|
|
982
353
|
exports.SearchJobState = SearchJobState;
|
|
983
|
-
exports.SearchJobSummary$ = SearchJobSummary$;
|
|
984
|
-
exports.SearchScope$ = SearchScope$;
|
|
985
|
-
exports.SearchScopeSummary$ = SearchScopeSummary$;
|
|
986
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
987
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
988
|
-
exports.StartSearchJob$ = StartSearchJob$;
|
|
989
354
|
exports.StartSearchJobCommand = StartSearchJobCommand;
|
|
990
|
-
exports.StartSearchJobInput$ = StartSearchJobInput$;
|
|
991
|
-
exports.StartSearchJobOutput$ = StartSearchJobOutput$;
|
|
992
|
-
exports.StartSearchResultExportJob$ = StartSearchResultExportJob$;
|
|
993
355
|
exports.StartSearchResultExportJobCommand = StartSearchResultExportJobCommand;
|
|
994
|
-
exports.StartSearchResultExportJobInput$ = StartSearchResultExportJobInput$;
|
|
995
|
-
exports.StartSearchResultExportJobOutput$ = StartSearchResultExportJobOutput$;
|
|
996
|
-
exports.StopSearchJob$ = StopSearchJob$;
|
|
997
356
|
exports.StopSearchJobCommand = StopSearchJobCommand;
|
|
998
|
-
exports.StopSearchJobInput$ = StopSearchJobInput$;
|
|
999
|
-
exports.StopSearchJobOutput$ = StopSearchJobOutput$;
|
|
1000
|
-
exports.StringCondition$ = StringCondition$;
|
|
1001
357
|
exports.StringConditionOperator = StringConditionOperator;
|
|
1002
|
-
exports.TagResource$ = TagResource$;
|
|
1003
358
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1004
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1005
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1006
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1007
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1008
|
-
exports.TimeCondition$ = TimeCondition$;
|
|
1009
359
|
exports.TimeConditionOperator = TimeConditionOperator;
|
|
1010
|
-
exports.UntagResource$ = UntagResource$;
|
|
1011
360
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1012
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1013
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1014
|
-
exports.ValidationException = ValidationException;
|
|
1015
|
-
exports.ValidationException$ = ValidationException$;
|
|
1016
361
|
exports.paginateListSearchJobBackups = paginateListSearchJobBackups;
|
|
1017
362
|
exports.paginateListSearchJobResults = paginateListSearchJobResults;
|
|
1018
363
|
exports.paginateListSearchJobs = paginateListSearchJobs;
|
|
1019
364
|
exports.paginateListSearchResultExportJobs = paginateListSearchResultExportJobs;
|
|
365
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
366
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
367
|
+
enumerable: true,
|
|
368
|
+
get: function () { return schemas_0[k]; }
|
|
369
|
+
});
|
|
370
|
+
});
|
|
371
|
+
Object.keys(errors).forEach(function (k) {
|
|
372
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
373
|
+
enumerable: true,
|
|
374
|
+
get: function () { return errors[k]; }
|
|
375
|
+
});
|
|
376
|
+
});
|