@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Support.d.ts +260 -75
- package/dist-types/ts3.4/SupportClient.d.ts +188 -87
- package/dist-types/ts3.4/commands/AddAttachmentsToSetCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/AddCommunicationToCaseCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateCaseCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeAttachmentCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeCasesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeCommunicationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeServicesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeSeverityLevelsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckResultCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckSummariesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeTrustedAdvisorChecksCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/RefreshTrustedAdvisorCheckCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ResolveCaseCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +14 -14
- 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/SupportServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +398 -513
- package/dist-types/ts3.4/pagination/DescribeCasesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeCommunicationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +173 -44
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,36 @@
|
|
|
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
|
+
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 {
|
|
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
|
+
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 {
|
|
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 { 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 {
|
|
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
|
+
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 {
|
|
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
|
+
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 {
|
|
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
|
+
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 {
|
|
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
|
+
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 {
|
|
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
|
+
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 {
|
|
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
|
+
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 {
|
|
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
|
+
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 {
|
|
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
|
+
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
|
+
}
|