@aws-sdk/client-support-app 3.478.0 → 3.484.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 (45) hide show
  1. package/dist-cjs/commands/CreateSlackChannelConfigurationCommand.js +18 -41
  2. package/dist-cjs/commands/DeleteAccountAliasCommand.js +18 -41
  3. package/dist-cjs/commands/DeleteSlackChannelConfigurationCommand.js +18 -41
  4. package/dist-cjs/commands/DeleteSlackWorkspaceConfigurationCommand.js +18 -41
  5. package/dist-cjs/commands/GetAccountAliasCommand.js +18 -41
  6. package/dist-cjs/commands/ListSlackChannelConfigurationsCommand.js +18 -41
  7. package/dist-cjs/commands/ListSlackWorkspaceConfigurationsCommand.js +18 -41
  8. package/dist-cjs/commands/PutAccountAliasCommand.js +18 -41
  9. package/dist-cjs/commands/RegisterSlackWorkspaceForOrganizationCommand.js +18 -41
  10. package/dist-cjs/commands/UpdateSlackChannelConfigurationCommand.js +18 -41
  11. package/dist-cjs/endpoint/EndpointParameters.js +7 -1
  12. package/dist-es/commands/CreateSlackChannelConfigurationCommand.js +18 -41
  13. package/dist-es/commands/DeleteAccountAliasCommand.js +18 -41
  14. package/dist-es/commands/DeleteSlackChannelConfigurationCommand.js +18 -41
  15. package/dist-es/commands/DeleteSlackWorkspaceConfigurationCommand.js +18 -41
  16. package/dist-es/commands/GetAccountAliasCommand.js +18 -41
  17. package/dist-es/commands/ListSlackChannelConfigurationsCommand.js +18 -41
  18. package/dist-es/commands/ListSlackWorkspaceConfigurationsCommand.js +18 -41
  19. package/dist-es/commands/PutAccountAliasCommand.js +18 -41
  20. package/dist-es/commands/RegisterSlackWorkspaceForOrganizationCommand.js +18 -41
  21. package/dist-es/commands/UpdateSlackChannelConfigurationCommand.js +18 -41
  22. package/dist-es/endpoint/EndpointParameters.js +6 -0
  23. package/dist-types/commands/CreateSlackChannelConfigurationCommand.d.ts +6 -21
  24. package/dist-types/commands/DeleteAccountAliasCommand.d.ts +6 -21
  25. package/dist-types/commands/DeleteSlackChannelConfigurationCommand.d.ts +6 -21
  26. package/dist-types/commands/DeleteSlackWorkspaceConfigurationCommand.d.ts +6 -21
  27. package/dist-types/commands/GetAccountAliasCommand.d.ts +6 -21
  28. package/dist-types/commands/ListSlackChannelConfigurationsCommand.d.ts +6 -21
  29. package/dist-types/commands/ListSlackWorkspaceConfigurationsCommand.d.ts +6 -21
  30. package/dist-types/commands/PutAccountAliasCommand.d.ts +6 -21
  31. package/dist-types/commands/RegisterSlackWorkspaceForOrganizationCommand.d.ts +6 -21
  32. package/dist-types/commands/UpdateSlackChannelConfigurationCommand.d.ts +6 -21
  33. package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
  34. package/dist-types/ts3.4/commands/CreateSlackChannelConfigurationCommand.d.ts +12 -24
  35. package/dist-types/ts3.4/commands/DeleteAccountAliasCommand.d.ts +14 -23
  36. package/dist-types/ts3.4/commands/DeleteSlackChannelConfigurationCommand.d.ts +12 -24
  37. package/dist-types/ts3.4/commands/DeleteSlackWorkspaceConfigurationCommand.d.ts +12 -24
  38. package/dist-types/ts3.4/commands/GetAccountAliasCommand.d.ts +14 -23
  39. package/dist-types/ts3.4/commands/ListSlackChannelConfigurationsCommand.d.ts +12 -24
  40. package/dist-types/ts3.4/commands/ListSlackWorkspaceConfigurationsCommand.d.ts +12 -24
  41. package/dist-types/ts3.4/commands/PutAccountAliasCommand.d.ts +14 -23
  42. package/dist-types/ts3.4/commands/RegisterSlackWorkspaceForOrganizationCommand.d.ts +12 -24
  43. package/dist-types/ts3.4/commands/UpdateSlackChannelConfigurationCommand.d.ts +12 -24
  44. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
  45. package/package.json +11 -11
