@aws-sdk/client-support 3.296.0 → 3.298.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/dist-cjs/commands/AddAttachmentsToSetCommand.js +2 -3
- package/dist-cjs/commands/AddCommunicationToCaseCommand.js +2 -3
- package/dist-cjs/commands/CreateCaseCommand.js +2 -3
- package/dist-cjs/commands/DescribeAttachmentCommand.js +2 -3
- package/dist-cjs/commands/DescribeCasesCommand.js +2 -3
- package/dist-cjs/commands/DescribeCommunicationsCommand.js +2 -3
- package/dist-cjs/commands/DescribeServicesCommand.js +2 -3
- package/dist-cjs/commands/DescribeSeverityLevelsCommand.js +2 -3
- package/dist-cjs/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.js +2 -3
- package/dist-cjs/commands/DescribeTrustedAdvisorCheckResultCommand.js +2 -3
- package/dist-cjs/commands/DescribeTrustedAdvisorCheckSummariesCommand.js +2 -3
- package/dist-cjs/commands/DescribeTrustedAdvisorChecksCommand.js +2 -3
- package/dist-cjs/commands/RefreshTrustedAdvisorCheckCommand.js +2 -3
- package/dist-cjs/commands/ResolveCaseCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -178
- package/dist-es/commands/AddAttachmentsToSetCommand.js +2 -3
- package/dist-es/commands/AddCommunicationToCaseCommand.js +2 -3
- package/dist-es/commands/CreateCaseCommand.js +2 -3
- package/dist-es/commands/DescribeAttachmentCommand.js +2 -3
- package/dist-es/commands/DescribeCasesCommand.js +2 -3
- package/dist-es/commands/DescribeCommunicationsCommand.js +2 -3
- package/dist-es/commands/DescribeServicesCommand.js +2 -3
- package/dist-es/commands/DescribeSeverityLevelsCommand.js +2 -3
- package/dist-es/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.js +2 -3
- package/dist-es/commands/DescribeTrustedAdvisorCheckResultCommand.js +2 -3
- package/dist-es/commands/DescribeTrustedAdvisorCheckSummariesCommand.js +2 -3
- package/dist-es/commands/DescribeTrustedAdvisorChecksCommand.js +2 -3
- package/dist-es/commands/RefreshTrustedAdvisorCheckCommand.js +2 -3
- package/dist-es/commands/ResolveCaseCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -132
- package/dist-types/Support.d.ts +15 -0
- package/dist-types/SupportClient.d.ts +24 -4
- package/dist-types/commands/AddAttachmentsToSetCommand.d.ts +16 -0
- package/dist-types/commands/AddCommunicationToCaseCommand.d.ts +16 -0
- package/dist-types/commands/CreateCaseCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAttachmentCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCasesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCommunicationsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeServicesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSeverityLevelsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTrustedAdvisorCheckResultCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTrustedAdvisorCheckSummariesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTrustedAdvisorChecksCommand.d.ts +16 -0
- package/dist-types/commands/RefreshTrustedAdvisorCheckCommand.d.ts +16 -0
- package/dist-types/commands/ResolveCaseCommand.d.ts +16 -0
- package/dist-types/models/SupportServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +77 -176
- package/dist-types/pagination/DescribeCasesPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeCommunicationsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -124
- package/package.json +4 -3
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DescribeTrustedAdvisorCheckRefreshStatusesRequestFilterSensitiveLog, DescribeTrustedAdvisorCheckRefreshStatusesResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_json1_1DescribeTrustedAdvisorCheckRefreshStatusesCommand, serializeAws_json1_1DescribeTrustedAdvisorCheckRefreshStatusesCommand, } from "../protocols/Aws_json1_1";
|
|
6
5
|
export class DescribeTrustedAdvisorCheckRefreshStatusesCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class DescribeTrustedAdvisorCheckRefreshStatusesCommand extends $Command
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DescribeTrustedAdvisorCheckResultRequestFilterSensitiveLog, DescribeTrustedAdvisorCheckResultResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_json1_1DescribeTrustedAdvisorCheckResultCommand, serializeAws_json1_1DescribeTrustedAdvisorCheckResultCommand, } from "../protocols/Aws_json1_1";
|
|
6
5
|
export class DescribeTrustedAdvisorCheckResultCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class DescribeTrustedAdvisorCheckResultCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DescribeTrustedAdvisorCheckSummariesRequestFilterSensitiveLog, DescribeTrustedAdvisorCheckSummariesResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_json1_1DescribeTrustedAdvisorCheckSummariesCommand, serializeAws_json1_1DescribeTrustedAdvisorCheckSummariesCommand, } from "../protocols/Aws_json1_1";
|
|
6
5
|
export class DescribeTrustedAdvisorCheckSummariesCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class DescribeTrustedAdvisorCheckSummariesCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DescribeTrustedAdvisorChecksRequestFilterSensitiveLog, DescribeTrustedAdvisorChecksResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_json1_1DescribeTrustedAdvisorChecksCommand, serializeAws_json1_1DescribeTrustedAdvisorChecksCommand, } from "../protocols/Aws_json1_1";
|
|
6
5
|
export class DescribeTrustedAdvisorChecksCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class DescribeTrustedAdvisorChecksCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { RefreshTrustedAdvisorCheckRequestFilterSensitiveLog, RefreshTrustedAdvisorCheckResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_json1_1RefreshTrustedAdvisorCheckCommand, serializeAws_json1_1RefreshTrustedAdvisorCheckCommand, } from "../protocols/Aws_json1_1";
|
|
6
5
|
export class RefreshTrustedAdvisorCheckCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class RefreshTrustedAdvisorCheckCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ResolveCaseRequestFilterSensitiveLog, ResolveCaseResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_json1_1ResolveCaseCommand, serializeAws_json1_1ResolveCaseCommand, } from "../protocols/Aws_json1_1";
|
|
6
5
|
export class ResolveCaseCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ResolveCaseCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -107,135 +107,3 @@ export class DescribeAttachmentLimitExceeded extends __BaseException {
|
|
|
107
107
|
Object.setPrototypeOf(this, DescribeAttachmentLimitExceeded.prototype);
|
|
108
108
|
}
|
|
109
109
|
}
|
|
110
|
-
export const AttachmentFilterSensitiveLog = (obj) => ({
|
|
111
|
-
...obj,
|
|
112
|
-
});
|
|
113
|
-
export const AddAttachmentsToSetRequestFilterSensitiveLog = (obj) => ({
|
|
114
|
-
...obj,
|
|
115
|
-
});
|
|
116
|
-
export const AddAttachmentsToSetResponseFilterSensitiveLog = (obj) => ({
|
|
117
|
-
...obj,
|
|
118
|
-
});
|
|
119
|
-
export const AddCommunicationToCaseRequestFilterSensitiveLog = (obj) => ({
|
|
120
|
-
...obj,
|
|
121
|
-
});
|
|
122
|
-
export const AddCommunicationToCaseResponseFilterSensitiveLog = (obj) => ({
|
|
123
|
-
...obj,
|
|
124
|
-
});
|
|
125
|
-
export const AttachmentDetailsFilterSensitiveLog = (obj) => ({
|
|
126
|
-
...obj,
|
|
127
|
-
});
|
|
128
|
-
export const CreateCaseRequestFilterSensitiveLog = (obj) => ({
|
|
129
|
-
...obj,
|
|
130
|
-
});
|
|
131
|
-
export const CreateCaseResponseFilterSensitiveLog = (obj) => ({
|
|
132
|
-
...obj,
|
|
133
|
-
});
|
|
134
|
-
export const DescribeAttachmentRequestFilterSensitiveLog = (obj) => ({
|
|
135
|
-
...obj,
|
|
136
|
-
});
|
|
137
|
-
export const DescribeAttachmentResponseFilterSensitiveLog = (obj) => ({
|
|
138
|
-
...obj,
|
|
139
|
-
});
|
|
140
|
-
export const DescribeCasesRequestFilterSensitiveLog = (obj) => ({
|
|
141
|
-
...obj,
|
|
142
|
-
});
|
|
143
|
-
export const CommunicationFilterSensitiveLog = (obj) => ({
|
|
144
|
-
...obj,
|
|
145
|
-
});
|
|
146
|
-
export const RecentCaseCommunicationsFilterSensitiveLog = (obj) => ({
|
|
147
|
-
...obj,
|
|
148
|
-
});
|
|
149
|
-
export const CaseDetailsFilterSensitiveLog = (obj) => ({
|
|
150
|
-
...obj,
|
|
151
|
-
});
|
|
152
|
-
export const DescribeCasesResponseFilterSensitiveLog = (obj) => ({
|
|
153
|
-
...obj,
|
|
154
|
-
});
|
|
155
|
-
export const DescribeCommunicationsRequestFilterSensitiveLog = (obj) => ({
|
|
156
|
-
...obj,
|
|
157
|
-
});
|
|
158
|
-
export const DescribeCommunicationsResponseFilterSensitiveLog = (obj) => ({
|
|
159
|
-
...obj,
|
|
160
|
-
});
|
|
161
|
-
export const DescribeServicesRequestFilterSensitiveLog = (obj) => ({
|
|
162
|
-
...obj,
|
|
163
|
-
});
|
|
164
|
-
export const CategoryFilterSensitiveLog = (obj) => ({
|
|
165
|
-
...obj,
|
|
166
|
-
});
|
|
167
|
-
export const ServiceFilterSensitiveLog = (obj) => ({
|
|
168
|
-
...obj,
|
|
169
|
-
});
|
|
170
|
-
export const DescribeServicesResponseFilterSensitiveLog = (obj) => ({
|
|
171
|
-
...obj,
|
|
172
|
-
});
|
|
173
|
-
export const DescribeSeverityLevelsRequestFilterSensitiveLog = (obj) => ({
|
|
174
|
-
...obj,
|
|
175
|
-
});
|
|
176
|
-
export const SeverityLevelFilterSensitiveLog = (obj) => ({
|
|
177
|
-
...obj,
|
|
178
|
-
});
|
|
179
|
-
export const DescribeSeverityLevelsResponseFilterSensitiveLog = (obj) => ({
|
|
180
|
-
...obj,
|
|
181
|
-
});
|
|
182
|
-
export const DescribeTrustedAdvisorCheckRefreshStatusesRequestFilterSensitiveLog = (obj) => ({
|
|
183
|
-
...obj,
|
|
184
|
-
});
|
|
185
|
-
export const TrustedAdvisorCheckRefreshStatusFilterSensitiveLog = (obj) => ({
|
|
186
|
-
...obj,
|
|
187
|
-
});
|
|
188
|
-
export const DescribeTrustedAdvisorCheckRefreshStatusesResponseFilterSensitiveLog = (obj) => ({
|
|
189
|
-
...obj,
|
|
190
|
-
});
|
|
191
|
-
export const DescribeTrustedAdvisorCheckResultRequestFilterSensitiveLog = (obj) => ({
|
|
192
|
-
...obj,
|
|
193
|
-
});
|
|
194
|
-
export const TrustedAdvisorCostOptimizingSummaryFilterSensitiveLog = (obj) => ({
|
|
195
|
-
...obj,
|
|
196
|
-
});
|
|
197
|
-
export const TrustedAdvisorCategorySpecificSummaryFilterSensitiveLog = (obj) => ({
|
|
198
|
-
...obj,
|
|
199
|
-
});
|
|
200
|
-
export const TrustedAdvisorResourceDetailFilterSensitiveLog = (obj) => ({
|
|
201
|
-
...obj,
|
|
202
|
-
});
|
|
203
|
-
export const TrustedAdvisorResourcesSummaryFilterSensitiveLog = (obj) => ({
|
|
204
|
-
...obj,
|
|
205
|
-
});
|
|
206
|
-
export const TrustedAdvisorCheckResultFilterSensitiveLog = (obj) => ({
|
|
207
|
-
...obj,
|
|
208
|
-
});
|
|
209
|
-
export const DescribeTrustedAdvisorCheckResultResponseFilterSensitiveLog = (obj) => ({
|
|
210
|
-
...obj,
|
|
211
|
-
});
|
|
212
|
-
export const DescribeTrustedAdvisorChecksRequestFilterSensitiveLog = (obj) => ({
|
|
213
|
-
...obj,
|
|
214
|
-
});
|
|
215
|
-
export const TrustedAdvisorCheckDescriptionFilterSensitiveLog = (obj) => ({
|
|
216
|
-
...obj,
|
|
217
|
-
});
|
|
218
|
-
export const DescribeTrustedAdvisorChecksResponseFilterSensitiveLog = (obj) => ({
|
|
219
|
-
...obj,
|
|
220
|
-
});
|
|
221
|
-
export const DescribeTrustedAdvisorCheckSummariesRequestFilterSensitiveLog = (obj) => ({
|
|
222
|
-
...obj,
|
|
223
|
-
});
|
|
224
|
-
export const TrustedAdvisorCheckSummaryFilterSensitiveLog = (obj) => ({
|
|
225
|
-
...obj,
|
|
226
|
-
});
|
|
227
|
-
export const DescribeTrustedAdvisorCheckSummariesResponseFilterSensitiveLog = (obj) => ({
|
|
228
|
-
...obj,
|
|
229
|
-
});
|
|
230
|
-
export const RefreshTrustedAdvisorCheckRequestFilterSensitiveLog = (obj) => ({
|
|
231
|
-
...obj,
|
|
232
|
-
});
|
|
233
|
-
export const RefreshTrustedAdvisorCheckResponseFilterSensitiveLog = (obj) => ({
|
|
234
|
-
...obj,
|
|
235
|
-
});
|
|
236
|
-
export const ResolveCaseRequestFilterSensitiveLog = (obj) => ({
|
|
237
|
-
...obj,
|
|
238
|
-
});
|
|
239
|
-
export const ResolveCaseResponseFilterSensitiveLog = (obj) => ({
|
|
240
|
-
...obj,
|
|
241
|
-
});
|
package/dist-types/Support.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ import { RefreshTrustedAdvisorCheckCommandInput, RefreshTrustedAdvisorCheckComma
|
|
|
15
15
|
import { ResolveCaseCommandInput, ResolveCaseCommandOutput } from "./commands/ResolveCaseCommand";
|
|
16
16
|
import { SupportClient } from "./SupportClient";
|
|
17
17
|
/**
|
|
18
|
+
* @public
|
|
18
19
|
* <fullname>Amazon Web Services Support</fullname>
|
|
19
20
|
* <p>The <i>Amazon Web Services Support API Reference</i> is intended for programmers who need detailed
|
|
20
21
|
* information about the Amazon Web Services Support operations and data types. You can use the API to manage
|
|
@@ -62,6 +63,7 @@ import { SupportClient } from "./SupportClient";
|
|
|
62
63
|
*/
|
|
63
64
|
export declare class Support extends SupportClient {
|
|
64
65
|
/**
|
|
66
|
+
* @public
|
|
65
67
|
* <p>Adds one or more attachments to an attachment set. </p>
|
|
66
68
|
* <p>An attachment set is a temporary container for attachments that you add to a case or
|
|
67
69
|
* case communication. The set is available for 1 hour after it's created. The
|
|
@@ -85,6 +87,7 @@ export declare class Support extends SupportClient {
|
|
|
85
87
|
addAttachmentsToSet(args: AddAttachmentsToSetCommandInput, cb: (err: any, data?: AddAttachmentsToSetCommandOutput) => void): void;
|
|
86
88
|
addAttachmentsToSet(args: AddAttachmentsToSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddAttachmentsToSetCommandOutput) => void): void;
|
|
87
89
|
/**
|
|
90
|
+
* @public
|
|
88
91
|
* <p>Adds additional customer communication to an Amazon Web Services Support case. Use the <code>caseId</code>
|
|
89
92
|
* parameter to identify the case to which to add communication. You can list a set of
|
|
90
93
|
* email addresses to copy on the communication by using the <code>ccEmailAddresses</code>
|
|
@@ -109,6 +112,7 @@ export declare class Support extends SupportClient {
|
|
|
109
112
|
addCommunicationToCase(args: AddCommunicationToCaseCommandInput, cb: (err: any, data?: AddCommunicationToCaseCommandOutput) => void): void;
|
|
110
113
|
addCommunicationToCase(args: AddCommunicationToCaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddCommunicationToCaseCommandOutput) => void): void;
|
|
111
114
|
/**
|
|
115
|
+
* @public
|
|
112
116
|
* <p>Creates a case in the Amazon Web Services Support Center. This operation is similar to how you create a case
|
|
113
117
|
* in the Amazon Web Services Support Center <a href="https://console.aws.amazon.com/support/home#/case/create">Create
|
|
114
118
|
* Case</a> page.</p>
|
|
@@ -147,6 +151,7 @@ export declare class Support extends SupportClient {
|
|
|
147
151
|
createCase(args: CreateCaseCommandInput, cb: (err: any, data?: CreateCaseCommandOutput) => void): void;
|
|
148
152
|
createCase(args: CreateCaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCaseCommandOutput) => void): void;
|
|
149
153
|
/**
|
|
154
|
+
* @public
|
|
150
155
|
* <p>Returns the attachment that has the specified ID. Attachments can include screenshots,
|
|
151
156
|
* error logs, or other files that describe your issue. Attachment IDs are generated by the
|
|
152
157
|
* case management system when you add an attachment to a case or case communication.
|
|
@@ -171,6 +176,7 @@ export declare class Support extends SupportClient {
|
|
|
171
176
|
describeAttachment(args: DescribeAttachmentCommandInput, cb: (err: any, data?: DescribeAttachmentCommandOutput) => void): void;
|
|
172
177
|
describeAttachment(args: DescribeAttachmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAttachmentCommandOutput) => void): void;
|
|
173
178
|
/**
|
|
179
|
+
* @public
|
|
174
180
|
* <p>Returns a list of cases that you specify by passing one or more case IDs. You can use
|
|
175
181
|
* the <code>afterTime</code> and <code>beforeTime</code> parameters to filter the cases by
|
|
176
182
|
* date. You can set values for the <code>includeResolvedCases</code> and
|
|
@@ -207,6 +213,7 @@ export declare class Support extends SupportClient {
|
|
|
207
213
|
describeCases(args: DescribeCasesCommandInput, cb: (err: any, data?: DescribeCasesCommandOutput) => void): void;
|
|
208
214
|
describeCases(args: DescribeCasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCasesCommandOutput) => void): void;
|
|
209
215
|
/**
|
|
216
|
+
* @public
|
|
210
217
|
* <p>Returns communications and attachments for one or more support cases. Use the
|
|
211
218
|
* <code>afterTime</code> and <code>beforeTime</code> parameters to filter by date. You
|
|
212
219
|
* can use the <code>caseId</code> parameter to restrict the results to a specific
|
|
@@ -236,6 +243,7 @@ export declare class Support extends SupportClient {
|
|
|
236
243
|
describeCommunications(args: DescribeCommunicationsCommandInput, cb: (err: any, data?: DescribeCommunicationsCommandOutput) => void): void;
|
|
237
244
|
describeCommunications(args: DescribeCommunicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCommunicationsCommandOutput) => void): void;
|
|
238
245
|
/**
|
|
246
|
+
* @public
|
|
239
247
|
* <p>Returns the current list of Amazon Web Services services and a list of service categories for each
|
|
240
248
|
* service. You then use service names and categories in your <a>CreateCase</a>
|
|
241
249
|
* requests. Each Amazon Web Services service has its own set of categories.</p>
|
|
@@ -264,6 +272,7 @@ export declare class Support extends SupportClient {
|
|
|
264
272
|
describeServices(args: DescribeServicesCommandInput, cb: (err: any, data?: DescribeServicesCommandOutput) => void): void;
|
|
265
273
|
describeServices(args: DescribeServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeServicesCommandOutput) => void): void;
|
|
266
274
|
/**
|
|
275
|
+
* @public
|
|
267
276
|
* <p>Returns the list of severity levels that you can assign to a support case. The
|
|
268
277
|
* severity level for a case is also a field in the <a>CaseDetails</a> data type
|
|
269
278
|
* that you include for a <a>CreateCase</a> request.</p>
|
|
@@ -286,6 +295,7 @@ export declare class Support extends SupportClient {
|
|
|
286
295
|
describeSeverityLevels(args: DescribeSeverityLevelsCommandInput, cb: (err: any, data?: DescribeSeverityLevelsCommandOutput) => void): void;
|
|
287
296
|
describeSeverityLevels(args: DescribeSeverityLevelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSeverityLevelsCommandOutput) => void): void;
|
|
288
297
|
/**
|
|
298
|
+
* @public
|
|
289
299
|
* <p>Returns the refresh status of the Trusted Advisor checks that have the specified check
|
|
290
300
|
* IDs. You can get the check IDs by calling the <a>DescribeTrustedAdvisorChecks</a> operation.</p>
|
|
291
301
|
* <p>Some checks are refreshed automatically, and you can't return their refresh statuses
|
|
@@ -315,6 +325,7 @@ export declare class Support extends SupportClient {
|
|
|
315
325
|
describeTrustedAdvisorCheckRefreshStatuses(args: DescribeTrustedAdvisorCheckRefreshStatusesCommandInput, cb: (err: any, data?: DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput) => void): void;
|
|
316
326
|
describeTrustedAdvisorCheckRefreshStatuses(args: DescribeTrustedAdvisorCheckRefreshStatusesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput) => void): void;
|
|
317
327
|
/**
|
|
328
|
+
* @public
|
|
318
329
|
* <p>Returns the results of the Trusted Advisor check that has the specified check ID. You
|
|
319
330
|
* can get the check IDs by calling the <a>DescribeTrustedAdvisorChecks</a>
|
|
320
331
|
* operation.</p>
|
|
@@ -379,6 +390,7 @@ export declare class Support extends SupportClient {
|
|
|
379
390
|
describeTrustedAdvisorCheckResult(args: DescribeTrustedAdvisorCheckResultCommandInput, cb: (err: any, data?: DescribeTrustedAdvisorCheckResultCommandOutput) => void): void;
|
|
380
391
|
describeTrustedAdvisorCheckResult(args: DescribeTrustedAdvisorCheckResultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrustedAdvisorCheckResultCommandOutput) => void): void;
|
|
381
392
|
/**
|
|
393
|
+
* @public
|
|
382
394
|
* <p>Returns information about all available Trusted Advisor checks, including the name, ID,
|
|
383
395
|
* category, description, and metadata. You must specify a language code.</p>
|
|
384
396
|
* <p>The response contains a <a>TrustedAdvisorCheckDescription</a> object for
|
|
@@ -410,6 +422,7 @@ export declare class Support extends SupportClient {
|
|
|
410
422
|
describeTrustedAdvisorChecks(args: DescribeTrustedAdvisorChecksCommandInput, cb: (err: any, data?: DescribeTrustedAdvisorChecksCommandOutput) => void): void;
|
|
411
423
|
describeTrustedAdvisorChecks(args: DescribeTrustedAdvisorChecksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrustedAdvisorChecksCommandOutput) => void): void;
|
|
412
424
|
/**
|
|
425
|
+
* @public
|
|
413
426
|
* <p>Returns the results for the Trusted Advisor check summaries for the check IDs that you
|
|
414
427
|
* specified. You can get the check IDs by calling the <a>DescribeTrustedAdvisorChecks</a> operation.</p>
|
|
415
428
|
* <p>The response contains an array of <a>TrustedAdvisorCheckSummary</a>
|
|
@@ -437,6 +450,7 @@ export declare class Support extends SupportClient {
|
|
|
437
450
|
describeTrustedAdvisorCheckSummaries(args: DescribeTrustedAdvisorCheckSummariesCommandInput, cb: (err: any, data?: DescribeTrustedAdvisorCheckSummariesCommandOutput) => void): void;
|
|
438
451
|
describeTrustedAdvisorCheckSummaries(args: DescribeTrustedAdvisorCheckSummariesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrustedAdvisorCheckSummariesCommandOutput) => void): void;
|
|
439
452
|
/**
|
|
453
|
+
* @public
|
|
440
454
|
* <p>Refreshes the Trusted Advisor check that you specify using the check ID. You can get the
|
|
441
455
|
* check IDs by calling the <a>DescribeTrustedAdvisorChecks</a>
|
|
442
456
|
* operation.</p>
|
|
@@ -468,6 +482,7 @@ export declare class Support extends SupportClient {
|
|
|
468
482
|
refreshTrustedAdvisorCheck(args: RefreshTrustedAdvisorCheckCommandInput, cb: (err: any, data?: RefreshTrustedAdvisorCheckCommandOutput) => void): void;
|
|
469
483
|
refreshTrustedAdvisorCheck(args: RefreshTrustedAdvisorCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RefreshTrustedAdvisorCheckCommandOutput) => void): void;
|
|
470
484
|
/**
|
|
485
|
+
* @public
|
|
471
486
|
* <p>Resolves a support case. This operation takes a <code>caseId</code> and returns the
|
|
472
487
|
* initial and final state of the case.</p>
|
|
473
488
|
* <note>
|
|
@@ -22,15 +22,24 @@ import { DescribeTrustedAdvisorCheckSummariesCommandInput, DescribeTrustedAdviso
|
|
|
22
22
|
import { RefreshTrustedAdvisorCheckCommandInput, RefreshTrustedAdvisorCheckCommandOutput } from "./commands/RefreshTrustedAdvisorCheckCommand";
|
|
23
23
|
import { ResolveCaseCommandInput, ResolveCaseCommandOutput } from "./commands/ResolveCaseCommand";
|
|
24
24
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
25
28
|
export type ServiceInputTypes = AddAttachmentsToSetCommandInput | AddCommunicationToCaseCommandInput | CreateCaseCommandInput | DescribeAttachmentCommandInput | DescribeCasesCommandInput | DescribeCommunicationsCommandInput | DescribeServicesCommandInput | DescribeSeverityLevelsCommandInput | DescribeTrustedAdvisorCheckRefreshStatusesCommandInput | DescribeTrustedAdvisorCheckResultCommandInput | DescribeTrustedAdvisorCheckSummariesCommandInput | DescribeTrustedAdvisorChecksCommandInput | RefreshTrustedAdvisorCheckCommandInput | ResolveCaseCommandInput;
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
26
32
|
export type ServiceOutputTypes = AddAttachmentsToSetCommandOutput | AddCommunicationToCaseCommandOutput | CreateCaseCommandOutput | DescribeAttachmentCommandOutput | DescribeCasesCommandOutput | DescribeCommunicationsCommandOutput | DescribeServicesCommandOutput | DescribeSeverityLevelsCommandOutput | DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput | DescribeTrustedAdvisorCheckResultCommandOutput | DescribeTrustedAdvisorCheckSummariesCommandOutput | DescribeTrustedAdvisorChecksCommandOutput | RefreshTrustedAdvisorCheckCommandOutput | ResolveCaseCommandOutput;
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
27
36
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
28
37
|
/**
|
|
29
38
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
30
39
|
*/
|
|
31
40
|
requestHandler?: __HttpHandler;
|
|
32
41
|
/**
|
|
33
|
-
* A constructor for a class implementing the {@link
|
|
42
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
34
43
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
35
44
|
* @internal
|
|
36
45
|
*/
|
|
@@ -120,23 +129,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
120
129
|
*/
|
|
121
130
|
logger?: __Logger;
|
|
122
131
|
/**
|
|
123
|
-
* The {@link
|
|
132
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
124
133
|
*/
|
|
125
134
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
126
135
|
}
|
|
136
|
+
/**
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
127
139
|
type SupportClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
128
140
|
/**
|
|
129
|
-
*
|
|
141
|
+
* @public
|
|
142
|
+
*
|
|
143
|
+
* The configuration interface of SupportClient class constructor that set the region, credentials and other options.
|
|
130
144
|
*/
|
|
131
145
|
export interface SupportClientConfig extends SupportClientConfigType {
|
|
132
146
|
}
|
|
147
|
+
/**
|
|
148
|
+
* @public
|
|
149
|
+
*/
|
|
133
150
|
type SupportClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
134
151
|
/**
|
|
135
|
-
*
|
|
152
|
+
* @public
|
|
153
|
+
*
|
|
154
|
+
* The resolved configuration interface of SupportClient class. This is resolved and normalized from the {@link SupportClientConfig | constructor configuration interface}.
|
|
136
155
|
*/
|
|
137
156
|
export interface SupportClientResolvedConfig extends SupportClientResolvedConfigType {
|
|
138
157
|
}
|
|
139
158
|
/**
|
|
159
|
+
* @public
|
|
140
160
|
* <fullname>Amazon Web Services Support</fullname>
|
|
141
161
|
* <p>The <i>Amazon Web Services Support API Reference</i> is intended for programmers who need detailed
|
|
142
162
|
* information about the Amazon Web Services Support operations and data types. You can use the API to manage
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AddAttachmentsToSetRequest, AddAttachmentsToSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AddAttachmentsToSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AddAttachmentsToSetCommandInput extends AddAttachmentsToSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AddAttachmentsToSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AddAttachmentsToSetCommandOutput extends AddAttachmentsToSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds one or more attachments to an attachment set. </p>
|
|
18
23
|
* <p>An attachment set is a temporary container for attachments that you add to a case or
|
|
19
24
|
* case communication. The set is available for 1 hour after it's created. The
|
|
@@ -42,6 +47,8 @@ export interface AddAttachmentsToSetCommandOutput extends AddAttachmentsToSetRes
|
|
|
42
47
|
* const response = await client.send(command);
|
|
43
48
|
* ```
|
|
44
49
|
*
|
|
50
|
+
* @param AddAttachmentsToSetCommandInput - {@link AddAttachmentsToSetCommandInput}
|
|
51
|
+
* @returns {@link AddAttachmentsToSetCommandOutput}
|
|
45
52
|
* @see {@link AddAttachmentsToSetCommandInput} for command's `input` shape.
|
|
46
53
|
* @see {@link AddAttachmentsToSetCommandOutput} for command's `response` shape.
|
|
47
54
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
@@ -69,11 +76,20 @@ export interface AddAttachmentsToSetCommandOutput extends AddAttachmentsToSetRes
|
|
|
69
76
|
export declare class AddAttachmentsToSetCommand extends $Command<AddAttachmentsToSetCommandInput, AddAttachmentsToSetCommandOutput, SupportClientResolvedConfig> {
|
|
70
77
|
readonly input: AddAttachmentsToSetCommandInput;
|
|
71
78
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
72
82
|
constructor(input: AddAttachmentsToSetCommandInput);
|
|
73
83
|
/**
|
|
74
84
|
* @internal
|
|
75
85
|
*/
|
|
76
86
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddAttachmentsToSetCommandInput, AddAttachmentsToSetCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
77
90
|
private serialize;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
78
94
|
private deserialize;
|
|
79
95
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AddCommunicationToCaseRequest, AddCommunicationToCaseResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AddCommunicationToCaseCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AddCommunicationToCaseCommandInput extends AddCommunicationToCaseRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AddCommunicationToCaseCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AddCommunicationToCaseCommandOutput extends AddCommunicationToCaseResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds additional customer communication to an Amazon Web Services Support case. Use the <code>caseId</code>
|
|
18
23
|
* parameter to identify the case to which to add communication. You can list a set of
|
|
19
24
|
* email addresses to copy on the communication by using the <code>ccEmailAddresses</code>
|
|
@@ -43,6 +48,8 @@ export interface AddCommunicationToCaseCommandOutput extends AddCommunicationToC
|
|
|
43
48
|
* const response = await client.send(command);
|
|
44
49
|
* ```
|
|
45
50
|
*
|
|
51
|
+
* @param AddCommunicationToCaseCommandInput - {@link AddCommunicationToCaseCommandInput}
|
|
52
|
+
* @returns {@link AddCommunicationToCaseCommandOutput}
|
|
46
53
|
* @see {@link AddCommunicationToCaseCommandInput} for command's `input` shape.
|
|
47
54
|
* @see {@link AddCommunicationToCaseCommandOutput} for command's `response` shape.
|
|
48
55
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface AddCommunicationToCaseCommandOutput extends AddCommunicationToC
|
|
|
65
72
|
export declare class AddCommunicationToCaseCommand extends $Command<AddCommunicationToCaseCommandInput, AddCommunicationToCaseCommandOutput, SupportClientResolvedConfig> {
|
|
66
73
|
readonly input: AddCommunicationToCaseCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: AddCommunicationToCaseCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddCommunicationToCaseCommandInput, AddCommunicationToCaseCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateCaseRequest, CreateCaseResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateCaseCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateCaseCommandInput extends CreateCaseRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateCaseCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateCaseCommandOutput extends CreateCaseResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a case in the Amazon Web Services Support Center. This operation is similar to how you create a case
|
|
18
23
|
* in the Amazon Web Services Support Center <a href="https://console.aws.amazon.com/support/home#/case/create">Create
|
|
19
24
|
* Case</a> page.</p>
|
|
@@ -57,6 +62,8 @@ export interface CreateCaseCommandOutput extends CreateCaseResponse, __MetadataB
|
|
|
57
62
|
* const response = await client.send(command);
|
|
58
63
|
* ```
|
|
59
64
|
*
|
|
65
|
+
* @param CreateCaseCommandInput - {@link CreateCaseCommandInput}
|
|
66
|
+
* @returns {@link CreateCaseCommandOutput}
|
|
60
67
|
* @see {@link CreateCaseCommandInput} for command's `input` shape.
|
|
61
68
|
* @see {@link CreateCaseCommandOutput} for command's `response` shape.
|
|
62
69
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
@@ -79,11 +86,20 @@ export interface CreateCaseCommandOutput extends CreateCaseResponse, __MetadataB
|
|
|
79
86
|
export declare class CreateCaseCommand extends $Command<CreateCaseCommandInput, CreateCaseCommandOutput, SupportClientResolvedConfig> {
|
|
80
87
|
readonly input: CreateCaseCommandInput;
|
|
81
88
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
82
92
|
constructor(input: CreateCaseCommandInput);
|
|
83
93
|
/**
|
|
84
94
|
* @internal
|
|
85
95
|
*/
|
|
86
96
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCaseCommandInput, CreateCaseCommandOutput>;
|
|
97
|
+
/**
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
87
100
|
private serialize;
|
|
101
|
+
/**
|
|
102
|
+
* @internal
|
|
103
|
+
*/
|
|
88
104
|
private deserialize;
|
|
89
105
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeAttachmentRequest, DescribeAttachmentResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeAttachmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeAttachmentCommandInput extends DescribeAttachmentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeAttachmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeAttachmentCommandOutput extends DescribeAttachmentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the attachment that has the specified ID. Attachments can include screenshots,
|
|
18
23
|
* error logs, or other files that describe your issue. Attachment IDs are generated by the
|
|
19
24
|
* case management system when you add an attachment to a case or case communication.
|
|
@@ -43,6 +48,8 @@ export interface DescribeAttachmentCommandOutput extends DescribeAttachmentRespo
|
|
|
43
48
|
* const response = await client.send(command);
|
|
44
49
|
* ```
|
|
45
50
|
*
|
|
51
|
+
* @param DescribeAttachmentCommandInput - {@link DescribeAttachmentCommandInput}
|
|
52
|
+
* @returns {@link DescribeAttachmentCommandOutput}
|
|
46
53
|
* @see {@link DescribeAttachmentCommandInput} for command's `input` shape.
|
|
47
54
|
* @see {@link DescribeAttachmentCommandOutput} for command's `response` shape.
|
|
48
55
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface DescribeAttachmentCommandOutput extends DescribeAttachmentRespo
|
|
|
62
69
|
export declare class DescribeAttachmentCommand extends $Command<DescribeAttachmentCommandInput, DescribeAttachmentCommandOutput, SupportClientResolvedConfig> {
|
|
63
70
|
readonly input: DescribeAttachmentCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: DescribeAttachmentCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAttachmentCommandInput, DescribeAttachmentCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
70
83
|
private serialize;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
71
87
|
private deserialize;
|
|
72
88
|
}
|