@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,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
|
+
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
|
+
export declare class DescribeTrustedAdvisorChecksCommand extends $Command<
|
|
23
|
+
DescribeTrustedAdvisorChecksCommandInput,
|
|
24
|
+
DescribeTrustedAdvisorChecksCommandOutput,
|
|
25
|
+
SupportClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeTrustedAdvisorChecksCommandInput;
|
|
28
|
+
constructor(input: DescribeTrustedAdvisorChecksCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SupportClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeTrustedAdvisorChecksCommandInput,
|
|
35
|
+
DescribeTrustedAdvisorChecksCommandOutput
|
|
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
|
+
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
|
+
export declare class RefreshTrustedAdvisorCheckCommand extends $Command<
|
|
23
|
+
RefreshTrustedAdvisorCheckCommandInput,
|
|
24
|
+
RefreshTrustedAdvisorCheckCommandOutput,
|
|
25
|
+
SupportClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: RefreshTrustedAdvisorCheckCommandInput;
|
|
28
|
+
constructor(input: RefreshTrustedAdvisorCheckCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SupportClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
RefreshTrustedAdvisorCheckCommandInput,
|
|
35
|
+
RefreshTrustedAdvisorCheckCommandOutput
|
|
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 { 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
|
+
export declare class ResolveCaseCommand extends $Command<
|
|
19
|
+
ResolveCaseCommandInput,
|
|
20
|
+
ResolveCaseCommandOutput,
|
|
21
|
+
SupportClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ResolveCaseCommandInput;
|
|
24
|
+
constructor(input: ResolveCaseCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: SupportClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ResolveCaseCommandInput, ResolveCaseCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -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,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class SupportServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|