@@ -5,47 +5,24 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const types_1 = require("@smithy/types");
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
9
  const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class UpdateSlackChannelConfigurationCommand extends smithy_client_1.Command {
11
- static getEndpointParameterInstructions() {
12
- return {
13
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
- Endpoint: { type: "builtInParams", name: "endpoint" },
15
- Region: { type: "builtInParams", name: "region" },
16
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
- };
18
- }
19
- constructor(input) {
20
- super();
21
- this.input = input;
22
- }
23
- resolveMiddleware(clientStack, configuration, options) {
24
- this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
- this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, UpdateSlackChannelConfigurationCommand.getEndpointParameterInstructions()));
26
- const stack = clientStack.concat(this.middlewareStack);
27
- const { logger } = configuration;
28
- const clientName = "SupportAppClient";
29
- const commandName = "UpdateSlackChannelConfigurationCommand";
30
- const handlerExecutionContext = {
31
- logger,
32
- clientName,
33
- commandName,
34
- inputFilterSensitiveLog: (_) => _,
35
- outputFilterSensitiveLog: (_) => _,
36
- [types_1.SMITHY_CONTEXT_KEY]: {
37
- service: "SupportApp",
38
- operation: "UpdateSlackChannelConfiguration",
39
- },
40
- };
41
- const { requestHandler } = configuration;
42
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
43
- }
44
- serialize(input, context) {
45
- return (0, Aws_restJson1_1.se_UpdateSlackChannelConfigurationCommand)(input, context);
46
- }
47
- deserialize(output, context) {
48
- return (0, Aws_restJson1_1.de_UpdateSlackChannelConfigurationCommand)(output, context);
49
- }
10
+ class UpdateSlackChannelConfigurationCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep({
13
+ ...EndpointParameters_1.commonParams,
14
+ })
15
+ .m(function (Command, cs, config, o) {
16
+ return [
17
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
+ ];
20
+ })
21
+ .s("SupportApp", "UpdateSlackChannelConfiguration", {})
22
+ .n("SupportAppClient", "UpdateSlackChannelConfigurationCommand")
23
+ .f(void 0, void 0)
24
+ .ser(Aws_restJson1_1.se_UpdateSlackChannelConfigurationCommand)
25
+ .de(Aws_restJson1_1.de_UpdateSlackChannelConfigurationCommand)
26
+ .build() {
50
27
  }
51
28
  exports.UpdateSlackChannelConfigurationCommand = UpdateSlackChannelConfigurationCommand;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.resolveClientEndpointParameters = void 0;
3
+ exports.commonParams = exports.resolveClientEndpointParameters = void 0;
4
4
  const resolveClientEndpointParameters = (options) => {
5
5
  return {
6
6
  ...options,
@@ -10,3 +10,9 @@ const resolveClientEndpointParameters = (options) => {
10
10
  };
11
11
  };
12
12
  exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
13
+ exports.commonParams = {
14
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
15
+ Endpoint: { type: "builtInParams", name: "endpoint" },
16
+ Region: { type: "builtInParams", name: "region" },
17
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
18
+ };
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_CreateSlackChannelConfigurationCommand, se_CreateSlackChannelConfigurationCommand, } from "../protocols/Aws_restJson1";
6
6
  export { $Command };
