@aws-sdk/client-support 3.50.0 → 3.53.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/SupportServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +120 -1
- package/dist-cjs/protocols/Aws_json1_1.js +138 -371
- package/dist-es/index.js +1 -0
- package/dist-es/models/SupportServiceException.js +12 -0
- package/dist-es/models/models_0.js +110 -1
- package/dist-es/protocols/Aws_json1_1.js +280 -410
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/SupportServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +47 -51
- package/dist-types/ts3.4/Support.d.ts +75 -0
- package/dist-types/ts3.4/SupportClient.d.ts +87 -0
- package/dist-types/ts3.4/commands/AddAttachmentsToSetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AddCommunicationToCaseCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateCaseCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeAttachmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeCasesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeCommunicationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeServicesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeSeverityLevelsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckResultCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckSummariesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeTrustedAdvisorChecksCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RefreshTrustedAdvisorCheckCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ResolveCaseCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +14 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/SupportServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +601 -0
- package/dist-types/ts3.4/pagination/DescribeCasesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeCommunicationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +44 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from Support service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class SupportServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { SupportServiceException as __BaseException } from "./SupportServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>An attachment to a case communication. The attachment consists of the file name and
|
|
4
5
|
* the content of the file.</p>
|
|
@@ -70,62 +71,59 @@ export declare namespace AddAttachmentsToSetResponse {
|
|
|
70
71
|
* <p>The limit for the number of attachment sets created in a short period of time has been
|
|
71
72
|
* exceeded.</p>
|
|
72
73
|
*/
|
|
73
|
-
export
|
|
74
|
-
name: "AttachmentLimitExceeded";
|
|
75
|
-
$fault: "client";
|
|
74
|
+
export declare class AttachmentLimitExceeded extends __BaseException {
|
|
75
|
+
readonly name: "AttachmentLimitExceeded";
|
|
76
|
+
readonly $fault: "client";
|
|
76
77
|
/**
|
|
77
|
-
*
|
|
78
|
-
* exceeded.</p>
|
|
78
|
+
* @internal
|
|
79
79
|
*/
|
|
80
|
-
|
|
80
|
+
constructor(opts: __ExceptionOptionType<AttachmentLimitExceeded, __BaseException>);
|
|
81
81
|
}
|
|
82
82
|
/**
|
|
83
83
|
* <p>The expiration time of the attachment set has passed. The set expires 1 hour after it
|
|
84
84
|
* is created.</p>
|
|
85
85
|
*/
|
|
86
|
-
export
|
|
87
|
-
name: "AttachmentSetExpired";
|
|
88
|
-
$fault: "client";
|
|
86
|
+
export declare class AttachmentSetExpired extends __BaseException {
|
|
87
|
+
readonly name: "AttachmentSetExpired";
|
|
88
|
+
readonly $fault: "client";
|
|
89
89
|
/**
|
|
90
|
-
*
|
|
91
|
-
* it is created.</p>
|
|
90
|
+
* @internal
|
|
92
91
|
*/
|
|
93
|
-
|
|
92
|
+
constructor(opts: __ExceptionOptionType<AttachmentSetExpired, __BaseException>);
|
|
94
93
|
}
|
|
95
94
|
/**
|
|
96
95
|
* <p>An attachment set with the specified ID could not be found.</p>
|
|
97
96
|
*/
|
|
98
|
-
export
|
|
99
|
-
name: "AttachmentSetIdNotFound";
|
|
100
|
-
$fault: "client";
|
|
97
|
+
export declare class AttachmentSetIdNotFound extends __BaseException {
|
|
98
|
+
readonly name: "AttachmentSetIdNotFound";
|
|
99
|
+
readonly $fault: "client";
|
|
101
100
|
/**
|
|
102
|
-
*
|
|
101
|
+
* @internal
|
|
103
102
|
*/
|
|
104
|
-
|
|
103
|
+
constructor(opts: __ExceptionOptionType<AttachmentSetIdNotFound, __BaseException>);
|
|
105
104
|
}
|
|
106
105
|
/**
|
|
107
106
|
* <p>A limit for the size of an attachment set has been exceeded. The limits are three
|
|
108
107
|
* attachments and 5 MB per attachment.</p>
|
|
109
108
|
*/
|
|
110
|
-
export
|
|
111
|
-
name: "AttachmentSetSizeLimitExceeded";
|
|
112
|
-
$fault: "client";
|
|
109
|
+
export declare class AttachmentSetSizeLimitExceeded extends __BaseException {
|
|
110
|
+
readonly name: "AttachmentSetSizeLimitExceeded";
|
|
111
|
+
readonly $fault: "client";
|
|
113
112
|
/**
|
|
114
|
-
*
|
|
115
|
-
* attachments and 5 MB per attachment.</p>
|
|
113
|
+
* @internal
|
|
116
114
|
*/
|
|
117
|
-
|
|
115
|
+
constructor(opts: __ExceptionOptionType<AttachmentSetSizeLimitExceeded, __BaseException>);
|
|
118
116
|
}
|
|
119
117
|
/**
|
|
120
118
|
* <p>An internal server error occurred.</p>
|
|
121
119
|
*/
|
|
122
|
-
export
|
|
123
|
-
name: "InternalServerError";
|
|
124
|
-
$fault: "server";
|
|
120
|
+
export declare class InternalServerError extends __BaseException {
|
|
121
|
+
readonly name: "InternalServerError";
|
|
122
|
+
readonly $fault: "server";
|
|
125
123
|
/**
|
|
126
|
-
*
|
|
124
|
+
* @internal
|
|
127
125
|
*/
|
|
128
|
-
|
|
126
|
+
constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
|
|
129
127
|
}
|
|
130
128
|
export interface AddCommunicationToCaseRequest {
|
|
131
129
|
/**
|
|
@@ -175,13 +173,13 @@ export declare namespace AddCommunicationToCaseResponse {
|
|
|
175
173
|
/**
|
|
176
174
|
* <p>The requested <code>caseId</code> couldn't be located.</p>
|
|
177
175
|
*/
|
|
178
|
-
export
|
|
179
|
-
name: "CaseIdNotFound";
|
|
180
|
-
$fault: "client";
|
|
176
|
+
export declare class CaseIdNotFound extends __BaseException {
|
|
177
|
+
readonly name: "CaseIdNotFound";
|
|
178
|
+
readonly $fault: "client";
|
|
181
179
|
/**
|
|
182
|
-
*
|
|
180
|
+
* @internal
|
|
183
181
|
*/
|
|
184
|
-
|
|
182
|
+
constructor(opts: __ExceptionOptionType<CaseIdNotFound, __BaseException>);
|
|
185
183
|
}
|
|
186
184
|
/**
|
|
187
185
|
* <p>The file name and ID of an attachment to a case communication. You can use the ID to
|
|
@@ -206,25 +204,24 @@ export declare namespace AttachmentDetails {
|
|
|
206
204
|
/**
|
|
207
205
|
* <p>An attachment with the specified ID could not be found.</p>
|
|
208
206
|
*/
|
|
209
|
-
export
|
|
210
|
-
name: "AttachmentIdNotFound";
|
|
211
|
-
$fault: "client";
|
|
207
|
+
export declare class AttachmentIdNotFound extends __BaseException {
|
|
208
|
+
readonly name: "AttachmentIdNotFound";
|
|
209
|
+
readonly $fault: "client";
|
|
212
210
|
/**
|
|
213
|
-
*
|
|
211
|
+
* @internal
|
|
214
212
|
*/
|
|
215
|
-
|
|
213
|
+
constructor(opts: __ExceptionOptionType<AttachmentIdNotFound, __BaseException>);
|
|
216
214
|
}
|
|
217
215
|
/**
|
|
218
216
|
* <p>The case creation limit for the account has been exceeded.</p>
|
|
219
217
|
*/
|
|
220
|
-
export
|
|
221
|
-
name: "CaseCreationLimitExceeded";
|
|
222
|
-
$fault: "client";
|
|
218
|
+
export declare class CaseCreationLimitExceeded extends __BaseException {
|
|
219
|
+
readonly name: "CaseCreationLimitExceeded";
|
|
220
|
+
readonly $fault: "client";
|
|
223
221
|
/**
|
|
224
|
-
*
|
|
225
|
-
* have open.</p>
|
|
222
|
+
* @internal
|
|
226
223
|
*/
|
|
227
|
-
|
|
224
|
+
constructor(opts: __ExceptionOptionType<CaseCreationLimitExceeded, __BaseException>);
|
|
228
225
|
}
|
|
229
226
|
export interface CreateCaseRequest {
|
|
230
227
|
/**
|
|
@@ -311,14 +308,13 @@ export declare namespace CreateCaseResponse {
|
|
|
311
308
|
* <p>The limit for the number of <a>DescribeAttachment</a> requests in a short
|
|
312
309
|
* period of time has been exceeded.</p>
|
|
313
310
|
*/
|
|
314
|
-
export
|
|
315
|
-
name: "DescribeAttachmentLimitExceeded";
|
|
316
|
-
$fault: "client";
|
|
311
|
+
export declare class DescribeAttachmentLimitExceeded extends __BaseException {
|
|
312
|
+
readonly name: "DescribeAttachmentLimitExceeded";
|
|
313
|
+
readonly $fault: "client";
|
|
317
314
|
/**
|
|
318
|
-
*
|
|
319
|
-
* period of time has been exceeded.</p>
|
|
315
|
+
* @internal
|
|
320
316
|
*/
|
|
321
|
-
|
|
317
|
+
constructor(opts: __ExceptionOptionType<DescribeAttachmentLimitExceeded, __BaseException>);
|
|
322
318
|
}
|
|
323
319
|
export interface DescribeAttachmentRequest {
|
|
324
320
|
/**
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { AddAttachmentsToSetCommandInput, AddAttachmentsToSetCommandOutput } from "./commands/AddAttachmentsToSetCommand";
|
|
3
|
+
import { AddCommunicationToCaseCommandInput, AddCommunicationToCaseCommandOutput } from "./commands/AddCommunicationToCaseCommand";
|
|
4
|
+
import { CreateCaseCommandInput, CreateCaseCommandOutput } from "./commands/CreateCaseCommand";
|
|
5
|
+
import { DescribeAttachmentCommandInput, DescribeAttachmentCommandOutput } from "./commands/DescribeAttachmentCommand";
|
|
6
|
+
import { DescribeCasesCommandInput, DescribeCasesCommandOutput } from "./commands/DescribeCasesCommand";
|
|
7
|
+
import { DescribeCommunicationsCommandInput, DescribeCommunicationsCommandOutput } from "./commands/DescribeCommunicationsCommand";
|
|
8
|
+
import { DescribeServicesCommandInput, DescribeServicesCommandOutput } from "./commands/DescribeServicesCommand";
|
|
9
|
+
import { DescribeSeverityLevelsCommandInput, DescribeSeverityLevelsCommandOutput } from "./commands/DescribeSeverityLevelsCommand";
|
|
10
|
+
import { DescribeTrustedAdvisorCheckRefreshStatusesCommandInput, DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput } from "./commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand";
|
|
11
|
+
import { DescribeTrustedAdvisorCheckResultCommandInput, DescribeTrustedAdvisorCheckResultCommandOutput } from "./commands/DescribeTrustedAdvisorCheckResultCommand";
|
|
12
|
+
import { DescribeTrustedAdvisorChecksCommandInput, DescribeTrustedAdvisorChecksCommandOutput } from "./commands/DescribeTrustedAdvisorChecksCommand";
|
|
13
|
+
import { DescribeTrustedAdvisorCheckSummariesCommandInput, DescribeTrustedAdvisorCheckSummariesCommandOutput } from "./commands/DescribeTrustedAdvisorCheckSummariesCommand";
|
|
14
|
+
import { RefreshTrustedAdvisorCheckCommandInput, RefreshTrustedAdvisorCheckCommandOutput } from "./commands/RefreshTrustedAdvisorCheckCommand";
|
|
15
|
+
import { ResolveCaseCommandInput, ResolveCaseCommandOutput } from "./commands/ResolveCaseCommand";
|
|
16
|
+
import { SupportClient } from "./SupportClient";
|
|
17
|
+
|
|
18
|
+
export declare class Support extends SupportClient {
|
|
19
|
+
|
|
20
|
+
addAttachmentsToSet(args: AddAttachmentsToSetCommandInput, options?: __HttpHandlerOptions): Promise<AddAttachmentsToSetCommandOutput>;
|
|
21
|
+
addAttachmentsToSet(args: AddAttachmentsToSetCommandInput, cb: (err: any, data?: AddAttachmentsToSetCommandOutput) => void): void;
|
|
22
|
+
addAttachmentsToSet(args: AddAttachmentsToSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddAttachmentsToSetCommandOutput) => void): void;
|
|
23
|
+
|
|
24
|
+
addCommunicationToCase(args: AddCommunicationToCaseCommandInput, options?: __HttpHandlerOptions): Promise<AddCommunicationToCaseCommandOutput>;
|
|
25
|
+
addCommunicationToCase(args: AddCommunicationToCaseCommandInput, cb: (err: any, data?: AddCommunicationToCaseCommandOutput) => void): void;
|
|
26
|
+
addCommunicationToCase(args: AddCommunicationToCaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddCommunicationToCaseCommandOutput) => void): void;
|
|
27
|
+
|
|
28
|
+
createCase(args: CreateCaseCommandInput, options?: __HttpHandlerOptions): Promise<CreateCaseCommandOutput>;
|
|
29
|
+
createCase(args: CreateCaseCommandInput, cb: (err: any, data?: CreateCaseCommandOutput) => void): void;
|
|
30
|
+
createCase(args: CreateCaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCaseCommandOutput) => void): void;
|
|
31
|
+
|
|
32
|
+
describeAttachment(args: DescribeAttachmentCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAttachmentCommandOutput>;
|
|
33
|
+
describeAttachment(args: DescribeAttachmentCommandInput, cb: (err: any, data?: DescribeAttachmentCommandOutput) => void): void;
|
|
34
|
+
describeAttachment(args: DescribeAttachmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAttachmentCommandOutput) => void): void;
|
|
35
|
+
|
|
36
|
+
describeCases(args: DescribeCasesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCasesCommandOutput>;
|
|
37
|
+
describeCases(args: DescribeCasesCommandInput, cb: (err: any, data?: DescribeCasesCommandOutput) => void): void;
|
|
38
|
+
describeCases(args: DescribeCasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCasesCommandOutput) => void): void;
|
|
39
|
+
|
|
40
|
+
describeCommunications(args: DescribeCommunicationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCommunicationsCommandOutput>;
|
|
41
|
+
describeCommunications(args: DescribeCommunicationsCommandInput, cb: (err: any, data?: DescribeCommunicationsCommandOutput) => void): void;
|
|
42
|
+
describeCommunications(args: DescribeCommunicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCommunicationsCommandOutput) => void): void;
|
|
43
|
+
|
|
44
|
+
describeServices(args: DescribeServicesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeServicesCommandOutput>;
|
|
45
|
+
describeServices(args: DescribeServicesCommandInput, cb: (err: any, data?: DescribeServicesCommandOutput) => void): void;
|
|
46
|
+
describeServices(args: DescribeServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeServicesCommandOutput) => void): void;
|
|
47
|
+
|
|
48
|
+
describeSeverityLevels(args: DescribeSeverityLevelsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSeverityLevelsCommandOutput>;
|
|
49
|
+
describeSeverityLevels(args: DescribeSeverityLevelsCommandInput, cb: (err: any, data?: DescribeSeverityLevelsCommandOutput) => void): void;
|
|
50
|
+
describeSeverityLevels(args: DescribeSeverityLevelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSeverityLevelsCommandOutput) => void): void;
|
|
51
|
+
|
|
52
|
+
describeTrustedAdvisorCheckRefreshStatuses(args: DescribeTrustedAdvisorCheckRefreshStatusesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput>;
|
|
53
|
+
describeTrustedAdvisorCheckRefreshStatuses(args: DescribeTrustedAdvisorCheckRefreshStatusesCommandInput, cb: (err: any, data?: DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput) => void): void;
|
|
54
|
+
describeTrustedAdvisorCheckRefreshStatuses(args: DescribeTrustedAdvisorCheckRefreshStatusesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput) => void): void;
|
|
55
|
+
|
|
56
|
+
describeTrustedAdvisorCheckResult(args: DescribeTrustedAdvisorCheckResultCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTrustedAdvisorCheckResultCommandOutput>;
|
|
57
|
+
describeTrustedAdvisorCheckResult(args: DescribeTrustedAdvisorCheckResultCommandInput, cb: (err: any, data?: DescribeTrustedAdvisorCheckResultCommandOutput) => void): void;
|
|
58
|
+
describeTrustedAdvisorCheckResult(args: DescribeTrustedAdvisorCheckResultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrustedAdvisorCheckResultCommandOutput) => void): void;
|
|
59
|
+
|
|
60
|
+
describeTrustedAdvisorChecks(args: DescribeTrustedAdvisorChecksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTrustedAdvisorChecksCommandOutput>;
|
|
61
|
+
describeTrustedAdvisorChecks(args: DescribeTrustedAdvisorChecksCommandInput, cb: (err: any, data?: DescribeTrustedAdvisorChecksCommandOutput) => void): void;
|
|
62
|
+
describeTrustedAdvisorChecks(args: DescribeTrustedAdvisorChecksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrustedAdvisorChecksCommandOutput) => void): void;
|
|
63
|
+
|
|
64
|
+
describeTrustedAdvisorCheckSummaries(args: DescribeTrustedAdvisorCheckSummariesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTrustedAdvisorCheckSummariesCommandOutput>;
|
|
65
|
+
describeTrustedAdvisorCheckSummaries(args: DescribeTrustedAdvisorCheckSummariesCommandInput, cb: (err: any, data?: DescribeTrustedAdvisorCheckSummariesCommandOutput) => void): void;
|
|
66
|
+
describeTrustedAdvisorCheckSummaries(args: DescribeTrustedAdvisorCheckSummariesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrustedAdvisorCheckSummariesCommandOutput) => void): void;
|
|
67
|
+
|
|
68
|
+
refreshTrustedAdvisorCheck(args: RefreshTrustedAdvisorCheckCommandInput, options?: __HttpHandlerOptions): Promise<RefreshTrustedAdvisorCheckCommandOutput>;
|
|
69
|
+
refreshTrustedAdvisorCheck(args: RefreshTrustedAdvisorCheckCommandInput, cb: (err: any, data?: RefreshTrustedAdvisorCheckCommandOutput) => void): void;
|
|
70
|
+
refreshTrustedAdvisorCheck(args: RefreshTrustedAdvisorCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RefreshTrustedAdvisorCheckCommandOutput) => void): void;
|
|
71
|
+
|
|
72
|
+
resolveCase(args: ResolveCaseCommandInput, options?: __HttpHandlerOptions): Promise<ResolveCaseCommandOutput>;
|
|
73
|
+
resolveCase(args: ResolveCaseCommandInput, cb: (err: any, data?: ResolveCaseCommandOutput) => void): void;
|
|
74
|
+
resolveCase(args: ResolveCaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResolveCaseCommandOutput) => void): void;
|
|
75
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { AddAttachmentsToSetCommandInput, AddAttachmentsToSetCommandOutput } from "./commands/AddAttachmentsToSetCommand";
|
|
10
|
+
import { AddCommunicationToCaseCommandInput, AddCommunicationToCaseCommandOutput } from "./commands/AddCommunicationToCaseCommand";
|
|
11
|
+
import { CreateCaseCommandInput, CreateCaseCommandOutput } from "./commands/CreateCaseCommand";
|
|
12
|
+
import { DescribeAttachmentCommandInput, DescribeAttachmentCommandOutput } from "./commands/DescribeAttachmentCommand";
|
|
13
|
+
import { DescribeCasesCommandInput, DescribeCasesCommandOutput } from "./commands/DescribeCasesCommand";
|
|
14
|
+
import { DescribeCommunicationsCommandInput, DescribeCommunicationsCommandOutput } from "./commands/DescribeCommunicationsCommand";
|
|
15
|
+
import { DescribeServicesCommandInput, DescribeServicesCommandOutput } from "./commands/DescribeServicesCommand";
|
|
16
|
+
import { DescribeSeverityLevelsCommandInput, DescribeSeverityLevelsCommandOutput } from "./commands/DescribeSeverityLevelsCommand";
|
|
17
|
+
import { DescribeTrustedAdvisorCheckRefreshStatusesCommandInput, DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput } from "./commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand";
|
|
18
|
+
import { DescribeTrustedAdvisorCheckResultCommandInput, DescribeTrustedAdvisorCheckResultCommandOutput } from "./commands/DescribeTrustedAdvisorCheckResultCommand";
|
|
19
|
+
import { DescribeTrustedAdvisorChecksCommandInput, DescribeTrustedAdvisorChecksCommandOutput } from "./commands/DescribeTrustedAdvisorChecksCommand";
|
|
20
|
+
import { DescribeTrustedAdvisorCheckSummariesCommandInput, DescribeTrustedAdvisorCheckSummariesCommandOutput } from "./commands/DescribeTrustedAdvisorCheckSummariesCommand";
|
|
21
|
+
import { RefreshTrustedAdvisorCheckCommandInput, RefreshTrustedAdvisorCheckCommandOutput } from "./commands/RefreshTrustedAdvisorCheckCommand";
|
|
22
|
+
import { ResolveCaseCommandInput, ResolveCaseCommandOutput } from "./commands/ResolveCaseCommand";
|
|
23
|
+
export declare type ServiceInputTypes = AddAttachmentsToSetCommandInput | AddCommunicationToCaseCommandInput | CreateCaseCommandInput | DescribeAttachmentCommandInput | DescribeCasesCommandInput | DescribeCommunicationsCommandInput | DescribeServicesCommandInput | DescribeSeverityLevelsCommandInput | DescribeTrustedAdvisorCheckRefreshStatusesCommandInput | DescribeTrustedAdvisorCheckResultCommandInput | DescribeTrustedAdvisorCheckSummariesCommandInput | DescribeTrustedAdvisorChecksCommandInput | RefreshTrustedAdvisorCheckCommandInput | ResolveCaseCommandInput;
|
|
24
|
+
export declare type ServiceOutputTypes = AddAttachmentsToSetCommandOutput | AddCommunicationToCaseCommandOutput | CreateCaseCommandOutput | DescribeAttachmentCommandOutput | DescribeCasesCommandOutput | DescribeCommunicationsCommandOutput | DescribeServicesCommandOutput | DescribeSeverityLevelsCommandOutput | DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput | DescribeTrustedAdvisorCheckResultCommandOutput | DescribeTrustedAdvisorCheckSummariesCommandOutput | DescribeTrustedAdvisorChecksCommandOutput | RefreshTrustedAdvisorCheckCommandOutput | ResolveCaseCommandOutput;
|
|
25
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
26
|
+
|
|
27
|
+
requestHandler?: __HttpHandler;
|
|
28
|
+
|
|
29
|
+
sha256?: __HashConstructor;
|
|
30
|
+
|
|
31
|
+
urlParser?: __UrlParser;
|
|
32
|
+
|
|
33
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
34
|
+
|
|
35
|
+
streamCollector?: __StreamCollector;
|
|
36
|
+
|
|
37
|
+
base64Decoder?: __Decoder;
|
|
38
|
+
|
|
39
|
+
base64Encoder?: __Encoder;
|
|
40
|
+
|
|
41
|
+
utf8Decoder?: __Decoder;
|
|
42
|
+
|
|
43
|
+
utf8Encoder?: __Encoder;
|
|
44
|
+
|
|
45
|
+
runtime?: string;
|
|
46
|
+
|
|
47
|
+
disableHostPrefix?: boolean;
|
|
48
|
+
|
|
49
|
+
maxAttempts?: number | __Provider<number>;
|
|
50
|
+
|
|
51
|
+
retryMode?: string | __Provider<string>;
|
|
52
|
+
|
|
53
|
+
logger?: __Logger;
|
|
54
|
+
|
|
55
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
56
|
+
|
|
57
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
58
|
+
|
|
59
|
+
serviceId?: string;
|
|
60
|
+
|
|
61
|
+
region?: string | __Provider<string>;
|
|
62
|
+
|
|
63
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
64
|
+
|
|
65
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
66
|
+
|
|
67
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
68
|
+
|
|
69
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
70
|
+
}
|
|
71
|
+
declare type SupportClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
72
|
+
|
|
73
|
+
export interface SupportClientConfig extends SupportClientConfigType {
|
|
74
|
+
}
|
|
75
|
+
declare type SupportClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
76
|
+
|
|
77
|
+
export interface SupportClientResolvedConfig extends SupportClientResolvedConfigType {
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
export declare class SupportClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig> {
|
|
81
|
+
|
|
82
|
+
readonly config: SupportClientResolvedConfig;
|
|
83
|
+
constructor(configuration: SupportClientConfig);
|
|
84
|
+
|
|
85
|
+
destroy(): void;
|
|
86
|
+
}
|
|
87
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|