@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,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;
|
|
@@ -4,4 +4,4 @@ import { SupportAppPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListSlackChannelConfigurations: (config: SupportAppPaginationConfiguration, input: ListSlackChannelConfigurationsCommandInput, ...rest: any[]) => Paginator<ListSlackChannelConfigurationsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { SupportAppPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListSlackWorkspaceConfigurations: (config: SupportAppPaginationConfiguration, input: ListSlackWorkspaceConfigurationsCommandInput, ...rest: any[]) => Paginator<ListSlackWorkspaceConfigurationsCommandOutput>;
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
CreateSlackChannelConfigurationRequest,
|
|
11
5
|
CreateSlackChannelConfigurationResult,
|
|
@@ -21,22 +15,16 @@ export interface CreateSlackChannelConfigurationCommandInput
|
|
|
21
15
|
export interface CreateSlackChannelConfigurationCommandOutput
|
|
22
16
|
extends CreateSlackChannelConfigurationResult,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: CreateSlackChannelConfigurationCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: CreateSlackChannelConfigurationCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: SupportAppClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const CreateSlackChannelConfigurationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateSlackChannelConfigurationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
CreateSlackChannelConfigurationCommandInput,
|
|
38
|
-
CreateSlackChannelConfigurationCommandOutput
|
|
23
|
+
CreateSlackChannelConfigurationCommandOutput,
|
|
24
|
+
SupportAppClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class CreateSlackChannelConfigurationCommand extends CreateSlackChannelConfigurationCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
DeleteAccountAliasRequest,
|
|
11
5
|
DeleteAccountAliasResult,
|
|
@@ -21,19 +15,16 @@ export interface DeleteAccountAliasCommandInput
|
|
|
21
15
|
export interface DeleteAccountAliasCommandOutput
|
|
22
16
|
extends DeleteAccountAliasResult,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
private serialize;
|
|
38
|
-
private deserialize;
|
|
39
|
-
}
|
|
18
|
+
declare const DeleteAccountAliasCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeleteAccountAliasCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DeleteAccountAliasCommandInput,
|
|
23
|
+
DeleteAccountAliasCommandOutput,
|
|
24
|
+
SupportAppClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class DeleteAccountAliasCommand extends DeleteAccountAliasCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
DeleteSlackChannelConfigurationRequest,
|
|
11
5
|
DeleteSlackChannelConfigurationResult,
|
|
@@ -21,22 +15,16 @@ export interface DeleteSlackChannelConfigurationCommandInput
|
|
|
21
15
|
export interface DeleteSlackChannelConfigurationCommandOutput
|
|
22
16
|
extends DeleteSlackChannelConfigurationResult,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: DeleteSlackChannelConfigurationCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: DeleteSlackChannelConfigurationCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: SupportAppClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const DeleteSlackChannelConfigurationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeleteSlackChannelConfigurationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
DeleteSlackChannelConfigurationCommandInput,
|
|
38
|
-
DeleteSlackChannelConfigurationCommandOutput
|
|
23
|
+
DeleteSlackChannelConfigurationCommandOutput,
|
|
24
|
+
SupportAppClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class DeleteSlackChannelConfigurationCommand extends DeleteSlackChannelConfigurationCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
DeleteSlackWorkspaceConfigurationRequest,
|
|
11
5
|
DeleteSlackWorkspaceConfigurationResult,
|
|
@@ -21,22 +15,16 @@ export interface DeleteSlackWorkspaceConfigurationCommandInput
|
|
|
21
15
|
export interface DeleteSlackWorkspaceConfigurationCommandOutput
|
|
22
16
|
extends DeleteSlackWorkspaceConfigurationResult,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: DeleteSlackWorkspaceConfigurationCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: DeleteSlackWorkspaceConfigurationCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: SupportAppClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const DeleteSlackWorkspaceConfigurationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeleteSlackWorkspaceConfigurationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
DeleteSlackWorkspaceConfigurationCommandInput,
|
|
38
|
-
DeleteSlackWorkspaceConfigurationCommandOutput
|
|
23
|
+
DeleteSlackWorkspaceConfigurationCommandOutput,
|
|
24
|
+
SupportAppClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class DeleteSlackWorkspaceConfigurationCommand extends DeleteSlackWorkspaceConfigurationCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
GetAccountAliasRequest,
|
|
11
5
|
GetAccountAliasResult,
|
|
@@ -20,19 +14,16 @@ export interface GetAccountAliasCommandInput extends GetAccountAliasRequest {}
|
|
|
20
14
|
export interface GetAccountAliasCommandOutput
|
|
21
15
|
extends GetAccountAliasResult,
|
|
22
16
|
__MetadataBearer {}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
17
|
+
declare const GetAccountAliasCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: GetAccountAliasCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
GetAccountAliasCommandInput,
|
|
22
|
+
GetAccountAliasCommandOutput,
|
|
23
|
+
SupportAppClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class GetAccountAliasCommand extends GetAccountAliasCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ListSlackChannelConfigurationsRequest,
|
|
11
5
|
ListSlackChannelConfigurationsResult,
|
|
@@ -21,22 +15,16 @@ export interface ListSlackChannelConfigurationsCommandInput
|
|
|
21
15
|
export interface ListSlackChannelConfigurationsCommandOutput
|
|
22
16
|
extends ListSlackChannelConfigurationsResult,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: ListSlackChannelConfigurationsCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: ListSlackChannelConfigurationsCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: SupportAppClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const ListSlackChannelConfigurationsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListSlackChannelConfigurationsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
ListSlackChannelConfigurationsCommandInput,
|
|
38
|
-
ListSlackChannelConfigurationsCommandOutput
|
|
23
|
+
ListSlackChannelConfigurationsCommandOutput,
|
|
24
|
+
SupportAppClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class ListSlackChannelConfigurationsCommand extends ListSlackChannelConfigurationsCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ListSlackWorkspaceConfigurationsRequest,
|
|
11
5
|
ListSlackWorkspaceConfigurationsResult,
|
|
@@ -21,22 +15,16 @@ export interface ListSlackWorkspaceConfigurationsCommandInput
|
|
|
21
15
|
export interface ListSlackWorkspaceConfigurationsCommandOutput
|
|
22
16
|
extends ListSlackWorkspaceConfigurationsResult,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: ListSlackWorkspaceConfigurationsCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: ListSlackWorkspaceConfigurationsCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: SupportAppClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const ListSlackWorkspaceConfigurationsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListSlackWorkspaceConfigurationsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
ListSlackWorkspaceConfigurationsCommandInput,
|
|
38
|
-
ListSlackWorkspaceConfigurationsCommandOutput
|
|
23
|
+
ListSlackWorkspaceConfigurationsCommandOutput,
|
|
24
|
+
SupportAppClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class ListSlackWorkspaceConfigurationsCommand extends ListSlackWorkspaceConfigurationsCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
PutAccountAliasRequest,
|
|
11
5
|
PutAccountAliasResult,
|
|
@@ -20,19 +14,16 @@ export interface PutAccountAliasCommandInput extends PutAccountAliasRequest {}
|
|
|
20
14
|
export interface PutAccountAliasCommandOutput
|
|
21
15
|
extends PutAccountAliasResult,
|
|
22
16
|
__MetadataBearer {}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
17
|
+
declare const PutAccountAliasCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: PutAccountAliasCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
PutAccountAliasCommandInput,
|
|
22
|
+
PutAccountAliasCommandOutput,
|
|
23
|
+
SupportAppClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class PutAccountAliasCommand extends PutAccountAliasCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
RegisterSlackWorkspaceForOrganizationRequest,
|
|
11
5
|
RegisterSlackWorkspaceForOrganizationResult,
|
|
@@ -21,22 +15,16 @@ export interface RegisterSlackWorkspaceForOrganizationCommandInput
|
|
|
21
15
|
export interface RegisterSlackWorkspaceForOrganizationCommandOutput
|
|
22
16
|
extends RegisterSlackWorkspaceForOrganizationResult,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: RegisterSlackWorkspaceForOrganizationCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: RegisterSlackWorkspaceForOrganizationCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: SupportAppClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const RegisterSlackWorkspaceForOrganizationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: RegisterSlackWorkspaceForOrganizationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
RegisterSlackWorkspaceForOrganizationCommandInput,
|
|
38
|
-
RegisterSlackWorkspaceForOrganizationCommandOutput
|
|
23
|
+
RegisterSlackWorkspaceForOrganizationCommandOutput,
|
|
24
|
+
SupportAppClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class RegisterSlackWorkspaceForOrganizationCommand extends RegisterSlackWorkspaceForOrganizationCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
UpdateSlackChannelConfigurationRequest,
|
|
11
5
|
UpdateSlackChannelConfigurationResult,
|
|
@@ -21,22 +15,16 @@ export interface UpdateSlackChannelConfigurationCommandInput
|
|
|
21
15
|
export interface UpdateSlackChannelConfigurationCommandOutput
|
|
22
16
|
extends UpdateSlackChannelConfigurationResult,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: UpdateSlackChannelConfigurationCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: UpdateSlackChannelConfigurationCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: SupportAppClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const UpdateSlackChannelConfigurationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: UpdateSlackChannelConfigurationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
UpdateSlackChannelConfigurationCommandInput,
|
|
38
|
-
UpdateSlackChannelConfigurationCommandOutput
|
|
23
|
+
UpdateSlackChannelConfigurationCommandOutput,
|
|
24
|
+
SupportAppClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class UpdateSlackChannelConfigurationCommand extends UpdateSlackChannelConfigurationCommand_base {}
|
|
@@ -25,6 +25,24 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
25
25
|
ClientInputEndpointParameters & {
|
|
26
26
|
defaultSigningName: string;
|
|
27
27
|
};
|
|
28
|
+
export declare const commonParams: {
|
|
29
|
+
readonly UseFIPS: {
|
|
30
|
+
readonly type: "builtInParams";
|
|
31
|
+
readonly name: "useFipsEndpoint";
|
|
32
|
+
};
|
|
33
|
+
readonly Endpoint: {
|
|
34
|
+
readonly type: "builtInParams";
|
|
35
|
+
readonly name: "endpoint";
|
|
36
|
+
};
|
|
37
|
+
readonly Region: {
|
|
38
|
+
readonly type: "builtInParams";
|
|
39
|
+
readonly name: "region";
|
|
40
|
+
};
|
|
41
|
+
readonly UseDualStack: {
|
|
42
|
+
readonly type: "builtInParams";
|
|
43
|
+
readonly name: "useDualstackEndpoint";
|
|
44
|
+
};
|
|
45
|
+
};
|
|
28
46
|
export interface EndpointParameters extends __EndpointParameters {
|
|
29
47
|
Region?: string;
|
|
30
48
|
UseDualStack?: boolean;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListSlackChannelConfigurationsCommandOutput,
|
|
5
5
|
} from "../commands/ListSlackChannelConfigurationsCommand";
|
|
6
6
|
import { SupportAppPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListSlackChannelConfigurations: (
|
|
8
8
|
config: SupportAppPaginationConfiguration,
|
|
9
9
|
input: ListSlackChannelConfigurationsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListSlackChannelConfigurationsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListSlackWorkspaceConfigurationsCommandOutput,
|
|
5
5
|
} from "../commands/ListSlackWorkspaceConfigurationsCommand";
|
|
6
6
|
import { SupportAppPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListSlackWorkspaceConfigurations: (
|
|
8
8
|
config: SupportAppPaginationConfiguration,
|
|
9
9
|
input: ListSlackWorkspaceConfigurationsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListSlackWorkspaceConfigurationsCommandOutput>;
|