7
- export class CreateSlackChannelConfigurationCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, CreateSlackChannelConfigurationCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "SupportAppClient";
26
- const commandName = "CreateSlackChannelConfigurationCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "SupportApp",
35
- operation: "CreateSlackChannelConfiguration",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_CreateSlackChannelConfigurationCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_CreateSlackChannelConfigurationCommand(output, context);
46
- }
7
+ export class CreateSlackChannelConfigurationCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("SupportApp", "CreateSlackChannelConfiguration", {})
19
+ .n("SupportAppClient", "CreateSlackChannelConfigurationCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_CreateSlackChannelConfigurationCommand)
22
+ .de(de_CreateSlackChannelConfigurationCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_DeleteAccountAliasCommand, se_DeleteAccountAliasCommand } from "../protocols/Aws_restJson1";
6
6
  export { $Command };
7
- export class DeleteAccountAliasCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, DeleteAccountAliasCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "SupportAppClient";
26
- const commandName = "DeleteAccountAliasCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "SupportApp",
35
- operation: "DeleteAccountAlias",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_DeleteAccountAliasCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_DeleteAccountAliasCommand(output, context);
46
- }
7
+ export class DeleteAccountAliasCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("SupportApp", "DeleteAccountAlias", {})
19
+ .n("SupportAppClient", "DeleteAccountAliasCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_DeleteAccountAliasCommand)
22
+ .de(de_DeleteAccountAliasCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_DeleteSlackChannelConfigurationCommand, se_DeleteSlackChannelConfigurationCommand, } from "../protocols/Aws_restJson1";
6
6
  export { $Command };
7
- export class DeleteSlackChannelConfigurationCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, DeleteSlackChannelConfigurationCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "SupportAppClient";
26
- const commandName = "DeleteSlackChannelConfigurationCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "SupportApp",
35
- operation: "DeleteSlackChannelConfiguration",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_DeleteSlackChannelConfigurationCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_DeleteSlackChannelConfigurationCommand(output, context);
46
- }
7
+ export class DeleteSlackChannelConfigurationCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("SupportApp", "DeleteSlackChannelConfiguration", {})
19
+ .n("SupportAppClient", "DeleteSlackChannelConfigurationCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_DeleteSlackChannelConfigurationCommand)
22
+ .de(de_DeleteSlackChannelConfigurationCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_DeleteSlackWorkspaceConfigurationCommand, se_DeleteSlackWorkspaceConfigurationCommand, } from "../protocols/Aws_restJson1";
6
6
  export { $Command };
7
- export class DeleteSlackWorkspaceConfigurationCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, DeleteSlackWorkspaceConfigurationCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "SupportAppClient";
26
- const commandName = "DeleteSlackWorkspaceConfigurationCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "SupportApp",
35
- operation: "DeleteSlackWorkspaceConfiguration",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_DeleteSlackWorkspaceConfigurationCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_DeleteSlackWorkspaceConfigurationCommand(output, context);
46
- }
7
+ export class DeleteSlackWorkspaceConfigurationCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("SupportApp", "DeleteSlackWorkspaceConfiguration", {})
19
+ .n("SupportAppClient", "DeleteSlackWorkspaceConfigurationCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_DeleteSlackWorkspaceConfigurationCommand)
22
+ .de(de_DeleteSlackWorkspaceConfigurationCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_GetAccountAliasCommand, se_GetAccountAliasCommand } from "../protocols/Aws_restJson1";
6
6
  export { $Command };
7
- export class GetAccountAliasCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, GetAccountAliasCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "SupportAppClient";
26
- const commandName = "GetAccountAliasCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "SupportApp",
35
- operation: "GetAccountAlias",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_GetAccountAliasCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_GetAccountAliasCommand(output, context);
46
- }
7
+ export class GetAccountAliasCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("SupportApp", "GetAccountAlias", {})
19
+ .n("SupportAppClient", "GetAccountAliasCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_GetAccountAliasCommand)
22
+ .de(de_GetAccountAliasCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_ListSlackChannelConfigurationsCommand, se_ListSlackChannelConfigurationsCommand, } from "../protocols/Aws_restJson1";
6
6
  export { $Command };
7
- export class ListSlackChannelConfigurationsCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, ListSlackChannelConfigurationsCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "SupportAppClient";
26
- const commandName = "ListSlackChannelConfigurationsCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "SupportApp",
35
- operation: "ListSlackChannelConfigurations",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_ListSlackChannelConfigurationsCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_ListSlackChannelConfigurationsCommand(output, context);
46
- }
7
+ export class ListSlackChannelConfigurationsCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("SupportApp", "ListSlackChannelConfigurations", {})
19
+ .n("SupportAppClient", "ListSlackChannelConfigurationsCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_ListSlackChannelConfigurationsCommand)
22
+ .de(de_ListSlackChannelConfigurationsCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_ListSlackWorkspaceConfigurationsCommand, se_ListSlackWorkspaceConfigurationsCommand, } from "../protocols/Aws_restJson1";
6
6
  export { $Command };
7
- export class ListSlackWorkspaceConfigurationsCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, ListSlackWorkspaceConfigurationsCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "SupportAppClient";
26
- const commandName = "ListSlackWorkspaceConfigurationsCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "SupportApp",
35
- operation: "ListSlackWorkspaceConfigurations",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_ListSlackWorkspaceConfigurationsCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_ListSlackWorkspaceConfigurationsCommand(output, context);
46
- }
7
+ export class ListSlackWorkspaceConfigurationsCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("SupportApp", "ListSlackWorkspaceConfigurations", {})
19
+ .n("SupportAppClient", "ListSlackWorkspaceConfigurationsCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_ListSlackWorkspaceConfigurationsCommand)
22
+ .de(de_ListSlackWorkspaceConfigurationsCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_PutAccountAliasCommand, se_PutAccountAliasCommand } from "../protocols/Aws_restJson1";
6
6
  export { $Command };
7
- export class PutAccountAliasCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, PutAccountAliasCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "SupportAppClient";
26
- const commandName = "PutAccountAliasCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "SupportApp",
35
- operation: "PutAccountAlias",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_PutAccountAliasCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_PutAccountAliasCommand(output, context);
46
- }
7
+ export class PutAccountAliasCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("SupportApp", "PutAccountAlias", {})
19
+ .n("SupportAppClient", "PutAccountAliasCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_PutAccountAliasCommand)
22
+ .de(de_PutAccountAliasCommand)
23
+ .build() {
47
24
  }