@aws-sdk/client-support-app 3.1077.0 → 3.1079.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 (38) hide show
  1. package/dist-cjs/index.js +18 -103
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/CreateSlackChannelConfigurationCommand.js +2 -14
  4. package/dist-es/commands/DeleteAccountAliasCommand.js +2 -14
  5. package/dist-es/commands/DeleteSlackChannelConfigurationCommand.js +2 -14
  6. package/dist-es/commands/DeleteSlackWorkspaceConfigurationCommand.js +2 -14
  7. package/dist-es/commands/GetAccountAliasCommand.js +2 -14
  8. package/dist-es/commands/ListSlackChannelConfigurationsCommand.js +2 -14
  9. package/dist-es/commands/ListSlackWorkspaceConfigurationsCommand.js +2 -14
  10. package/dist-es/commands/PutAccountAliasCommand.js +2 -14
  11. package/dist-es/commands/RegisterSlackWorkspaceForOrganizationCommand.js +2 -14
  12. package/dist-es/commands/UpdateSlackChannelConfigurationCommand.js +2 -14
  13. package/dist-es/index.js +1 -0
  14. package/dist-types/commandBuilder.d.ts +18 -0
  15. package/dist-types/commands/CreateSlackChannelConfigurationCommand.d.ts +3 -8
  16. package/dist-types/commands/DeleteAccountAliasCommand.d.ts +3 -8
  17. package/dist-types/commands/DeleteSlackChannelConfigurationCommand.d.ts +3 -8
  18. package/dist-types/commands/DeleteSlackWorkspaceConfigurationCommand.d.ts +3 -8
  19. package/dist-types/commands/GetAccountAliasCommand.d.ts +3 -8
  20. package/dist-types/commands/ListSlackChannelConfigurationsCommand.d.ts +3 -8
  21. package/dist-types/commands/ListSlackWorkspaceConfigurationsCommand.d.ts +3 -8
  22. package/dist-types/commands/PutAccountAliasCommand.d.ts +3 -8
  23. package/dist-types/commands/RegisterSlackWorkspaceForOrganizationCommand.d.ts +3 -8
  24. package/dist-types/commands/UpdateSlackChannelConfigurationCommand.d.ts +3 -8
  25. package/dist-types/index.d.ts +1 -0
  26. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  27. package/dist-types/ts3.4/commands/CreateSlackChannelConfigurationCommand.d.ts +7 -16
  28. package/dist-types/ts3.4/commands/DeleteAccountAliasCommand.d.ts +7 -16
  29. package/dist-types/ts3.4/commands/DeleteSlackChannelConfigurationCommand.d.ts +7 -16
  30. package/dist-types/ts3.4/commands/DeleteSlackWorkspaceConfigurationCommand.d.ts +7 -16
  31. package/dist-types/ts3.4/commands/GetAccountAliasCommand.d.ts +7 -16
  32. package/dist-types/ts3.4/commands/ListSlackChannelConfigurationsCommand.d.ts +7 -16
  33. package/dist-types/ts3.4/commands/ListSlackWorkspaceConfigurationsCommand.d.ts +7 -16
  34. package/dist-types/ts3.4/commands/PutAccountAliasCommand.d.ts +7 -16
  35. package/dist-types/ts3.4/commands/RegisterSlackWorkspaceForOrganizationCommand.d.ts +7 -16
  36. package/dist-types/ts3.4/commands/UpdateSlackChannelConfigurationCommand.d.ts +7 -16
  37. package/dist-types/ts3.4/index.d.ts +1 -0
  38. package/package.json +8 -8
package/dist-cjs/index.js CHANGED
@@ -1,7 +1,8 @@
1
1
  const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
2
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
3
- const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
4
- exports.$Command = Command;
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
4
+ const { Command: $Command } = require("@smithy/core/client");
5
+ exports.$Command = $Command;
5
6
  exports.__Client = Client;
6
7
  const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
8
  const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
@@ -68,7 +69,7 @@ const commonParams = {
68
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
69
70
  };
70
71
 
71
- var version = "3.1076.0";
72
+ var version = "3.1078.0";
72
73
  var packageInfo = {
73
74
  version: version};
74
75
 
@@ -610,124 +611,38 @@ class SupportAppClient extends Client {
610
611
  }
611
612
  }
612
613
 
