@aws-sdk/client-sqs 3.1067.0 → 3.1069.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/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +118 -138
- package/dist-cjs/models/SQSServiceException.js +4 -8
- package/dist-cjs/models/errors.js +57 -88
- package/dist-cjs/runtimeConfig.browser.js +24 -28
- package/dist-cjs/runtimeConfig.js +31 -35
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +222 -150
- package/package.json +15 -15
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.BatchRequestTooLong = exports.InvalidMessageContents = exports.KmsThrottled = exports.KmsOptInRequired = exports.KmsNotFound = exports.KmsInvalidState = exports.KmsInvalidKeyUsage = exports.KmsDisabled = exports.KmsAccessDenied = exports.PurgeQueueInProgress = exports.InvalidIdFormat = exports.QueueNameExists = exports.QueueDeletedRecently = exports.InvalidAttributeValue = exports.InvalidAttributeName = exports.TooManyEntriesInBatchRequest = exports.InvalidBatchEntryId = exports.EmptyBatchRequest = exports.BatchEntryIdsNotDistinct = exports.ReceiptHandleIsInvalid = exports.MessageNotInflight = exports.ResourceNotFoundException = exports.UnsupportedOperation = exports.RequestThrottled = exports.QueueDoesNotExist = exports.OverLimit = exports.InvalidSecurity = exports.InvalidAddress = void 0;
|
|
4
|
-
const SQSServiceException_1 = require("./SQSServiceException");
|
|
5
|
-
class InvalidAddress extends SQSServiceException_1.SQSServiceException {
|
|
1
|
+
const { SQSServiceException: __BaseException } = require("./SQSServiceException");
|
|
2
|
+
exports.InvalidAddress = class InvalidAddress extends __BaseException {
|
|
6
3
|
name = "InvalidAddress";
|
|
7
4
|
$fault = "client";
|
|
8
5
|
constructor(opts) {
|
|
@@ -13,9 +10,8 @@ class InvalidAddress extends SQSServiceException_1.SQSServiceException {
|
|
|
13
10
|
});
|
|
14
11
|
Object.setPrototypeOf(this, InvalidAddress.prototype);
|
|
15
12
|
}
|
|
16
|
-
}
|
|
17
|
-
exports.
|
|
18
|
-
class InvalidSecurity extends SQSServiceException_1.SQSServiceException {
|
|
13
|
+
};
|
|
14
|
+
exports.InvalidSecurity = class InvalidSecurity extends __BaseException {
|
|
19
15
|
name = "InvalidSecurity";
|
|
20
16
|
$fault = "client";
|
|
21
17
|
constructor(opts) {
|
|
@@ -26,9 +22,8 @@ class InvalidSecurity extends SQSServiceException_1.SQSServiceException {
|
|
|
26
22
|
});
|
|
27
23
|
Object.setPrototypeOf(this, InvalidSecurity.prototype);
|
|
28
24
|
}
|
|
29
|
-
}
|
|
30
|
-
exports.
|
|
31
|
-
class OverLimit extends SQSServiceException_1.SQSServiceException {
|
|
25
|
+
};
|
|
26
|
+
exports.OverLimit = class OverLimit extends __BaseException {
|
|
32
27
|
name = "OverLimit";
|
|
33
28
|
$fault = "client";
|
|
34
29
|
constructor(opts) {
|
|
@@ -39,9 +34,8 @@ class OverLimit extends SQSServiceException_1.SQSServiceException {
|
|
|
39
34
|
});
|
|
40
35
|
Object.setPrototypeOf(this, OverLimit.prototype);
|
|
41
36
|
}
|
|
42
|
-
}
|
|
43
|
-
exports.
|
|
44
|
-
class QueueDoesNotExist extends SQSServiceException_1.SQSServiceException {
|
|
37
|
+
};
|
|
38
|
+
exports.QueueDoesNotExist = class QueueDoesNotExist extends __BaseException {
|
|
45
39
|
name = "QueueDoesNotExist";
|
|
46
40
|
$fault = "client";
|
|
47
41
|
constructor(opts) {
|
|
@@ -52,9 +46,8 @@ class QueueDoesNotExist extends SQSServiceException_1.SQSServiceException {
|
|
|
52
46
|
});
|
|
53
47
|
Object.setPrototypeOf(this, QueueDoesNotExist.prototype);
|
|
54
48
|
}
|
|
55
|
-
}
|
|
56
|
-
exports.
|
|
57
|
-
class RequestThrottled extends SQSServiceException_1.SQSServiceException {
|
|
49
|
+
};
|
|
50
|
+
exports.RequestThrottled = class RequestThrottled extends __BaseException {
|
|
58
51
|
name = "RequestThrottled";
|
|
59
52
|
$fault = "client";
|
|
60
53
|
constructor(opts) {
|
|
@@ -65,9 +58,8 @@ class RequestThrottled extends SQSServiceException_1.SQSServiceException {
|
|
|
65
58
|
});
|
|
66
59
|
Object.setPrototypeOf(this, RequestThrottled.prototype);
|
|
67
60
|
}
|
|
68
|
-
}
|
|
69
|
-
exports.
|
|
70
|
-
class UnsupportedOperation extends SQSServiceException_1.SQSServiceException {
|
|
61
|
+
};
|
|
62
|
+
exports.UnsupportedOperation = class UnsupportedOperation extends __BaseException {
|
|
71
63
|
name = "UnsupportedOperation";
|
|
72
64
|
$fault = "client";
|
|
73
65
|
constructor(opts) {
|
|
@@ -78,9 +70,8 @@ class UnsupportedOperation extends SQSServiceException_1.SQSServiceException {
|
|
|
78
70
|
});
|
|
79
71
|
Object.setPrototypeOf(this, UnsupportedOperation.prototype);
|
|
80
72
|
}
|
|
81
|
-
}
|
|
82
|
-
exports.
|
|
83
|
-
class ResourceNotFoundException extends SQSServiceException_1.SQSServiceException {
|
|
73
|
+
};
|
|
74
|
+
exports.ResourceNotFoundException = class ResourceNotFoundException extends __BaseException {
|
|
84
75
|
name = "ResourceNotFoundException";
|
|
85
76
|
$fault = "client";
|
|
86
77
|
constructor(opts) {
|
|
@@ -91,9 +82,8 @@ class ResourceNotFoundException extends SQSServiceException_1.SQSServiceExceptio
|
|
|
91
82
|
});
|
|
92
83
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
93
84
|
}
|
|
94
|
-
}
|
|
95
|
-
exports.
|
|
96
|
-
class MessageNotInflight extends SQSServiceException_1.SQSServiceException {
|
|
85
|
+
};
|
|
86
|
+
exports.MessageNotInflight = class MessageNotInflight extends __BaseException {
|
|
97
87
|
name = "MessageNotInflight";
|
|
98
88
|
$fault = "client";
|
|
99
89
|
constructor(opts) {
|
|
@@ -104,9 +94,8 @@ class MessageNotInflight extends SQSServiceException_1.SQSServiceException {
|
|
|
104
94
|
});
|
|
105
95
|
Object.setPrototypeOf(this, MessageNotInflight.prototype);
|
|
106
96
|
}
|
|
107
|
-
}
|
|
108
|
-
exports.
|
|
109
|
-
class ReceiptHandleIsInvalid extends SQSServiceException_1.SQSServiceException {
|
|
97
|
+
};
|
|
98
|
+
exports.ReceiptHandleIsInvalid = class ReceiptHandleIsInvalid extends __BaseException {
|
|
110
99
|
name = "ReceiptHandleIsInvalid";
|
|
111
100
|
$fault = "client";
|
|
112
101
|
constructor(opts) {
|
|
@@ -117,9 +106,8 @@ class ReceiptHandleIsInvalid extends SQSServiceException_1.SQSServiceException {
|
|
|
117
106
|
});
|
|
118
107
|
Object.setPrototypeOf(this, ReceiptHandleIsInvalid.prototype);
|
|
119
108
|
}
|
|
120
|
-
}
|
|
121
|
-
exports.
|
|
122
|
-
class BatchEntryIdsNotDistinct extends SQSServiceException_1.SQSServiceException {
|
|
109
|
+
};
|
|
110
|
+
exports.BatchEntryIdsNotDistinct = class BatchEntryIdsNotDistinct extends __BaseException {
|
|
123
111
|
name = "BatchEntryIdsNotDistinct";
|
|
124
112
|
$fault = "client";
|
|
125
113
|
constructor(opts) {
|
|
@@ -130,9 +118,8 @@ class BatchEntryIdsNotDistinct extends SQSServiceException_1.SQSServiceException
|
|
|
130
118
|
});
|
|
131
119
|
Object.setPrototypeOf(this, BatchEntryIdsNotDistinct.prototype);
|
|
132
120
|
}
|
|
133
|
-
}
|
|
134
|
-
exports.
|
|
135
|
-
class EmptyBatchRequest extends SQSServiceException_1.SQSServiceException {
|
|
121
|
+
};
|
|
122
|
+
exports.EmptyBatchRequest = class EmptyBatchRequest extends __BaseException {
|
|
136
123
|
name = "EmptyBatchRequest";
|
|
137
124
|
$fault = "client";
|
|
138
125
|
constructor(opts) {
|
|
@@ -143,9 +130,8 @@ class EmptyBatchRequest extends SQSServiceException_1.SQSServiceException {
|
|
|
143
130
|
});
|
|
144
131
|
Object.setPrototypeOf(this, EmptyBatchRequest.prototype);
|
|
145
132
|
}
|
|
146
|
-
}
|
|
147
|
-
exports.
|
|
148
|
-
class InvalidBatchEntryId extends SQSServiceException_1.SQSServiceException {
|
|
133
|
+
};
|
|
134
|
+
exports.InvalidBatchEntryId = class InvalidBatchEntryId extends __BaseException {
|
|
149
135
|
name = "InvalidBatchEntryId";
|
|
150
136
|
$fault = "client";
|
|
151
137
|
constructor(opts) {
|
|
@@ -156,9 +142,8 @@ class InvalidBatchEntryId extends SQSServiceException_1.SQSServiceException {
|
|
|
156
142
|
});
|
|
157
143
|
Object.setPrototypeOf(this, InvalidBatchEntryId.prototype);
|
|
158
144
|
}
|
|
159
|
-
}
|
|
160
|
-
exports.
|
|
161
|
-
class TooManyEntriesInBatchRequest extends SQSServiceException_1.SQSServiceException {
|
|
145
|
+
};
|
|
146
|
+
exports.TooManyEntriesInBatchRequest = class TooManyEntriesInBatchRequest extends __BaseException {
|
|
162
147
|
name = "TooManyEntriesInBatchRequest";
|
|
163
148
|
$fault = "client";
|
|
164
149
|
constructor(opts) {
|
|
@@ -169,9 +154,8 @@ class TooManyEntriesInBatchRequest extends SQSServiceException_1.SQSServiceExcep
|
|
|
169
154
|
});
|
|
170
155
|
Object.setPrototypeOf(this, TooManyEntriesInBatchRequest.prototype);
|
|
171
156
|
}
|
|
172
|
-
}
|
|
173
|
-
exports.
|
|
174
|
-
class InvalidAttributeName extends SQSServiceException_1.SQSServiceException {
|
|
157
|
+
};
|
|
158
|
+
exports.InvalidAttributeName = class InvalidAttributeName extends __BaseException {
|
|
175
159
|
name = "InvalidAttributeName";
|
|
176
160
|
$fault = "client";
|
|
177
161
|
constructor(opts) {
|
|
@@ -182,9 +166,8 @@ class InvalidAttributeName extends SQSServiceException_1.SQSServiceException {
|
|
|
182
166
|
});
|
|
183
167
|
Object.setPrototypeOf(this, InvalidAttributeName.prototype);
|
|
184
168
|
}
|
|
185
|
-
}
|
|
186
|
-
exports.
|
|
187
|
-
class InvalidAttributeValue extends SQSServiceException_1.SQSServiceException {
|
|
169
|
+
};
|
|
170
|
+
exports.InvalidAttributeValue = class InvalidAttributeValue extends __BaseException {
|
|
188
171
|
name = "InvalidAttributeValue";
|
|
189
172
|
$fault = "client";
|
|
190
173
|
constructor(opts) {
|
|
@@ -195,9 +178,8 @@ class InvalidAttributeValue extends SQSServiceException_1.SQSServiceException {
|
|
|
195
178
|
});
|
|
196
179
|
Object.setPrototypeOf(this, InvalidAttributeValue.prototype);
|
|
197
180
|
}
|
|
198
|
-
}
|
|
199
|
-
exports.
|
|
200
|
-
class QueueDeletedRecently extends SQSServiceException_1.SQSServiceException {
|
|
181
|
+
};
|
|
182
|
+
exports.QueueDeletedRecently = class QueueDeletedRecently extends __BaseException {
|
|
201
183
|
name = "QueueDeletedRecently";
|
|
202
184
|
$fault = "client";
|
|
203
185
|
constructor(opts) {
|
|
@@ -208,9 +190,8 @@ class QueueDeletedRecently extends SQSServiceException_1.SQSServiceException {
|
|
|
208
190
|
});
|
|
209
191
|
Object.setPrototypeOf(this, QueueDeletedRecently.prototype);
|
|
210
192
|
}
|
|
211
|
-
}
|
|
212
|
-
exports.
|
|
213
|
-
class QueueNameExists extends SQSServiceException_1.SQSServiceException {
|
|
193
|
+
};
|
|
194
|
+
exports.QueueNameExists = class QueueNameExists extends __BaseException {
|
|
214
195
|
name = "QueueNameExists";
|
|
215
196
|
$fault = "client";
|
|
216
197
|
constructor(opts) {
|
|
@@ -221,9 +202,8 @@ class QueueNameExists extends SQSServiceException_1.SQSServiceException {
|
|
|
221
202
|
});
|
|
222
203
|
Object.setPrototypeOf(this, QueueNameExists.prototype);
|
|
223
204
|
}
|
|
224
|
-
}
|
|
225
|
-
exports.
|
|
226
|
-
class InvalidIdFormat extends SQSServiceException_1.SQSServiceException {
|
|
205
|
+
};
|
|
206
|
+
exports.InvalidIdFormat = class InvalidIdFormat extends __BaseException {
|
|
227
207
|
name = "InvalidIdFormat";
|
|
228
208
|
$fault = "client";
|
|
229
209
|
constructor(opts) {
|
|
@@ -234,9 +214,8 @@ class InvalidIdFormat extends SQSServiceException_1.SQSServiceException {
|
|
|
234
214
|
});
|
|
235
215
|
Object.setPrototypeOf(this, InvalidIdFormat.prototype);
|
|
236
216
|
}
|
|
237
|
-
}
|
|
238
|
-
exports.
|
|
239
|
-
class PurgeQueueInProgress extends SQSServiceException_1.SQSServiceException {
|
|
217
|
+
};
|
|
218
|
+
exports.PurgeQueueInProgress = class PurgeQueueInProgress extends __BaseException {
|
|
240
219
|
name = "PurgeQueueInProgress";
|
|
241
220
|
$fault = "client";
|
|
242
221
|
constructor(opts) {
|
|
@@ -247,9 +226,8 @@ class PurgeQueueInProgress extends SQSServiceException_1.SQSServiceException {
|
|
|
247
226
|
});
|
|
248
227
|
Object.setPrototypeOf(this, PurgeQueueInProgress.prototype);
|
|
249
228
|
}
|
|
250
|
-
}
|
|
251
|
-
exports.
|
|
252
|
-
class KmsAccessDenied extends SQSServiceException_1.SQSServiceException {
|
|
229
|
+
};
|
|
230
|
+
exports.KmsAccessDenied = class KmsAccessDenied extends __BaseException {
|
|
253
231
|
name = "KmsAccessDenied";
|
|
254
232
|
$fault = "client";
|
|
255
233
|
constructor(opts) {
|
|
@@ -260,9 +238,8 @@ class KmsAccessDenied extends SQSServiceException_1.SQSServiceException {
|
|
|
260
238
|
});
|
|
261
239
|
Object.setPrototypeOf(this, KmsAccessDenied.prototype);
|
|
262
240
|
}
|
|
263
|
-
}
|
|
264
|
-
exports.
|
|
265
|
-
class KmsDisabled extends SQSServiceException_1.SQSServiceException {
|
|
241
|
+
};
|
|
242
|
+
exports.KmsDisabled = class KmsDisabled extends __BaseException {
|
|
266
243
|
name = "KmsDisabled";
|
|
267
244
|
$fault = "client";
|
|
268
245
|
constructor(opts) {
|
|
@@ -273,9 +250,8 @@ class KmsDisabled extends SQSServiceException_1.SQSServiceException {
|
|
|
273
250
|
});
|
|
274
251
|
Object.setPrototypeOf(this, KmsDisabled.prototype);
|
|
275
252
|
}
|
|
276
|
-
}
|
|
277
|
-
exports.
|
|
278
|
-
class KmsInvalidKeyUsage extends SQSServiceException_1.SQSServiceException {
|
|
253
|
+
};
|
|
254
|
+
exports.KmsInvalidKeyUsage = class KmsInvalidKeyUsage extends __BaseException {
|
|
279
255
|
name = "KmsInvalidKeyUsage";
|
|
280
256
|
$fault = "client";
|
|
281
257
|
constructor(opts) {
|
|
@@ -286,9 +262,8 @@ class KmsInvalidKeyUsage extends SQSServiceException_1.SQSServiceException {
|
|
|
286
262
|
});
|
|
287
263
|
Object.setPrototypeOf(this, KmsInvalidKeyUsage.prototype);
|
|
288
264
|
}
|
|
289
|
-
}
|
|
290
|
-
exports.
|
|
291
|
-
class KmsInvalidState extends SQSServiceException_1.SQSServiceException {
|
|
265
|
+
};
|
|
266
|
+
exports.KmsInvalidState = class KmsInvalidState extends __BaseException {
|
|
292
267
|
name = "KmsInvalidState";
|
|
293
268
|
$fault = "client";
|
|
294
269
|
constructor(opts) {
|
|
@@ -299,9 +274,8 @@ class KmsInvalidState extends SQSServiceException_1.SQSServiceException {
|
|
|
299
274
|
});
|
|
300
275
|
Object.setPrototypeOf(this, KmsInvalidState.prototype);
|
|
301
276
|
}
|
|
302
|
-
}
|
|
303
|
-
exports.
|
|
304
|
-
class KmsNotFound extends SQSServiceException_1.SQSServiceException {
|
|
277
|
+
};
|
|
278
|
+
exports.KmsNotFound = class KmsNotFound extends __BaseException {
|
|
305
279
|
name = "KmsNotFound";
|
|
306
280
|
$fault = "client";
|
|
307
281
|
constructor(opts) {
|
|
@@ -312,9 +286,8 @@ class KmsNotFound extends SQSServiceException_1.SQSServiceException {
|
|
|
312
286
|
});
|
|
313
287
|
Object.setPrototypeOf(this, KmsNotFound.prototype);
|
|
314
288
|
}
|
|
315
|
-
}
|
|
316
|
-
exports.
|
|
317
|
-
class KmsOptInRequired extends SQSServiceException_1.SQSServiceException {
|
|
289
|
+
};
|
|
290
|
+
exports.KmsOptInRequired = class KmsOptInRequired extends __BaseException {
|
|
318
291
|
name = "KmsOptInRequired";
|
|
319
292
|
$fault = "client";
|
|
320
293
|
constructor(opts) {
|
|
@@ -325,9 +298,8 @@ class KmsOptInRequired extends SQSServiceException_1.SQSServiceException {
|
|
|
325
298
|
});
|
|
326
299
|
Object.setPrototypeOf(this, KmsOptInRequired.prototype);
|
|
327
300
|
}
|
|
328
|
-
}
|
|
329
|
-
exports.
|
|
330
|
-
class KmsThrottled extends SQSServiceException_1.SQSServiceException {
|
|
301
|
+
};
|
|
302
|
+
exports.KmsThrottled = class KmsThrottled extends __BaseException {
|
|
331
303
|
name = "KmsThrottled";
|
|
332
304
|
$fault = "client";
|
|
333
305
|
constructor(opts) {
|
|
@@ -338,9 +310,8 @@ class KmsThrottled extends SQSServiceException_1.SQSServiceException {
|
|
|
338
310
|
});
|
|
339
311
|
Object.setPrototypeOf(this, KmsThrottled.prototype);
|
|
340
312
|
}
|
|
341
|
-
}
|
|
342
|
-
exports.
|
|
343
|
-
class InvalidMessageContents extends SQSServiceException_1.SQSServiceException {
|
|
313
|
+
};
|
|
314
|
+
exports.InvalidMessageContents = class InvalidMessageContents extends __BaseException {
|
|
344
315
|
name = "InvalidMessageContents";
|
|
345
316
|
$fault = "client";
|
|
346
317
|
constructor(opts) {
|
|
@@ -351,9 +322,8 @@ class InvalidMessageContents extends SQSServiceException_1.SQSServiceException {
|
|
|
351
322
|
});
|
|
352
323
|
Object.setPrototypeOf(this, InvalidMessageContents.prototype);
|
|
353
324
|
}
|
|
354
|
-
}
|
|
355
|
-
exports.
|
|
356
|
-
class BatchRequestTooLong extends SQSServiceException_1.SQSServiceException {
|
|
325
|
+
};
|
|
326
|
+
exports.BatchRequestTooLong = class BatchRequestTooLong extends __BaseException {
|
|
357
327
|
name = "BatchRequestTooLong";
|
|
358
328
|
$fault = "client";
|
|
359
329
|
constructor(opts) {
|
|
@@ -364,5 +334,4 @@ class BatchRequestTooLong extends SQSServiceException_1.SQSServiceException {
|
|
|
364
334
|
});
|
|
365
335
|
Object.setPrototypeOf(this, BatchRequestTooLong.prototype);
|
|
366
336
|
}
|
|
367
|
-
}
|
|
368
|
-
exports.BatchRequestTooLong = BatchRequestTooLong;
|
|
337
|
+
};
|
|
@@ -1,38 +1,34 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const retry_1 = require("@smithy/core/retry");
|
|
12
|
-
const serde_1 = require("@smithy/core/serde");
|
|
13
|
-
const fetch_http_handler_1 = require("@smithy/fetch-http-handler");
|
|
14
|
-
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
1
|
+
const packageInfo = require("../package.json");
|
|
2
|
+
const { Sha256 } = require("@aws-crypto/sha256-browser");
|
|
3
|
+
const { createDefaultUserAgentProvider } = require("@aws-sdk/core/client");
|
|
4
|
+
const { Md5 } = require("@smithy/core/checksum");
|
|
5
|
+
const { invalidProvider, loadConfigsForDefaultMode } = require("@smithy/core/client");
|
|
6
|
+
const { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig } = require("@smithy/core/config");
|
|
7
|
+
const { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } = require("@smithy/core/retry");
|
|
8
|
+
const { calculateBodyLength } = require("@smithy/core/serde");
|
|
9
|
+
const { FetchHttpHandler: RequestHandler, streamCollector } = require("@smithy/fetch-http-handler");
|
|
10
|
+
const { getRuntimeConfig: getSharedRuntimeConfig } = require("./runtimeConfig.shared");
|
|
15
11
|
const getRuntimeConfig = (config) => {
|
|
16
|
-
const defaultsMode =
|
|
17
|
-
const defaultConfigProvider = () => defaultsMode().then(
|
|
18
|
-
const clientSharedValues = (
|
|
12
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
13
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
14
|
+
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
19
15
|
return {
|
|
20
16
|
...clientSharedValues,
|
|
21
17
|
...config,
|
|
22
18
|
runtime: "browser",
|
|
23
19
|
defaultsMode,
|
|
24
|
-
bodyLengthChecker: config?.bodyLengthChecker ??
|
|
20
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
25
21
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
26
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
27
|
-
maxAttempts: config?.maxAttempts ??
|
|
28
|
-
md5: config?.md5 ??
|
|
29
|
-
region: config?.region ??
|
|
30
|
-
requestHandler:
|
|
31
|
-
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode ||
|
|
32
|
-
sha256: config?.sha256 ??
|
|
33
|
-
streamCollector: config?.streamCollector ??
|
|
34
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(
|
|
35
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(
|
|
22
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
23
|
+
maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
|
|
24
|
+
md5: config?.md5 ?? Md5,
|
|
25
|
+
region: config?.region ?? invalidProvider("Region is missing"),
|
|
26
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
27
|
+
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
|
|
28
|
+
sha256: config?.sha256 ?? Sha256,
|
|
29
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
30
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
|
|
31
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
|
|
36
32
|
};
|
|
37
33
|
};
|
|
38
34
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,23 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const retry_1 = require("@smithy/core/retry");
|
|
12
|
-
const serde_1 = require("@smithy/core/serde");
|
|
13
|
-
const node_http_handler_1 = require("@smithy/node-http-handler");
|
|
14
|
-
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
1
|
+
const packageInfo = require("../package.json");
|
|
2
|
+
const { createDefaultUserAgentProvider, emitWarningIfUnsupportedVersion: awsCheckVersion, NODE_APP_ID_CONFIG_OPTIONS } = require("@aws-sdk/core/client");
|
|
3
|
+
const { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
4
|
+
const { defaultProvider: credentialDefaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
5
|
+
const { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } = require("@smithy/core/client");
|
|
6
|
+
const { loadConfig: loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig } = require("@smithy/core/config");
|
|
7
|
+
const { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } = require("@smithy/core/retry");
|
|
8
|
+
const { calculateBodyLength, Hash } = require("@smithy/core/serde");
|
|
9
|
+
const { NodeHttpHandler: RequestHandler, streamCollector } = require("@smithy/node-http-handler");
|
|
10
|
+
const { getRuntimeConfig: getSharedRuntimeConfig } = require("./runtimeConfig.shared");
|
|
15
11
|
const getRuntimeConfig = (config) => {
|
|
16
|
-
|
|
17
|
-
const defaultsMode =
|
|
18
|
-
const defaultConfigProvider = () => defaultsMode().then(
|
|
19
|
-
const clientSharedValues = (
|
|
20
|
-
(
|
|
12
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
13
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
14
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
15
|
+
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
16
|
+
awsCheckVersion(process.version);
|
|
21
17
|
const loaderConfig = {
|
|
22
18
|
profile: config?.profile,
|
|
23
19
|
logger: clientSharedValues.logger,
|
|
@@ -27,24 +23,24 @@ const getRuntimeConfig = (config) => {
|
|
|
27
23
|
...config,
|
|
28
24
|
runtime: "node",
|
|
29
25
|
defaultsMode,
|
|
30
|
-
authSchemePreference: config?.authSchemePreference ?? (
|
|
31
|
-
bodyLengthChecker: config?.bodyLengthChecker ??
|
|
32
|
-
credentialDefaultProvider: config?.credentialDefaultProvider ??
|
|
33
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
34
|
-
maxAttempts: config?.maxAttempts ?? (
|
|
35
|
-
md5: config?.md5 ??
|
|
36
|
-
region: config?.region ?? (
|
|
37
|
-
requestHandler:
|
|
26
|
+
authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
27
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
28
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
|
|
29
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
30
|
+
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
31
|
+
md5: config?.md5 ?? Hash.bind(null, "md5"),
|
|
32
|
+
region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
33
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
38
34
|
retryMode: config?.retryMode ??
|
|
39
|
-
(
|
|
40
|
-
...
|
|
41
|
-
default: async () => (await defaultConfigProvider()).retryMode ||
|
|
35
|
+
loadNodeConfig({
|
|
36
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
37
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
42
38
|
}, config),
|
|
43
|
-
sha256: config?.sha256 ??
|
|
44
|
-
streamCollector: config?.streamCollector ??
|
|
45
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (
|
|
46
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (
|
|
47
|
-
userAgentAppId: config?.userAgentAppId ?? (
|
|
39
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
40
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
41
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
42
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
43
|
+
userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
48
44
|
};
|
|
49
45
|
};
|
|
50
46
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,15 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.getRuntimeConfig = void 0;
|
|
4
|
-
const sha256_js_1 = require("@aws-crypto/sha256-js");
|
|
5
|
-
const runtimeConfig_browser_1 = require("./runtimeConfig.browser");
|
|
1
|
+
const { Sha256 } = require("@aws-crypto/sha256-js");
|
|
2
|
+
const { getRuntimeConfig: getBrowserRuntimeConfig } = require("./runtimeConfig.browser");
|
|
6
3
|
const getRuntimeConfig = (config) => {
|
|
7
|
-
const browserDefaults = (
|
|
4
|
+
const browserDefaults = getBrowserRuntimeConfig(config);
|
|
8
5
|
return {
|
|
9
6
|
...browserDefaults,
|
|
10
7
|
...config,
|
|
11
8
|
runtime: "react-native",
|
|
12
|
-
sha256: config?.sha256 ??
|
|
9
|
+
sha256: config?.sha256 ?? Sha256,
|
|
13
10
|
};
|
|
14
11
|
};
|
|
15
12
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,43 +1,39 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
|
|
10
|
-
const endpointResolver_1 = require("./endpoint/endpointResolver");
|
|
11
|
-
const schemas_0_1 = require("./schemas/schemas_0");
|
|
12
|
-
const getRuntimeConfig = (config) => {
|
|
1
|
+
const { AwsSdkSigV4Signer } = require("@aws-sdk/core/httpAuthSchemes");
|
|
2
|
+
const { AwsJson1_0Protocol } = require("@aws-sdk/core/protocols");
|
|
3
|
+
const { NoOpLogger } = require("@smithy/core/client");
|
|
4
|
+
const { parseUrl } = require("@smithy/core/protocols");
|
|
5
|
+
const { fromBase64, fromUtf8, toBase64, toUtf8 } = require("@smithy/core/serde");
|
|
6
|
+
const { defaultSQSHttpAuthSchemeProvider } = require("./auth/httpAuthSchemeProvider");
|
|
7
|
+
const { defaultEndpointResolver } = require("./endpoint/endpointResolver");
|
|
8
|
+
const { errorTypeRegistries } = require("./schemas/schemas_0");
|
|
9
|
+
exports.getRuntimeConfig = (config) => {
|
|
13
10
|
return {
|
|
14
11
|
apiVersion: "2012-11-05",
|
|
15
|
-
base64Decoder: config?.base64Decoder ??
|
|
16
|
-
base64Encoder: config?.base64Encoder ??
|
|
12
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
13
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
17
14
|
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
18
|
-
endpointProvider: config?.endpointProvider ??
|
|
15
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
19
16
|
extensions: config?.extensions ?? [],
|
|
20
|
-
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ??
|
|
17
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultSQSHttpAuthSchemeProvider,
|
|
21
18
|
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
22
19
|
{
|
|
23
20
|
schemeId: "aws.auth#sigv4",
|
|
24
21
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
25
|
-
signer: new
|
|
22
|
+
signer: new AwsSdkSigV4Signer(),
|
|
26
23
|
},
|
|
27
24
|
],
|
|
28
|
-
logger: config?.logger ?? new
|
|
29
|
-
protocol: config?.protocol ??
|
|
25
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
30
27
|
protocolSettings: config?.protocolSettings ?? {
|
|
31
28
|
defaultNamespace: "com.amazonaws.sqs",
|
|
32
|
-
errorTypeRegistries
|
|
29
|
+
errorTypeRegistries,
|
|
33
30
|
version: "2012-11-05",
|
|
34
31
|
serviceTarget: "AmazonSQS",
|
|
35
32
|
awsQueryCompatible: true,
|
|
36
33
|
},
|
|
37
34
|
serviceId: config?.serviceId ?? "SQS",
|
|
38
|
-
urlParser: config?.urlParser ??
|
|
39
|
-
utf8Decoder: config?.utf8Decoder ??
|
|
40
|
-
utf8Encoder: config?.utf8Encoder ??
|
|
35
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
36
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
37
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
41
38
|
};
|
|
42
39
|
};
|
|
43
|
-
exports.getRuntimeConfig = getRuntimeConfig;
|