@aws-sdk/client-support 3.169.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.
Files changed (33) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/Support.d.ts +274 -75
  3. package/dist-types/ts3.4/SupportClient.d.ts +213 -87
  4. package/dist-types/ts3.4/commands/AddAttachmentsToSetCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/AddCommunicationToCaseCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateCaseCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/DescribeAttachmentCommand.d.ts +38 -17
  8. package/dist-types/ts3.4/commands/DescribeCasesCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DescribeCommunicationsCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/DescribeServicesCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/DescribeSeverityLevelsCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckResultCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckSummariesCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorChecksCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/RefreshTrustedAdvisorCheckCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/ResolveCaseCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/index.d.ts +14 -14
  19. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  20. package/dist-types/ts3.4/index.d.ts +6 -6
  21. package/dist-types/ts3.4/models/SupportServiceException.d.ts +8 -6
  22. package/dist-types/ts3.4/models/index.d.ts +1 -1
  23. package/dist-types/ts3.4/models/models_0.d.ts +568 -513
  24. package/dist-types/ts3.4/pagination/DescribeCasesPaginator.d.ts +11 -4
  25. package/dist-types/ts3.4/pagination/DescribeCommunicationsPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  27. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  28. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +173 -44
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  33. package/package.json +34 -34
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeServicesRequest, DescribeServicesResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
5
- export interface DescribeServicesCommandInput extends DescribeServicesRequest {
6
- }
7
- export interface DescribeServicesCommandOutput extends DescribeServicesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeServicesCommand extends $Command<DescribeServicesCommandInput, DescribeServicesCommandOutput, SupportClientResolvedConfig> {
11
- readonly input: DescribeServicesCommandInput;
12
- constructor(input: DescribeServicesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeServicesCommandInput, DescribeServicesCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ DescribeServicesRequest,
10
+ DescribeServicesResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SupportClientResolvedConfig,
16
+ } from "../SupportClient";
17
+ export interface DescribeServicesCommandInput extends DescribeServicesRequest {}
18
+ export interface DescribeServicesCommandOutput
19
+ extends DescribeServicesResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DescribeServicesCommand extends $Command<
23
+ DescribeServicesCommandInput,
24
+ DescribeServicesCommandOutput,
25
+ SupportClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeServicesCommandInput;
28
+ constructor(input: DescribeServicesCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SupportClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DescribeServicesCommandInput, DescribeServicesCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeSeverityLevelsRequest, DescribeSeverityLevelsResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
5
- export interface DescribeSeverityLevelsCommandInput extends DescribeSeverityLevelsRequest {
6
- }
7
- export interface DescribeSeverityLevelsCommandOutput extends DescribeSeverityLevelsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeSeverityLevelsCommand extends $Command<DescribeSeverityLevelsCommandInput, DescribeSeverityLevelsCommandOutput, SupportClientResolvedConfig> {
11
- readonly input: DescribeSeverityLevelsCommandInput;
12
- constructor(input: DescribeSeverityLevelsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSeverityLevelsCommandInput, DescribeSeverityLevelsCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ DescribeSeverityLevelsRequest,
10
+ DescribeSeverityLevelsResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SupportClientResolvedConfig,
16
+ } from "../SupportClient";
17
+ export interface DescribeSeverityLevelsCommandInput
18
+ extends DescribeSeverityLevelsRequest {}
19
+ export interface DescribeSeverityLevelsCommandOutput
20
+ extends DescribeSeverityLevelsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeSeverityLevelsCommand extends $Command<
24
+ DescribeSeverityLevelsCommandInput,
25
+ DescribeSeverityLevelsCommandOutput,
26
+ SupportClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeSeverityLevelsCommandInput;
29
+ constructor(input: DescribeSeverityLevelsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SupportClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeSeverityLevelsCommandInput,
37
+ DescribeSeverityLevelsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeTrustedAdvisorCheckRefreshStatusesRequest, DescribeTrustedAdvisorCheckRefreshStatusesResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
5
- export interface DescribeTrustedAdvisorCheckRefreshStatusesCommandInput extends DescribeTrustedAdvisorCheckRefreshStatusesRequest {
6
- }
7
- export interface DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput extends DescribeTrustedAdvisorCheckRefreshStatusesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeTrustedAdvisorCheckRefreshStatusesCommand extends $Command<DescribeTrustedAdvisorCheckRefreshStatusesCommandInput, DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput, SupportClientResolvedConfig> {
11
- readonly input: DescribeTrustedAdvisorCheckRefreshStatusesCommandInput;
12
- constructor(input: DescribeTrustedAdvisorCheckRefreshStatusesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTrustedAdvisorCheckRefreshStatusesCommandInput, DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ DescribeTrustedAdvisorCheckRefreshStatusesRequest,
10
+ DescribeTrustedAdvisorCheckRefreshStatusesResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SupportClientResolvedConfig,
16
+ } from "../SupportClient";
17
+ export interface DescribeTrustedAdvisorCheckRefreshStatusesCommandInput
18
+ extends DescribeTrustedAdvisorCheckRefreshStatusesRequest {}
19
+ export interface DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput
20
+ extends DescribeTrustedAdvisorCheckRefreshStatusesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeTrustedAdvisorCheckRefreshStatusesCommand extends $Command<
24
+ DescribeTrustedAdvisorCheckRefreshStatusesCommandInput,
25
+ DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput,
26
+ SupportClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeTrustedAdvisorCheckRefreshStatusesCommandInput;
29
+ constructor(input: DescribeTrustedAdvisorCheckRefreshStatusesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SupportClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeTrustedAdvisorCheckRefreshStatusesCommandInput,
37
+ DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeTrustedAdvisorCheckResultRequest, DescribeTrustedAdvisorCheckResultResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
5
- export interface DescribeTrustedAdvisorCheckResultCommandInput extends DescribeTrustedAdvisorCheckResultRequest {
6
- }
7
- export interface DescribeTrustedAdvisorCheckResultCommandOutput extends DescribeTrustedAdvisorCheckResultResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeTrustedAdvisorCheckResultCommand extends $Command<DescribeTrustedAdvisorCheckResultCommandInput, DescribeTrustedAdvisorCheckResultCommandOutput, SupportClientResolvedConfig> {
11
- readonly input: DescribeTrustedAdvisorCheckResultCommandInput;
12
- constructor(input: DescribeTrustedAdvisorCheckResultCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTrustedAdvisorCheckResultCommandInput, DescribeTrustedAdvisorCheckResultCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ DescribeTrustedAdvisorCheckResultRequest,
10
+ DescribeTrustedAdvisorCheckResultResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SupportClientResolvedConfig,
16
+ } from "../SupportClient";
17
+ export interface DescribeTrustedAdvisorCheckResultCommandInput
18
+ extends DescribeTrustedAdvisorCheckResultRequest {}
19
+ export interface DescribeTrustedAdvisorCheckResultCommandOutput
20
+ extends DescribeTrustedAdvisorCheckResultResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeTrustedAdvisorCheckResultCommand extends $Command<
24
+ DescribeTrustedAdvisorCheckResultCommandInput,
25
+ DescribeTrustedAdvisorCheckResultCommandOutput,
26
+ SupportClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeTrustedAdvisorCheckResultCommandInput;
29
+ constructor(input: DescribeTrustedAdvisorCheckResultCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SupportClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeTrustedAdvisorCheckResultCommandInput,
37
+ DescribeTrustedAdvisorCheckResultCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeTrustedAdvisorCheckSummariesRequest, DescribeTrustedAdvisorCheckSummariesResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
5
- export interface DescribeTrustedAdvisorCheckSummariesCommandInput extends DescribeTrustedAdvisorCheckSummariesRequest {
6
- }
7
- export interface DescribeTrustedAdvisorCheckSummariesCommandOutput extends DescribeTrustedAdvisorCheckSummariesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeTrustedAdvisorCheckSummariesCommand extends $Command<DescribeTrustedAdvisorCheckSummariesCommandInput, DescribeTrustedAdvisorCheckSummariesCommandOutput, SupportClientResolvedConfig> {
11
- readonly input: DescribeTrustedAdvisorCheckSummariesCommandInput;
12
- constructor(input: DescribeTrustedAdvisorCheckSummariesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTrustedAdvisorCheckSummariesCommandInput, DescribeTrustedAdvisorCheckSummariesCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ DescribeTrustedAdvisorCheckSummariesRequest,
10
+ DescribeTrustedAdvisorCheckSummariesResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SupportClientResolvedConfig,
16
+ } from "../SupportClient";
17
+ export interface DescribeTrustedAdvisorCheckSummariesCommandInput
18
+ extends DescribeTrustedAdvisorCheckSummariesRequest {}
19
+ export interface DescribeTrustedAdvisorCheckSummariesCommandOutput
20
+ extends DescribeTrustedAdvisorCheckSummariesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeTrustedAdvisorCheckSummariesCommand extends $Command<
24
+ DescribeTrustedAdvisorCheckSummariesCommandInput,
25
+ DescribeTrustedAdvisorCheckSummariesCommandOutput,
26
+ SupportClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeTrustedAdvisorCheckSummariesCommandInput;
29
+ constructor(input: DescribeTrustedAdvisorCheckSummariesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SupportClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeTrustedAdvisorCheckSummariesCommandInput,
37
+ DescribeTrustedAdvisorCheckSummariesCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeTrustedAdvisorChecksRequest, DescribeTrustedAdvisorChecksResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
5
- export interface DescribeTrustedAdvisorChecksCommandInput extends DescribeTrustedAdvisorChecksRequest {
6
- }
7
- export interface DescribeTrustedAdvisorChecksCommandOutput extends DescribeTrustedAdvisorChecksResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeTrustedAdvisorChecksCommand extends $Command<DescribeTrustedAdvisorChecksCommandInput, DescribeTrustedAdvisorChecksCommandOutput, SupportClientResolvedConfig> {
11
- readonly input: DescribeTrustedAdvisorChecksCommandInput;
12
- constructor(input: DescribeTrustedAdvisorChecksCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTrustedAdvisorChecksCommandInput, DescribeTrustedAdvisorChecksCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ DescribeTrustedAdvisorChecksRequest,
10
+ DescribeTrustedAdvisorChecksResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SupportClientResolvedConfig,
16
+ } from "../SupportClient";
17
+ export interface DescribeTrustedAdvisorChecksCommandInput
18
+ extends DescribeTrustedAdvisorChecksRequest {}
19
+ export interface DescribeTrustedAdvisorChecksCommandOutput
20
+ extends DescribeTrustedAdvisorChecksResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeTrustedAdvisorChecksCommand extends $Command<
24
+ DescribeTrustedAdvisorChecksCommandInput,
25
+ DescribeTrustedAdvisorChecksCommandOutput,
26
+ SupportClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeTrustedAdvisorChecksCommandInput;
29
+ constructor(input: DescribeTrustedAdvisorChecksCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SupportClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeTrustedAdvisorChecksCommandInput,
37
+ DescribeTrustedAdvisorChecksCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { RefreshTrustedAdvisorCheckRequest, RefreshTrustedAdvisorCheckResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
5
- export interface RefreshTrustedAdvisorCheckCommandInput extends RefreshTrustedAdvisorCheckRequest {
6
- }
7
- export interface RefreshTrustedAdvisorCheckCommandOutput extends RefreshTrustedAdvisorCheckResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class RefreshTrustedAdvisorCheckCommand extends $Command<RefreshTrustedAdvisorCheckCommandInput, RefreshTrustedAdvisorCheckCommandOutput, SupportClientResolvedConfig> {
11
- readonly input: RefreshTrustedAdvisorCheckCommandInput;
12
- constructor(input: RefreshTrustedAdvisorCheckCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RefreshTrustedAdvisorCheckCommandInput, RefreshTrustedAdvisorCheckCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ RefreshTrustedAdvisorCheckRequest,
10
+ RefreshTrustedAdvisorCheckResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SupportClientResolvedConfig,
16
+ } from "../SupportClient";
17
+ export interface RefreshTrustedAdvisorCheckCommandInput
18
+ extends RefreshTrustedAdvisorCheckRequest {}
19
+ export interface RefreshTrustedAdvisorCheckCommandOutput
20
+ extends RefreshTrustedAdvisorCheckResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class RefreshTrustedAdvisorCheckCommand extends $Command<
24
+ RefreshTrustedAdvisorCheckCommandInput,
25
+ RefreshTrustedAdvisorCheckCommandOutput,
26
+ SupportClientResolvedConfig
27
+ > {
28
+ readonly input: RefreshTrustedAdvisorCheckCommandInput;
29
+ constructor(input: RefreshTrustedAdvisorCheckCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SupportClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ RefreshTrustedAdvisorCheckCommandInput,
37
+ RefreshTrustedAdvisorCheckCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ResolveCaseRequest, ResolveCaseResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
5
- export interface ResolveCaseCommandInput extends ResolveCaseRequest {
6
- }
7
- export interface ResolveCaseCommandOutput extends ResolveCaseResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ResolveCaseCommand extends $Command<ResolveCaseCommandInput, ResolveCaseCommandOutput, SupportClientResolvedConfig> {
11
- readonly input: ResolveCaseCommandInput;
12
- constructor(input: ResolveCaseCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ResolveCaseCommandInput, ResolveCaseCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { ResolveCaseRequest, ResolveCaseResponse } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SupportClientResolvedConfig,
13
+ } from "../SupportClient";
14
+ export interface ResolveCaseCommandInput extends ResolveCaseRequest {}
15
+ export interface ResolveCaseCommandOutput
16
+ extends ResolveCaseResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ResolveCaseCommand extends $Command<
20
+ ResolveCaseCommandInput,
21
+ ResolveCaseCommandOutput,
22
+ SupportClientResolvedConfig
23
+ > {
24
+ readonly input: ResolveCaseCommandInput;
25
+ constructor(input: ResolveCaseCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SupportClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ResolveCaseCommandInput, ResolveCaseCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,14 +1,14 @@
1
- export * from "./AddAttachmentsToSetCommand";
2
- export * from "./AddCommunicationToCaseCommand";
3
- export * from "./CreateCaseCommand";
4
- export * from "./DescribeAttachmentCommand";
5
- export * from "./DescribeCasesCommand";
6
- export * from "./DescribeCommunicationsCommand";
7
- export * from "./DescribeServicesCommand";
8
- export * from "./DescribeSeverityLevelsCommand";
9
- export * from "./DescribeTrustedAdvisorCheckRefreshStatusesCommand";
10
- export * from "./DescribeTrustedAdvisorCheckResultCommand";
11
- export * from "./DescribeTrustedAdvisorCheckSummariesCommand";
12
- export * from "./DescribeTrustedAdvisorChecksCommand";
13
- export * from "./RefreshTrustedAdvisorCheckCommand";
14
- export * from "./ResolveCaseCommand";
1
+ export * from "./AddAttachmentsToSetCommand";
2
+ export * from "./AddCommunicationToCaseCommand";
3
+ export * from "./CreateCaseCommand";
4
+ export * from "./DescribeAttachmentCommand";
5
+ export * from "./DescribeCasesCommand";
6
+ export * from "./DescribeCommunicationsCommand";
7
+ export * from "./DescribeServicesCommand";
8
+ export * from "./DescribeSeverityLevelsCommand";
9
+ export * from "./DescribeTrustedAdvisorCheckRefreshStatusesCommand";
10
+ export * from "./DescribeTrustedAdvisorCheckResultCommand";
11
+ export * from "./DescribeTrustedAdvisorCheckSummariesCommand";
12
+ export * from "./DescribeTrustedAdvisorChecksCommand";
13
+ export * from "./RefreshTrustedAdvisorCheckCommand";
14
+ export * from "./ResolveCaseCommand";
@@ -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 "./Support";
2
- export * from "./SupportClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { SupportServiceException } from "./models/SupportServiceException";
1
+ export * from "./Support";
2
+ export * from "./SupportClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { SupportServiceException } from "./models/SupportServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class SupportServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class SupportServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";