@aws-sdk/client-support-app 3.533.0 → 3.540.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 (31) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +4 -2
  2. package/dist-cjs/index.js +0 -3
  3. package/dist-es/endpoint/endpointResolver.js +3 -1
  4. package/dist-es/index.js +0 -1
  5. package/dist-types/SupportApp.d.ts +5 -1
  6. package/dist-types/SupportAppClient.d.ts +1 -1
  7. package/dist-types/commands/CreateSlackChannelConfigurationCommand.d.ts +2 -1
  8. package/dist-types/commands/DeleteAccountAliasCommand.d.ts +2 -1
  9. package/dist-types/commands/DeleteSlackChannelConfigurationCommand.d.ts +2 -1
  10. package/dist-types/commands/DeleteSlackWorkspaceConfigurationCommand.d.ts +2 -1
  11. package/dist-types/commands/GetAccountAliasCommand.d.ts +2 -1
  12. package/dist-types/commands/ListSlackChannelConfigurationsCommand.d.ts +2 -1
  13. package/dist-types/commands/ListSlackWorkspaceConfigurationsCommand.d.ts +2 -1
  14. package/dist-types/commands/PutAccountAliasCommand.d.ts +2 -1
  15. package/dist-types/commands/RegisterSlackWorkspaceForOrganizationCommand.d.ts +2 -1
  16. package/dist-types/commands/UpdateSlackChannelConfigurationCommand.d.ts +2 -1
  17. package/dist-types/index.d.ts +0 -1
  18. package/dist-types/models/models_0.d.ts +58 -58
  19. package/dist-types/ts3.4/SupportApp.d.ts +4 -0
  20. package/dist-types/ts3.4/commands/CreateSlackChannelConfigurationCommand.d.ts +9 -0
  21. package/dist-types/ts3.4/commands/DeleteAccountAliasCommand.d.ts +9 -0
  22. package/dist-types/ts3.4/commands/DeleteSlackChannelConfigurationCommand.d.ts +9 -0
  23. package/dist-types/ts3.4/commands/DeleteSlackWorkspaceConfigurationCommand.d.ts +9 -0
  24. package/dist-types/ts3.4/commands/GetAccountAliasCommand.d.ts +9 -0
  25. package/dist-types/ts3.4/commands/ListSlackChannelConfigurationsCommand.d.ts +9 -0
  26. package/dist-types/ts3.4/commands/ListSlackWorkspaceConfigurationsCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/PutAccountAliasCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/RegisterSlackWorkspaceForOrganizationCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/UpdateSlackChannelConfigurationCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/index.d.ts +0 -1
  31. package/package.json +40 -40
@@ -1,12 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.defaultEndpointResolver = void 0;
4
- const util_endpoints_1 = require("@smithy/util-endpoints");
4
+ const util_endpoints_1 = require("@aws-sdk/util-endpoints");
5
+ const util_endpoints_2 = require("@smithy/util-endpoints");
5
6
  const ruleset_1 = require("./ruleset");
6
7
  const defaultEndpointResolver = (endpointParams, context = {}) => {
7
- return (0, util_endpoints_1.resolveEndpoint)(ruleset_1.ruleSet, {
8
+ return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
8
9
  endpointParams: endpointParams,
9
10
  logger: context.logger,
10
11
  });
11
12
  };
12
13
  exports.defaultEndpointResolver = defaultEndpointResolver;
