@aws-sdk/client-mq 3.948.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 +345 -244
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateBrokerCommand.js +2 -2
- package/dist-es/commands/CreateConfigurationCommand.js +2 -2
- package/dist-es/commands/CreateTagsCommand.js +2 -2
- package/dist-es/commands/CreateUserCommand.js +2 -2
- package/dist-es/commands/DeleteBrokerCommand.js +2 -2
- package/dist-es/commands/DeleteConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteTagsCommand.js +2 -2
- package/dist-es/commands/DeleteUserCommand.js +2 -2
- package/dist-es/commands/DescribeBrokerCommand.js +2 -2
- package/dist-es/commands/DescribeBrokerEngineTypesCommand.js +2 -2
- package/dist-es/commands/DescribeBrokerInstanceOptionsCommand.js +2 -2
- package/dist-es/commands/DescribeConfigurationCommand.js +2 -2
- package/dist-es/commands/DescribeConfigurationRevisionCommand.js +2 -2
- package/dist-es/commands/DescribeUserCommand.js +2 -2
- package/dist-es/commands/ListBrokersCommand.js +2 -2
- package/dist-es/commands/ListConfigurationRevisionsCommand.js +2 -2
- package/dist-es/commands/ListConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListTagsCommand.js +2 -2
- package/dist-es/commands/ListUsersCommand.js +2 -2
- package/dist-es/commands/PromoteCommand.js +2 -2
- package/dist-es/commands/RebootBrokerCommand.js +2 -2
- package/dist-es/commands/UpdateBrokerCommand.js +2 -2
- package/dist-es/commands/UpdateConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdateUserCommand.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 +205 -205
- package/dist-types/MqClient.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 +102 -119
- package/dist-types/ts3.4/MqClient.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 +101 -119
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.mq",
|
|
32
|
+
version: "2017-11-27",
|
|
33
|
+
serviceTarget: "mq",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "mq",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateBroker } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateBroker$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateBrokerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateBrokerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "CreateBroker", {})
|
|
13
13
|
.n("MqClient", "CreateBrokerCommand")
|
|
14
|
-
.sc(CreateBroker)
|
|
14
|
+
.sc(CreateBroker$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "CreateConfiguration", {})
|
|
13
13
|
.n("MqClient", "CreateConfigurationCommand")
|
|
14
|
-
.sc(CreateConfiguration)
|
|
14
|
+
.sc(CreateConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateTags } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateTags$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateTagsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateTagsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "CreateTags", {})
|
|
13
13
|
.n("MqClient", "CreateTagsCommand")
|
|
14
|
-
.sc(CreateTags)
|
|
14
|
+
.sc(CreateTags$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateUser } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "CreateUser", {})
|
|
13
13
|
.n("MqClient", "CreateUserCommand")
|
|
14
|
-
.sc(CreateUser)
|
|
14
|
+
.sc(CreateUser$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteBroker } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteBroker$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteBrokerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteBrokerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "DeleteBroker", {})
|
|
13
13
|
.n("MqClient", "DeleteBrokerCommand")
|
|
14
|
-
.sc(DeleteBroker)
|
|
14
|
+
.sc(DeleteBroker$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "DeleteConfiguration", {})
|
|
13
13
|
.n("MqClient", "DeleteConfigurationCommand")
|
|
14
|
-
.sc(DeleteConfiguration)
|
|
14
|
+
.sc(DeleteConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteTags } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteTags$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteTagsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteTagsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "DeleteTags", {})
|
|
13
13
|
.n("MqClient", "DeleteTagsCommand")
|
|
14
|
-
.sc(DeleteTags)
|
|
14
|
+
.sc(DeleteTags$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteUser } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "DeleteUser", {})
|
|
13
13
|
.n("MqClient", "DeleteUserCommand")
|
|
14
|
-
.sc(DeleteUser)
|
|
14
|
+
.sc(DeleteUser$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeBroker } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeBroker$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeBrokerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeBrokerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "DescribeBroker", {})
|
|
13
13
|
.n("MqClient", "DescribeBrokerCommand")
|
|
14
|
-
.sc(DescribeBroker)
|
|
14
|
+
.sc(DescribeBroker$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeBrokerEngineTypes } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeBrokerEngineTypes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeBrokerEngineTypesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeBrokerEngineTypesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "DescribeBrokerEngineTypes", {})
|
|
13
13
|
.n("MqClient", "DescribeBrokerEngineTypesCommand")
|
|
14
|
-
.sc(DescribeBrokerEngineTypes)
|
|
14
|
+
.sc(DescribeBrokerEngineTypes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeBrokerInstanceOptions } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeBrokerInstanceOptions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeBrokerInstanceOptionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeBrokerInstanceOptionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "DescribeBrokerInstanceOptions", {})
|
|
13
13
|
.n("MqClient", "DescribeBrokerInstanceOptionsCommand")
|
|
14
|
-
.sc(DescribeBrokerInstanceOptions)
|
|
14
|
+
.sc(DescribeBrokerInstanceOptions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "DescribeConfiguration", {})
|
|
13
13
|
.n("MqClient", "DescribeConfigurationCommand")
|
|
14
|
-
.sc(DescribeConfiguration)
|
|
14
|
+
.sc(DescribeConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeConfigurationRevision } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeConfigurationRevision$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeConfigurationRevisionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeConfigurationRevisionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "DescribeConfigurationRevision", {})
|
|
13
13
|
.n("MqClient", "DescribeConfigurationRevisionCommand")
|
|
14
|
-
.sc(DescribeConfigurationRevision)
|
|
14
|
+
.sc(DescribeConfigurationRevision$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeUser } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "DescribeUser", {})
|
|
13
13
|
.n("MqClient", "DescribeUserCommand")
|
|
14
|
-
.sc(DescribeUser)
|
|
14
|
+
.sc(DescribeUser$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListBrokers } from "../schemas/schemas_0";
|
|
4
|
+
import { ListBrokers$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListBrokersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListBrokersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "ListBrokers", {})
|
|
13
13
|
.n("MqClient", "ListBrokersCommand")
|
|
14
|
-
.sc(ListBrokers)
|
|
14
|
+
.sc(ListBrokers$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListConfigurationRevisions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListConfigurationRevisions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListConfigurationRevisionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListConfigurationRevisionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "ListConfigurationRevisions", {})
|
|
13
13
|
.n("MqClient", "ListConfigurationRevisionsCommand")
|
|
14
|
-
.sc(ListConfigurationRevisions)
|
|
14
|
+
.sc(ListConfigurationRevisions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListConfigurations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListConfigurations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListConfigurationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListConfigurationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "ListConfigurations", {})
|
|
13
13
|
.n("MqClient", "ListConfigurationsCommand")
|
|
14
|
-
.sc(ListConfigurations)
|
|
14
|
+
.sc(ListConfigurations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTags } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTags$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "ListTags", {})
|
|
13
13
|
.n("MqClient", "ListTagsCommand")
|
|
14
|
-
.sc(ListTags)
|
|
14
|
+
.sc(ListTags$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListUsers } from "../schemas/schemas_0";
|
|
4
|
+
import { ListUsers$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListUsersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListUsersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "ListUsers", {})
|
|
13
13
|
.n("MqClient", "ListUsersCommand")
|
|
14
|
-
.sc(ListUsers)
|
|
14
|
+
.sc(ListUsers$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { Promote } from "../schemas/schemas_0";
|
|
4
|
+
import { Promote$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PromoteCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PromoteCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "Promote", {})
|
|
13
13
|
.n("MqClient", "PromoteCommand")
|
|
14
|
-
.sc(Promote)
|
|
14
|
+
.sc(Promote$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RebootBroker } from "../schemas/schemas_0";
|
|
4
|
+
import { RebootBroker$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RebootBrokerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RebootBrokerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "RebootBroker", {})
|
|
13
13
|
.n("MqClient", "RebootBrokerCommand")
|
|
14
|
-
.sc(RebootBroker)
|
|
14
|
+
.sc(RebootBroker$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateBroker } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateBroker$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateBrokerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateBrokerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "UpdateBroker", {})
|
|
13
13
|
.n("MqClient", "UpdateBrokerCommand")
|
|
14
|
-
.sc(UpdateBroker)
|
|
14
|
+
.sc(UpdateBroker$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "UpdateConfiguration", {})
|
|
13
13
|
.n("MqClient", "UpdateConfigurationCommand")
|
|
14
|
-
.sc(UpdateConfiguration)
|
|
14
|
+
.sc(UpdateConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateUser } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("mq", "UpdateUser", {})
|
|
13
13
|
.n("MqClient", "UpdateUserCommand")
|
|
14
|
-
.sc(UpdateUser)
|
|
14
|
+
.sc(UpdateUser$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.mq",
|
|
29
|
+
version: "2017-11-27",
|
|
30
|
+
serviceTarget: "mq",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "mq",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|