@aws-sdk/client-backupsearch 3.952.0 → 3.953.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 +212 -150
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/GetSearchJobCommand.js +2 -2
- package/dist-es/commands/GetSearchResultExportJobCommand.js +2 -2
- package/dist-es/commands/ListSearchJobBackupsCommand.js +2 -2
- package/dist-es/commands/ListSearchJobResultsCommand.js +2 -2
- package/dist-es/commands/ListSearchJobsCommand.js +2 -2
- package/dist-es/commands/ListSearchResultExportJobsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/StartSearchJobCommand.js +2 -2
- package/dist-es/commands/StartSearchResultExportJobCommand.js +2 -2
- package/dist-es/commands/StopSearchJobCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +123 -123
- package/dist-types/BackupSearchClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +63 -79
- package/dist-types/ts3.4/BackupSearchClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +62 -81
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -108,14 +108,14 @@ class BackupSearchClient extends smithyClient.Client {
|
|
|
108
108
|
}
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
-
|
|
111
|
+
class BackupSearchServiceException extends smithyClient.ServiceException {
|
|
112
112
|
constructor(options) {
|
|
113
113
|
super(options);
|
|
114
114
|
Object.setPrototypeOf(this, BackupSearchServiceException.prototype);
|
|
115
115
|
}
|
|
116
|
-
}
|
|
116
|
+
}
|
|
117
117
|
|
|
118
|
-
|
|
118
|
+
class AccessDeniedException extends BackupSearchServiceException {
|
|
119
119
|
name = "AccessDeniedException";
|
|
120
120
|
$fault = "client";
|
|
121
121
|
constructor(opts) {
|
|
@@ -126,8 +126,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends BackupSearchSe
|
|
|
126
126
|
});
|
|
127
127
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
128
128
|
}
|
|
129
|
-
}
|
|
130
|
-
|
|
129
|
+
}
|
|
130
|
+
class ConflictException extends BackupSearchServiceException {
|
|
131
131
|
name = "ConflictException";
|
|
132
132
|
$fault = "client";
|
|
133
133
|
resourceId;
|
|
@@ -142,8 +142,8 @@ let ConflictException$1 = class ConflictException extends BackupSearchServiceExc
|
|
|
142
142
|
this.resourceId = opts.resourceId;
|
|
143
143
|
this.resourceType = opts.resourceType;
|
|
144
144
|
}
|
|
145
|
-
}
|
|
146
|
-
|
|
145
|
+
}
|
|
146
|
+
class InternalServerException extends BackupSearchServiceException {
|
|
147
147
|
name = "InternalServerException";
|
|
148
148
|
$fault = "server";
|
|
149
149
|
$retryable = {};
|
|
@@ -157,8 +157,8 @@ let InternalServerException$1 = class InternalServerException extends BackupSear
|
|
|
157
157
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
158
158
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
159
159
|
}
|
|
160
|
-
}
|
|
161
|
-
|
|
160
|
+
}
|
|
161
|
+
class ResourceNotFoundException extends BackupSearchServiceException {
|
|
162
162
|
name = "ResourceNotFoundException";
|
|
163
163
|
$fault = "client";
|
|
164
164
|
resourceId;
|
|
@@ -173,8 +173,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Backup
|
|
|
173
173
|
this.resourceId = opts.resourceId;
|
|
174
174
|
this.resourceType = opts.resourceType;
|
|
175
175
|
}
|
|
176
|
-
}
|
|
177
|
-
|
|
176
|
+
}
|
|
177
|
+
class ThrottlingException extends BackupSearchServiceException {
|
|
178
178
|
name = "ThrottlingException";
|
|
179
179
|
$fault = "client";
|
|
180
180
|
$retryable = {
|
|
@@ -194,8 +194,8 @@ let ThrottlingException$1 = class ThrottlingException extends BackupSearchServic
|
|
|
194
194
|
this.quotaCode = opts.quotaCode;
|
|
195
195
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
196
196
|
}
|
|
197
|
-
}
|
|
198
|
-
|
|
197
|
+
}
|
|
198
|
+
class ValidationException extends BackupSearchServiceException {
|
|
199
199
|
name = "ValidationException";
|
|
200
200
|
$fault = "client";
|
|
201
201
|
constructor(opts) {
|
|
@@ -206,8 +206,8 @@ let ValidationException$1 = class ValidationException extends BackupSearchServic
|
|
|
206
206
|
});
|
|
207
207
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
208
208
|
}
|
|
209
|
-
}
|
|
210
|
-
|
|
209
|
+
}
|
|
210
|
+
class ServiceQuotaExceededException extends BackupSearchServiceException {
|
|
211
211
|
name = "ServiceQuotaExceededException";
|
|
212
212
|
$fault = "client";
|
|
213
213
|
resourceId;
|
|
@@ -226,7 +226,7 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
|
|
|
226
226
|
this.serviceCode = opts.serviceCode;
|
|
227
227
|
this.quotaCode = opts.quotaCode;
|
|
228
228
|
}
|
|
229
|
-
}
|
|
229
|
+
}
|
|
230
230
|
|
|
231
231
|
const _ADE = "AccessDeniedException";
|
|
232
232
|
const _BCT = "BackupCreationTime";
|
|
@@ -378,13 +378,13 @@ const _tK = "tagKeys";
|
|
|
378
378
|
const n0 = "com.amazonaws.backupsearch";
|
|
379
379
|
var FilePath = [0, n0, _FP, 8, 0];
|
|
380
380
|
var ObjectKey = [0, n0, _OK, 8, 0];
|
|
381
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
382
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
383
|
-
var BackupCreationTimeFilter = [3, n0, _BCTF, 0, [_CA, _CB], [4, 4]];
|
|
384
|
-
var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
|
|
385
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
386
|
-
var CurrentSearchProgress = [3, n0, _CSP, 0, [_RPSC, _ISC, _IMC], [1, 1, 1]];
|
|
387
|
-
var EBSItemFilter = [
|
|
381
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
382
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
383
|
+
var BackupCreationTimeFilter$ = [3, n0, _BCTF, 0, [_CA, _CB], [4, 4]];
|
|
384
|
+
var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
|
|
385
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
386
|
+
var CurrentSearchProgress$ = [3, n0, _CSP, 0, [_RPSC, _ISC, _IMC], [1, 1, 1]];
|
|
387
|
+
var EBSItemFilter$ = [
|
|
388
388
|
3,
|
|
389
389
|
n0,
|
|
390
390
|
_EBSIF,
|
|
@@ -392,7 +392,7 @@ var EBSItemFilter = [
|
|
|
392
392
|
[_FPi, _S, _CT, _LMT],
|
|
393
393
|
[() => StringConditionList, () => LongConditionList, () => TimeConditionList, () => TimeConditionList],
|
|
394
394
|
];
|
|
395
|
-
var EBSResultItem = [
|
|
395
|
+
var EBSResultItem$ = [
|
|
396
396
|
3,
|
|
397
397
|
n0,
|
|
398
398
|
_EBSRI,
|
|
@@ -400,7 +400,7 @@ var EBSResultItem = [
|
|
|
400
400
|
[_BRA, _SRA, _BVN, _FSI, _FP, _FS, _CTr, _LMTa],
|
|
401
401
|
[0, 0, 0, 0, [() => FilePath, 0], 1, 4, 4],
|
|
402
402
|
];
|
|
403
|
-
var ExportJobSummary = [
|
|
403
|
+
var ExportJobSummary$ = [
|
|
404
404
|
3,
|
|
405
405
|
n0,
|
|
406
406
|
_EJS,
|
|
@@ -408,8 +408,8 @@ var ExportJobSummary = [
|
|
|
408
408
|
[_EJI, _EJA, _St, _CTr, _CTo, _SM, _SJA],
|
|
409
409
|
[0, 0, 0, 4, 4, 0, 0],
|
|
410
410
|
];
|
|
411
|
-
var GetSearchJobInput = [3, n0, _GSJI, 0, [_SJI], [[0, 1]]];
|
|
412
|
-
var GetSearchJobOutput = [
|
|
411
|
+
var GetSearchJobInput$ = [3, n0, _GSJI, 0, [_SJI], [[0, 1]]];
|
|
412
|
+
var GetSearchJobOutput$ = [
|
|
413
413
|
3,
|
|
414
414
|
n0,
|
|
415
415
|
_GSJO,
|
|
@@ -417,29 +417,29 @@ var GetSearchJobOutput = [
|
|
|
417
417
|
[_N, _SSS, _CSP, _SM, _EKA, _CTo, _St, _SS, _IF, _CTr, _SJI, _SJA],
|
|
418
418
|
[
|
|
419
419
|
0,
|
|
420
|
-
() => SearchScopeSummary
|
|
421
|
-
() => CurrentSearchProgress
|
|
420
|
+
() => SearchScopeSummary$,
|
|
421
|
+
() => CurrentSearchProgress$,
|
|
422
422
|
0,
|
|
423
423
|
0,
|
|
424
424
|
4,
|
|
425
425
|
0,
|
|
426
|
-
[() => SearchScope
|
|
427
|
-
() => ItemFilters
|
|
426
|
+
[() => SearchScope$, 0],
|
|
427
|
+
() => ItemFilters$,
|
|
428
428
|
4,
|
|
429
429
|
0,
|
|
430
430
|
0,
|
|
431
431
|
],
|
|
432
432
|
];
|
|
433
|
-
var GetSearchResultExportJobInput = [3, n0, _GSREJI, 0, [_EJI], [[0, 1]]];
|
|
434
|
-
var GetSearchResultExportJobOutput = [
|
|
433
|
+
var GetSearchResultExportJobInput$ = [3, n0, _GSREJI, 0, [_EJI], [[0, 1]]];
|
|
434
|
+
var GetSearchResultExportJobOutput$ = [
|
|
435
435
|
3,
|
|
436
436
|
n0,
|
|
437
437
|
_GSREJO,
|
|
438
438
|
0,
|
|
439
439
|
[_EJI, _EJA, _St, _CTr, _CTo, _SM, _ES, _SJA],
|
|
440
|
-
[0, 0, 0, 4, 4, 0, () => ExportSpecification
|
|
440
|
+
[0, 0, 0, 4, 4, 0, () => ExportSpecification$, 0],
|
|
441
441
|
];
|
|
442
|
-
var InternalServerException = [
|
|
442
|
+
var InternalServerException$ = [
|
|
443
443
|
-3,
|
|
444
444
|
n0,
|
|
445
445
|
_ISE,
|
|
@@ -447,8 +447,8 @@ var InternalServerException = [
|
|
|
447
447
|
[_m, _rAS],
|
|
448
448
|
[0, [1, { [_hH]: _RA }]],
|
|
449
449
|
];
|
|
450
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
451
|
-
var ItemFilters = [
|
|
450
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
451
|
+
var ItemFilters$ = [
|
|
452
452
|
3,
|
|
453
453
|
n0,
|
|
454
454
|
_IF,
|
|
@@ -456,7 +456,7 @@ var ItemFilters = [
|
|
|
456
456
|
[_SIF, _EBSIFt],
|
|
457
457
|
[() => S3ItemFilters, () => EBSItemFilters],
|
|
458
458
|
];
|
|
459
|
-
var ListSearchJobBackupsInput = [
|
|
459
|
+
var ListSearchJobBackupsInput$ = [
|
|
460
460
|
3,
|
|
461
461
|
n0,
|
|
462
462
|
_LSJBI,
|
|
@@ -468,7 +468,7 @@ var ListSearchJobBackupsInput = [
|
|
|
468
468
|
[1, { [_hQ]: _mR }],
|
|
469
469
|
],
|
|
470
470
|
];
|
|
471
|
-
var ListSearchJobBackupsOutput = [
|
|
471
|
+
var ListSearchJobBackupsOutput$ = [
|
|
472
472
|
3,
|
|
473
473
|
n0,
|
|
474
474
|
_LSJBO,
|
|
@@ -476,7 +476,7 @@ var ListSearchJobBackupsOutput = [
|
|
|
476
476
|
[_R, _NT],
|
|
477
477
|
[() => SearchJobBackupsResults, 0],
|
|
478
478
|
];
|
|
479
|
-
var ListSearchJobResultsInput = [
|
|
479
|
+
var ListSearchJobResultsInput$ = [
|
|
480
480
|
3,
|
|
481
481
|
n0,
|
|
482
482
|
_LSJRI,
|
|
@@ -488,8 +488,8 @@ var ListSearchJobResultsInput = [
|
|
|
488
488
|
[1, { [_hQ]: _mR }],
|
|
489
489
|
],
|
|
490
490
|
];
|
|
491
|
-
var ListSearchJobResultsOutput = [3, n0, _LSJRO, 0, [_R, _NT], [[() => Results, 0], 0]];
|
|
492
|
-
var ListSearchJobsInput = [
|
|
491
|
+
var ListSearchJobResultsOutput$ = [3, n0, _LSJRO, 0, [_R, _NT], [[() => Results, 0], 0]];
|
|
492
|
+
var ListSearchJobsInput$ = [
|
|
493
493
|
3,
|
|
494
494
|
n0,
|
|
495
495
|
_LSJI,
|
|
@@ -501,8 +501,8 @@ var ListSearchJobsInput = [
|
|
|
501
501
|
[1, { [_hQ]: _MR }],
|
|
502
502
|
],
|
|
503
503
|
];
|
|
504
|
-
var ListSearchJobsOutput = [3, n0, _LSJO, 0, [_SJ, _NT], [() => SearchJobs, 0]];
|
|
505
|
-
var ListSearchResultExportJobsInput = [
|
|
504
|
+
var ListSearchJobsOutput$ = [3, n0, _LSJO, 0, [_SJ, _NT], [() => SearchJobs, 0]];
|
|
505
|
+
var ListSearchResultExportJobsInput$ = [
|
|
506
506
|
3,
|
|
507
507
|
n0,
|
|
508
508
|
_LSREJI,
|
|
@@ -515,7 +515,7 @@ var ListSearchResultExportJobsInput = [
|
|
|
515
515
|
[1, { [_hQ]: _MR }],
|
|
516
516
|
],
|
|
517
517
|
];
|
|
518
|
-
var ListSearchResultExportJobsOutput = [
|
|
518
|
+
var ListSearchResultExportJobsOutput$ = [
|
|
519
519
|
3,
|
|
520
520
|
n0,
|
|
521
521
|
_LSREJO,
|
|
@@ -523,10 +523,10 @@ var ListSearchResultExportJobsOutput = [
|
|
|
523
523
|
[_EJ, _NT],
|
|
524
524
|
[() => ExportJobSummaries, 0],
|
|
525
525
|
];
|
|
526
|
-
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RAe], [[0, 1]]];
|
|
527
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [[() => TagMap, 0]]];
|
|
528
|
-
var LongCondition = [3, n0, _LC, 0, [_V, _O], [1, 0]];
|
|
529
|
-
var ResourceNotFoundException = [
|
|
526
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RAe], [[0, 1]]];
|
|
527
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_T], [[() => TagMap, 0]]];
|
|
528
|
+
var LongCondition$ = [3, n0, _LC, 0, [_V, _O], [1, 0]];
|
|
529
|
+
var ResourceNotFoundException$ = [
|
|
530
530
|
-3,
|
|
531
531
|
n0,
|
|
532
532
|
_RNFE,
|
|
@@ -534,9 +534,9 @@ var ResourceNotFoundException = [
|
|
|
534
534
|
[_m, _rI, _rT],
|
|
535
535
|
[0, 0, 0],
|
|
536
536
|
];
|
|
537
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
538
|
-
var S3ExportSpecification = [3, n0, _SES, 0, [_DB, _DP], [0, 0]];
|
|
539
|
-
var S3ItemFilter = [
|
|
537
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
538
|
+
var S3ExportSpecification$ = [3, n0, _SES, 0, [_DB, _DP], [0, 0]];
|
|
539
|
+
var S3ItemFilter$ = [
|
|
540
540
|
3,
|
|
541
541
|
n0,
|
|
542
542
|
_SIFt,
|
|
@@ -550,7 +550,7 @@ var S3ItemFilter = [
|
|
|
550
550
|
() => StringConditionList,
|
|
551
551
|
],
|
|
552
552
|
];
|
|
553
|
-
var S3ResultItem = [
|
|
553
|
+
var S3ResultItem$ = [
|
|
554
554
|
3,
|
|
555
555
|
n0,
|
|
556
556
|
_SRI,
|
|
@@ -558,7 +558,7 @@ var S3ResultItem = [
|
|
|
558
558
|
[_BRA, _SRA, _BVN, _OK, _OS, _CTr, _ETa, _VIe],
|
|
559
559
|
[0, 0, 0, [() => ObjectKey, 0], 1, 4, 0, 0],
|
|
560
560
|
];
|
|
561
|
-
var SearchJobBackupsResult = [
|
|
561
|
+
var SearchJobBackupsResult$ = [
|
|
562
562
|
3,
|
|
563
563
|
n0,
|
|
564
564
|
_SJBR,
|
|
@@ -566,24 +566,24 @@ var SearchJobBackupsResult = [
|
|
|
566
566
|
[_St, _SM, _RT, _BRA, _SRA, _ICT, _BCT],
|
|
567
567
|
[0, 0, 0, 0, 0, 4, 4],
|
|
568
568
|
];
|
|
569
|
-
var SearchJobSummary = [
|
|
569
|
+
var SearchJobSummary$ = [
|
|
570
570
|
3,
|
|
571
571
|
n0,
|
|
572
572
|
_SJS,
|
|
573
573
|
0,
|
|
574
574
|
[_SJI, _SJA, _N, _St, _CTr, _CTo, _SSS, _SM],
|
|
575
|
-
[0, 0, 0, 0, 4, 4, () => SearchScopeSummary
|
|
575
|
+
[0, 0, 0, 0, 4, 4, () => SearchScopeSummary$, 0],
|
|
576
576
|
];
|
|
577
|
-
var SearchScope = [
|
|
577
|
+
var SearchScope$ = [
|
|
578
578
|
3,
|
|
579
579
|
n0,
|
|
580
580
|
_SS,
|
|
581
581
|
0,
|
|
582
582
|
[_BRT, _BRCT, _SRAo, _BRAa, _BRTa],
|
|
583
|
-
[64 | 0, () => BackupCreationTimeFilter
|
|
583
|
+
[64 | 0, () => BackupCreationTimeFilter$, 64 | 0, 64 | 0, [() => TagMap, 0]],
|
|
584
584
|
];
|
|
585
|
-
var SearchScopeSummary = [3, n0, _SSS, 0, [_TRPTSC, _TITSC], [1, 1]];
|
|
586
|
-
var ServiceQuotaExceededException = [
|
|
585
|
+
var SearchScopeSummary$ = [3, n0, _SSS, 0, [_TRPTSC, _TITSC], [1, 1]];
|
|
586
|
+
var ServiceQuotaExceededException$ = [
|
|
587
587
|
-3,
|
|
588
588
|
n0,
|
|
589
589
|
_SQEE,
|
|
@@ -591,29 +591,29 @@ var ServiceQuotaExceededException = [
|
|
|
591
591
|
[_m, _rI, _rT, _sC, _qC],
|
|
592
592
|
[0, 0, 0, 0, 0],
|
|
593
593
|
];
|
|
594
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
595
|
-
var StartSearchJobInput = [
|
|
594
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
595
|
+
var StartSearchJobInput$ = [
|
|
596
596
|
3,
|
|
597
597
|
n0,
|
|
598
598
|
_SSJI,
|
|
599
599
|
0,
|
|
600
600
|
[_T, _N, _EKA, _CTl, _SS, _IF],
|
|
601
|
-
[[() => TagMap, 0], 0, 0, 0, [() => SearchScope
|
|
601
|
+
[[() => TagMap, 0], 0, 0, 0, [() => SearchScope$, 0], () => ItemFilters$],
|
|
602
602
|
];
|
|
603
|
-
var StartSearchJobOutput = [3, n0, _SSJO, 0, [_SJA, _CTr, _SJI], [0, 4, 0]];
|
|
604
|
-
var StartSearchResultExportJobInput = [
|
|
603
|
+
var StartSearchJobOutput$ = [3, n0, _SSJO, 0, [_SJA, _CTr, _SJI], [0, 4, 0]];
|
|
604
|
+
var StartSearchResultExportJobInput$ = [
|
|
605
605
|
3,
|
|
606
606
|
n0,
|
|
607
607
|
_SSREJI,
|
|
608
608
|
0,
|
|
609
609
|
[_SJI, _ES, _CTl, _T, _RAo],
|
|
610
|
-
[0, () => ExportSpecification
|
|
610
|
+
[0, () => ExportSpecification$, 0, [() => TagMap, 0], 0],
|
|
611
611
|
];
|
|
612
|
-
var StartSearchResultExportJobOutput = [3, n0, _SSREJO, 0, [_EJA, _EJI], [0, 0]];
|
|
613
|
-
var StopSearchJobInput = [3, n0, _SSJIt, 0, [_SJI], [[0, 1]]];
|
|
614
|
-
var StopSearchJobOutput = [3, n0, _SSJOt, 0, [], []];
|
|
615
|
-
var StringCondition = [3, n0, _SC, 0, [_V, _O], [0, 0]];
|
|
616
|
-
var TagResourceRequest = [
|
|
612
|
+
var StartSearchResultExportJobOutput$ = [3, n0, _SSREJO, 0, [_EJA, _EJI], [0, 0]];
|
|
613
|
+
var StopSearchJobInput$ = [3, n0, _SSJIt, 0, [_SJI], [[0, 1]]];
|
|
614
|
+
var StopSearchJobOutput$ = [3, n0, _SSJOt, 0, [], []];
|
|
615
|
+
var StringCondition$ = [3, n0, _SC, 0, [_V, _O], [0, 0]];
|
|
616
|
+
var TagResourceRequest$ = [
|
|
617
617
|
3,
|
|
618
618
|
n0,
|
|
619
619
|
_TRR,
|
|
@@ -624,8 +624,8 @@ var TagResourceRequest = [
|
|
|
624
624
|
[() => TagMap, 0],
|
|
625
625
|
],
|
|
626
626
|
];
|
|
627
|
-
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
628
|
-
var ThrottlingException = [
|
|
627
|
+
var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
628
|
+
var ThrottlingException$ = [
|
|
629
629
|
-3,
|
|
630
630
|
n0,
|
|
631
631
|
_TE,
|
|
@@ -633,9 +633,9 @@ var ThrottlingException = [
|
|
|
633
633
|
[_m, _sC, _qC, _rAS],
|
|
634
634
|
[0, 0, 0, [1, { [_hH]: _RA }]],
|
|
635
635
|
];
|
|
636
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
637
|
-
var TimeCondition = [3, n0, _TC, 0, [_V, _O], [4, 0]];
|
|
638
|
-
var UntagResourceRequest = [
|
|
636
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
637
|
+
var TimeCondition$ = [3, n0, _TC, 0, [_V, _O], [4, 0]];
|
|
638
|
+
var UntagResourceRequest$ = [
|
|
639
639
|
3,
|
|
640
640
|
n0,
|
|
641
641
|
_URR,
|
|
@@ -646,128 +646,128 @@ var UntagResourceRequest = [
|
|
|
646
646
|
[64 | 0, { [_hQ]: _tK }],
|
|
647
647
|
],
|
|
648
648
|
];
|
|
649
|
-
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
650
|
-
var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
651
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
652
|
-
var BackupSearchServiceException = [-3, _sm, "BackupSearchServiceException", 0, [], []];
|
|
653
|
-
schema.TypeRegistry.for(_sm).registerError(BackupSearchServiceException
|
|
654
|
-
var EBSItemFilters = [1, n0, _EBSIFt, 0, () => EBSItemFilter];
|
|
655
|
-
var ExportJobSummaries = [1, n0, _EJSx, 0, () => ExportJobSummary];
|
|
656
|
-
var LongConditionList = [1, n0, _LCL, 0, () => LongCondition];
|
|
657
|
-
var Results = [1, n0, _R, 0, [() => ResultItem
|
|
658
|
-
var S3ItemFilters = [1, n0, _SIF, 0, () => S3ItemFilter];
|
|
659
|
-
var SearchJobBackupsResults = [1, n0, _SJBRe, 0, () => SearchJobBackupsResult];
|
|
660
|
-
var SearchJobs = [1, n0, _SJ, 0, () => SearchJobSummary];
|
|
661
|
-
var StringConditionList = [1, n0, _SCL, 0, () => StringCondition];
|
|
662
|
-
var TimeConditionList = [1, n0, _TCL, 0, () => TimeCondition];
|
|
649
|
+
var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
650
|
+
var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
651
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
652
|
+
var BackupSearchServiceException$ = [-3, _sm, "BackupSearchServiceException", 0, [], []];
|
|
653
|
+
schema.TypeRegistry.for(_sm).registerError(BackupSearchServiceException$, BackupSearchServiceException);
|
|
654
|
+
var EBSItemFilters = [1, n0, _EBSIFt, 0, () => EBSItemFilter$];
|
|
655
|
+
var ExportJobSummaries = [1, n0, _EJSx, 0, () => ExportJobSummary$];
|
|
656
|
+
var LongConditionList = [1, n0, _LCL, 0, () => LongCondition$];
|
|
657
|
+
var Results = [1, n0, _R, 0, [() => ResultItem$, 0]];
|
|
658
|
+
var S3ItemFilters = [1, n0, _SIF, 0, () => S3ItemFilter$];
|
|
659
|
+
var SearchJobBackupsResults = [1, n0, _SJBRe, 0, () => SearchJobBackupsResult$];
|
|
660
|
+
var SearchJobs = [1, n0, _SJ, 0, () => SearchJobSummary$];
|
|
661
|
+
var StringConditionList = [1, n0, _SCL, 0, () => StringCondition$];
|
|
662
|
+
var TimeConditionList = [1, n0, _TCL, 0, () => TimeCondition$];
|
|
663
663
|
var TagMap = [2, n0, _TM, { [_sp]: 1 }, 0, 0];
|
|
664
|
-
var ExportSpecification = [3, n0, _ES, 0, [_sES], [() => S3ExportSpecification]];
|
|
665
|
-
var ResultItem = [
|
|
664
|
+
var ExportSpecification$ = [3, n0, _ES, 0, [_sES], [() => S3ExportSpecification$]];
|
|
665
|
+
var ResultItem$ = [
|
|
666
666
|
3,
|
|
667
667
|
n0,
|
|
668
668
|
_RI,
|
|
669
669
|
0,
|
|
670
670
|
[_SRI, _EBSRI],
|
|
671
671
|
[
|
|
672
|
-
[() => S3ResultItem
|
|
673
|
-
[() => EBSResultItem
|
|
672
|
+
[() => S3ResultItem$, 0],
|
|
673
|
+
[() => EBSResultItem$, 0],
|
|
674
674
|
],
|
|
675
675
|
];
|
|
676
|
-
var GetSearchJob = [
|
|
676
|
+
var GetSearchJob$ = [
|
|
677
677
|
9,
|
|
678
678
|
n0,
|
|
679
679
|
_GSJ,
|
|
680
680
|
{ [_h]: ["GET", "/search-jobs/{SearchJobIdentifier}", 200] },
|
|
681
|
-
() => GetSearchJobInput
|
|
682
|
-
() => GetSearchJobOutput
|
|
681
|
+
() => GetSearchJobInput$,
|
|
682
|
+
() => GetSearchJobOutput$,
|
|
683
683
|
];
|
|
684
|
-
var GetSearchResultExportJob = [
|
|
684
|
+
var GetSearchResultExportJob$ = [
|
|
685
685
|
9,
|
|
686
686
|
n0,
|
|
687
687
|
_GSREJ,
|
|
688
688
|
{ [_h]: ["GET", "/export-search-jobs/{ExportJobIdentifier}", 200] },
|
|
689
|
-
() => GetSearchResultExportJobInput
|
|
690
|
-
() => GetSearchResultExportJobOutput
|
|
689
|
+
() => GetSearchResultExportJobInput$,
|
|
690
|
+
() => GetSearchResultExportJobOutput$,
|
|
691
691
|
];
|
|
692
|
-
var ListSearchJobBackups = [
|
|
692
|
+
var ListSearchJobBackups$ = [
|
|
693
693
|
9,
|
|
694
694
|
n0,
|
|
695
695
|
_LSJB,
|
|
696
696
|
{ [_h]: ["GET", "/search-jobs/{SearchJobIdentifier}/backups", 200] },
|
|
697
|
-
() => ListSearchJobBackupsInput
|
|
698
|
-
() => ListSearchJobBackupsOutput
|
|
697
|
+
() => ListSearchJobBackupsInput$,
|
|
698
|
+
() => ListSearchJobBackupsOutput$,
|
|
699
699
|
];
|
|
700
|
-
var ListSearchJobResults = [
|
|
700
|
+
var ListSearchJobResults$ = [
|
|
701
701
|
9,
|
|
702
702
|
n0,
|
|
703
703
|
_LSJR,
|
|
704
704
|
{ [_h]: ["GET", "/search-jobs/{SearchJobIdentifier}/search-results", 200] },
|
|
705
|
-
() => ListSearchJobResultsInput
|
|
706
|
-
() => ListSearchJobResultsOutput
|
|
705
|
+
() => ListSearchJobResultsInput$,
|
|
706
|
+
() => ListSearchJobResultsOutput$,
|
|
707
707
|
];
|
|
708
|
-
var ListSearchJobs = [
|
|
708
|
+
var ListSearchJobs$ = [
|
|
709
709
|
9,
|
|
710
710
|
n0,
|
|
711
711
|
_LSJ,
|
|
712
712
|
{ [_h]: ["GET", "/search-jobs", 200] },
|
|
713
|
-
() => ListSearchJobsInput
|
|
714
|
-
() => ListSearchJobsOutput
|
|
713
|
+
() => ListSearchJobsInput$,
|
|
714
|
+
() => ListSearchJobsOutput$,
|
|
715
715
|
];
|
|
716
|
-
var ListSearchResultExportJobs = [
|
|
716
|
+
var ListSearchResultExportJobs$ = [
|
|
717
717
|
9,
|
|
718
718
|
n0,
|
|
719
719
|
_LSREJ,
|
|
720
720
|
{ [_h]: ["GET", "/export-search-jobs", 200] },
|
|
721
|
-
() => ListSearchResultExportJobsInput
|
|
722
|
-
() => ListSearchResultExportJobsOutput
|
|
721
|
+
() => ListSearchResultExportJobsInput$,
|
|
722
|
+
() => ListSearchResultExportJobsOutput$,
|
|
723
723
|
];
|
|
724
|
-
var ListTagsForResource = [
|
|
724
|
+
var ListTagsForResource$ = [
|
|
725
725
|
9,
|
|
726
726
|
n0,
|
|
727
727
|
_LTFR,
|
|
728
728
|
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] },
|
|
729
|
-
() => ListTagsForResourceRequest
|
|
730
|
-
() => ListTagsForResourceResponse
|
|
729
|
+
() => ListTagsForResourceRequest$,
|
|
730
|
+
() => ListTagsForResourceResponse$,
|
|
731
731
|
];
|
|
732
|
-
var StartSearchJob = [
|
|
732
|
+
var StartSearchJob$ = [
|
|
733
733
|
9,
|
|
734
734
|
n0,
|
|
735
735
|
_SSJ,
|
|
736
736
|
{ [_h]: ["PUT", "/search-jobs", 200] },
|
|
737
|
-
() => StartSearchJobInput
|
|
738
|
-
() => StartSearchJobOutput
|
|
737
|
+
() => StartSearchJobInput$,
|
|
738
|
+
() => StartSearchJobOutput$,
|
|
739
739
|
];
|
|
740
|
-
var StartSearchResultExportJob = [
|
|
740
|
+
var StartSearchResultExportJob$ = [
|
|
741
741
|
9,
|
|
742
742
|
n0,
|
|
743
743
|
_SSREJ,
|
|
744
744
|
{ [_h]: ["PUT", "/export-search-jobs", 200] },
|
|
745
|
-
() => StartSearchResultExportJobInput
|
|
746
|
-
() => StartSearchResultExportJobOutput
|
|
745
|
+
() => StartSearchResultExportJobInput$,
|
|
746
|
+
() => StartSearchResultExportJobOutput$,
|
|
747
747
|
];
|
|
748
|
-
var StopSearchJob = [
|
|
748
|
+
var StopSearchJob$ = [
|
|
749
749
|
9,
|
|
750
750
|
n0,
|
|
751
751
|
_SSJt,
|
|
752
752
|
{ [_h]: ["PUT", "/search-jobs/{SearchJobIdentifier}/actions/cancel", 200] },
|
|
753
|
-
() => StopSearchJobInput
|
|
754
|
-
() => StopSearchJobOutput
|
|
753
|
+
() => StopSearchJobInput$,
|
|
754
|
+
() => StopSearchJobOutput$,
|
|
755
755
|
];
|
|
756
|
-
var TagResource = [
|
|
756
|
+
var TagResource$ = [
|
|
757
757
|
9,
|
|
758
758
|
n0,
|
|
759
759
|
_TR,
|
|
760
760
|
{ [_h]: ["POST", "/tags/{ResourceArn}", 200] },
|
|
761
|
-
() => TagResourceRequest
|
|
762
|
-
() => TagResourceResponse
|
|
761
|
+
() => TagResourceRequest$,
|
|
762
|
+
() => TagResourceResponse$,
|
|
763
763
|
];
|
|
764
|
-
var UntagResource = [
|
|
764
|
+
var UntagResource$ = [
|
|
765
765
|
9,
|
|
766
766
|
n0,
|
|
767
767
|
_UR,
|
|
768
768
|
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] },
|
|
769
|
-
() => UntagResourceRequest
|
|
770
|
-
() => UntagResourceResponse
|
|
769
|
+
() => UntagResourceRequest$,
|
|
770
|
+
() => UntagResourceResponse$,
|
|
771
771
|
];
|
|
772
772
|
|
|
773
773
|
class GetSearchJobCommand extends smithyClient.Command
|
|
@@ -778,7 +778,7 @@ class GetSearchJobCommand extends smithyClient.Command
|
|
|
778
778
|
})
|
|
779
779
|
.s("CryoBackupSearchService", "GetSearchJob", {})
|
|
780
780
|
.n("BackupSearchClient", "GetSearchJobCommand")
|
|
781
|
-
.sc(GetSearchJob)
|
|
781
|
+
.sc(GetSearchJob$)
|
|
782
782
|
.build() {
|
|
783
783
|
}
|
|
784
784
|
|
|
@@ -790,7 +790,7 @@ class GetSearchResultExportJobCommand extends smithyClient.Command
|
|
|
790
790
|
})
|
|
791
791
|
.s("CryoBackupSearchService", "GetSearchResultExportJob", {})
|
|
792
792
|
.n("BackupSearchClient", "GetSearchResultExportJobCommand")
|
|
793
|
-
.sc(GetSearchResultExportJob)
|
|
793
|
+
.sc(GetSearchResultExportJob$)
|
|
794
794
|
.build() {
|
|
795
795
|
}
|
|
796
796
|
|
|
@@ -802,7 +802,7 @@ class ListSearchJobBackupsCommand extends smithyClient.Command
|
|
|
802
802
|
})
|
|
803
803
|
.s("CryoBackupSearchService", "ListSearchJobBackups", {})
|
|
804
804
|
.n("BackupSearchClient", "ListSearchJobBackupsCommand")
|
|
805
|
-
.sc(ListSearchJobBackups)
|
|
805
|
+
.sc(ListSearchJobBackups$)
|
|
806
806
|
.build() {
|
|
807
807
|
}
|
|
808
808
|
|
|
@@ -814,7 +814,7 @@ class ListSearchJobResultsCommand extends smithyClient.Command
|
|
|
814
814
|
})
|
|
815
815
|
.s("CryoBackupSearchService", "ListSearchJobResults", {})
|
|
816
816
|
.n("BackupSearchClient", "ListSearchJobResultsCommand")
|
|
817
|
-
.sc(ListSearchJobResults)
|
|
817
|
+
.sc(ListSearchJobResults$)
|
|
818
818
|
.build() {
|
|
819
819
|
}
|
|
820
820
|
|
|
@@ -826,7 +826,7 @@ class ListSearchJobsCommand extends smithyClient.Command
|
|
|
826
826
|
})
|
|
827
827
|
.s("CryoBackupSearchService", "ListSearchJobs", {})
|
|
828
828
|
.n("BackupSearchClient", "ListSearchJobsCommand")
|
|
829
|
-
.sc(ListSearchJobs)
|
|
829
|
+
.sc(ListSearchJobs$)
|
|
830
830
|
.build() {
|
|
831
831
|
}
|
|
832
832
|
|
|
@@ -838,7 +838,7 @@ class ListSearchResultExportJobsCommand extends smithyClient.Command
|
|
|
838
838
|
})
|
|
839
839
|
.s("CryoBackupSearchService", "ListSearchResultExportJobs", {})
|
|
840
840
|
.n("BackupSearchClient", "ListSearchResultExportJobsCommand")
|
|
841
|
-
.sc(ListSearchResultExportJobs)
|
|
841
|
+
.sc(ListSearchResultExportJobs$)
|
|
842
842
|
.build() {
|
|
843
843
|
}
|
|
844
844
|
|
|
@@ -850,7 +850,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
850
850
|
})
|
|
851
851
|
.s("CryoBackupSearchService", "ListTagsForResource", {})
|
|
852
852
|
.n("BackupSearchClient", "ListTagsForResourceCommand")
|
|
853
|
-
.sc(ListTagsForResource)
|
|
853
|
+
.sc(ListTagsForResource$)
|
|
854
854
|
.build() {
|
|
855
855
|
}
|
|
856
856
|
|
|
@@ -862,7 +862,7 @@ class StartSearchJobCommand extends smithyClient.Command
|
|
|
862
862
|
})
|
|
863
863
|
.s("CryoBackupSearchService", "StartSearchJob", {})
|
|
864
864
|
.n("BackupSearchClient", "StartSearchJobCommand")
|
|
865
|
-
.sc(StartSearchJob)
|
|
865
|
+
.sc(StartSearchJob$)
|
|
866
866
|
.build() {
|
|
867
867
|
}
|
|
868
868
|
|
|
@@ -874,7 +874,7 @@ class StartSearchResultExportJobCommand extends smithyClient.Command
|
|
|
874
874
|
})
|
|
875
875
|
.s("CryoBackupSearchService", "StartSearchResultExportJob", {})
|
|
876
876
|
.n("BackupSearchClient", "StartSearchResultExportJobCommand")
|
|
877
|
-
.sc(StartSearchResultExportJob)
|
|
877
|
+
.sc(StartSearchResultExportJob$)
|
|
878
878
|
.build() {
|
|
879
879
|
}
|
|
880
880
|
|
|
@@ -886,7 +886,7 @@ class StopSearchJobCommand extends smithyClient.Command
|
|
|
886
886
|
})
|
|
887
887
|
.s("CryoBackupSearchService", "StopSearchJob", {})
|
|
888
888
|
.n("BackupSearchClient", "StopSearchJobCommand")
|
|
889
|
-
.sc(StopSearchJob)
|
|
889
|
+
.sc(StopSearchJob$)
|
|
890
890
|
.build() {
|
|
891
891
|
}
|
|
892
892
|
|
|
@@ -898,7 +898,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
898
898
|
})
|
|
899
899
|
.s("CryoBackupSearchService", "TagResource", {})
|
|
900
900
|
.n("BackupSearchClient", "TagResourceCommand")
|
|
901
|
-
.sc(TagResource)
|
|
901
|
+
.sc(TagResource$)
|
|
902
902
|
.build() {
|
|
903
903
|
}
|
|
904
904
|
|
|
@@ -910,7 +910,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
910
910
|
})
|
|
911
911
|
.s("CryoBackupSearchService", "UntagResource", {})
|
|
912
912
|
.n("BackupSearchClient", "UntagResourceCommand")
|
|
913
|
-
.sc(UntagResource)
|
|
913
|
+
.sc(UntagResource$)
|
|
914
914
|
.build() {
|
|
915
915
|
}
|
|
916
916
|
|
|
@@ -987,34 +987,96 @@ Object.defineProperty(exports, "__Client", {
|
|
|
987
987
|
enumerable: true,
|
|
988
988
|
get: function () { return smithyClient.Client; }
|
|
989
989
|
});
|
|
990
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
990
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
991
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
992
|
+
exports.BackupCreationTimeFilter$ = BackupCreationTimeFilter$;
|
|
991
993
|
exports.BackupSearch = BackupSearch;
|
|
992
994
|
exports.BackupSearchClient = BackupSearchClient;
|
|
993
|
-
exports.BackupSearchServiceException = BackupSearchServiceException
|
|
994
|
-
exports.
|
|
995
|
+
exports.BackupSearchServiceException = BackupSearchServiceException;
|
|
996
|
+
exports.BackupSearchServiceException$ = BackupSearchServiceException$;
|
|
997
|
+
exports.ConflictException = ConflictException;
|
|
998
|
+
exports.ConflictException$ = ConflictException$;
|
|
999
|
+
exports.CurrentSearchProgress$ = CurrentSearchProgress$;
|
|
1000
|
+
exports.EBSItemFilter$ = EBSItemFilter$;
|
|
1001
|
+
exports.EBSResultItem$ = EBSResultItem$;
|
|
995
1002
|
exports.ExportJobStatus = ExportJobStatus;
|
|
1003
|
+
exports.ExportJobSummary$ = ExportJobSummary$;
|
|
1004
|
+
exports.ExportSpecification$ = ExportSpecification$;
|
|
1005
|
+
exports.GetSearchJob$ = GetSearchJob$;
|
|
996
1006
|
exports.GetSearchJobCommand = GetSearchJobCommand;
|
|
1007
|
+
exports.GetSearchJobInput$ = GetSearchJobInput$;
|
|
1008
|
+
exports.GetSearchJobOutput$ = GetSearchJobOutput$;
|
|
1009
|
+
exports.GetSearchResultExportJob$ = GetSearchResultExportJob$;
|
|
997
1010
|
exports.GetSearchResultExportJobCommand = GetSearchResultExportJobCommand;
|
|
998
|
-
exports.
|
|
1011
|
+
exports.GetSearchResultExportJobInput$ = GetSearchResultExportJobInput$;
|
|
1012
|
+
exports.GetSearchResultExportJobOutput$ = GetSearchResultExportJobOutput$;
|
|
1013
|
+
exports.InternalServerException = InternalServerException;
|
|
1014
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1015
|
+
exports.ItemFilters$ = ItemFilters$;
|
|
1016
|
+
exports.ListSearchJobBackups$ = ListSearchJobBackups$;
|
|
999
1017
|
exports.ListSearchJobBackupsCommand = ListSearchJobBackupsCommand;
|
|
1018
|
+
exports.ListSearchJobBackupsInput$ = ListSearchJobBackupsInput$;
|
|
1019
|
+
exports.ListSearchJobBackupsOutput$ = ListSearchJobBackupsOutput$;
|
|
1020
|
+
exports.ListSearchJobResults$ = ListSearchJobResults$;
|
|
1000
1021
|
exports.ListSearchJobResultsCommand = ListSearchJobResultsCommand;
|
|
1022
|
+
exports.ListSearchJobResultsInput$ = ListSearchJobResultsInput$;
|
|
1023
|
+
exports.ListSearchJobResultsOutput$ = ListSearchJobResultsOutput$;
|
|
1024
|
+
exports.ListSearchJobs$ = ListSearchJobs$;
|
|
1001
1025
|
exports.ListSearchJobsCommand = ListSearchJobsCommand;
|
|
1026
|
+
exports.ListSearchJobsInput$ = ListSearchJobsInput$;
|
|
1027
|
+
exports.ListSearchJobsOutput$ = ListSearchJobsOutput$;
|
|
1028
|
+
exports.ListSearchResultExportJobs$ = ListSearchResultExportJobs$;
|
|
1002
1029
|
exports.ListSearchResultExportJobsCommand = ListSearchResultExportJobsCommand;
|
|
1030
|
+
exports.ListSearchResultExportJobsInput$ = ListSearchResultExportJobsInput$;
|
|
1031
|
+
exports.ListSearchResultExportJobsOutput$ = ListSearchResultExportJobsOutput$;
|
|
1032
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1003
1033
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1034
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1035
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1036
|
+
exports.LongCondition$ = LongCondition$;
|
|
1004
1037
|
exports.LongConditionOperator = LongConditionOperator;
|
|
1005
|
-
exports.ResourceNotFoundException = ResourceNotFoundException
|
|
1038
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1039
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1006
1040
|
exports.ResourceType = ResourceType;
|
|
1041
|
+
exports.ResultItem$ = ResultItem$;
|
|
1042
|
+
exports.S3ExportSpecification$ = S3ExportSpecification$;
|
|
1043
|
+
exports.S3ItemFilter$ = S3ItemFilter$;
|
|
1044
|
+
exports.S3ResultItem$ = S3ResultItem$;
|
|
1045
|
+
exports.SearchJobBackupsResult$ = SearchJobBackupsResult$;
|
|
1007
1046
|
exports.SearchJobState = SearchJobState;
|
|
1008
|
-
exports.
|
|
1047
|
+
exports.SearchJobSummary$ = SearchJobSummary$;
|
|
1048
|
+
exports.SearchScope$ = SearchScope$;
|
|
1049
|
+
exports.SearchScopeSummary$ = SearchScopeSummary$;
|
|
1050
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1051
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1052
|
+
exports.StartSearchJob$ = StartSearchJob$;
|
|
1009
1053
|
exports.StartSearchJobCommand = StartSearchJobCommand;
|
|
1054
|
+
exports.StartSearchJobInput$ = StartSearchJobInput$;
|
|
1055
|
+
exports.StartSearchJobOutput$ = StartSearchJobOutput$;
|
|
1056
|
+
exports.StartSearchResultExportJob$ = StartSearchResultExportJob$;
|
|
1010
1057
|
exports.StartSearchResultExportJobCommand = StartSearchResultExportJobCommand;
|
|
1058
|
+
exports.StartSearchResultExportJobInput$ = StartSearchResultExportJobInput$;
|
|
1059
|
+
exports.StartSearchResultExportJobOutput$ = StartSearchResultExportJobOutput$;
|
|
1060
|
+
exports.StopSearchJob$ = StopSearchJob$;
|
|
1011
1061
|
exports.StopSearchJobCommand = StopSearchJobCommand;
|
|
1062
|
+
exports.StopSearchJobInput$ = StopSearchJobInput$;
|
|
1063
|
+
exports.StopSearchJobOutput$ = StopSearchJobOutput$;
|
|
1064
|
+
exports.StringCondition$ = StringCondition$;
|
|
1012
1065
|
exports.StringConditionOperator = StringConditionOperator;
|
|
1066
|
+
exports.TagResource$ = TagResource$;
|
|
1013
1067
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1014
|
-
exports.
|
|
1068
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1069
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1070
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1071
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1072
|
+
exports.TimeCondition$ = TimeCondition$;
|
|
1015
1073
|
exports.TimeConditionOperator = TimeConditionOperator;
|
|
1074
|
+
exports.UntagResource$ = UntagResource$;
|
|
1016
1075
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1017
|
-
exports.
|
|
1076
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1077
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1078
|
+
exports.ValidationException = ValidationException;
|
|
1079
|
+
exports.ValidationException$ = ValidationException$;
|
|
1018
1080
|
exports.paginateListSearchJobBackups = paginateListSearchJobBackups;
|
|
1019
1081
|
exports.paginateListSearchJobResults = paginateListSearchJobResults;
|
|
1020
1082
|
exports.paginateListSearchJobs = paginateListSearchJobs;
|