14
+ util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
package/dist-cjs/index.js CHANGED
@@ -933,9 +933,6 @@ var paginateListSlackChannelConfigurations = (0, import_core.createPaginator)(Su
933
933
  // src/pagination/ListSlackWorkspaceConfigurationsPaginator.ts
934
934
 
935
935
  var paginateListSlackWorkspaceConfigurations = (0, import_core.createPaginator)(SupportAppClient, ListSlackWorkspaceConfigurationsCommand, "nextToken", "nextToken", "");
936
-
937
- // src/index.ts
938
- var import_util_endpoints = require("@aws-sdk/util-endpoints");
939
936
  // Annotate the CommonJS export names for ESM import in node:
940
937
 
941
938
  0 && (module.exports = {
@@ -1,4 +1,5 @@
1
- import { resolveEndpoint } from "@smithy/util-endpoints";
1
+ import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
2
+ import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
2
3
  import { ruleSet } from "./ruleset";
3
4
  export const defaultEndpointResolver = (endpointParams, context = {}) => {
4
5
  return resolveEndpoint(ruleSet, {
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
6
7
  logger: context.logger,
7
8
  });
8
9
  };
10
+ customEndpointFunctions.aws = awsEndpointFunctions;
package/dist-es/index.js CHANGED
@@ -3,5 +3,4 @@ export * from "./SupportApp";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
5
  export * from "./models";
6
- import "@aws-sdk/util-endpoints";
7
6
  export { SupportAppServiceException } from "./models/SupportAppServiceException";
@@ -20,6 +20,7 @@ export interface SupportApp {
20
20
  /**
21
21
  * @see {@link DeleteAccountAliasCommand}
22
22
  */
23
+ deleteAccountAlias(): Promise<DeleteAccountAliasCommandOutput>;
23
24
  deleteAccountAlias(args: DeleteAccountAliasCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAccountAliasCommandOutput>;
24
25
  deleteAccountAlias(args: DeleteAccountAliasCommandInput, cb: (err: any, data?: DeleteAccountAliasCommandOutput) => void): void;
25
26
  deleteAccountAlias(args: DeleteAccountAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAccountAliasCommandOutput) => void): void;
@@ -38,18 +39,21 @@ export interface SupportApp {
38
39
  /**
39
40
  * @see {@link GetAccountAliasCommand}
40
41
  */
42
+ getAccountAlias(): Promise<GetAccountAliasCommandOutput>;
41
43
  getAccountAlias(args: GetAccountAliasCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountAliasCommandOutput>;
42
44
  getAccountAlias(args: GetAccountAliasCommandInput, cb: (err: any, data?: GetAccountAliasCommandOutput) => void): void;
43
45
  getAccountAlias(args: GetAccountAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountAliasCommandOutput) => void): void;
44
46
  /**
45
47
  * @see {@link ListSlackChannelConfigurationsCommand}
46
48
  */
49
+ listSlackChannelConfigurations(): Promise<ListSlackChannelConfigurationsCommandOutput>;
47
50
  listSlackChannelConfigurations(args: ListSlackChannelConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListSlackChannelConfigurationsCommandOutput>;
48
51
  listSlackChannelConfigurations(args: ListSlackChannelConfigurationsCommandInput, cb: (err: any, data?: ListSlackChannelConfigurationsCommandOutput) => void): void;
49
52
  listSlackChannelConfigurations(args: ListSlackChannelConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSlackChannelConfigurationsCommandOutput) => void): void;
50
53
  /**
51
54
  * @see {@link ListSlackWorkspaceConfigurationsCommand}
52
55
  */
56
+ listSlackWorkspaceConfigurations(): Promise<ListSlackWorkspaceConfigurationsCommandOutput>;
53
57
  listSlackWorkspaceConfigurations(args: ListSlackWorkspaceConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListSlackWorkspaceConfigurationsCommandOutput>;
54
58
  listSlackWorkspaceConfigurations(args: ListSlackWorkspaceConfigurationsCommandInput, cb: (err: any, data?: ListSlackWorkspaceConfigurationsCommandOutput) => void): void;
55
59
  listSlackWorkspaceConfigurations(args: ListSlackWorkspaceConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSlackWorkspaceConfigurationsCommandOutput) => void): void;
@@ -73,7 +77,6 @@ export interface SupportApp {
73
77
  updateSlackChannelConfiguration(args: UpdateSlackChannelConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSlackChannelConfigurationCommandOutput) => void): void;
74
78
  }
75
79
  /**
76
- * @public
77
80
  * <fullname>Amazon Web Services Support App in Slack</fullname>
78
81
  * <p>You can use the Amazon Web Services Support App in Slack API to manage your support cases in Slack for your
79
82
  * Amazon Web Services account. After you configure your Slack workspace and channel with the Amazon Web Services Support App, you can
@@ -128,6 +131,7 @@ export interface SupportApp {
128
131
  * </li>
129
132
  * </ul>
130
133
  * </note>
134
+ * @public
131
135
  */
132
136
  export declare class SupportApp extends SupportAppClient implements SupportApp {
133
137
  }
@@ -161,7 +161,6 @@ export type SupportAppClientResolvedConfigType = __SmithyResolvedConfiguration<_
161
161
  export interface SupportAppClientResolvedConfig extends SupportAppClientResolvedConfigType {
162
162
  }
163
163
  /**
164
- * @public
165
164
  * <fullname>Amazon Web Services Support App in Slack</fullname>
166
165
  * <p>You can use the Amazon Web Services Support App in Slack API to manage your support cases in Slack for your
167
166
  * Amazon Web Services account. After you configure your Slack workspace and channel with the Amazon Web Services Support App, you can
@@ -216,6 +215,7 @@ export interface SupportAppClientResolvedConfig extends SupportAppClientResolved
216
215
  * </li>
217
216
  * </ul>
218
217
  * </note>
218
+ * @public
219
219
  */
220
220
  export declare class SupportAppClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig> {
221
221
  /**
@@ -22,10 +22,10 @@ export interface CreateSlackChannelConfigurationCommandOutput extends CreateSlac
22
22
  }
23
23
  declare const CreateSlackChannelConfigurationCommand_base: {
24
24
  new (input: CreateSlackChannelConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateSlackChannelConfigurationCommandInput, CreateSlackChannelConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateSlackChannelConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateSlackChannelConfigurationCommandInput, CreateSlackChannelConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a Slack channel configuration for your Amazon Web Services account.</p>
30
30
  * <note>
31
31
  * <ul>
@@ -121,6 +121,7 @@ declare const CreateSlackChannelConfigurationCommand_base: {
121
121
  * @throws {@link SupportAppServiceException}
122
122
  * <p>Base exception class for all service exceptions from SupportApp service.</p>
123
123
  *
124
+ * @public
124
125
  */
125
126
  export declare class CreateSlackChannelConfigurationCommand extends CreateSlackChannelConfigurationCommand_base {
126
127
  }
@@ -22,10 +22,10 @@ export interface DeleteAccountAliasCommandOutput extends DeleteAccountAliasResul
22
22
  }
23
23
  declare const DeleteAccountAliasCommand_base: {
24
24
  new (input: DeleteAccountAliasCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAccountAliasCommandInput, DeleteAccountAliasCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [DeleteAccountAliasCommandInput]): import("@smithy/smithy-client").CommandImpl<DeleteAccountAliasCommandInput, DeleteAccountAliasCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes an alias for an Amazon Web Services account ID. The alias appears in the Amazon Web Services Support App page of the
30
30
  * Amazon Web Services Support Center. The alias also appears in Slack messages from the Amazon Web Services Support App.</p>
31
31
  * @example
@@ -60,6 +60,7 @@ declare const DeleteAccountAliasCommand_base: {
60
60
  * @throws {@link SupportAppServiceException}
61
61
  * <p>Base exception class for all service exceptions from SupportApp service.</p>
62
62
  *
63
+ * @public
63
64
  */
64
65
  export declare class DeleteAccountAliasCommand extends DeleteAccountAliasCommand_base {
65
66
  }
@@ -22,10 +22,10 @@ export interface DeleteSlackChannelConfigurationCommandOutput extends DeleteSlac
22
22
  }
23
23
  declare const DeleteSlackChannelConfigurationCommand_base: {
24
24
  new (input: DeleteSlackChannelConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSlackChannelConfigurationCommandInput, DeleteSlackChannelConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteSlackChannelConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSlackChannelConfigurationCommandInput, DeleteSlackChannelConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes a Slack channel configuration from your Amazon Web Services account. This operation doesn't
30
30
  * delete your Slack channel.</p>
31
31
  * @example
@@ -95,6 +95,7 @@ declare const DeleteSlackChannelConfigurationCommand_base: {
95
95
  * @throws {@link SupportAppServiceException}
96
96
  * <p>Base exception class for all service exceptions from SupportApp service.</p>
97
97
  *
98
+ * @public
98
99
  */
99
100
  export declare class DeleteSlackChannelConfigurationCommand extends DeleteSlackChannelConfigurationCommand_base {
100
101
  }
@@ -22,10 +22,10 @@ export interface DeleteSlackWorkspaceConfigurationCommandOutput extends DeleteSl
22
22
  }
23
23
  declare const DeleteSlackWorkspaceConfigurationCommand_base: {
24
24
  new (input: DeleteSlackWorkspaceConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSlackWorkspaceConfigurationCommandInput, DeleteSlackWorkspaceConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteSlackWorkspaceConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSlackWorkspaceConfigurationCommandInput, DeleteSlackWorkspaceConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes a Slack workspace configuration from your Amazon Web Services account. This operation doesn't
30
30
  * delete your Slack workspace.</p>
31
31
  * @example
@@ -94,6 +94,7 @@ declare const DeleteSlackWorkspaceConfigurationCommand_base: {
94
94
  * @throws {@link SupportAppServiceException}
95
95
  * <p>Base exception class for all service exceptions from SupportApp service.</p>
96
96
  *
97
+ * @public
97
98
  */
98
99
  export declare class DeleteSlackWorkspaceConfigurationCommand extends DeleteSlackWorkspaceConfigurationCommand_base {
99
100
  }
@@ -22,10 +22,10 @@ export interface GetAccountAliasCommandOutput extends GetAccountAliasResult, __M
22
22
  }
23
23
  declare const GetAccountAliasCommand_base: {
24
24
  new (input: GetAccountAliasCommandInput): import("@smithy/smithy-client").CommandImpl<GetAccountAliasCommandInput, GetAccountAliasCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [GetAccountAliasCommandInput]): import("@smithy/smithy-client").CommandImpl<GetAccountAliasCommandInput, GetAccountAliasCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves the alias from an Amazon Web Services account ID. The alias appears in the Amazon Web Services Support App page of
30
30
  * the Amazon Web Services Support Center. The alias also appears in Slack messages from the Amazon Web Services Support App.</p>
31
31
  * @example
@@ -55,6 +55,7 @@ declare const GetAccountAliasCommand_base: {
55
55
  * @throws {@link SupportAppServiceException}
56
56
  * <p>Base exception class for all service exceptions from SupportApp service.</p>
57
57
  *
58
+ * @public
58
59
  */
59
60
  export declare class GetAccountAliasCommand extends GetAccountAliasCommand_base {
60
61
  }
@@ -22,10 +22,10 @@ export interface ListSlackChannelConfigurationsCommandOutput extends ListSlackCh
22
22
  }
23
23
  declare const ListSlackChannelConfigurationsCommand_base: {
24
24
  new (input: ListSlackChannelConfigurationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSlackChannelConfigurationsCommandInput, ListSlackChannelConfigurationsCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListSlackChannelConfigurationsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListSlackChannelConfigurationsCommandInput, ListSlackChannelConfigurationsCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the Slack channel configurations for an Amazon Web Services account.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -71,6 +71,7 @@ declare const ListSlackChannelConfigurationsCommand_base: {
71
71
  * @throws {@link SupportAppServiceException}
72
72
  * <p>Base exception class for all service exceptions from SupportApp service.</p>
73
73
  *
74
+ * @public
74
75
  */
75
76
  export declare class ListSlackChannelConfigurationsCommand extends ListSlackChannelConfigurationsCommand_base {
76
77
  }
@@ -22,10 +22,10 @@ export interface ListSlackWorkspaceConfigurationsCommandOutput extends ListSlack
22
22
  }
23
23
  declare const ListSlackWorkspaceConfigurationsCommand_base: {
24
24
  new (input: ListSlackWorkspaceConfigurationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSlackWorkspaceConfigurationsCommandInput, ListSlackWorkspaceConfigurationsCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListSlackWorkspaceConfigurationsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListSlackWorkspaceConfigurationsCommandInput, ListSlackWorkspaceConfigurationsCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the Slack workspace configurations for an Amazon Web Services account.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -66,6 +66,7 @@ declare const ListSlackWorkspaceConfigurationsCommand_base: {
66
66
  * @throws {@link SupportAppServiceException}
67
67
  * <p>Base exception class for all service exceptions from SupportApp service.</p>
68
68
  *
69
+ * @public
69
70
  */
70
71
  export declare class ListSlackWorkspaceConfigurationsCommand extends ListSlackWorkspaceConfigurationsCommand_base {
71
72
  }
@@ -22,10 +22,10 @@ export interface PutAccountAliasCommandOutput extends PutAccountAliasResult, __M
22
22
  }
23
23
  declare const PutAccountAliasCommand_base: {
24
24
  new (input: PutAccountAliasCommandInput): import("@smithy/smithy-client").CommandImpl<PutAccountAliasCommandInput, PutAccountAliasCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: PutAccountAliasCommandInput): import("@smithy/smithy-client").CommandImpl<PutAccountAliasCommandInput, PutAccountAliasCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates or updates an individual alias for each Amazon Web Services account ID. The alias appears in the
30
30
  * Amazon Web Services Support App page of the Amazon Web Services Support Center. The alias also appears in Slack messages from the
31
31
  * Amazon Web Services Support App.</p>
@@ -62,6 +62,7 @@ declare const PutAccountAliasCommand_base: {
62
62
  * @throws {@link SupportAppServiceException}
63
63
  * <p>Base exception class for all service exceptions from SupportApp service.</p>
64
64
  *
65
+ * @public
65
66
  */
66
67
  export declare class PutAccountAliasCommand extends PutAccountAliasCommand_base {
67
68
  }
@@ -22,10 +22,10 @@ export interface RegisterSlackWorkspaceForOrganizationCommandOutput extends Regi
22
22
  }
23
23
  declare const RegisterSlackWorkspaceForOrganizationCommand_base: {
24
24
  new (input: RegisterSlackWorkspaceForOrganizationCommandInput): import("@smithy/smithy-client").CommandImpl<RegisterSlackWorkspaceForOrganizationCommandInput, RegisterSlackWorkspaceForOrganizationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: RegisterSlackWorkspaceForOrganizationCommandInput): import("@smithy/smithy-client").CommandImpl<RegisterSlackWorkspaceForOrganizationCommandInput, RegisterSlackWorkspaceForOrganizationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Registers a Slack workspace for your Amazon Web Services account. To call this API, your account must be
30
30
  * part of an organization in Organizations.</p>
31
31
  * <p>If you're the <i>management account</i> and you want to register Slack
@@ -126,6 +126,7 @@ declare const RegisterSlackWorkspaceForOrganizationCommand_base: {
126
126
  * @throws {@link SupportAppServiceException}
127
127
  * <p>Base exception class for all service exceptions from SupportApp service.</p>
128
128
  *
129
+ * @public
129
130
  */
130
131
  export declare class RegisterSlackWorkspaceForOrganizationCommand extends RegisterSlackWorkspaceForOrganizationCommand_base {
131
132
  }
@@ -22,10 +22,10 @@ export interface UpdateSlackChannelConfigurationCommandOutput extends UpdateSlac
22
22
  }
23
23
  declare const UpdateSlackChannelConfigurationCommand_base: {
24
24
  new (input: UpdateSlackChannelConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateSlackChannelConfigurationCommandInput, UpdateSlackChannelConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateSlackChannelConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateSlackChannelConfigurationCommandInput, UpdateSlackChannelConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Updates the configuration for a Slack channel, such as case update notifications.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -109,6 +109,7 @@ declare const UpdateSlackChannelConfigurationCommand_base: {
109
109
  * @throws {@link SupportAppServiceException}
110
110
  * <p>Base exception class for all service exceptions from SupportApp service.</p>
111
111
  *
112
+ * @public
112
113
  */
113
114
  export declare class UpdateSlackChannelConfigurationCommand extends UpdateSlackChannelConfigurationCommand_base {
114
115
  }
@@ -64,5 +64,4 @@ export { SupportAppExtensionConfiguration } from "./extensionConfiguration";
64
64
  export * from "./commands";
65
65
  export * from "./pagination";
66
66
  export * from "./models";
67
- import "@aws-sdk/util-endpoints";
68
67
  export { SupportAppServiceException } from "./models/SupportAppServiceException";
@@ -1,8 +1,8 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { SupportAppServiceException as __BaseException } from "./SupportAppServiceException";
3
3
  /**
4
- * @public
5
4
  * <p>You don't have sufficient permission to perform this action.</p>
5
+ * @public
6
6
  */
7
7
  export declare class AccessDeniedException extends __BaseException {
8
8
  readonly name: "AccessDeniedException";
@@ -25,7 +25,6 @@ export declare const AccountType: {
25
25
  */
26
26
  export type AccountType = (typeof AccountType)[keyof typeof AccountType];
27
27
  /**
28
- * @public
29
28
  * <p>Your request has a conflict. For example, you might receive this error if you try the
30
29
  * following:</p>
31
30
  * <ul>
@@ -53,6 +52,7 @@ export type AccountType = (typeof AccountType)[keyof typeof AccountType];
53
52
  * organization.</p>
54
53
  * </li>
55
54
  * </ul>
55
+ * @public
56
56
  */
57
57
  export declare class ConflictException extends __BaseException {
58
58
  readonly name: "ConflictException";
@@ -80,38 +80,37 @@ export type NotificationSeverityLevel = (typeof NotificationSeverityLevel)[keyof
80
80
  */
81
81
  export interface CreateSlackChannelConfigurationRequest {
82
82
  /**
83
- * @public
84
83
  * <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as
85
84
  * <code>T012ABCDEFG</code>.</p>
85
+ * @public
86
86
  */
87
87
  teamId: string | undefined;
88
88
  /**
89
- * @public
90
89
  * <p>The channel ID in Slack. This ID identifies a channel within a Slack workspace.</p>
90
+ * @public
91
91
  */
92
92
  channelId: string | undefined;
93
93
  /**
94
- * @public
95
94
  * <p>The name of the Slack channel that you configure for the Amazon Web Services Support App.</p>
95
+ * @public
96
96
  */
97
97
  channelName?: string;
98
98
  /**
99
- * @public
100
99
  * <p>Whether you want to get notified when a support case is created or reopened.</p>
100
+ * @public
101
101
  */
102
102
  notifyOnCreateOrReopenCase?: boolean;
103
103
  /**
104
- * @public
105
104
  * <p>Whether you want to get notified when a support case has a new correspondence.</p>
105
+ * @public
106
106
  */
107
107
  notifyOnAddCorrespondenceToCase?: boolean;
108
108
  /**
109
- * @public
110
109
  * <p>Whether you want to get notified when a support case is resolved.</p>
110
+ * @public
111
111
  */
112
112
  notifyOnResolveCase?: boolean;
113
113
  /**
114
- * @public
115
114
  * <p>The case severity for a support case that you want to receive notifications.</p>
116
115
  * <p>If you specify <code>high</code> or <code>all</code>, you must specify <code>true</code>
117
116
  * for at least one of the following parameters:</p>
@@ -155,13 +154,14 @@ export interface CreateSlackChannelConfigurationRequest {
155
154
  * <p>If you don't specify these parameters in your request, they default to
156
155
  * <code>false</code>.</p>
157
156
  * </note>
157
+ * @public
158
158
  */
159
159
  notifyOnCaseSeverity: NotificationSeverityLevel | undefined;
160
160
  /**
161
- * @public
162
161
  * <p>The Amazon Resource Name (ARN) of an IAM role that you want to
163
162
  * use to perform operations on Amazon Web Services. For more information, see <a href="https://docs.aws.amazon.com/awssupport/latest/user/support-app-permissions.html">Managing access to
164
163
  * the Amazon Web Services Support App</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
164
+ * @public
165
165
  */
166
166
  channelRoleArn: string | undefined;
167
167
  }
@@ -171,8 +171,8 @@ export interface CreateSlackChannelConfigurationRequest {
171
171
  export interface CreateSlackChannelConfigurationResult {
172
172
  }
173
173
  /**
174
- * @public
175
174
  * <p>We can’t process your request right now because of a server issue. Try again later.</p>
175
+ * @public
176
176
  */
177
177
  export declare class InternalServerException extends __BaseException {
178
178
  readonly name: "InternalServerException";
@@ -183,10 +183,10 @@ export declare class InternalServerException extends __BaseException {
183
183
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
184
184
  }
185
185
  /**
186
- * @public
187
186
  * <p>Your Service Quotas request exceeds the quota for the service. For example, your Service Quotas request to
188
187
  * Amazon Web Services Support App might exceed the maximum number of workspaces or channels per account, or the maximum
189
188
  * number of accounts per Slack channel.</p>
189
+ * @public
190
190
  */
191
191
  export declare class ServiceQuotaExceededException extends __BaseException {
192
192
  readonly name: "ServiceQuotaExceededException";
@@ -197,8 +197,8 @@ export declare class ServiceQuotaExceededException extends __BaseException {
197
197
  constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
198
198
  }
199
199
  /**
200
- * @public
201
200
  * <p>Your request input doesn't meet the constraints that the Amazon Web Services Support App specifies.</p>
201
+ * @public
202
202
  */
203
203
  export declare class ValidationException extends __BaseException {
204
204
  readonly name: "ValidationException";
@@ -219,9 +219,9 @@ export interface DeleteAccountAliasRequest {
219
219
  export interface DeleteAccountAliasResult {
220
220
  }
221
221
  /**
222
- * @public
223
222
  * <p>The specified resource is missing or doesn't exist, such as an account alias, Slack
224
223
  * channel configuration, or Slack workspace configuration.</p>
224
+ * @public
225
225
  */
226
226
  export declare class ResourceNotFoundException extends __BaseException {
227
227
  readonly name: "ResourceNotFoundException";
@@ -236,14 +236,14 @@ export declare class ResourceNotFoundException extends __BaseException {
236
236
  */
237
237
  export interface DeleteSlackChannelConfigurationRequest {
238
238
  /**
239
- * @public
240
239
  * <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as
241
240
  * <code>T012ABCDEFG</code>.</p>
241
+ * @public
242
242
  */
243
243
  teamId: string | undefined;
244
244
  /**
245
- * @public
246
245
  * <p>The channel ID in Slack. This ID identifies a channel within a Slack workspace.</p>
246
+ * @public
247
247
  */
248
248
  channelId: string | undefined;
249
249
  }
@@ -257,9 +257,9 @@ export interface DeleteSlackChannelConfigurationResult {
257
257
  */
258
258
  export interface DeleteSlackWorkspaceConfigurationRequest {
259
259
  /**
260
- * @public
261
260
  * <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as
262
261
  * <code>T012ABCDEFG</code>.</p>
262
+ * @public
263
263
  */
264
264
  teamId: string | undefined;
265
265
  }
@@ -278,8 +278,8 @@ export interface GetAccountAliasRequest {
278
278
  */
279
279
  export interface GetAccountAliasResult {
280
280
  /**
281
- * @public
282
281
  * <p>An alias or short name for an Amazon Web Services account.</p>
282
+ * @public
283
283
  */
284
284
  accountAlias?: string;
285
285
  }
@@ -288,60 +288,60 @@ export interface GetAccountAliasResult {
288
288
  */
289
289
  export interface ListSlackChannelConfigurationsRequest {
290
290
  /**
291
- * @public
292
291
  * <p>If the results of a search are large, the API only returns a portion of the results and
293
292
  * includes a <code>nextToken</code> pagination token in the response. To retrieve the next batch of results, reissue the search request and include the returned token.
294
293
  * When the API returns the last set of results, the response doesn't include a pagination token value.</p>
294
+ * @public
295
295
  */
296
296
  nextToken?: string;
297
297
  }
298
298
  /**
299
- * @public
300
299
  * <p>The configuration for a Slack channel that you added for your Amazon Web Services account.</p>
300
+ * @public
301
301
  */
302
302
  export interface SlackChannelConfiguration {
303
303
  /**
304
- * @public
305
304
  * <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as
306
305
  * <code>T012ABCDEFG</code>.</p>
306
+ * @public
307
307
  */
308
308
  teamId: string | undefined;
309
309
  /**
310
- * @public
311
310
  * <p>The channel ID in Slack. This ID identifies a channel within a Slack workspace.</p>
311
+ * @public
312
312
  */
313
313
  channelId: string | undefined;
314
314
  /**
315
- * @public
316
315
  * <p>The name of the Slack channel that you configured with the Amazon Web Services Support App for your
317
316
  * Amazon Web Services account.</p>
317
+ * @public
318
318
  */
319
319
  channelName?: string;
320
320
  /**
321
- * @public
322
321
  * <p>Whether you want to get notified when a support case is created or reopened.</p>
322
+ * @public
323
323
  */
324
324
  notifyOnCreateOrReopenCase?: boolean;
325
325
  /**
326
- * @public
327
326
  * <p>Whether you want to get notified when a support case has a new correspondence.</p>
327
+ * @public
328
328
  */
329
329
  notifyOnAddCorrespondenceToCase?: boolean;
330
330
  /**
331
- * @public
332
331
  * <p>Whether you want to get notified when a support case is resolved.</p>
332
+ * @public
333
333
  */
334
334
  notifyOnResolveCase?: boolean;
335
335
  /**
336
- * @public
337
336
  * <p>The case severity for a support case that you want to receive notifications.</p>
337
+ * @public
338
338
  */
339
339
  notifyOnCaseSeverity?: NotificationSeverityLevel;
340
340
  /**
341
- * @public
342
341
  * <p>The Amazon Resource Name (ARN) of an IAM role that you want to
343
342
  * use to perform operations on Amazon Web Services. For more information, see <a href="https://docs.aws.amazon.com/awssupport/latest/user/support-app-permissions.html">Managing access to
344
343
  * the Amazon Web Services Support App</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
344
+ * @public
345
345
  */
346
346
  channelRoleArn?: string;
347
347
  }
@@ -350,14 +350,14 @@ export interface SlackChannelConfiguration {
350
350
  */
351
351
  export interface ListSlackChannelConfigurationsResult {
352
352
  /**
353
- * @public
354
353
  * <p>The point where pagination should resume when the response returns only partial
355
354
  * results.</p>
355
+ * @public
356
356
  */
357
357
  nextToken?: string;
358
358
  /**
359
- * @public
360
359
  * <p>The configurations for a Slack channel.</p>
360
+ * @public
361
361
  */
362
362
  slackChannelConfigurations: SlackChannelConfiguration[] | undefined;
363
363
  }
@@ -366,33 +366,33 @@ export interface ListSlackChannelConfigurationsResult {
366
366
  */
367
367
  export interface ListSlackWorkspaceConfigurationsRequest {
368
368
  /**
369
- * @public
370
369
  * <p>If the results of a search are large, the API only returns a portion of the results and
371
370
  * includes a <code>nextToken</code> pagination token in the response. To retrieve the next batch of results, reissue the search request and include the returned token.
372
371
  * When the API returns the last set of results, the response doesn't include a pagination token value.</p>
372
+ * @public
373
373
  */
374
374
  nextToken?: string;
375
375
  }
376
376
  /**
377
- * @public
378
377
  * <p>The configuration for a Slack workspace that you added to an Amazon Web Services account.</p>
378
+ * @public
379
379
  */
380
380
  export interface SlackWorkspaceConfiguration {
381
381
  /**
382
- * @public
383
382
  * <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as
384
383
  * <code>T012ABCDEFG</code>.</p>
384
+ * @public
385
385
  */
386
386
  teamId: string | undefined;
387
387
  /**
388
- * @public
389
388
  * <p>The name of the Slack workspace.</p>
389
+ * @public
390
390
  */
391
391
  teamName?: string;
392
392
  /**
393
- * @public
394
393
  * <p>Whether to allow member accounts to authorize Slack workspaces. Member accounts must be
395
394
  * part of an organization in Organizations.</p>
395
+ * @public
396
396
  */
397
397
  allowOrganizationMemberAccount?: boolean;
398
398
  }
@@ -401,14 +401,14 @@ export interface SlackWorkspaceConfiguration {
401
401
  */
402
402
  export interface ListSlackWorkspaceConfigurationsResult {
403
403
  /**
404
- * @public
405
404
  * <p>The point where pagination should resume when the response returns only partial
406
405
  * results.</p>
406
+ * @public
407
407
  */
408
408
  nextToken?: string;
409
409
  /**
410
- * @public
411
410
  * <p>The configurations for a Slack workspace.</p>
411
+ * @public
412
412
  */
413
413
  slackWorkspaceConfigurations?: SlackWorkspaceConfiguration[];
414
414
  }
@@ -417,8 +417,8 @@ export interface ListSlackWorkspaceConfigurationsResult {
417
417
  */
418
418
  export interface PutAccountAliasRequest {
419
419
  /**
420
- * @public
421
420
  * <p>An alias or short name for an Amazon Web Services account.</p>
421
+ * @public
422
422
  */
423
423
  accountAlias: string | undefined;
424
424
  }
@@ -432,9 +432,9 @@ export interface PutAccountAliasResult {
432
432
  */
433
433
  export interface RegisterSlackWorkspaceForOrganizationRequest {
434
434
  /**
435
- * @public
436
435
  * <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as
437
436
  * <code>T012ABCDEFG</code>. Specify the Slack workspace that you want to use for your organization.</p>
437
+ * @public
438
438
  */
439
439
  teamId: string | undefined;
440
440
  }
@@ -443,20 +443,20 @@ export interface RegisterSlackWorkspaceForOrganizationRequest {
443
443
  */
444
444
  export interface RegisterSlackWorkspaceForOrganizationResult {
445
445
  /**
446
- * @public
447
446
  * <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as
448
447
  * <code>T012ABCDEFG</code>.</p>
448
+ * @public
449
449
  */
450
450
  teamId?: string;
451
451
  /**
452
- * @public
453
452
  * <p>The name of the Slack workspace.</p>
453
+ * @public
454
454
  */
455
455
  teamName?: string;
456
456
  /**
457
- * @public
458
457
  * <p>Whether the Amazon Web Services account is a management or member account that's part of an organization
459
458
  * in Organizations.</p>
459
+ * @public
460
460
  */
461
461
  accountType?: AccountType;
462
462
  }
@@ -465,38 +465,37 @@ export interface RegisterSlackWorkspaceForOrganizationResult {
465
465
  */
466
466
  export interface UpdateSlackChannelConfigurationRequest {
467
467
  /**
468
- * @public
469
468
  * <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as
470
469
  * <code>T012ABCDEFG</code>.</p>
470
+ * @public
471
471
  */
472
472
  teamId: string | undefined;
473
473
  /**
474
- * @public
475
474
  * <p>The channel ID in Slack. This ID identifies a channel within a Slack workspace.</p>
475
+ * @public
476
476
  */
477
477
  channelId: string | undefined;
478
478
  /**
479
- * @public
480
479
  * <p>The Slack channel name that you want to update.</p>
480
+ * @public
481
481
  */
482
482
  channelName?: string;
483
483
  /**
484
- * @public
485
484
  * <p>Whether you want to get notified when a support case is created or reopened.</p>
485
+ * @public
486
486
  */
487
487
  notifyOnCreateOrReopenCase?: boolean;
488
488
  /**
489
- * @public
490
489
  * <p>Whether you want to get notified when a support case has a new correspondence.</p>
490
+ * @public
491
491
  */
492
492
  notifyOnAddCorrespondenceToCase?: boolean;
493
493
  /**
494
- * @public
495
494
  * <p>Whether you want to get notified when a support case is resolved.</p>
495
+ * @public
496
496
  */
497
497
  notifyOnResolveCase?: boolean;
498
498
  /**
499
- * @public
500
499
  * <p>The case severity for a support case that you want to receive notifications.</p>
501
500
  * <p>If you specify <code>high</code> or <code>all</code>, at least one of the following
502
501
  * parameters must be <code>true</code>:</p>
@@ -540,13 +539,14 @@ export interface UpdateSlackChannelConfigurationRequest {
540
539
  * <p>If you don't specify these parameters in your request, the Amazon Web Services Support App uses the current
541
540
  * values by default.</p>
542
541
  * </note>
542
+ * @public
543
543
  */
544
544
  notifyOnCaseSeverity?: NotificationSeverityLevel;
545
545
  /**
546
- * @public
547
546
  * <p>The Amazon Resource Name (ARN) of an IAM role that you want to
548
547
  * use to perform operations on Amazon Web Services. For more information, see <a href="https://docs.aws.amazon.com/awssupport/latest/user/support-app-permissions.html">Managing access to
549
548
  * the Amazon Web Services Support App</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
549
+ * @public
550
550
  */
551
551
  channelRoleArn?: string;
552
552
  }
@@ -555,46 +555,46 @@ export interface UpdateSlackChannelConfigurationRequest {
555
555
  */
556
556
  export interface UpdateSlackChannelConfigurationResult {
557
557
  /**
558
- * @public
559
558
  * <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as
560
559
  * <code>T012ABCDEFG</code>.</p>
560
+ * @public
561
561
  */
562
562
  teamId?: string;
563
563
  /**
564
- * @public
565
564
  * <p>The channel ID in Slack. This ID identifies a channel within a Slack workspace.</p>
565
+ * @public
566
566
  */
567
567
  channelId?: string;
568
568
  /**
569
- * @public
570
569
  * <p>The name of the Slack channel that you configure for the Amazon Web Services Support App.</p>
570
+ * @public
571
571
  */
572
572
  channelName?: string;
573
573
  /**
574
- * @public
575
574
  * <p>Whether you want to get notified when a support case is created or reopened.</p>
575
+ * @public
576
576
  */
577
577
  notifyOnCreateOrReopenCase?: boolean;
578
578
  /**
579
- * @public
580
579
  * <p>Whether you want to get notified when a support case has a new correspondence.</p>
580
+ * @public
581
581
  */
582
582
  notifyOnAddCorrespondenceToCase?: boolean;
583
583
  /**
584
- * @public
585
584
  * <p>Whether you want to get notified when a support case is resolved.</p>
585
+ * @public
586
586
  */
587
587
  notifyOnResolveCase?: boolean;
588
588
  /**
589
- * @public
590
589
  * <p>The case severity for a support case that you want to receive notifications.</p>
590
+ * @public
591
591
  */
592
592
  notifyOnCaseSeverity?: NotificationSeverityLevel;
593
593
  /**
594
- * @public
595
594
  * <p>The Amazon Resource Name (ARN) of an IAM role that you want to
596
595
  * use to perform operations on Amazon Web Services. For more information, see <a href="https://docs.aws.amazon.com/awssupport/latest/user/support-app-permissions.html">Managing access to
597
596
  * the Amazon Web Services Support App</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
597
+ * @public
598
598
  */
599
599
  channelRoleArn?: string;
600
600
  }
@@ -54,6 +54,7 @@ export interface SupportApp {
54
54
  options: __HttpHandlerOptions,
55
55
  cb: (err: any, data?: CreateSlackChannelConfigurationCommandOutput) => void
56
56
  ): void;
57
+ deleteAccountAlias(): Promise<DeleteAccountAliasCommandOutput>;
57
58
  deleteAccountAlias(
58
59
  args: DeleteAccountAliasCommandInput,
59
60
  options?: __HttpHandlerOptions
@@ -99,6 +100,7 @@ export interface SupportApp {
99
100
  data?: DeleteSlackWorkspaceConfigurationCommandOutput
100
101
  ) => void
101
102
  ): void;
103
+ getAccountAlias(): Promise<GetAccountAliasCommandOutput>;
102
104
  getAccountAlias(
103
105
  args: GetAccountAliasCommandInput,
104
106
  options?: __HttpHandlerOptions
@@ -112,6 +114,7 @@ export interface SupportApp {
112
114
  options: __HttpHandlerOptions,
113
115
  cb: (err: any, data?: GetAccountAliasCommandOutput) => void
114
116
  ): void;
117
+ listSlackChannelConfigurations(): Promise<ListSlackChannelConfigurationsCommandOutput>;
115
118
  listSlackChannelConfigurations(
116
119
  args: ListSlackChannelConfigurationsCommandInput,
117
120
  options?: __HttpHandlerOptions
@@ -125,6 +128,7 @@ export interface SupportApp {
125
128
  options: __HttpHandlerOptions,
126
129
  cb: (err: any, data?: ListSlackChannelConfigurationsCommandOutput) => void
127
130
  ): void;
131
+ listSlackWorkspaceConfigurations(): Promise<ListSlackWorkspaceConfigurationsCommandOutput>;
128
132
  listSlackWorkspaceConfigurations(
129
133
  args: ListSlackWorkspaceConfigurationsCommandInput,
130
134
  options?: __HttpHandlerOptions
@@ -25,6 +25,15 @@ declare const CreateSlackChannelConfigurationCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: CreateSlackChannelConfigurationCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateSlackChannelConfigurationCommandInput,
32
+ CreateSlackChannelConfigurationCommandOutput,
33
+ SupportAppClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class CreateSlackChannelConfigurationCommand extends CreateSlackChannelConfigurationCommand_base {}
@@ -25,6 +25,15 @@ declare const DeleteAccountAliasCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [DeleteAccountAliasCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteAccountAliasCommandInput,
32
+ DeleteAccountAliasCommandOutput,
33
+ SupportAppClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DeleteAccountAliasCommand extends DeleteAccountAliasCommand_base {}
@@ -25,6 +25,15 @@ declare const DeleteSlackChannelConfigurationCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: DeleteSlackChannelConfigurationCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteSlackChannelConfigurationCommandInput,
32
+ DeleteSlackChannelConfigurationCommandOutput,
33
+ SupportAppClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DeleteSlackChannelConfigurationCommand extends DeleteSlackChannelConfigurationCommand_base {}
@@ -25,6 +25,15 @@ declare const DeleteSlackWorkspaceConfigurationCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: DeleteSlackWorkspaceConfigurationCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteSlackWorkspaceConfigurationCommandInput,
32
+ DeleteSlackWorkspaceConfigurationCommandOutput,
33
+ SupportAppClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DeleteSlackWorkspaceConfigurationCommand extends DeleteSlackWorkspaceConfigurationCommand_base {}
@@ -24,6 +24,15 @@ declare const GetAccountAliasCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ ...[input]: [] | [GetAccountAliasCommandInput]
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ GetAccountAliasCommandInput,
31
+ GetAccountAliasCommandOutput,
32
+ SupportAppClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class GetAccountAliasCommand extends GetAccountAliasCommand_base {}
@@ -25,6 +25,15 @@ declare const ListSlackChannelConfigurationsCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [ListSlackChannelConfigurationsCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListSlackChannelConfigurationsCommandInput,
32
+ ListSlackChannelConfigurationsCommandOutput,
33
+ SupportAppClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class ListSlackChannelConfigurationsCommand extends ListSlackChannelConfigurationsCommand_base {}
@@ -25,6 +25,15 @@ declare const ListSlackWorkspaceConfigurationsCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [ListSlackWorkspaceConfigurationsCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListSlackWorkspaceConfigurationsCommandInput,
32
+ ListSlackWorkspaceConfigurationsCommandOutput,
33
+ SupportAppClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class ListSlackWorkspaceConfigurationsCommand extends ListSlackWorkspaceConfigurationsCommand_base {}
@@ -24,6 +24,15 @@ declare const PutAccountAliasCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: PutAccountAliasCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ PutAccountAliasCommandInput,
31
+ PutAccountAliasCommandOutput,
32
+ SupportAppClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class PutAccountAliasCommand extends PutAccountAliasCommand_base {}
@@ -25,6 +25,15 @@ declare const RegisterSlackWorkspaceForOrganizationCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: RegisterSlackWorkspaceForOrganizationCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ RegisterSlackWorkspaceForOrganizationCommandInput,
32
+ RegisterSlackWorkspaceForOrganizationCommandOutput,
33
+ SupportAppClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class RegisterSlackWorkspaceForOrganizationCommand extends RegisterSlackWorkspaceForOrganizationCommand_base {}
@@ -25,6 +25,15 @@ declare const UpdateSlackChannelConfigurationCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: UpdateSlackChannelConfigurationCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateSlackChannelConfigurationCommandInput,
32
+ UpdateSlackChannelConfigurationCommandOutput,
33
+ SupportAppClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class UpdateSlackChannelConfigurationCommand extends UpdateSlackChannelConfigurationCommand_base {}
@@ -6,5 +6,4 @@ export { SupportAppExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
8
  export * from "./models";
9
- import "@aws-sdk/util-endpoints";
10
9
  export { SupportAppServiceException } from "./models/SupportAppServiceException";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-support-app",
3
3
  "description": "AWS SDK for JavaScript Support App Client for Node.js, Browser and React Native",
4
- "version": "3.533.0",
4
+ "version": "3.540.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-support-app",
@@ -20,47 +20,47 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.533.0",
24
- "@aws-sdk/core": "3.533.0",
25
- "@aws-sdk/credential-provider-node": "3.533.0",
26
- "@aws-sdk/middleware-host-header": "3.533.0",
27
- "@aws-sdk/middleware-logger": "3.533.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.533.0",
29
- "@aws-sdk/middleware-user-agent": "3.533.0",
30
- "@aws-sdk/region-config-resolver": "3.533.0",
31
- "@aws-sdk/types": "3.533.0",
32
- "@aws-sdk/util-endpoints": "3.533.0",
33
- "@aws-sdk/util-user-agent-browser": "3.533.0",
34
- "@aws-sdk/util-user-agent-node": "3.533.0",
35
- "@smithy/config-resolver": "^2.1.5",
36
- "@smithy/core": "^1.3.8",
37
- "@smithy/fetch-http-handler": "^2.4.5",
38
- "@smithy/hash-node": "^2.1.4",
39
- "@smithy/invalid-dependency": "^2.1.4",
40
- "@smithy/middleware-content-length": "^2.1.4",
41
- "@smithy/middleware-endpoint": "^2.4.6",
42
- "@smithy/middleware-retry": "^2.1.7",
43
- "@smithy/middleware-serde": "^2.2.1",
44
- "@smithy/middleware-stack": "^2.1.4",
45
- "@smithy/node-config-provider": "^2.2.5",
46
- "@smithy/node-http-handler": "^2.4.3",
47
- "@smithy/protocol-http": "^3.2.2",
48
- "@smithy/smithy-client": "^2.4.5",
49
- "@smithy/types": "^2.11.0",
50
- "@smithy/url-parser": "^2.1.4",
51
- "@smithy/util-base64": "^2.2.1",
52
- "@smithy/util-body-length-browser": "^2.1.1",
53
- "@smithy/util-body-length-node": "^2.2.2",
54
- "@smithy/util-defaults-mode-browser": "^2.1.7",
55
- "@smithy/util-defaults-mode-node": "^2.2.7",
56
- "@smithy/util-endpoints": "^1.1.5",
57
- "@smithy/util-middleware": "^2.1.4",
58
- "@smithy/util-retry": "^2.1.4",
59
- "@smithy/util-utf8": "^2.2.0",
60
- "tslib": "^2.5.0"
23
+ "@aws-sdk/client-sts": "3.540.0",
24
+ "@aws-sdk/core": "3.535.0",
25
+ "@aws-sdk/credential-provider-node": "3.540.0",
26
+ "@aws-sdk/middleware-host-header": "3.535.0",
27
+ "@aws-sdk/middleware-logger": "3.535.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.535.0",
29
+ "@aws-sdk/middleware-user-agent": "3.540.0",
30
+ "@aws-sdk/region-config-resolver": "3.535.0",
31
+ "@aws-sdk/types": "3.535.0",
32
+ "@aws-sdk/util-endpoints": "3.540.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.535.0",
34
+ "@aws-sdk/util-user-agent-node": "3.535.0",
35
+ "@smithy/config-resolver": "^2.2.0",
36
+ "@smithy/core": "^1.4.0",
37
+ "@smithy/fetch-http-handler": "^2.5.0",
38
+ "@smithy/hash-node": "^2.2.0",
39
+ "@smithy/invalid-dependency": "^2.2.0",
40
+ "@smithy/middleware-content-length": "^2.2.0",
41
+ "@smithy/middleware-endpoint": "^2.5.0",
42
+ "@smithy/middleware-retry": "^2.2.0",
43
+ "@smithy/middleware-serde": "^2.3.0",
44
+ "@smithy/middleware-stack": "^2.2.0",
45
+ "@smithy/node-config-provider": "^2.3.0",
46
+ "@smithy/node-http-handler": "^2.5.0",
47
+ "@smithy/protocol-http": "^3.3.0",
48
+ "@smithy/smithy-client": "^2.5.0",
49
+ "@smithy/types": "^2.12.0",
50
+ "@smithy/url-parser": "^2.2.0",
51
+ "@smithy/util-base64": "^2.3.0",
52
+ "@smithy/util-body-length-browser": "^2.2.0",
53
+ "@smithy/util-body-length-node": "^2.3.0",
54
+ "@smithy/util-defaults-mode-browser": "^2.2.0",
55
+ "@smithy/util-defaults-mode-node": "^2.3.0",
56
+ "@smithy/util-endpoints": "^1.2.0",
57
+ "@smithy/util-middleware": "^2.2.0",
58
+ "@smithy/util-retry": "^2.2.0",
59
+ "@smithy/util-utf8": "^2.3.0",
60
+ "tslib": "^2.6.2"
61
61
  },
62
62
  "devDependencies": {
63
- "@smithy/service-client-documentation-generator": "^2.1.1",
63
+ "@smithy/service-client-documentation-generator": "^2.2.0",
64
64
  "@tsconfig/node14": "1.0.3",
65
65
  "@types/node": "^14.14.31",
66
66
  "concurrently": "7.0.0",