@aws-sdk/client-sqs 3.927.0 → 3.929.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 +1509 -1437
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/SQSClient.js +2 -0
- package/dist-es/commands/AddPermissionCommand.js +3 -9
- package/dist-es/commands/CancelMessageMoveTaskCommand.js +3 -9
- package/dist-es/commands/ChangeMessageVisibilityBatchCommand.js +3 -9
- package/dist-es/commands/ChangeMessageVisibilityCommand.js +3 -9
- package/dist-es/commands/CreateQueueCommand.js +3 -9
- package/dist-es/commands/DeleteMessageBatchCommand.js +3 -9
- package/dist-es/commands/DeleteMessageCommand.js +3 -9
- package/dist-es/commands/DeleteQueueCommand.js +3 -9
- package/dist-es/commands/GetQueueAttributesCommand.js +3 -9
- package/dist-es/commands/GetQueueUrlCommand.js +3 -9
- package/dist-es/commands/ListDeadLetterSourceQueuesCommand.js +3 -9
- package/dist-es/commands/ListMessageMoveTasksCommand.js +3 -9
- package/dist-es/commands/ListQueueTagsCommand.js +3 -9
- package/dist-es/commands/ListQueuesCommand.js +3 -9
- package/dist-es/commands/PurgeQueueCommand.js +3 -9
- package/dist-es/commands/ReceiveMessageCommand.js +3 -10
- package/dist-es/commands/RemovePermissionCommand.js +3 -9
- package/dist-es/commands/SendMessageBatchCommand.js +3 -10
- package/dist-es/commands/SendMessageCommand.js +3 -10
- package/dist-es/commands/SetQueueAttributesCommand.js +3 -9
- package/dist-es/commands/StartMessageMoveTaskCommand.js +3 -9
- package/dist-es/commands/TagQueueCommand.js +3 -9
- package/dist-es/commands/UntagQueueCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +1384 -0
- package/dist-types/SQSClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +125 -0
- package/dist-types/ts3.4/SQSClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +131 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_0.js +0 -1193
- package/dist-types/protocols/Aws_json1_0.d.ts +0 -209
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -281
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UntagQueue } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UntagQueueCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AmazonSQS", "UntagQueue", {})
|
|
17
13
|
.n("SQSClient", "UntagQueueCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UntagQueueCommand)
|
|
20
|
-
.de(de_UntagQueueCommand)
|
|
14
|
+
.sc(UntagQueue)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
2
|
+
import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols";
|
|
2
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
3
4
|
import { parseUrl } from "@smithy/url-parser";
|
|
4
5
|
import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
@@ -22,6 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
22
23
|
},
|
|
23
24
|
],
|
|
24
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
+
protocol: config?.protocol ??
|
|
27
|
+
new AwsJson1_0Protocol({
|
|
28
|
+
defaultNamespace: "com.amazonaws.sqs",
|
|
29
|
+
serviceTarget: "AmazonSQS",
|
|
30
|
+
awsQueryCompatible: true,
|
|
31
|
+
}),
|
|
25
32
|
serviceId: config?.serviceId ?? "SQS",
|
|
26
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
27
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|