@aws-sdk/client-support 3.169.0 → 3.171.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 +16 -0
  2. package/dist-types/ts3.4/Support.d.ts +260 -75
  3. package/dist-types/ts3.4/SupportClient.d.ts +188 -87
  4. package/dist-types/ts3.4/commands/AddAttachmentsToSetCommand.d.ts +36 -17
  5. package/dist-types/ts3.4/commands/AddCommunicationToCaseCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/CreateCaseCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DescribeAttachmentCommand.d.ts +36 -17
  8. package/dist-types/ts3.4/commands/DescribeCasesCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DescribeCommunicationsCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/DescribeServicesCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/DescribeSeverityLevelsCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckResultCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckSummariesCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorChecksCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/RefreshTrustedAdvisorCheckCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/ResolveCaseCommand.d.ts +32 -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 +7 -6
  22. package/dist-types/ts3.4/models/index.d.ts +1 -1
  23. package/dist-types/ts3.4/models/models_0.d.ts +398 -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 +65 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  33. package/package.json +34 -34
@@ -1,17 +1,36 @@
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 { AddAttachmentsToSetRequest, AddAttachmentsToSetResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
5
- export interface AddAttachmentsToSetCommandInput extends AddAttachmentsToSetRequest {
6
- }
7
- export interface AddAttachmentsToSetCommandOutput extends AddAttachmentsToSetResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class AddAttachmentsToSetCommand extends $Command<AddAttachmentsToSetCommandInput, AddAttachmentsToSetCommandOutput, SupportClientResolvedConfig> {
11
- readonly input: AddAttachmentsToSetCommandInput;
12
- constructor(input: AddAttachmentsToSetCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddAttachmentsToSetCommandInput, AddAttachmentsToSetCommandOutput>;
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
+ AddAttachmentsToSetRequest,
10
+ AddAttachmentsToSetResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SupportClientResolvedConfig,
16
+ } from "../SupportClient";
17
+ export interface AddAttachmentsToSetCommandInput
18
+ extends AddAttachmentsToSetRequest {}
19
+ export interface AddAttachmentsToSetCommandOutput
20
+ extends AddAttachmentsToSetResponse,
21
+ __MetadataBearer {}
22
+ export declare class AddAttachmentsToSetCommand extends $Command<
23
+ AddAttachmentsToSetCommandInput,
24
+ AddAttachmentsToSetCommandOutput,
25
+ SupportClientResolvedConfig
26
+ > {
27
+ readonly input: AddAttachmentsToSetCommandInput;
28
+ constructor(input: AddAttachmentsToSetCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SupportClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<AddAttachmentsToSetCommandInput, AddAttachmentsToSetCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,39 @@
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 { AddCommunicationToCaseRequest, AddCommunicationToCaseResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
5
- export interface AddCommunicationToCaseCommandInput extends AddCommunicationToCaseRequest {
6
- }
7
- export interface AddCommunicationToCaseCommandOutput extends AddCommunicationToCaseResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class AddCommunicationToCaseCommand extends $Command<AddCommunicationToCaseCommandInput, AddCommunicationToCaseCommandOutput, SupportClientResolvedConfig> {
11
- readonly input: AddCommunicationToCaseCommandInput;
12
- constructor(input: AddCommunicationToCaseCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddCommunicationToCaseCommandInput, AddCommunicationToCaseCommandOutput>;
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
+ AddCommunicationToCaseRequest,
10
+ AddCommunicationToCaseResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SupportClientResolvedConfig,
16
+ } from "../SupportClient";
17
+ export interface AddCommunicationToCaseCommandInput
18
+ extends AddCommunicationToCaseRequest {}
19
+ export interface AddCommunicationToCaseCommandOutput
20
+ extends AddCommunicationToCaseResponse,
21
+ __MetadataBearer {}
22
+ export declare class AddCommunicationToCaseCommand extends $Command<
23
+ AddCommunicationToCaseCommandInput,
24
+ AddCommunicationToCaseCommandOutput,
25
+ SupportClientResolvedConfig
26
+ > {
27
+ readonly input: AddCommunicationToCaseCommandInput;
28
+ constructor(input: AddCommunicationToCaseCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SupportClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ AddCommunicationToCaseCommandInput,
35
+ AddCommunicationToCaseCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,32 @@
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 { CreateCaseRequest, CreateCaseResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
5
- export interface CreateCaseCommandInput extends CreateCaseRequest {
6
- }
7
- export interface CreateCaseCommandOutput extends CreateCaseResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateCaseCommand extends $Command<CreateCaseCommandInput, CreateCaseCommandOutput, SupportClientResolvedConfig> {
11
- readonly input: CreateCaseCommandInput;
12
- constructor(input: CreateCaseCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCaseCommandInput, CreateCaseCommandOutput>;
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 { CreateCaseRequest, CreateCaseResponse } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SupportClientResolvedConfig,
13
+ } from "../SupportClient";
14
+ export interface CreateCaseCommandInput extends CreateCaseRequest {}
15
+ export interface CreateCaseCommandOutput
16
+ extends CreateCaseResponse,
17
+ __MetadataBearer {}
18
+ export declare class CreateCaseCommand extends $Command<
19
+ CreateCaseCommandInput,
20
+ CreateCaseCommandOutput,
21
+ SupportClientResolvedConfig
22
+ > {
23
+ readonly input: CreateCaseCommandInput;
24
+ constructor(input: CreateCaseCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SupportClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<CreateCaseCommandInput, CreateCaseCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,36 @@
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 { DescribeAttachmentRequest, DescribeAttachmentResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
5
- export interface DescribeAttachmentCommandInput extends DescribeAttachmentRequest {
6
- }
7
- export interface DescribeAttachmentCommandOutput extends DescribeAttachmentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeAttachmentCommand extends $Command<DescribeAttachmentCommandInput, DescribeAttachmentCommandOutput, SupportClientResolvedConfig> {
11
- readonly input: DescribeAttachmentCommandInput;
12
- constructor(input: DescribeAttachmentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAttachmentCommandInput, DescribeAttachmentCommandOutput>;
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
+ DescribeAttachmentRequest,
10
+ DescribeAttachmentResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SupportClientResolvedConfig,
16
+ } from "../SupportClient";
17
+ export interface DescribeAttachmentCommandInput
18
+ extends DescribeAttachmentRequest {}
19
+ export interface DescribeAttachmentCommandOutput
20
+ extends DescribeAttachmentResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeAttachmentCommand extends $Command<
23
+ DescribeAttachmentCommandInput,
24
+ DescribeAttachmentCommandOutput,
25
+ SupportClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeAttachmentCommandInput;
28
+ constructor(input: DescribeAttachmentCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SupportClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<DescribeAttachmentCommandInput, DescribeAttachmentCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,35 @@
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 { DescribeCasesRequest, DescribeCasesResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
5
- export interface DescribeCasesCommandInput extends DescribeCasesRequest {
6
- }
7
- export interface DescribeCasesCommandOutput extends DescribeCasesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeCasesCommand extends $Command<DescribeCasesCommandInput, DescribeCasesCommandOutput, SupportClientResolvedConfig> {
11
- readonly input: DescribeCasesCommandInput;
12
- constructor(input: DescribeCasesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeCasesCommandInput, DescribeCasesCommandOutput>;
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
+ DescribeCasesRequest,
10
+ DescribeCasesResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SupportClientResolvedConfig,
16
+ } from "../SupportClient";
17
+ export interface DescribeCasesCommandInput extends DescribeCasesRequest {}
18
+ export interface DescribeCasesCommandOutput
19
+ extends DescribeCasesResponse,
20
+ __MetadataBearer {}
21
+ export declare class DescribeCasesCommand extends $Command<
22
+ DescribeCasesCommandInput,
23
+ DescribeCasesCommandOutput,
24
+ SupportClientResolvedConfig
25
+ > {
26
+ readonly input: DescribeCasesCommandInput;
27
+ constructor(input: DescribeCasesCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: SupportClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DescribeCasesCommandInput, DescribeCasesCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,39 @@
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 { DescribeCommunicationsRequest, DescribeCommunicationsResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
5
- export interface DescribeCommunicationsCommandInput extends DescribeCommunicationsRequest {
6
- }
7
- export interface DescribeCommunicationsCommandOutput extends DescribeCommunicationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeCommunicationsCommand extends $Command<DescribeCommunicationsCommandInput, DescribeCommunicationsCommandOutput, SupportClientResolvedConfig> {
11
- readonly input: DescribeCommunicationsCommandInput;
12
- constructor(input: DescribeCommunicationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeCommunicationsCommandInput, DescribeCommunicationsCommandOutput>;
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
+ DescribeCommunicationsRequest,
10
+ DescribeCommunicationsResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SupportClientResolvedConfig,
16
+ } from "../SupportClient";
17
+ export interface DescribeCommunicationsCommandInput
18
+ extends DescribeCommunicationsRequest {}
19
+ export interface DescribeCommunicationsCommandOutput
20
+ extends DescribeCommunicationsResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeCommunicationsCommand extends $Command<
23
+ DescribeCommunicationsCommandInput,
24
+ DescribeCommunicationsCommandOutput,
25
+ SupportClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeCommunicationsCommandInput;
28
+ constructor(input: DescribeCommunicationsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SupportClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeCommunicationsCommandInput,
35
+ DescribeCommunicationsCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,35 @@
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
+ export declare class DescribeServicesCommand extends $Command<
22
+ DescribeServicesCommandInput,
23
+ DescribeServicesCommandOutput,
24
+ SupportClientResolvedConfig
25
+ > {
26
+ readonly input: DescribeServicesCommandInput;
27
+ constructor(input: DescribeServicesCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: SupportClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DescribeServicesCommandInput, DescribeServicesCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,39 @@
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
+ export declare class DescribeSeverityLevelsCommand extends $Command<
23
+ DescribeSeverityLevelsCommandInput,
24
+ DescribeSeverityLevelsCommandOutput,
25
+ SupportClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeSeverityLevelsCommandInput;
28
+ constructor(input: DescribeSeverityLevelsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SupportClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeSeverityLevelsCommandInput,
35
+ DescribeSeverityLevelsCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
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
+ export declare class DescribeTrustedAdvisorCheckRefreshStatusesCommand extends $Command<
23
+ DescribeTrustedAdvisorCheckRefreshStatusesCommandInput,
24
+ DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput,
25
+ SupportClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeTrustedAdvisorCheckRefreshStatusesCommandInput;
28
+ constructor(input: DescribeTrustedAdvisorCheckRefreshStatusesCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SupportClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeTrustedAdvisorCheckRefreshStatusesCommandInput,
35
+ DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
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
+ export declare class DescribeTrustedAdvisorCheckResultCommand extends $Command<
23
+ DescribeTrustedAdvisorCheckResultCommandInput,
24
+ DescribeTrustedAdvisorCheckResultCommandOutput,
25
+ SupportClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeTrustedAdvisorCheckResultCommandInput;
28
+ constructor(input: DescribeTrustedAdvisorCheckResultCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SupportClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeTrustedAdvisorCheckResultCommandInput,
35
+ DescribeTrustedAdvisorCheckResultCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
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
+ export declare class DescribeTrustedAdvisorCheckSummariesCommand extends $Command<
23
+ DescribeTrustedAdvisorCheckSummariesCommandInput,
24
+ DescribeTrustedAdvisorCheckSummariesCommandOutput,
25
+ SupportClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeTrustedAdvisorCheckSummariesCommandInput;
28
+ constructor(input: DescribeTrustedAdvisorCheckSummariesCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SupportClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeTrustedAdvisorCheckSummariesCommandInput,
35
+ DescribeTrustedAdvisorCheckSummariesCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }