@aws-sdk/client-backupsearch 3.714.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.
Files changed (151) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +317 -0
  3. package/dist-cjs/BackupSearch.js +35 -0
  4. package/dist-cjs/BackupSearchClient.js +50 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/GetSearchJobCommand.js +26 -0
  8. package/dist-cjs/commands/GetSearchResultExportJobCommand.js +26 -0
  9. package/dist-cjs/commands/ListSearchJobBackupsCommand.js +26 -0
  10. package/dist-cjs/commands/ListSearchJobResultsCommand.js +27 -0
  11. package/dist-cjs/commands/ListSearchJobsCommand.js +26 -0
  12. package/dist-cjs/commands/ListSearchResultExportJobsCommand.js +26 -0
  13. package/dist-cjs/commands/ListTagsForResourceCommand.js +26 -0
  14. package/dist-cjs/commands/StartSearchJobCommand.js +26 -0
  15. package/dist-cjs/commands/StartSearchResultExportJobCommand.js +26 -0
  16. package/dist-cjs/commands/StopSearchJobCommand.js +26 -0
  17. package/dist-cjs/commands/TagResourceCommand.js +26 -0
  18. package/dist-cjs/commands/UntagResourceCommand.js +26 -0
  19. package/dist-cjs/commands/index.js +15 -0
  20. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  21. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  22. package/dist-cjs/endpoint/ruleset.js +7 -0
  23. package/dist-cjs/extensionConfiguration.js +2 -0
  24. package/dist-cjs/index.js +11 -0
  25. package/dist-cjs/models/BackupSearchServiceException.js +12 -0
  26. package/dist-cjs/models/index.js +4 -0
  27. package/dist-cjs/models/models_0.js +192 -0
  28. package/dist-cjs/pagination/Interfaces.js +2 -0
  29. package/dist-cjs/pagination/ListSearchJobBackupsPaginator.js +7 -0
  30. package/dist-cjs/pagination/ListSearchJobResultsPaginator.js +7 -0
  31. package/dist-cjs/pagination/ListSearchJobsPaginator.js +7 -0
  32. package/dist-cjs/pagination/ListSearchResultExportJobsPaginator.js +7 -0
  33. package/dist-cjs/pagination/index.js +8 -0
  34. package/dist-cjs/protocols/Aws_restJson1.js +780 -0
  35. package/dist-cjs/runtimeConfig.browser.js +39 -0
  36. package/dist-cjs/runtimeConfig.js +52 -0
  37. package/dist-cjs/runtimeConfig.native.js +15 -0
  38. package/dist-cjs/runtimeConfig.shared.js +34 -0
  39. package/dist-cjs/runtimeExtensions.js +25 -0
  40. package/dist-es/BackupSearch.js +31 -0
  41. package/dist-es/BackupSearchClient.js +46 -0
  42. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  43. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  44. package/dist-es/commands/GetSearchJobCommand.js +22 -0
  45. package/dist-es/commands/GetSearchResultExportJobCommand.js +22 -0
  46. package/dist-es/commands/ListSearchJobBackupsCommand.js +22 -0
  47. package/dist-es/commands/ListSearchJobResultsCommand.js +23 -0
  48. package/dist-es/commands/ListSearchJobsCommand.js +22 -0
  49. package/dist-es/commands/ListSearchResultExportJobsCommand.js +22 -0
  50. package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  51. package/dist-es/commands/StartSearchJobCommand.js +22 -0
  52. package/dist-es/commands/StartSearchResultExportJobCommand.js +22 -0
  53. package/dist-es/commands/StopSearchJobCommand.js +22 -0
  54. package/dist-es/commands/TagResourceCommand.js +22 -0
  55. package/dist-es/commands/UntagResourceCommand.js +22 -0
  56. package/dist-es/commands/index.js +12 -0
  57. package/dist-es/endpoint/EndpointParameters.js +12 -0
  58. package/dist-es/endpoint/endpointResolver.js +14 -0
  59. package/dist-es/endpoint/ruleset.js +4 -0
  60. package/dist-es/extensionConfiguration.js +1 -0
  61. package/dist-es/index.js +6 -0
  62. package/dist-es/models/BackupSearchServiceException.js +8 -0
  63. package/dist-es/models/index.js +1 -0
  64. package/dist-es/models/models_0.js +178 -0
  65. package/dist-es/pagination/Interfaces.js +1 -0
  66. package/dist-es/pagination/ListSearchJobBackupsPaginator.js +4 -0
  67. package/dist-es/pagination/ListSearchJobResultsPaginator.js +4 -0
  68. package/dist-es/pagination/ListSearchJobsPaginator.js +4 -0
  69. package/dist-es/pagination/ListSearchResultExportJobsPaginator.js +4 -0
  70. package/dist-es/pagination/index.js +5 -0
  71. package/dist-es/protocols/Aws_restJson1.js +753 -0
  72. package/dist-es/runtimeConfig.browser.js +34 -0
  73. package/dist-es/runtimeConfig.js +47 -0
  74. package/dist-es/runtimeConfig.native.js +11 -0
  75. package/dist-es/runtimeConfig.shared.js +30 -0
  76. package/dist-es/runtimeExtensions.js +21 -0
  77. package/dist-types/BackupSearch.d.ts +111 -0
  78. package/dist-types/BackupSearchClient.d.ts +214 -0
  79. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  80. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  81. package/dist-types/commands/GetSearchJobCommand.d.ts +187 -0
  82. package/dist-types/commands/GetSearchResultExportJobCommand.d.ts +105 -0
  83. package/dist-types/commands/ListSearchJobBackupsCommand.d.ts +113 -0
  84. package/dist-types/commands/ListSearchJobResultsCommand.d.ts +114 -0
  85. package/dist-types/commands/ListSearchJobsCommand.d.ts +101 -0
  86. package/dist-types/commands/ListSearchResultExportJobsCommand.d.ts +106 -0
  87. package/dist-types/commands/ListTagsForResourceCommand.d.ts +90 -0
  88. package/dist-types/commands/StartSearchJobCommand.d.ts +187 -0
  89. package/dist-types/commands/StartSearchResultExportJobCommand.d.ts +112 -0
  90. package/dist-types/commands/StopSearchJobCommand.d.ts +96 -0
  91. package/dist-types/commands/TagResourceCommand.d.ts +89 -0
  92. package/dist-types/commands/UntagResourceCommand.d.ts +89 -0
  93. package/dist-types/commands/index.d.ts +12 -0
  94. package/dist-types/endpoint/EndpointParameters.d.ts +34 -0
  95. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  96. package/dist-types/endpoint/ruleset.d.ts +2 -0
  97. package/dist-types/extensionConfiguration.d.ts +9 -0
  98. package/dist-types/index.d.ts +29 -0
  99. package/dist-types/models/BackupSearchServiceException.d.ts +14 -0
  100. package/dist-types/models/index.d.ts +1 -0
  101. package/dist-types/models/models_0.d.ts +1535 -0
  102. package/dist-types/pagination/Interfaces.d.ts +8 -0
  103. package/dist-types/pagination/ListSearchJobBackupsPaginator.d.ts +7 -0
  104. package/dist-types/pagination/ListSearchJobResultsPaginator.d.ts +7 -0
  105. package/dist-types/pagination/ListSearchJobsPaginator.d.ts +7 -0
  106. package/dist-types/pagination/ListSearchResultExportJobsPaginator.d.ts +7 -0
  107. package/dist-types/pagination/index.d.ts +5 -0
  108. package/dist-types/protocols/Aws_restJson1.d.ts +110 -0
  109. package/dist-types/runtimeConfig.browser.d.ts +49 -0
  110. package/dist-types/runtimeConfig.d.ts +49 -0
  111. package/dist-types/runtimeConfig.native.d.ts +48 -0
  112. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  113. package/dist-types/runtimeExtensions.d.ts +17 -0
  114. package/dist-types/ts3.4/BackupSearch.d.ts +213 -0
  115. package/dist-types/ts3.4/BackupSearchClient.d.ts +192 -0
  116. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  117. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  118. package/dist-types/ts3.4/commands/GetSearchJobCommand.d.ts +47 -0
  119. package/dist-types/ts3.4/commands/GetSearchResultExportJobCommand.d.ts +51 -0
  120. package/dist-types/ts3.4/commands/ListSearchJobBackupsCommand.d.ts +51 -0
  121. package/dist-types/ts3.4/commands/ListSearchJobResultsCommand.d.ts +51 -0
  122. package/dist-types/ts3.4/commands/ListSearchJobsCommand.d.ts +47 -0
  123. package/dist-types/ts3.4/commands/ListSearchResultExportJobsCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  125. package/dist-types/ts3.4/commands/StartSearchJobCommand.d.ts +47 -0
  126. package/dist-types/ts3.4/commands/StartSearchResultExportJobCommand.d.ts +51 -0
  127. package/dist-types/ts3.4/commands/StopSearchJobCommand.d.ts +47 -0
  128. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  129. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  130. package/dist-types/ts3.4/commands/index.d.ts +12 -0
  131. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  132. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  133. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  134. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  135. package/dist-types/ts3.4/index.d.ts +9 -0
  136. package/dist-types/ts3.4/models/BackupSearchServiceException.d.ts +9 -0
  137. package/dist-types/ts3.4/models/index.d.ts +1 -0
  138. package/dist-types/ts3.4/models/models_0.d.ts +379 -0
  139. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  140. package/dist-types/ts3.4/pagination/ListSearchJobBackupsPaginator.d.ts +11 -0
  141. package/dist-types/ts3.4/pagination/ListSearchJobResultsPaginator.d.ts +11 -0
  142. package/dist-types/ts3.4/pagination/ListSearchJobsPaginator.d.ts +11 -0
  143. package/dist-types/ts3.4/pagination/ListSearchResultExportJobsPaginator.d.ts +11 -0
  144. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  145. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -0
  146. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +94 -0
  147. package/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
  148. package/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
  149. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  150. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  151. package/package.json +101 -0
