@aws-sdk/client-support-app 3.325.0 → 3.327.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.
@@ -58,6 +58,8 @@ export interface CreateSlackChannelConfigurationCommandOutput extends CreateSlac
58
58
  * };
59
59
  * const command = new CreateSlackChannelConfigurationCommand(input);
60
60
  * const response = await client.send(command);
61
+ * // {};
62
+ *
61
63
  * ```
62
64
  *
63
65
  * @param CreateSlackChannelConfigurationCommandInput - {@link CreateSlackChannelConfigurationCommandInput}
@@ -109,6 +111,8 @@ export interface CreateSlackChannelConfigurationCommandOutput extends CreateSlac
109
111
  * @throws {@link ValidationException} (client fault)
110
112
  * <p>Your request input doesn't meet the constraints that the Amazon Web Services Support App specifies.</p>
111
113
  *
114
+ * @throws {@link SupportAppServiceException}
115
+ * <p>Base exception class for all service exceptions from SupportApp service.</p>
112
116
  *
113
117
  */
114
118
  export declare class CreateSlackChannelConfigurationCommand extends $Command<CreateSlackChannelConfigurationCommandInput, CreateSlackChannelConfigurationCommandOutput, SupportAppClientResolvedConfig> {
@@ -30,6 +30,8 @@ export interface DeleteAccountAliasCommandOutput extends DeleteAccountAliasResul
30
30
  * const input = {};
31
31
  * const command = new DeleteAccountAliasCommand(input);
32
32
  * const response = await client.send(command);
33
+ * // {};
34
+ *
33
35
  * ```
34
36
  *
35
37
  * @param DeleteAccountAliasCommandInput - {@link DeleteAccountAliasCommandInput}
@@ -48,6 +50,8 @@ export interface DeleteAccountAliasCommandOutput extends DeleteAccountAliasResul
48
50
  * <p>The specified resource is missing or doesn't exist, such as an account alias, Slack
49
51
  * channel configuration, or Slack workspace configuration.</p>
50
52
  *
53
+ * @throws {@link SupportAppServiceException}
54
+ * <p>Base exception class for all service exceptions from SupportApp service.</p>
51
55
  *
52
56
  */
53
57
  export declare class DeleteAccountAliasCommand extends $Command<DeleteAccountAliasCommandInput, DeleteAccountAliasCommandOutput, SupportAppClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DeleteSlackChannelConfigurationCommandOutput extends DeleteSlac
33
33
  * };
34
34
  * const command = new DeleteSlackChannelConfigurationCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DeleteSlackChannelConfigurationCommandInput - {@link DeleteSlackChannelConfigurationCommandInput}
@@ -83,6 +85,8 @@ export interface DeleteSlackChannelConfigurationCommandOutput extends DeleteSlac
83
85
  * @throws {@link ValidationException} (client fault)
84
86
  * <p>Your request input doesn't meet the constraints that the Amazon Web Services Support App specifies.</p>
85
87
  *
88
+ * @throws {@link SupportAppServiceException}
89
+ * <p>Base exception class for all service exceptions from SupportApp service.</p>
86
90
  *
87
91
  */
88
92
  export declare class DeleteSlackChannelConfigurationCommand extends $Command<DeleteSlackChannelConfigurationCommandInput, DeleteSlackChannelConfigurationCommandOutput, SupportAppClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface DeleteSlackWorkspaceConfigurationCommandOutput extends DeleteSl
32
32
  * };
33
33
  * const command = new DeleteSlackWorkspaceConfigurationCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param DeleteSlackWorkspaceConfigurationCommandInput - {@link DeleteSlackWorkspaceConfigurationCommandInput}
@@ -82,6 +84,8 @@ export interface DeleteSlackWorkspaceConfigurationCommandOutput extends DeleteSl
82
84
  * @throws {@link ValidationException} (client fault)
83
85
  * <p>Your request input doesn't meet the constraints that the Amazon Web Services Support App specifies.</p>
84
86
  *
87
+ * @throws {@link SupportAppServiceException}
88
+ * <p>Base exception class for all service exceptions from SupportApp service.</p>
85
89
  *
86
90
  */
