@aws-sdk/client-support-app 3.477.0 → 3.481.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-cjs/pagination/ListSlackChannelConfigurationsPaginator.js +2 -23
- package/dist-cjs/pagination/ListSlackWorkspaceConfigurationsPaginator.js +2 -23
- 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-es/pagination/ListSlackChannelConfigurationsPaginator.js +2 -22
- package/dist-es/pagination/ListSlackWorkspaceConfigurationsPaginator.js +2 -22
- 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/pagination/ListSlackChannelConfigurationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListSlackWorkspaceConfigurationsPaginator.d.ts +1 -1
- 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/dist-types/ts3.4/pagination/ListSlackChannelConfigurationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListSlackWorkspaceConfigurationsPaginator.d.ts +3 -3
- 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_PutAccountAliasCommand, se_PutAccountAliasCommand } from "../protocols/Aws_restJson1";
|
|
6
6
|
export { $Command };
|
|
7
|
-
export class PutAccountAliasCommand 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 = "PutAccountAliasCommand";
|
|
27
|
-
const handlerExecutionContext = {
|
|
28
|
-
logger,
|
|
29
|
-
clientName,
|
|
30
|
-
commandName,
|
|
31
|
-
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog: (_) => _,
|
|
33
|
-
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
-
service: "SupportApp",
|
|
35
|
-
operation: "PutAccountAlias",
|
|
36
|
-
},
|
|
37
|
-
};
|
|
38
|
-
const { requestHandler } = configuration;
|
|
39
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
-
}
|
|
41
|
-
serialize(input, context) {
|
|
42
|
-
return se_PutAccountAliasCommand(input, context);
|
|
43
|
-
}
|
|
44
|
-
deserialize(output, context) {
|
|
45
|
-
return de_PutAccountAliasCommand(output, context);
|
|
46
|
-
}
|
|
7
|
+
export class PutAccountAliasCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("SupportApp", "PutAccountAlias", {})
|
|
19
|
+
.n("SupportAppClient", "PutAccountAliasCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_PutAccountAliasCommand)
|
|
22
|
+
.de(de_PutAccountAliasCommand)
|
|
23
|
+
.build() {
|
|
47
24
|
}
|
|
@@ -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,24 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListSlackChannelConfigurationsCommand, } from "../commands/ListSlackChannelConfigurationsCommand";
|
|
2
3
|
import { SupportAppClient } from "../SupportAppClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListSlackChannelConfigurationsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListSlackChannelConfigurations(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.nextToken = token;
|
|
12
|
-
if (config.client instanceof SupportAppClient) {
|
|
13
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
14
|
-
}
|
|
15
|
-
else {
|
|
16
|
-
throw new Error("Invalid client, expected SupportApp | SupportAppClient");
|
|
17
|
-
}
|
|
18
|
-
yield page;
|
|
19
|
-
const prevToken = token;
|
|
20
|
-
token = page.nextToken;
|
|
21
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
22
|
-
}
|
|
23
|
-
return undefined;
|
|
24
|
-
}
|
|
4
|
+
export const paginateListSlackChannelConfigurations = createPaginator(SupportAppClient, ListSlackChannelConfigurationsCommand, "nextToken", "nextToken", "");
|
|
@@ -1,24 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListSlackWorkspaceConfigurationsCommand, } from "../commands/ListSlackWorkspaceConfigurationsCommand";
|
|
2
3
|
import { SupportAppClient } from "../SupportAppClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListSlackWorkspaceConfigurationsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListSlackWorkspaceConfigurations(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.nextToken = token;
|
|
12
|
-
if (config.client instanceof SupportAppClient) {
|
|
13
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
14
|
-
}
|
|
15
|
-
else {
|
|
16
|
-
throw new Error("Invalid client, expected SupportApp | SupportAppClient");
|
|
17
|
-
}
|
|
18
|
-
yield page;
|
|
19
|
-
const prevToken = token;
|
|
20
|
-
token = page.nextToken;
|
|
21
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
22
|
-
}
|
|
23
|
-
return undefined;
|
|
24
|
-
}
|
|
4
|
+
export const paginateListSlackWorkspaceConfigurations = createPaginator(SupportAppClient, ListSlackWorkspaceConfigurationsCommand, "nextToken", "nextToken", "");
|
|
@@ -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
|
}
|