613
- class CreateSlackChannelConfigurationCommand extends Command
614
- .classBuilder()
615
- .ep(commonParams)
616
- .m(function (Command, cs, config, o) {
617
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
618
- })
619
- .s("SupportApp", "CreateSlackChannelConfiguration", {})
620
- .n("SupportAppClient", "CreateSlackChannelConfigurationCommand")
621
- .sc(CreateSlackChannelConfiguration$)
622
- .build() {
614
+ const command = makeBuilder(commonParams, "SupportApp", "SupportAppClient", getEndpointPlugin);
615
+ const _ep0 = {};
616
+ const _mw0 = (Command, cs, config, o) => [];
617
+
618
+ class CreateSlackChannelConfigurationCommand extends command(_ep0, _mw0, "CreateSlackChannelConfiguration", CreateSlackChannelConfiguration$) {
623
619
  }
624
620
 
625
- class DeleteAccountAliasCommand extends Command
626
- .classBuilder()
627
- .ep(commonParams)
628
- .m(function (Command, cs, config, o) {
629
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
630
- })
631
- .s("SupportApp", "DeleteAccountAlias", {})
632
- .n("SupportAppClient", "DeleteAccountAliasCommand")
633
- .sc(DeleteAccountAlias$)
634
- .build() {
621
+ class DeleteAccountAliasCommand extends command(_ep0, _mw0, "DeleteAccountAlias", DeleteAccountAlias$) {
635
622
  }
636
623
 
637
- class DeleteSlackChannelConfigurationCommand extends Command
638
- .classBuilder()
639
- .ep(commonParams)
640
- .m(function (Command, cs, config, o) {
641
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
642
- })
643
- .s("SupportApp", "DeleteSlackChannelConfiguration", {})
644
- .n("SupportAppClient", "DeleteSlackChannelConfigurationCommand")
645
- .sc(DeleteSlackChannelConfiguration$)
646
- .build() {
624
+ class DeleteSlackChannelConfigurationCommand extends command(_ep0, _mw0, "DeleteSlackChannelConfiguration", DeleteSlackChannelConfiguration$) {
647
625
  }
648
626
 
649
- class DeleteSlackWorkspaceConfigurationCommand extends Command
650
- .classBuilder()
651
- .ep(commonParams)
652
- .m(function (Command, cs, config, o) {
653
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
654
- })
655
- .s("SupportApp", "DeleteSlackWorkspaceConfiguration", {})
656
- .n("SupportAppClient", "DeleteSlackWorkspaceConfigurationCommand")
657
- .sc(DeleteSlackWorkspaceConfiguration$)
658
- .build() {
627
+ class DeleteSlackWorkspaceConfigurationCommand extends command(_ep0, _mw0, "DeleteSlackWorkspaceConfiguration", DeleteSlackWorkspaceConfiguration$) {
659
628
  }
660
629
 
661
- class GetAccountAliasCommand extends Command
662
- .classBuilder()
663
- .ep(commonParams)
664
- .m(function (Command, cs, config, o) {
665
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
666
- })
667
- .s("SupportApp", "GetAccountAlias", {})
668
- .n("SupportAppClient", "GetAccountAliasCommand")
669
- .sc(GetAccountAlias$)
670
- .build() {
630
+ class GetAccountAliasCommand extends command(_ep0, _mw0, "GetAccountAlias", GetAccountAlias$) {
671
631
  }
672
632
 
673
- class ListSlackChannelConfigurationsCommand extends Command
674
- .classBuilder()
675
- .ep(commonParams)
676
- .m(function (Command, cs, config, o) {
677
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
678
- })
679
- .s("SupportApp", "ListSlackChannelConfigurations", {})
680
- .n("SupportAppClient", "ListSlackChannelConfigurationsCommand")
681
- .sc(ListSlackChannelConfigurations$)
682
- .build() {
633
+ class ListSlackChannelConfigurationsCommand extends command(_ep0, _mw0, "ListSlackChannelConfigurations", ListSlackChannelConfigurations$) {
683
634
  }
684
635
 
685
- class ListSlackWorkspaceConfigurationsCommand extends Command
686
- .classBuilder()
687
- .ep(commonParams)
688
- .m(function (Command, cs, config, o) {
689
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
690
- })
691
- .s("SupportApp", "ListSlackWorkspaceConfigurations", {})
692
- .n("SupportAppClient", "ListSlackWorkspaceConfigurationsCommand")
693
- .sc(ListSlackWorkspaceConfigurations$)
694
- .build() {
636
+ class ListSlackWorkspaceConfigurationsCommand extends command(_ep0, _mw0, "ListSlackWorkspaceConfigurations", ListSlackWorkspaceConfigurations$) {
695
637
  }
696
638
 
697
- class PutAccountAliasCommand extends Command
698
- .classBuilder()
699
- .ep(commonParams)
700
- .m(function (Command, cs, config, o) {
701
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
702
- })
703
- .s("SupportApp", "PutAccountAlias", {})
704
- .n("SupportAppClient", "PutAccountAliasCommand")
705
- .sc(PutAccountAlias$)
706
- .build() {
639
+ class PutAccountAliasCommand extends command(_ep0, _mw0, "PutAccountAlias", PutAccountAlias$) {
707
640
  }
708
641
 
709
- class RegisterSlackWorkspaceForOrganizationCommand extends Command
710
- .classBuilder()
711
- .ep(commonParams)
712
- .m(function (Command, cs, config, o) {
713
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
714
- })
715
- .s("SupportApp", "RegisterSlackWorkspaceForOrganization", {})
716
- .n("SupportAppClient", "RegisterSlackWorkspaceForOrganizationCommand")
717
- .sc(RegisterSlackWorkspaceForOrganization$)
718
- .build() {
642
+ class RegisterSlackWorkspaceForOrganizationCommand extends command(_ep0, _mw0, "RegisterSlackWorkspaceForOrganization", RegisterSlackWorkspaceForOrganization$) {
719
643
  }
720
644
 
721
- class UpdateSlackChannelConfigurationCommand extends Command
722
- .classBuilder()
723
- .ep(commonParams)
724
- .m(function (Command, cs, config, o) {
725
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
726
- })
727
- .s("SupportApp", "UpdateSlackChannelConfiguration", {})
728
- .n("SupportAppClient", "UpdateSlackChannelConfigurationCommand")
729
- .sc(UpdateSlackChannelConfiguration$)
730
- .build() {
645
+ class UpdateSlackChannelConfigurationCommand extends command(_ep0, _mw0, "UpdateSlackChannelConfiguration", UpdateSlackChannelConfiguration$) {
731
646
  }
732
647
 
733
648
  const paginateListSlackChannelConfigurations = createPaginator(SupportAppClient, ListSlackChannelConfigurationsCommand, "nextToken", "nextToken", "");
@@ -0,0 +1,6 @@
1
+ import { makeBuilder } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "./endpoint/EndpointParameters";
4
+ export const command = makeBuilder(commonParams, "SupportApp", "SupportAppClient", getEndpointPlugin);
5
+ export const _ep0 = {};
6
+ export const _mw0 = (Command, cs, config, o) => [];
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { CreateSlackChannelConfiguration$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class CreateSlackChannelConfigurationCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("SupportApp", "CreateSlackChannelConfiguration", {})
13
- .n("SupportAppClient", "CreateSlackChannelConfigurationCommand")
14
- .sc(CreateSlackChannelConfiguration$)
15
- .build() {
3
+ export class CreateSlackChannelConfigurationCommand extends command(_ep0, _mw0, "CreateSlackChannelConfiguration", CreateSlackChannelConfiguration$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { DeleteAccountAlias$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class DeleteAccountAliasCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("SupportApp", "DeleteAccountAlias", {})
13
- .n("SupportAppClient", "DeleteAccountAliasCommand")
14
- .sc(DeleteAccountAlias$)
15
- .build() {
3
+ export class DeleteAccountAliasCommand extends command(_ep0, _mw0, "DeleteAccountAlias", DeleteAccountAlias$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { DeleteSlackChannelConfiguration$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class DeleteSlackChannelConfigurationCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("SupportApp", "DeleteSlackChannelConfiguration", {})
13
- .n("SupportAppClient", "DeleteSlackChannelConfigurationCommand")
14
- .sc(DeleteSlackChannelConfiguration$)
15
- .build() {
3
+ export class DeleteSlackChannelConfigurationCommand extends command(_ep0, _mw0, "DeleteSlackChannelConfiguration", DeleteSlackChannelConfiguration$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { DeleteSlackWorkspaceConfiguration$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class DeleteSlackWorkspaceConfigurationCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("SupportApp", "DeleteSlackWorkspaceConfiguration", {})
13
- .n("SupportAppClient", "DeleteSlackWorkspaceConfigurationCommand")
14
- .sc(DeleteSlackWorkspaceConfiguration$)
15
- .build() {
3
+ export class DeleteSlackWorkspaceConfigurationCommand extends command(_ep0, _mw0, "DeleteSlackWorkspaceConfiguration", DeleteSlackWorkspaceConfiguration$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetAccountAlias$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetAccountAliasCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("SupportApp", "GetAccountAlias", {})
13
- .n("SupportAppClient", "GetAccountAliasCommand")
14
- .sc(GetAccountAlias$)
15
- .build() {
3
+ export class GetAccountAliasCommand extends command(_ep0, _mw0, "GetAccountAlias", GetAccountAlias$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListSlackChannelConfigurations$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListSlackChannelConfigurationsCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("SupportApp", "ListSlackChannelConfigurations", {})
13
- .n("SupportAppClient", "ListSlackChannelConfigurationsCommand")
14
- .sc(ListSlackChannelConfigurations$)
15
- .build() {
3
+ export class ListSlackChannelConfigurationsCommand extends command(_ep0, _mw0, "ListSlackChannelConfigurations", ListSlackChannelConfigurations$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListSlackWorkspaceConfigurations$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListSlackWorkspaceConfigurationsCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("SupportApp", "ListSlackWorkspaceConfigurations", {})
13
- .n("SupportAppClient", "ListSlackWorkspaceConfigurationsCommand")
14
- .sc(ListSlackWorkspaceConfigurations$)
15
- .build() {
3
+ export class ListSlackWorkspaceConfigurationsCommand extends command(_ep0, _mw0, "ListSlackWorkspaceConfigurations", ListSlackWorkspaceConfigurations$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { PutAccountAlias$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class PutAccountAliasCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("SupportApp", "PutAccountAlias", {})
13
- .n("SupportAppClient", "PutAccountAliasCommand")
14
- .sc(PutAccountAlias$)
15
- .build() {
3
+ export class PutAccountAliasCommand extends command(_ep0, _mw0, "PutAccountAlias", PutAccountAlias$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { RegisterSlackWorkspaceForOrganization$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class RegisterSlackWorkspaceForOrganizationCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("SupportApp", "RegisterSlackWorkspaceForOrganization", {})
13
- .n("SupportAppClient", "RegisterSlackWorkspaceForOrganizationCommand")
14
- .sc(RegisterSlackWorkspaceForOrganization$)
15
- .build() {
3
+ export class RegisterSlackWorkspaceForOrganizationCommand extends command(_ep0, _mw0, "RegisterSlackWorkspaceForOrganization", RegisterSlackWorkspaceForOrganization$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { UpdateSlackChannelConfiguration$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class UpdateSlackChannelConfigurationCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("SupportApp", "UpdateSlackChannelConfiguration", {})
13
- .n("SupportAppClient", "UpdateSlackChannelConfigurationCommand")
14
- .sc(UpdateSlackChannelConfiguration$)
15
- .build() {
3
+ export class UpdateSlackChannelConfigurationCommand extends command(_ep0, _mw0, "UpdateSlackChannelConfiguration", UpdateSlackChannelConfiguration$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./SupportAppClient";
2
2
  export * from "./SupportApp";
3
3
  export * from "./commands";
4
+ export { Command as $Command } from "@smithy/core/client";
4
5
  export * from "./schemas/schemas_0";
5
6
  export * from "./pagination";
6
7
  export * from "./models/enums";
@@ -0,0 +1,18 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "./SupportAppClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
7
+ new (input: I): import("@smithy/core/client").CommandImpl<I, O, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
9
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
10
+ };
11
+ /**
12
+ * @internal
13
+ */
14
+ export declare const _ep0: EndpointParameterInstructions;
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { CreateSlackChannelConfigurationRequest, CreateSlackChannelConfigurationResult } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface CreateSlackChannelConfigurationCommandInput extends CreateSlack
22
19
  export interface CreateSlackChannelConfigurationCommandOutput extends CreateSlackChannelConfigurationResult, __MetadataBearer {
23
20
  }
24
21
  declare const CreateSlackChannelConfigurationCommand_base: {
25
- new (input: CreateSlackChannelConfigurationCommandInput): import("@smithy/core/client").CommandImpl<CreateSlackChannelConfigurationCommandInput, CreateSlackChannelConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CreateSlackChannelConfigurationCommandInput): import("@smithy/core/client").CommandImpl<CreateSlackChannelConfigurationCommandInput, CreateSlackChannelConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: CreateSlackChannelConfigurationCommandInput): import("@smithy/core/client").CommandImpl<CreateSlackChannelConfigurationCommandInput, CreateSlackChannelConfigurationCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: CreateSlackChannelConfigurationCommandInput): import("@smithy/core/client").CommandImpl<CreateSlackChannelConfigurationCommandInput, CreateSlackChannelConfigurationCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Creates a Slack channel configuration for your Amazon Web Services account.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DeleteAccountAliasRequest, DeleteAccountAliasResult } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DeleteAccountAliasCommandInput extends DeleteAccountAliasReques
22
19
  export interface DeleteAccountAliasCommandOutput extends DeleteAccountAliasResult, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteAccountAliasCommand_base: {
25
- new (input: DeleteAccountAliasCommandInput): import("@smithy/core/client").CommandImpl<DeleteAccountAliasCommandInput, DeleteAccountAliasCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [DeleteAccountAliasCommandInput]): import("@smithy/core/client").CommandImpl<DeleteAccountAliasCommandInput, DeleteAccountAliasCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteAccountAliasCommandInput): import("@smithy/core/client").CommandImpl<DeleteAccountAliasCommandInput, DeleteAccountAliasCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [DeleteAccountAliasCommandInput]): import("@smithy/core/client").CommandImpl<DeleteAccountAliasCommandInput, DeleteAccountAliasCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Deletes an alias for an Amazon Web Services account ID. The alias appears in the Amazon Web Services Support App page of the
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DeleteSlackChannelConfigurationRequest, DeleteSlackChannelConfigurationResult } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DeleteSlackChannelConfigurationCommandInput extends DeleteSlack
22
19
  export interface DeleteSlackChannelConfigurationCommandOutput extends DeleteSlackChannelConfigurationResult, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteSlackChannelConfigurationCommand_base: {
25
- new (input: DeleteSlackChannelConfigurationCommandInput): import("@smithy/core/client").CommandImpl<DeleteSlackChannelConfigurationCommandInput, DeleteSlackChannelConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteSlackChannelConfigurationCommandInput): import("@smithy/core/client").CommandImpl<DeleteSlackChannelConfigurationCommandInput, DeleteSlackChannelConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteSlackChannelConfigurationCommandInput): import("@smithy/core/client").CommandImpl<DeleteSlackChannelConfigurationCommandInput, DeleteSlackChannelConfigurationCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeleteSlackChannelConfigurationCommandInput): import("@smithy/core/client").CommandImpl<DeleteSlackChannelConfigurationCommandInput, DeleteSlackChannelConfigurationCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Deletes a Slack channel configuration from your Amazon Web Services account. This operation doesn't
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DeleteSlackWorkspaceConfigurationRequest, DeleteSlackWorkspaceConfigurationResult } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DeleteSlackWorkspaceConfigurationCommandInput extends DeleteSla
22
19
  export interface DeleteSlackWorkspaceConfigurationCommandOutput extends DeleteSlackWorkspaceConfigurationResult, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteSlackWorkspaceConfigurationCommand_base: {
25
- new (input: DeleteSlackWorkspaceConfigurationCommandInput): import("@smithy/core/client").CommandImpl<DeleteSlackWorkspaceConfigurationCommandInput, DeleteSlackWorkspaceConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteSlackWorkspaceConfigurationCommandInput): import("@smithy/core/client").CommandImpl<DeleteSlackWorkspaceConfigurationCommandInput, DeleteSlackWorkspaceConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteSlackWorkspaceConfigurationCommandInput): import("@smithy/core/client").CommandImpl<DeleteSlackWorkspaceConfigurationCommandInput, DeleteSlackWorkspaceConfigurationCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeleteSlackWorkspaceConfigurationCommandInput): import("@smithy/core/client").CommandImpl<DeleteSlackWorkspaceConfigurationCommandInput, DeleteSlackWorkspaceConfigurationCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Deletes a Slack workspace configuration from your Amazon Web Services account. This operation doesn't
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetAccountAliasRequest, GetAccountAliasResult } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetAccountAliasCommandInput extends GetAccountAliasRequest {
22
19
  export interface GetAccountAliasCommandOutput extends GetAccountAliasResult, __MetadataBearer {
23
20
  }
24
21
  declare const GetAccountAliasCommand_base: {
25
- new (input: GetAccountAliasCommandInput): import("@smithy/core/client").CommandImpl<GetAccountAliasCommandInput, GetAccountAliasCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [GetAccountAliasCommandInput]): import("@smithy/core/client").CommandImpl<GetAccountAliasCommandInput, GetAccountAliasCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetAccountAliasCommandInput): import("@smithy/core/client").CommandImpl<GetAccountAliasCommandInput, GetAccountAliasCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [GetAccountAliasCommandInput]): import("@smithy/core/client").CommandImpl<GetAccountAliasCommandInput, GetAccountAliasCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Retrieves the alias from an Amazon Web Services account ID. The alias appears in the Amazon Web Services Support App page of
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListSlackChannelConfigurationsRequest, ListSlackChannelConfigurationsResult } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListSlackChannelConfigurationsCommandInput extends ListSlackCha
22
19
  export interface ListSlackChannelConfigurationsCommandOutput extends ListSlackChannelConfigurationsResult, __MetadataBearer {
23
20
  }
24
21
  declare const ListSlackChannelConfigurationsCommand_base: {
25
- new (input: ListSlackChannelConfigurationsCommandInput): import("@smithy/core/client").CommandImpl<ListSlackChannelConfigurationsCommandInput, ListSlackChannelConfigurationsCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListSlackChannelConfigurationsCommandInput]): import("@smithy/core/client").CommandImpl<ListSlackChannelConfigurationsCommandInput, ListSlackChannelConfigurationsCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListSlackChannelConfigurationsCommandInput): import("@smithy/core/client").CommandImpl<ListSlackChannelConfigurationsCommandInput, ListSlackChannelConfigurationsCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListSlackChannelConfigurationsCommandInput]): import("@smithy/core/client").CommandImpl<ListSlackChannelConfigurationsCommandInput, ListSlackChannelConfigurationsCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Lists the Slack channel configurations for an Amazon Web Services account.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListSlackWorkspaceConfigurationsRequest, ListSlackWorkspaceConfigurationsResult } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListSlackWorkspaceConfigurationsCommandInput extends ListSlackW
22
19
  export interface ListSlackWorkspaceConfigurationsCommandOutput extends ListSlackWorkspaceConfigurationsResult, __MetadataBearer {
23
20
  }
24
21
  declare const ListSlackWorkspaceConfigurationsCommand_base: {
25
- new (input: ListSlackWorkspaceConfigurationsCommandInput): import("@smithy/core/client").CommandImpl<ListSlackWorkspaceConfigurationsCommandInput, ListSlackWorkspaceConfigurationsCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListSlackWorkspaceConfigurationsCommandInput]): import("@smithy/core/client").CommandImpl<ListSlackWorkspaceConfigurationsCommandInput, ListSlackWorkspaceConfigurationsCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListSlackWorkspaceConfigurationsCommandInput): import("@smithy/core/client").CommandImpl<ListSlackWorkspaceConfigurationsCommandInput, ListSlackWorkspaceConfigurationsCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListSlackWorkspaceConfigurationsCommandInput]): import("@smithy/core/client").CommandImpl<ListSlackWorkspaceConfigurationsCommandInput, ListSlackWorkspaceConfigurationsCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Lists the Slack workspace configurations for an Amazon Web Services account.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { PutAccountAliasRequest, PutAccountAliasResult } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface PutAccountAliasCommandInput extends PutAccountAliasRequest {
22
19
  export interface PutAccountAliasCommandOutput extends PutAccountAliasResult, __MetadataBearer {
23
20
  }
24
21
  declare const PutAccountAliasCommand_base: {
25
- new (input: PutAccountAliasCommandInput): import("@smithy/core/client").CommandImpl<PutAccountAliasCommandInput, PutAccountAliasCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: PutAccountAliasCommandInput): import("@smithy/core/client").CommandImpl<PutAccountAliasCommandInput, PutAccountAliasCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: PutAccountAliasCommandInput): import("@smithy/core/client").CommandImpl<PutAccountAliasCommandInput, PutAccountAliasCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: PutAccountAliasCommandInput): import("@smithy/core/client").CommandImpl<PutAccountAliasCommandInput, PutAccountAliasCommandOutput, import("..").SupportAppClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Creates or updates an individual alias for each Amazon Web Services account ID. The alias appears in the