@aws-sdk/client-support-app 3.168.0 → 3.170.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/SupportApp.d.ts +172 -50
- package/dist-types/ts3.4/SupportAppClient.d.ts +183 -82
- package/dist-types/ts3.4/commands/CreateSlackChannelConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteAccountAliasCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteSlackChannelConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteSlackWorkspaceConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetAccountAliasCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListSlackChannelConfigurationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListSlackWorkspaceConfigurationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/PutAccountAliasCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateSlackChannelConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +9 -9
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/SupportAppServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +249 -219
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListSlackChannelConfigurationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSlackWorkspaceConfigurationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +113 -29
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DeleteSlackChannelConfigurationRequest,
|
|
10
|
+
DeleteSlackChannelConfigurationResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SupportAppClientResolvedConfig,
|
|
16
|
+
} from "../SupportAppClient";
|
|
17
|
+
export interface DeleteSlackChannelConfigurationCommandInput
|
|
18
|
+
extends DeleteSlackChannelConfigurationRequest {}
|
|
19
|
+
export interface DeleteSlackChannelConfigurationCommandOutput
|
|
20
|
+
extends DeleteSlackChannelConfigurationResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteSlackChannelConfigurationCommand extends $Command<
|
|
24
|
+
DeleteSlackChannelConfigurationCommandInput,
|
|
25
|
+
DeleteSlackChannelConfigurationCommandOutput,
|
|
26
|
+
SupportAppClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteSlackChannelConfigurationCommandInput;
|
|
29
|
+
constructor(input: DeleteSlackChannelConfigurationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SupportAppClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteSlackChannelConfigurationCommandInput,
|
|
37
|
+
DeleteSlackChannelConfigurationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DeleteSlackWorkspaceConfigurationRequest,
|
|
10
|
+
DeleteSlackWorkspaceConfigurationResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SupportAppClientResolvedConfig,
|
|
16
|
+
} from "../SupportAppClient";
|
|
17
|
+
export interface DeleteSlackWorkspaceConfigurationCommandInput
|
|
18
|
+
extends DeleteSlackWorkspaceConfigurationRequest {}
|
|
19
|
+
export interface DeleteSlackWorkspaceConfigurationCommandOutput
|
|
20
|
+
extends DeleteSlackWorkspaceConfigurationResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteSlackWorkspaceConfigurationCommand extends $Command<
|
|
24
|
+
DeleteSlackWorkspaceConfigurationCommandInput,
|
|
25
|
+
DeleteSlackWorkspaceConfigurationCommandOutput,
|
|
26
|
+
SupportAppClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteSlackWorkspaceConfigurationCommandInput;
|
|
29
|
+
constructor(input: DeleteSlackWorkspaceConfigurationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SupportAppClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteSlackWorkspaceConfigurationCommandInput,
|
|
37
|
+
DeleteSlackWorkspaceConfigurationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetAccountAliasRequest,
|
|
10
|
+
GetAccountAliasResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SupportAppClientResolvedConfig,
|
|
16
|
+
} from "../SupportAppClient";
|
|
17
|
+
export interface GetAccountAliasCommandInput extends GetAccountAliasRequest {}
|
|
18
|
+
export interface GetAccountAliasCommandOutput
|
|
19
|
+
extends GetAccountAliasResult,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class GetAccountAliasCommand extends $Command<
|
|
23
|
+
GetAccountAliasCommandInput,
|
|
24
|
+
GetAccountAliasCommandOutput,
|
|
25
|
+
SupportAppClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetAccountAliasCommandInput;
|
|
28
|
+
constructor(input: GetAccountAliasCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SupportAppClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetAccountAliasCommandInput, GetAccountAliasCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListSlackChannelConfigurationsRequest,
|
|
10
|
+
ListSlackChannelConfigurationsResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SupportAppClientResolvedConfig,
|
|
16
|
+
} from "../SupportAppClient";
|
|
17
|
+
export interface ListSlackChannelConfigurationsCommandInput
|
|
18
|
+
extends ListSlackChannelConfigurationsRequest {}
|
|
19
|
+
export interface ListSlackChannelConfigurationsCommandOutput
|
|
20
|
+
extends ListSlackChannelConfigurationsResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListSlackChannelConfigurationsCommand extends $Command<
|
|
24
|
+
ListSlackChannelConfigurationsCommandInput,
|
|
25
|
+
ListSlackChannelConfigurationsCommandOutput,
|
|
26
|
+
SupportAppClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListSlackChannelConfigurationsCommandInput;
|
|
29
|
+
constructor(input: ListSlackChannelConfigurationsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SupportAppClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListSlackChannelConfigurationsCommandInput,
|
|
37
|
+
ListSlackChannelConfigurationsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListSlackWorkspaceConfigurationsRequest,
|
|
10
|
+
ListSlackWorkspaceConfigurationsResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SupportAppClientResolvedConfig,
|
|
16
|
+
} from "../SupportAppClient";
|
|
17
|
+
export interface ListSlackWorkspaceConfigurationsCommandInput
|
|
18
|
+
extends ListSlackWorkspaceConfigurationsRequest {}
|
|
19
|
+
export interface ListSlackWorkspaceConfigurationsCommandOutput
|
|
20
|
+
extends ListSlackWorkspaceConfigurationsResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListSlackWorkspaceConfigurationsCommand extends $Command<
|
|
24
|
+
ListSlackWorkspaceConfigurationsCommandInput,
|
|
25
|
+
ListSlackWorkspaceConfigurationsCommandOutput,
|
|
26
|
+
SupportAppClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListSlackWorkspaceConfigurationsCommandInput;
|
|
29
|
+
constructor(input: ListSlackWorkspaceConfigurationsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SupportAppClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListSlackWorkspaceConfigurationsCommandInput,
|
|
37
|
+
ListSlackWorkspaceConfigurationsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
PutAccountAliasRequest,
|
|
10
|
+
PutAccountAliasResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SupportAppClientResolvedConfig,
|
|
16
|
+
} from "../SupportAppClient";
|
|
17
|
+
export interface PutAccountAliasCommandInput extends PutAccountAliasRequest {}
|
|
18
|
+
export interface PutAccountAliasCommandOutput
|
|
19
|
+
extends PutAccountAliasResult,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class PutAccountAliasCommand extends $Command<
|
|
23
|
+
PutAccountAliasCommandInput,
|
|
24
|
+
PutAccountAliasCommandOutput,
|
|
25
|
+
SupportAppClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: PutAccountAliasCommandInput;
|
|
28
|
+
constructor(input: PutAccountAliasCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SupportAppClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<PutAccountAliasCommandInput, PutAccountAliasCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
UpdateSlackChannelConfigurationRequest,
|
|
10
|
+
UpdateSlackChannelConfigurationResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SupportAppClientResolvedConfig,
|
|
16
|
+
} from "../SupportAppClient";
|
|
17
|
+
export interface UpdateSlackChannelConfigurationCommandInput
|
|
18
|
+
extends UpdateSlackChannelConfigurationRequest {}
|
|
19
|
+
export interface UpdateSlackChannelConfigurationCommandOutput
|
|
20
|
+
extends UpdateSlackChannelConfigurationResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateSlackChannelConfigurationCommand extends $Command<
|
|
24
|
+
UpdateSlackChannelConfigurationCommandInput,
|
|
25
|
+
UpdateSlackChannelConfigurationCommandOutput,
|
|
26
|
+
SupportAppClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateSlackChannelConfigurationCommandInput;
|
|
29
|
+
constructor(input: UpdateSlackChannelConfigurationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SupportAppClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
UpdateSlackChannelConfigurationCommandInput,
|
|
37
|
+
UpdateSlackChannelConfigurationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export * from "./CreateSlackChannelConfigurationCommand";
|
|
2
|
-
export * from "./DeleteAccountAliasCommand";
|
|
3
|
-
export * from "./DeleteSlackChannelConfigurationCommand";
|
|
4
|
-
export * from "./DeleteSlackWorkspaceConfigurationCommand";
|
|
5
|
-
export * from "./GetAccountAliasCommand";
|
|
6
|
-
export * from "./ListSlackChannelConfigurationsCommand";
|
|
7
|
-
export * from "./ListSlackWorkspaceConfigurationsCommand";
|
|
8
|
-
export * from "./PutAccountAliasCommand";
|
|
9
|
-
export * from "./UpdateSlackChannelConfigurationCommand";
|
|
1
|
+
export * from "./CreateSlackChannelConfigurationCommand";
|
|
2
|
+
export * from "./DeleteAccountAliasCommand";
|
|
3
|
+
export * from "./DeleteSlackChannelConfigurationCommand";
|
|
4
|
+
export * from "./DeleteSlackWorkspaceConfigurationCommand";
|
|
5
|
+
export * from "./GetAccountAliasCommand";
|
|
6
|
+
export * from "./ListSlackChannelConfigurationsCommand";
|
|
7
|
+
export * from "./ListSlackWorkspaceConfigurationsCommand";
|
|
8
|
+
export * from "./PutAccountAliasCommand";
|
|
9
|
+
export * from "./UpdateSlackChannelConfigurationCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./SupportApp";
|
|
2
|
-
export * from "./SupportAppClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { SupportAppServiceException } from "./models/SupportAppServiceException";
|
|
1
|
+
export * from "./SupportApp";
|
|
2
|
+
export * from "./SupportAppClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { SupportAppServiceException } from "./models/SupportAppServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class SupportAppServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|