87
91
  export declare class DeleteSlackWorkspaceConfigurationCommand extends $Command<DeleteSlackWorkspaceConfigurationCommandInput, DeleteSlackWorkspaceConfigurationCommandOutput, SupportAppClientResolvedConfig> {
@@ -30,6 +30,10 @@ export interface GetAccountAliasCommandOutput extends GetAccountAliasResult, __M
30
30
  * const input = {};
31
31
  * const command = new GetAccountAliasCommand(input);
32
32
  * const response = await client.send(command);
33
+ * // { // GetAccountAliasResult
34
+ * // accountAlias: "STRING_VALUE",
35
+ * // };
36
+ *
33
37
  * ```
34
38
  *
35
39
  * @param GetAccountAliasCommandInput - {@link GetAccountAliasCommandInput}
@@ -41,6 +45,8 @@ export interface GetAccountAliasCommandOutput extends GetAccountAliasResult, __M
41
45
  * @throws {@link InternalServerException} (server fault)
42
46
  * <p>We can’t process your request right now because of a server issue. Try again later.</p>
43
47
  *
48
+ * @throws {@link SupportAppServiceException}
49
+ * <p>Base exception class for all service exceptions from SupportApp service.</p>
44
50
  *
45
51
  */
46
52
  export declare class GetAccountAliasCommand extends $Command<GetAccountAliasCommandInput, GetAccountAliasCommandOutput, SupportAppClientResolvedConfig> {
@@ -31,6 +31,22 @@ export interface ListSlackChannelConfigurationsCommandOutput extends ListSlackCh
31
31
  * };
32
32
  * const command = new ListSlackChannelConfigurationsCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // ListSlackChannelConfigurationsResult
35
+ * // nextToken: "STRING_VALUE",
36
+ * // slackChannelConfigurations: [ // slackChannelConfigurationList // required
37
+ * // { // SlackChannelConfiguration
38
+ * // teamId: "STRING_VALUE", // required
39
+ * // channelId: "STRING_VALUE", // required
40
+ * // channelName: "STRING_VALUE",
41
+ * // notifyOnCreateOrReopenCase: true || false,
42
+ * // notifyOnAddCorrespondenceToCase: true || false,
43
+ * // notifyOnResolveCase: true || false,
44
+ * // notifyOnCaseSeverity: "STRING_VALUE",
45
+ * // channelRoleArn: "STRING_VALUE",
46
+ * // },
47
+ * // ],
48
+ * // };
49
+ *
34
50
  * ```
35
51
  *
36
52
  * @param ListSlackChannelConfigurationsCommandInput - {@link ListSlackChannelConfigurationsCommandInput}
@@ -45,6 +61,8 @@ export interface ListSlackChannelConfigurationsCommandOutput extends ListSlackCh
45
61
  * @throws {@link InternalServerException} (server fault)
46
62
  * <p>We can’t process your request right now because of a server issue. Try again later.</p>
47
63
  *
64
+ * @throws {@link SupportAppServiceException}
65
+ * <p>Base exception class for all service exceptions from SupportApp service.</p>
48
66
  *
49
67
  */
50
68
  export declare class ListSlackChannelConfigurationsCommand extends $Command<ListSlackChannelConfigurationsCommandInput, ListSlackChannelConfigurationsCommandOutput, SupportAppClientResolvedConfig> {
@@ -31,6 +31,17 @@ export interface ListSlackWorkspaceConfigurationsCommandOutput extends ListSlack
31
31
  * };
32
32
  * const command = new ListSlackWorkspaceConfigurationsCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // ListSlackWorkspaceConfigurationsResult
35
+ * // nextToken: "STRING_VALUE",
36
+ * // slackWorkspaceConfigurations: [ // SlackWorkspaceConfigurationList
37
+ * // { // SlackWorkspaceConfiguration
38
+ * // teamId: "STRING_VALUE", // required
39
+ * // teamName: "STRING_VALUE",
40
+ * // allowOrganizationMemberAccount: true || false,
41
+ * // },
42
+ * // ],
43
+ * // };
44
+ *
34
45
  * ```
35
46
  *
36
47
  * @param ListSlackWorkspaceConfigurationsCommandInput - {@link ListSlackWorkspaceConfigurationsCommandInput}
@@ -45,6 +56,8 @@ export interface ListSlackWorkspaceConfigurationsCommandOutput extends ListSlack
45
56
  * @throws {@link InternalServerException} (server fault)
46
57
  * <p>We can’t process your request right now because of a server issue. Try again later.</p>
47
58
  *
59
+ * @throws {@link SupportAppServiceException}
60
+ * <p>Base exception class for all service exceptions from SupportApp service.</p>
48
61
  *
49
62
  */
50
63
  export declare class ListSlackWorkspaceConfigurationsCommand extends $Command<ListSlackWorkspaceConfigurationsCommandInput, ListSlackWorkspaceConfigurationsCommandOutput, SupportAppClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface PutAccountAliasCommandOutput extends PutAccountAliasResult, __M
33
33
  * };
34
34
  * const command = new PutAccountAliasCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param PutAccountAliasCommandInput - {@link PutAccountAliasCommandInput}
@@ -50,6 +52,8 @@ export interface PutAccountAliasCommandOutput extends PutAccountAliasResult, __M
50
52
  * @throws {@link ValidationException} (client fault)
51
53
  * <p>Your request input doesn't meet the constraints that the Amazon Web Services Support App specifies.</p>
52
54
  *
55
+ * @throws {@link SupportAppServiceException}
56
+ * <p>Base exception class for all service exceptions from SupportApp service.</p>
53
57
  *
54
58
  */
55
59
  export declare class PutAccountAliasCommand extends $Command<PutAccountAliasCommandInput, PutAccountAliasCommandOutput, SupportAppClientResolvedConfig> {
@@ -60,6 +60,12 @@ export interface RegisterSlackWorkspaceForOrganizationCommandOutput extends Regi
60
60
  * };
61
61
  * const command = new RegisterSlackWorkspaceForOrganizationCommand(input);
62
62
  * const response = await client.send(command);
63
+ * // { // RegisterSlackWorkspaceForOrganizationResult
64
+ * // teamId: "STRING_VALUE",
65
+ * // teamName: "STRING_VALUE",
66
+ * // accountType: "STRING_VALUE",
67
+ * // };
68
+ *
63
69
  * ```
64
70
  *
65
71
  * @param RegisterSlackWorkspaceForOrganizationCommandInput - {@link RegisterSlackWorkspaceForOrganizationCommandInput}
@@ -110,6 +116,8 @@ export interface RegisterSlackWorkspaceForOrganizationCommandOutput extends Regi
110
116
  * @throws {@link ValidationException} (client fault)
111
117
  * <p>Your request input doesn't meet the constraints that the Amazon Web Services Support App specifies.</p>
112
118
  *
119
+ * @throws {@link SupportAppServiceException}
120
+ * <p>Base exception class for all service exceptions from SupportApp service.</p>
113
121
  *
114
122
  */
115
123
  export declare class RegisterSlackWorkspaceForOrganizationCommand extends $Command<RegisterSlackWorkspaceForOrganizationCommandInput, RegisterSlackWorkspaceForOrganizationCommandOutput, SupportAppClientResolvedConfig> {
@@ -38,6 +38,17 @@ export interface UpdateSlackChannelConfigurationCommandOutput extends UpdateSlac
38
38
  * };
39
39
  * const command = new UpdateSlackChannelConfigurationCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // UpdateSlackChannelConfigurationResult
42
+ * // teamId: "STRING_VALUE",
43
+ * // channelId: "STRING_VALUE",
44
+ * // channelName: "STRING_VALUE",
45
+ * // notifyOnCreateOrReopenCase: true || false,
46
+ * // notifyOnAddCorrespondenceToCase: true || false,
47
+ * // notifyOnResolveCase: true || false,
48
+ * // notifyOnCaseSeverity: "STRING_VALUE",
49
+ * // channelRoleArn: "STRING_VALUE",
50
+ * // };
51
+ *
41
52
  * ```
42
53
  *
43
54
  * @param UpdateSlackChannelConfigurationCommandInput - {@link UpdateSlackChannelConfigurationCommandInput}
@@ -88,6 +99,8 @@ export interface UpdateSlackChannelConfigurationCommandOutput extends UpdateSlac
88
99
  * @throws {@link ValidationException} (client fault)
89
100
  * <p>Your request input doesn't meet the constraints that the Amazon Web Services Support App specifies.</p>
90
101
  *
102
+ * @throws {@link SupportAppServiceException}
103
+ * <p>Base exception class for all service exceptions from SupportApp service.</p>
91
104
  *
92
105
  */
93
106
  export declare class UpdateSlackChannelConfigurationCommand extends $Command<UpdateSlackChannelConfigurationCommandInput, UpdateSlackChannelConfigurationCommandOutput, SupportAppClientResolvedConfig> {
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.325.0",
4
+ "version": "3.327.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.325.0",
24
+ "@aws-sdk/client-sts": "3.327.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.325.0",
26
+ "@aws-sdk/credential-provider-node": "3.327.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
@@ -32,11 +32,11 @@
32
32
  "@aws-sdk/middleware-host-header": "3.325.0",
33
33
  "@aws-sdk/middleware-logger": "3.325.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.325.0",
35
- "@aws-sdk/middleware-retry": "3.325.0",
35
+ "@aws-sdk/middleware-retry": "3.327.0",
36
36
  "@aws-sdk/middleware-serde": "3.325.0",
37
37
  "@aws-sdk/middleware-signing": "3.325.0",
38
38
  "@aws-sdk/middleware-stack": "3.325.0",
39
- "@aws-sdk/middleware-user-agent": "3.325.0",
39
+ "@aws-sdk/middleware-user-agent": "3.327.0",
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.321.1",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
@@ -48,8 +48,8 @@
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.325.0",
50
50
  "@aws-sdk/util-defaults-mode-node": "3.325.0",
51
- "@aws-sdk/util-endpoints": "3.319.0",
52
- "@aws-sdk/util-retry": "3.310.0",
51
+ "@aws-sdk/util-endpoints": "3.327.0",
52
+ "@aws-sdk/util-retry": "3.327.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",
54
54
  "@aws-sdk/util-user-agent-node": "3.310.0",
55
55
  "@aws-sdk/util-utf8": "3.310.0",