@@ -0,0 +1,192 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListSearchJobResultsOutputFilterSensitiveLog = exports.ResultItemFilterSensitiveLog = exports.S3ResultItemFilterSensitiveLog = exports.EBSResultItemFilterSensitiveLog = exports.ExportSpecification = exports.ExportJobStatus = exports.ServiceQuotaExceededException = exports.LongConditionOperator = exports.StringConditionOperator = exports.TimeConditionOperator = exports.ResultItem = exports.ValidationException = exports.ThrottlingException = exports.ResourceNotFoundException = exports.SearchJobState = exports.ResourceType = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = void 0;
4
+ const smithy_client_1 = require("@smithy/smithy-client");
5
+ const BackupSearchServiceException_1 = require("./BackupSearchServiceException");
6
+ class AccessDeniedException extends BackupSearchServiceException_1.BackupSearchServiceException {
7
+ constructor(opts) {
8
+ super({
9
+ name: "AccessDeniedException",
10
+ $fault: "client",
11
+ ...opts,
12
+ });
13
+ this.name = "AccessDeniedException";
14
+ this.$fault = "client";
15
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
16
+ }
17
+ }
18
+ exports.AccessDeniedException = AccessDeniedException;
19
+ class ConflictException extends BackupSearchServiceException_1.BackupSearchServiceException {
20
+ constructor(opts) {
21
+ super({
22
+ name: "ConflictException",
23
+ $fault: "client",
24
+ ...opts,
25
+ });
26
+ this.name = "ConflictException";
27
+ this.$fault = "client";
28
+ Object.setPrototypeOf(this, ConflictException.prototype);
29
+ this.resourceId = opts.resourceId;
30
+ this.resourceType = opts.resourceType;
31
+ }
32
+ }
33
+ exports.ConflictException = ConflictException;
34
+ class InternalServerException extends BackupSearchServiceException_1.BackupSearchServiceException {
35
+ constructor(opts) {
36
+ super({
37
+ name: "InternalServerException",
38
+ $fault: "server",
39
+ ...opts,
40
+ });
41
+ this.name = "InternalServerException";
42
+ this.$fault = "server";
43
+ this.$retryable = {};
44
+ Object.setPrototypeOf(this, InternalServerException.prototype);
45
+ this.retryAfterSeconds = opts.retryAfterSeconds;
46
+ }
47
+ }
48
+ exports.InternalServerException = InternalServerException;
49
+ exports.ResourceType = {
50
+ EBS: "EBS",
51
+ S3: "S3",
52
+ };
53
+ exports.SearchJobState = {
54
+ COMPLETED: "COMPLETED",
55
+ FAILED: "FAILED",
56
+ RUNNING: "RUNNING",
57
+ STOPPED: "STOPPED",
58
+ STOPPING: "STOPPING",
59
+ };
60
+ class ResourceNotFoundException extends BackupSearchServiceException_1.BackupSearchServiceException {
61
+ constructor(opts) {
62
+ super({
63
+ name: "ResourceNotFoundException",
64
+ $fault: "client",
65
+ ...opts,
66
+ });
67
+ this.name = "ResourceNotFoundException";
68
+ this.$fault = "client";
69
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
70
+ this.resourceId = opts.resourceId;
71
+ this.resourceType = opts.resourceType;
72
+ }
73
+ }
74
+ exports.ResourceNotFoundException = ResourceNotFoundException;
75
+ class ThrottlingException extends BackupSearchServiceException_1.BackupSearchServiceException {
76
+ constructor(opts) {
77
+ super({
78
+ name: "ThrottlingException",
79
+ $fault: "client",
80
+ ...opts,
81
+ });
82
+ this.name = "ThrottlingException";
83
+ this.$fault = "client";
84
+ this.$retryable = {
85
+ throttling: true,
86
+ };
87
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
88
+ this.serviceCode = opts.serviceCode;
89
+ this.quotaCode = opts.quotaCode;
90
+ this.retryAfterSeconds = opts.retryAfterSeconds;
91
+ }
92
+ }
93
+ exports.ThrottlingException = ThrottlingException;
94
+ class ValidationException extends BackupSearchServiceException_1.BackupSearchServiceException {
95
+ constructor(opts) {
96
+ super({
97
+ name: "ValidationException",
98
+ $fault: "client",
99
+ ...opts,
100
+ });
101
+ this.name = "ValidationException";
102
+ this.$fault = "client";
103
+ Object.setPrototypeOf(this, ValidationException.prototype);
104
+ }
105
+ }
106
+ exports.ValidationException = ValidationException;
107
+ var ResultItem;
108
+ (function (ResultItem) {
109
+ ResultItem.visit = (value, visitor) => {
110
+ if (value.S3ResultItem !== undefined)
111
+ return visitor.S3ResultItem(value.S3ResultItem);
112
+ if (value.EBSResultItem !== undefined)
113
+ return visitor.EBSResultItem(value.EBSResultItem);
114
+ return visitor._(value.$unknown[0], value.$unknown[1]);
115
+ };
116
+ })(ResultItem = exports.ResultItem || (exports.ResultItem = {}));
117
+ exports.TimeConditionOperator = {
118
+ EQUALS_TO: "EQUALS_TO",
119
+ GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO",
120
+ LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO",
121
+ NOT_EQUALS_TO: "NOT_EQUALS_TO",
122
+ };
123
+ exports.StringConditionOperator = {
124
+ BEGINS_WITH: "BEGINS_WITH",
125
+ CONTAINS: "CONTAINS",
126
+ DOES_NOT_BEGIN_WITH: "DOES_NOT_BEGIN_WITH",
127
+ DOES_NOT_CONTAIN: "DOES_NOT_CONTAIN",
128
+ DOES_NOT_END_WITH: "DOES_NOT_END_WITH",
129
+ ENDS_WITH: "ENDS_WITH",
130
+ EQUALS_TO: "EQUALS_TO",
131
+ NOT_EQUALS_TO: "NOT_EQUALS_TO",
132
+ };
133
+ exports.LongConditionOperator = {
134
+ EQUALS_TO: "EQUALS_TO",
135
+ GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO",
136
+ LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO",
137
+ NOT_EQUALS_TO: "NOT_EQUALS_TO",
138
+ };
139
+ class ServiceQuotaExceededException extends BackupSearchServiceException_1.BackupSearchServiceException {
140
+ constructor(opts) {
141
+ super({
142
+ name: "ServiceQuotaExceededException",
143
+ $fault: "client",
144
+ ...opts,
145
+ });
146
+ this.name = "ServiceQuotaExceededException";
147
+ this.$fault = "client";
148
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
149
+ this.resourceId = opts.resourceId;
150
+ this.resourceType = opts.resourceType;
151
+ this.serviceCode = opts.serviceCode;
152
+ this.quotaCode = opts.quotaCode;
153
+ }
154
+ }
155
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
156
+ exports.ExportJobStatus = {
157
+ COMPLETED: "COMPLETED",
158
+ FAILED: "FAILED",
159
+ RUNNING: "RUNNING",
160
+ };
161
+ var ExportSpecification;
162
+ (function (ExportSpecification) {
163
+ ExportSpecification.visit = (value, visitor) => {
164
+ if (value.s3ExportSpecification !== undefined)
165
+ return visitor.s3ExportSpecification(value.s3ExportSpecification);
166
+ return visitor._(value.$unknown[0], value.$unknown[1]);
167
+ };
168
+ })(ExportSpecification = exports.ExportSpecification || (exports.ExportSpecification = {}));
169
+ const EBSResultItemFilterSensitiveLog = (obj) => ({
170
+ ...obj,
171
+ ...(obj.FilePath && { FilePath: smithy_client_1.SENSITIVE_STRING }),
172
+ });
173
+ exports.EBSResultItemFilterSensitiveLog = EBSResultItemFilterSensitiveLog;
174
+ const S3ResultItemFilterSensitiveLog = (obj) => ({
175
+ ...obj,
176
+ ...(obj.ObjectKey && { ObjectKey: smithy_client_1.SENSITIVE_STRING }),
177
+ });
178
+ exports.S3ResultItemFilterSensitiveLog = S3ResultItemFilterSensitiveLog;
179
+ const ResultItemFilterSensitiveLog = (obj) => {
180
+ if (obj.S3ResultItem !== undefined)
181
+ return { S3ResultItem: (0, exports.S3ResultItemFilterSensitiveLog)(obj.S3ResultItem) };
182
+ if (obj.EBSResultItem !== undefined)
183
+ return { EBSResultItem: (0, exports.EBSResultItemFilterSensitiveLog)(obj.EBSResultItem) };
184
+ if (obj.$unknown !== undefined)
185
+ return { [obj.$unknown[0]]: "UNKNOWN" };
186
+ };
187
+ exports.ResultItemFilterSensitiveLog = ResultItemFilterSensitiveLog;
188
+ const ListSearchJobResultsOutputFilterSensitiveLog = (obj) => ({
189
+ ...obj,
190
+ ...(obj.Results && { Results: obj.Results.map((item) => (0, exports.ResultItemFilterSensitiveLog)(item)) }),
191
+ });
192
+ exports.ListSearchJobResultsOutputFilterSensitiveLog = ListSearchJobResultsOutputFilterSensitiveLog;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListSearchJobBackups = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const BackupSearchClient_1 = require("../BackupSearchClient");
6
+ const ListSearchJobBackupsCommand_1 = require("../commands/ListSearchJobBackupsCommand");
7
+ exports.paginateListSearchJobBackups = (0, core_1.createPaginator)(BackupSearchClient_1.BackupSearchClient, ListSearchJobBackupsCommand_1.ListSearchJobBackupsCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListSearchJobResults = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const BackupSearchClient_1 = require("../BackupSearchClient");
6
+ const ListSearchJobResultsCommand_1 = require("../commands/ListSearchJobResultsCommand");
7
+ exports.paginateListSearchJobResults = (0, core_1.createPaginator)(BackupSearchClient_1.BackupSearchClient, ListSearchJobResultsCommand_1.ListSearchJobResultsCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListSearchJobs = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const BackupSearchClient_1 = require("../BackupSearchClient");
6
+ const ListSearchJobsCommand_1 = require("../commands/ListSearchJobsCommand");
7
+ exports.paginateListSearchJobs = (0, core_1.createPaginator)(BackupSearchClient_1.BackupSearchClient, ListSearchJobsCommand_1.ListSearchJobsCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListSearchResultExportJobs = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const BackupSearchClient_1 = require("../BackupSearchClient");
6
+ const ListSearchResultExportJobsCommand_1 = require("../commands/ListSearchResultExportJobsCommand");
7
+ exports.paginateListSearchResultExportJobs = (0, core_1.createPaginator)(BackupSearchClient_1.BackupSearchClient, ListSearchResultExportJobsCommand_1.ListSearchResultExportJobsCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./Interfaces"), exports);
5
+ tslib_1.__exportStar(require("./ListSearchJobBackupsPaginator"), exports);
6
+ tslib_1.__exportStar(require("./ListSearchJobResultsPaginator"), exports);
7
+ tslib_1.__exportStar(require("./ListSearchJobsPaginator"), exports);
8
+ tslib_1.__exportStar(require("./ListSearchResultExportJobsPaginator"), exports);