@aws-sdk/client-support-app 3.478.0 → 3.484.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/commands/CreateSlackChannelConfigurationCommand.js +18 -41
- package/dist-cjs/commands/DeleteAccountAliasCommand.js +18 -41
- package/dist-cjs/commands/DeleteSlackChannelConfigurationCommand.js +18 -41
- package/dist-cjs/commands/DeleteSlackWorkspaceConfigurationCommand.js +18 -41
- package/dist-cjs/commands/GetAccountAliasCommand.js +18 -41
- package/dist-cjs/commands/ListSlackChannelConfigurationsCommand.js +18 -41
- package/dist-cjs/commands/ListSlackWorkspaceConfigurationsCommand.js +18 -41
- package/dist-cjs/commands/PutAccountAliasCommand.js +18 -41
- package/dist-cjs/commands/RegisterSlackWorkspaceForOrganizationCommand.js +18 -41
- package/dist-cjs/commands/UpdateSlackChannelConfigurationCommand.js +18 -41
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-es/commands/CreateSlackChannelConfigurationCommand.js +18 -41
- package/dist-es/commands/DeleteAccountAliasCommand.js +18 -41
- package/dist-es/commands/DeleteSlackChannelConfigurationCommand.js +18 -41
- package/dist-es/commands/DeleteSlackWorkspaceConfigurationCommand.js +18 -41
- package/dist-es/commands/GetAccountAliasCommand.js +18 -41
- package/dist-es/commands/ListSlackChannelConfigurationsCommand.js +18 -41
- package/dist-es/commands/ListSlackWorkspaceConfigurationsCommand.js +18 -41
- package/dist-es/commands/PutAccountAliasCommand.js +18 -41
- package/dist-es/commands/RegisterSlackWorkspaceForOrganizationCommand.js +18 -41
- package/dist-es/commands/UpdateSlackChannelConfigurationCommand.js +18 -41
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-types/commands/CreateSlackChannelConfigurationCommand.d.ts +6 -21
- package/dist-types/commands/DeleteAccountAliasCommand.d.ts +6 -21
- package/dist-types/commands/DeleteSlackChannelConfigurationCommand.d.ts +6 -21
- package/dist-types/commands/DeleteSlackWorkspaceConfigurationCommand.d.ts +6 -21
- package/dist-types/commands/GetAccountAliasCommand.d.ts +6 -21
- package/dist-types/commands/ListSlackChannelConfigurationsCommand.d.ts +6 -21
- package/dist-types/commands/ListSlackWorkspaceConfigurationsCommand.d.ts +6 -21
- package/dist-types/commands/PutAccountAliasCommand.d.ts +6 -21
- package/dist-types/commands/RegisterSlackWorkspaceForOrganizationCommand.d.ts +6 -21
- package/dist-types/commands/UpdateSlackChannelConfigurationCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/commands/CreateSlackChannelConfigurationCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DeleteAccountAliasCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DeleteSlackChannelConfigurationCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DeleteSlackWorkspaceConfigurationCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/GetAccountAliasCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListSlackChannelConfigurationsCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListSlackWorkspaceConfigurationsCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/PutAccountAliasCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/RegisterSlackWorkspaceForOrganizationCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/UpdateSlackChannelConfigurationCommand.d.ts +12 -24
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/package.json +11 -11
|
@@ -1,47 +1,24 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
5
|
import { de_RegisterSlackWorkspaceForOrganizationCommand, se_RegisterSlackWorkspaceForOrganizationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
export { $Command };
|
|
7
|
-
export class RegisterSlackWorkspaceForOrganizationCommand extends $Command
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
const { logger } = configuration;
|
|
25
|
-
const clientName = "SupportAppClient";
|
|
26
|
-
const commandName = "RegisterSlackWorkspaceForOrganizationCommand";
|
|
27
|
-
const handlerExecutionContext = {
|
|
28
|
-
logger,
|
|
29
|
-
clientName,
|
|
30
|
-
commandName,
|
|
31
|
-
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog: (_) => _,
|
|
33
|
-
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
-
service: "SupportApp",
|
|
35
|
-
operation: "RegisterSlackWorkspaceForOrganization",
|
|
36
|
-
},
|
|
37
|
-
};
|
|
38
|
-
const { requestHandler } = configuration;
|
|
39
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
-
}
|
|
41
|
-
serialize(input, context) {
|
|
42
|
-
return se_RegisterSlackWorkspaceForOrganizationCommand(input, context);
|
|
43
|
-
}
|
|
44
|
-
deserialize(output, context) {
|
|
45
|
-
return de_RegisterSlackWorkspaceForOrganizationCommand(output, context);
|
|
46
|
-
}
|
|
7
|
+
export class RegisterSlackWorkspaceForOrganizationCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("SupportApp", "RegisterSlackWorkspaceForOrganization", {})
|
|
19
|
+
.n("SupportAppClient", "RegisterSlackWorkspaceForOrganizationCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_RegisterSlackWorkspaceForOrganizationCommand)
|
|
22
|
+
.de(de_RegisterSlackWorkspaceForOrganizationCommand)
|
|
23
|
+
.build() {
|
|
47
24
|
}
|
|
@@ -1,47 +1,24 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
5
|
import { de_UpdateSlackChannelConfigurationCommand, se_UpdateSlackChannelConfigurationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
export { $Command };
|
|
7
|
-
export class UpdateSlackChannelConfigurationCommand extends $Command
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
const { logger } = configuration;
|
|
25
|
-
const clientName = "SupportAppClient";
|
|
26
|
-
const commandName = "UpdateSlackChannelConfigurationCommand";
|
|
27
|
-
const handlerExecutionContext = {
|
|
28
|
-
logger,
|
|
29
|
-
clientName,
|
|
30
|
-
commandName,
|
|
31
|
-
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog: (_) => _,
|
|
33
|
-
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
-
service: "SupportApp",
|
|
35
|
-
operation: "UpdateSlackChannelConfiguration",
|
|
36
|
-
},
|
|
37
|
-
};
|
|
38
|
-
const { requestHandler } = configuration;
|
|
39
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
-
}
|
|
41
|
-
serialize(input, context) {
|
|
42
|
-
return se_UpdateSlackChannelConfigurationCommand(input, context);
|
|
43
|
-
}
|
|
44
|
-
deserialize(output, context) {
|
|
45
|
-
return de_UpdateSlackChannelConfigurationCommand(output, context);
|
|
46
|
-
}
|
|
7
|
+
export class UpdateSlackChannelConfigurationCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("SupportApp", "UpdateSlackChannelConfiguration", {})
|
|
19
|
+
.n("SupportAppClient", "UpdateSlackChannelConfigurationCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_UpdateSlackChannelConfigurationCommand)
|
|
22
|
+
.de(de_UpdateSlackChannelConfigurationCommand)
|
|
23
|
+
.build() {
|
|
47
24
|
}
|
|
@@ -6,3 +6,9 @@ export const resolveClientEndpointParameters = (options) => {
|
|
|
6
6
|
defaultSigningName: "supportapp",
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
|
+
export const commonParams = {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { CreateSlackChannelConfigurationRequest, CreateSlackChannelConfigurationResult } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface CreateSlackChannelConfigurationCommandInput extends CreateSlack
|
|
|
21
20
|
*/
|
|
22
21
|
export interface CreateSlackChannelConfigurationCommandOutput extends CreateSlackChannelConfigurationResult, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const CreateSlackChannelConfigurationCommand_base: {
|
|
24
|
+
new (input: CreateSlackChannelConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateSlackChannelConfigurationCommandInput, CreateSlackChannelConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Creates a Slack channel configuration for your Amazon Web Services account.</p>
|
|
@@ -119,23 +122,5 @@ export interface CreateSlackChannelConfigurationCommandOutput extends CreateSlac
|
|
|
119
122
|
* <p>Base exception class for all service exceptions from SupportApp service.</p>
|
|
120
123
|
*
|
|
121
124
|
*/
|
|
122
|
-
export declare class CreateSlackChannelConfigurationCommand extends
|
|
123
|
-
readonly input: CreateSlackChannelConfigurationCommandInput;
|
|
124
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
125
|
-
/**
|
|
126
|
-
* @public
|
|
127
|
-
*/
|
|
128
|
-
constructor(input: CreateSlackChannelConfigurationCommandInput);
|
|
129
|
-
/**
|
|
130
|
-
* @internal
|
|
131
|
-
*/
|
|
132
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportAppClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSlackChannelConfigurationCommandInput, CreateSlackChannelConfigurationCommandOutput>;
|
|
133
|
-
/**
|
|
134
|
-
* @internal
|
|
135
|
-
*/
|
|
136
|
-
private serialize;
|
|
137
|
-
/**
|
|
138
|
-
* @internal
|
|
139
|
-
*/
|
|
140
|
-
private deserialize;
|
|
125
|
+
export declare class CreateSlackChannelConfigurationCommand extends CreateSlackChannelConfigurationCommand_base {
|
|
141
126
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { DeleteAccountAliasRequest, DeleteAccountAliasResult } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DeleteAccountAliasCommandInput extends DeleteAccountAliasReques
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DeleteAccountAliasCommandOutput extends DeleteAccountAliasResult, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DeleteAccountAliasCommand_base: {
|
|
24
|
+
new (input: DeleteAccountAliasCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAccountAliasCommandInput, DeleteAccountAliasCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
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
|
|
@@ -58,23 +61,5 @@ export interface DeleteAccountAliasCommandOutput extends DeleteAccountAliasResul
|
|
|
58
61
|
* <p>Base exception class for all service exceptions from SupportApp service.</p>
|
|
59
62
|
*
|
|
60
63
|
*/
|
|
61
|
-
export declare class DeleteAccountAliasCommand extends
|
|
62
|
-
readonly input: DeleteAccountAliasCommandInput;
|
|
63
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
-
/**
|
|
65
|
-
* @public
|
|
66
|
-
*/
|
|
67
|
-
constructor(input: DeleteAccountAliasCommandInput);
|
|
68
|
-
/**
|
|
69
|
-
* @internal
|
|
70
|
-
*/
|
|
71
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportAppClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAccountAliasCommandInput, DeleteAccountAliasCommandOutput>;
|
|
72
|
-
/**
|
|
73
|
-
* @internal
|
|
74
|
-
*/
|
|
75
|
-
private serialize;
|
|
76
|
-
/**
|
|
77
|
-
* @internal
|
|
78
|
-
*/
|
|
79
|
-
private deserialize;
|
|
64
|
+
export declare class DeleteAccountAliasCommand extends DeleteAccountAliasCommand_base {
|
|
80
65
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { DeleteSlackChannelConfigurationRequest, DeleteSlackChannelConfigurationResult } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DeleteSlackChannelConfigurationCommandInput extends DeleteSlack
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DeleteSlackChannelConfigurationCommandOutput extends DeleteSlackChannelConfigurationResult, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DeleteSlackChannelConfigurationCommand_base: {
|
|
24
|
+
new (input: DeleteSlackChannelConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSlackChannelConfigurationCommandInput, DeleteSlackChannelConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Deletes a Slack channel configuration from your Amazon Web Services account. This operation doesn't
|
|
@@ -93,23 +96,5 @@ export interface DeleteSlackChannelConfigurationCommandOutput extends DeleteSlac
|
|
|
93
96
|
* <p>Base exception class for all service exceptions from SupportApp service.</p>
|
|
94
97
|
*
|
|
95
98
|
*/
|
|
96
|
-
export declare class DeleteSlackChannelConfigurationCommand extends
|
|
97
|
-
readonly input: DeleteSlackChannelConfigurationCommandInput;
|
|
98
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
99
|
-
/**
|
|
100
|
-
* @public
|
|
101
|
-
*/
|
|
102
|
-
constructor(input: DeleteSlackChannelConfigurationCommandInput);
|
|
103
|
-
/**
|
|
104
|
-
* @internal
|
|
105
|
-
*/
|
|
106
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportAppClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSlackChannelConfigurationCommandInput, DeleteSlackChannelConfigurationCommandOutput>;
|
|
107
|
-
/**
|
|
108
|
-
* @internal
|
|
109
|
-
*/
|
|
110
|
-
private serialize;
|
|
111
|
-
/**
|
|
112
|
-
* @internal
|
|
113
|
-
*/
|
|
114
|
-
private deserialize;
|
|
99
|
+
export declare class DeleteSlackChannelConfigurationCommand extends DeleteSlackChannelConfigurationCommand_base {
|
|
115
100
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { DeleteSlackWorkspaceConfigurationRequest, DeleteSlackWorkspaceConfigurationResult } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DeleteSlackWorkspaceConfigurationCommandInput extends DeleteSla
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DeleteSlackWorkspaceConfigurationCommandOutput extends DeleteSlackWorkspaceConfigurationResult, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DeleteSlackWorkspaceConfigurationCommand_base: {
|
|
24
|
+
new (input: DeleteSlackWorkspaceConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSlackWorkspaceConfigurationCommandInput, DeleteSlackWorkspaceConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Deletes a Slack workspace configuration from your Amazon Web Services account. This operation doesn't
|
|
@@ -92,23 +95,5 @@ export interface DeleteSlackWorkspaceConfigurationCommandOutput extends DeleteSl
|
|
|
92
95
|
* <p>Base exception class for all service exceptions from SupportApp service.</p>
|
|
93
96
|
*
|
|
94
97
|
*/
|
|
95
|
-
export declare class DeleteSlackWorkspaceConfigurationCommand extends
|
|
96
|
-
readonly input: DeleteSlackWorkspaceConfigurationCommandInput;
|
|
97
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
98
|
-
/**
|
|
99
|
-
* @public
|
|
100
|
-
*/
|
|
101
|
-
constructor(input: DeleteSlackWorkspaceConfigurationCommandInput);
|
|
102
|
-
/**
|
|
103
|
-
* @internal
|
|
104
|
-
*/
|
|
105
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportAppClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSlackWorkspaceConfigurationCommandInput, DeleteSlackWorkspaceConfigurationCommandOutput>;
|
|
106
|
-
/**
|
|
107
|
-
* @internal
|
|
108
|
-
*/
|
|
109
|
-
private serialize;
|
|
110
|
-
/**
|
|
111
|
-
* @internal
|
|
112
|
-
*/
|
|
113
|
-
private deserialize;
|
|
98
|
+
export declare class DeleteSlackWorkspaceConfigurationCommand extends DeleteSlackWorkspaceConfigurationCommand_base {
|
|
114
99
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { GetAccountAliasRequest, GetAccountAliasResult } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface GetAccountAliasCommandInput extends GetAccountAliasRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface GetAccountAliasCommandOutput extends GetAccountAliasResult, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const GetAccountAliasCommand_base: {
|
|
24
|
+
new (input: GetAccountAliasCommandInput): import("@smithy/smithy-client").CommandImpl<GetAccountAliasCommandInput, GetAccountAliasCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Retrieves the alias from an Amazon Web Services account ID. The alias appears in the Amazon Web Services Support App page of
|
|
@@ -53,23 +56,5 @@ export interface GetAccountAliasCommandOutput extends GetAccountAliasResult, __M
|
|
|
53
56
|
* <p>Base exception class for all service exceptions from SupportApp service.</p>
|
|
54
57
|
*
|
|
55
58
|
*/
|
|
56
|
-
export declare class GetAccountAliasCommand extends
|
|
57
|
-
readonly input: GetAccountAliasCommandInput;
|
|
58
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
-
/**
|
|
60
|
-
* @public
|
|
61
|
-
*/
|
|
62
|
-
constructor(input: GetAccountAliasCommandInput);
|
|
63
|
-
/**
|
|
64
|
-
* @internal
|
|
65
|
-
*/
|
|
66
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportAppClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAccountAliasCommandInput, GetAccountAliasCommandOutput>;
|
|
67
|
-
/**
|
|
68
|
-
* @internal
|
|
69
|
-
*/
|
|
70
|
-
private serialize;
|
|
71
|
-
/**
|
|
72
|
-
* @internal
|
|
73
|
-
*/
|
|
74
|
-
private deserialize;
|
|
59
|
+
export declare class GetAccountAliasCommand extends GetAccountAliasCommand_base {
|
|
75
60
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ListSlackChannelConfigurationsRequest, ListSlackChannelConfigurationsResult } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListSlackChannelConfigurationsCommandInput extends ListSlackCha
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListSlackChannelConfigurationsCommandOutput extends ListSlackChannelConfigurationsResult, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListSlackChannelConfigurationsCommand_base: {
|
|
24
|
+
new (input: ListSlackChannelConfigurationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSlackChannelConfigurationsCommandInput, ListSlackChannelConfigurationsCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists the Slack channel configurations for an Amazon Web Services account.</p>
|
|
@@ -69,23 +72,5 @@ export interface ListSlackChannelConfigurationsCommandOutput extends ListSlackCh
|
|
|
69
72
|
* <p>Base exception class for all service exceptions from SupportApp service.</p>
|
|
70
73
|
*
|
|
71
74
|
*/
|
|
72
|
-
export declare class ListSlackChannelConfigurationsCommand extends
|
|
73
|
-
readonly input: ListSlackChannelConfigurationsCommandInput;
|
|
74
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
-
/**
|
|
76
|
-
* @public
|
|
77
|
-
*/
|
|
78
|
-
constructor(input: ListSlackChannelConfigurationsCommandInput);
|
|
79
|
-
/**
|
|
80
|
-
* @internal
|
|
81
|
-
*/
|
|
82
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportAppClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSlackChannelConfigurationsCommandInput, ListSlackChannelConfigurationsCommandOutput>;
|
|
83
|
-
/**
|
|
84
|
-
* @internal
|
|
85
|
-
*/
|
|
86
|
-
private serialize;
|
|
87
|
-
/**
|
|
88
|
-
* @internal
|
|
89
|
-
*/
|
|
90
|
-
private deserialize;
|
|
75
|
+
export declare class ListSlackChannelConfigurationsCommand extends ListSlackChannelConfigurationsCommand_base {
|
|
91
76
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ListSlackWorkspaceConfigurationsRequest, ListSlackWorkspaceConfigurationsResult } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListSlackWorkspaceConfigurationsCommandInput extends ListSlackW
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListSlackWorkspaceConfigurationsCommandOutput extends ListSlackWorkspaceConfigurationsResult, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListSlackWorkspaceConfigurationsCommand_base: {
|
|
24
|
+
new (input: ListSlackWorkspaceConfigurationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSlackWorkspaceConfigurationsCommandInput, ListSlackWorkspaceConfigurationsCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists the Slack workspace configurations for an Amazon Web Services account.</p>
|
|
@@ -64,23 +67,5 @@ export interface ListSlackWorkspaceConfigurationsCommandOutput extends ListSlack
|
|
|
64
67
|
* <p>Base exception class for all service exceptions from SupportApp service.</p>
|
|
65
68
|
*
|
|
66
69
|
*/
|
|
67
|
-
export declare class ListSlackWorkspaceConfigurationsCommand extends
|
|
68
|
-
readonly input: ListSlackWorkspaceConfigurationsCommandInput;
|
|
69
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
-
/**
|
|
71
|
-
* @public
|
|
72
|
-
*/
|
|
73
|
-
constructor(input: ListSlackWorkspaceConfigurationsCommandInput);
|
|
74
|
-
/**
|
|
75
|
-
* @internal
|
|
76
|
-
*/
|
|
77
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportAppClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSlackWorkspaceConfigurationsCommandInput, ListSlackWorkspaceConfigurationsCommandOutput>;
|
|
78
|
-
/**
|
|
79
|
-
* @internal
|
|
80
|
-
*/
|
|
81
|
-
private serialize;
|
|
82
|
-
/**
|
|
83
|
-
* @internal
|
|
84
|
-
*/
|
|
85
|
-
private deserialize;
|
|
70
|
+
export declare class ListSlackWorkspaceConfigurationsCommand extends ListSlackWorkspaceConfigurationsCommand_base {
|
|
86
71
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { PutAccountAliasRequest, PutAccountAliasResult } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface PutAccountAliasCommandInput extends PutAccountAliasRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface PutAccountAliasCommandOutput extends PutAccountAliasResult, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const PutAccountAliasCommand_base: {
|
|
24
|
+
new (input: PutAccountAliasCommandInput): import("@smithy/smithy-client").CommandImpl<PutAccountAliasCommandInput, PutAccountAliasCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Creates or updates an individual alias for each Amazon Web Services account ID. The alias appears in the
|
|
@@ -60,23 +63,5 @@ export interface PutAccountAliasCommandOutput extends PutAccountAliasResult, __M
|
|
|
60
63
|
* <p>Base exception class for all service exceptions from SupportApp service.</p>
|
|
61
64
|
*
|
|
62
65
|
*/
|
|
63
|
-
export declare class PutAccountAliasCommand extends
|
|
64
|
-
readonly input: PutAccountAliasCommandInput;
|
|
65
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
-
/**
|
|
67
|
-
* @public
|
|
68
|
-
*/
|
|
69
|
-
constructor(input: PutAccountAliasCommandInput);
|
|
70
|
-
/**
|
|
71
|
-
* @internal
|
|
72
|
-
*/
|
|
73
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportAppClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutAccountAliasCommandInput, PutAccountAliasCommandOutput>;
|
|
74
|
-
/**
|
|
75
|
-
* @internal
|
|
76
|
-
*/
|
|
77
|
-
private serialize;
|
|
78
|
-
/**
|
|
79
|
-
* @internal
|
|
80
|
-
*/
|
|
81
|
-
private deserialize;
|
|
66
|
+
export declare class PutAccountAliasCommand extends PutAccountAliasCommand_base {
|
|
82
67
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { RegisterSlackWorkspaceForOrganizationRequest, RegisterSlackWorkspaceForOrganizationResult } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface RegisterSlackWorkspaceForOrganizationCommandInput extends Regis
|
|
|
21
20
|
*/
|
|
22
21
|
export interface RegisterSlackWorkspaceForOrganizationCommandOutput extends RegisterSlackWorkspaceForOrganizationResult, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const RegisterSlackWorkspaceForOrganizationCommand_base: {
|
|
24
|
+
new (input: RegisterSlackWorkspaceForOrganizationCommandInput): import("@smithy/smithy-client").CommandImpl<RegisterSlackWorkspaceForOrganizationCommandInput, RegisterSlackWorkspaceForOrganizationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Registers a Slack workspace for your Amazon Web Services account. To call this API, your account must be
|
|
@@ -124,23 +127,5 @@ export interface RegisterSlackWorkspaceForOrganizationCommandOutput extends Regi
|
|
|
124
127
|
* <p>Base exception class for all service exceptions from SupportApp service.</p>
|
|
125
128
|
*
|
|
126
129
|
*/
|
|
127
|
-
export declare class RegisterSlackWorkspaceForOrganizationCommand extends
|
|
128
|
-
readonly input: RegisterSlackWorkspaceForOrganizationCommandInput;
|
|
129
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
130
|
-
/**
|
|
131
|
-
* @public
|
|
132
|
-
*/
|
|
133
|
-
constructor(input: RegisterSlackWorkspaceForOrganizationCommandInput);
|
|
134
|
-
/**
|
|
135
|
-
* @internal
|
|
136
|
-
*/
|
|
137
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportAppClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterSlackWorkspaceForOrganizationCommandInput, RegisterSlackWorkspaceForOrganizationCommandOutput>;
|
|
138
|
-
/**
|
|
139
|
-
* @internal
|
|
140
|
-
*/
|
|
141
|
-
private serialize;
|
|
142
|
-
/**
|
|
143
|
-
* @internal
|
|
144
|
-
*/
|
|
145
|
-
private deserialize;
|
|
130
|
+
export declare class RegisterSlackWorkspaceForOrganizationCommand extends RegisterSlackWorkspaceForOrganizationCommand_base {
|
|
146
131
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { UpdateSlackChannelConfigurationRequest, UpdateSlackChannelConfigurationResult } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface UpdateSlackChannelConfigurationCommandInput extends UpdateSlack
|
|
|
21
20
|
*/
|
|
22
21
|
export interface UpdateSlackChannelConfigurationCommandOutput extends UpdateSlackChannelConfigurationResult, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const UpdateSlackChannelConfigurationCommand_base: {
|
|
24
|
+
new (input: UpdateSlackChannelConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateSlackChannelConfigurationCommandInput, UpdateSlackChannelConfigurationCommandOutput, SupportAppClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Updates the configuration for a Slack channel, such as case update notifications.</p>
|
|
@@ -107,23 +110,5 @@ export interface UpdateSlackChannelConfigurationCommandOutput extends UpdateSlac
|
|
|
107
110
|
* <p>Base exception class for all service exceptions from SupportApp service.</p>
|
|
108
111
|
*
|
|
109
112
|
*/
|
|
110
|
-
export declare class UpdateSlackChannelConfigurationCommand extends
|
|
111
|
-
readonly input: UpdateSlackChannelConfigurationCommandInput;
|
|
112
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
113
|
-
/**
|
|
114
|
-
* @public
|
|
115
|
-
*/
|
|
116
|
-
constructor(input: UpdateSlackChannelConfigurationCommandInput);
|
|
117
|
-
/**
|
|
118
|
-
* @internal
|
|
119
|
-
*/
|
|
120
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportAppClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSlackChannelConfigurationCommandInput, UpdateSlackChannelConfigurationCommandOutput>;
|
|
121
|
-
/**
|
|
122
|
-
* @internal
|
|
123
|
-
*/
|
|
124
|
-
private serialize;
|
|
125
|
-
/**
|
|
126
|
-
* @internal
|
|
127
|
-
*/
|
|
128
|
-
private deserialize;
|
|
113
|
+
export declare class UpdateSlackChannelConfigurationCommand extends UpdateSlackChannelConfigurationCommand_base {
|
|
129
114
|
}
|
|
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
|
14
14
|
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
15
15
|
defaultSigningName: string;
|
|
16
16
|
};
|
|
17
|
+
export declare const commonParams: {
|
|
18
|
+
readonly UseFIPS: {
|
|
19
|
+
readonly type: "builtInParams";
|
|
20
|
+
readonly name: "useFipsEndpoint";
|
|
21
|
+
};
|
|
22
|
+
readonly Endpoint: {
|
|
23
|
+
readonly type: "builtInParams";
|
|
24
|
+
readonly name: "endpoint";
|
|
25
|
+
};
|
|
26
|
+
readonly Region: {
|
|
27
|
+
readonly type: "builtInParams";
|
|
28
|
+
readonly name: "region";
|
|
29
|
+
};
|
|
30
|
+
readonly UseDualStack: {
|
|
31
|
+
readonly type: "builtInParams";
|
|
32
|
+
readonly name: "useDualstackEndpoint";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
17
35
|
export interface EndpointParameters extends __EndpointParameters {
|
|
18
36
|
Region?: string;
|
|
19
37
|
UseDualStack?: boolean;
|