@aws-sdk/client-support 3.289.0 → 3.292.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-types/commands/AddAttachmentsToSetCommand.d.ts +19 -0
- package/dist-types/commands/AddCommunicationToCaseCommand.d.ts +14 -0
- package/dist-types/commands/CreateCaseCommand.d.ts +14 -0
- package/dist-types/commands/DescribeAttachmentCommand.d.ts +11 -0
- package/dist-types/commands/DescribeCasesCommand.d.ts +7 -0
- package/dist-types/commands/DescribeCommunicationsCommand.d.ts +7 -0
- package/dist-types/commands/DescribeServicesCommand.d.ts +4 -0
- package/dist-types/commands/DescribeSeverityLevelsCommand.d.ts +4 -0
- package/dist-types/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.d.ts +4 -0
- package/dist-types/commands/DescribeTrustedAdvisorCheckResultCommand.d.ts +4 -0
- package/dist-types/commands/DescribeTrustedAdvisorCheckSummariesCommand.d.ts +4 -0
- package/dist-types/commands/DescribeTrustedAdvisorChecksCommand.d.ts +4 -0
- package/dist-types/commands/RefreshTrustedAdvisorCheckCommand.d.ts +4 -0
- package/dist-types/commands/ResolveCaseCommand.d.ts +7 -0
- package/package.json +35 -40
|
@@ -46,6 +46,25 @@ export interface AddAttachmentsToSetCommandOutput extends AddAttachmentsToSetRes
|
|
|
46
46
|
* @see {@link AddAttachmentsToSetCommandOutput} for command's `response` shape.
|
|
47
47
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
48
48
|
*
|
|
49
|
+
* @throws {@link AttachmentLimitExceeded} (client fault)
|
|
50
|
+
* <p>The limit for the number of attachment sets created in a short period of time has been
|
|
51
|
+
* exceeded.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link AttachmentSetExpired} (client fault)
|
|
54
|
+
* <p>The expiration time of the attachment set has passed. The set expires 1 hour after it
|
|
55
|
+
* is created.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link AttachmentSetIdNotFound} (client fault)
|
|
58
|
+
* <p>An attachment set with the specified ID could not be found.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link AttachmentSetSizeLimitExceeded} (client fault)
|
|
61
|
+
* <p>A limit for the size of an attachment set has been exceeded. The limits are three
|
|
62
|
+
* attachments and 5 MB per attachment.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link InternalServerError} (server fault)
|
|
65
|
+
* <p>An internal server error occurred.</p>
|
|
66
|
+
*
|
|
67
|
+
*
|
|
49
68
|
*/
|
|
50
69
|
export declare class AddAttachmentsToSetCommand extends $Command<AddAttachmentsToSetCommandInput, AddAttachmentsToSetCommandOutput, SupportClientResolvedConfig> {
|
|
51
70
|
readonly input: AddAttachmentsToSetCommandInput;
|
|
@@ -47,6 +47,20 @@ export interface AddCommunicationToCaseCommandOutput extends AddCommunicationToC
|
|
|
47
47
|
* @see {@link AddCommunicationToCaseCommandOutput} for command's `response` shape.
|
|
48
48
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
49
49
|
*
|
|
50
|
+
* @throws {@link AttachmentSetExpired} (client fault)
|
|
51
|
+
* <p>The expiration time of the attachment set has passed. The set expires 1 hour after it
|
|
52
|
+
* is created.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link AttachmentSetIdNotFound} (client fault)
|
|
55
|
+
* <p>An attachment set with the specified ID could not be found.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link CaseIdNotFound} (client fault)
|
|
58
|
+
* <p>The requested <code>caseId</code> couldn't be located.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link InternalServerError} (server fault)
|
|
61
|
+
* <p>An internal server error occurred.</p>
|
|
62
|
+
*
|
|
63
|
+
*
|
|
50
64
|
*/
|
|
51
65
|
export declare class AddCommunicationToCaseCommand extends $Command<AddCommunicationToCaseCommandInput, AddCommunicationToCaseCommandOutput, SupportClientResolvedConfig> {
|
|
52
66
|
readonly input: AddCommunicationToCaseCommandInput;
|
|
@@ -61,6 +61,20 @@ export interface CreateCaseCommandOutput extends CreateCaseResponse, __MetadataB
|
|
|
61
61
|
* @see {@link CreateCaseCommandOutput} for command's `response` shape.
|
|
62
62
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
63
63
|
*
|
|
64
|
+
* @throws {@link AttachmentSetExpired} (client fault)
|
|
65
|
+
* <p>The expiration time of the attachment set has passed. The set expires 1 hour after it
|
|
66
|
+
* is created.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link AttachmentSetIdNotFound} (client fault)
|
|
69
|
+
* <p>An attachment set with the specified ID could not be found.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link CaseCreationLimitExceeded} (client fault)
|
|
72
|
+
* <p>The case creation limit for the account has been exceeded.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link InternalServerError} (server fault)
|
|
75
|
+
* <p>An internal server error occurred.</p>
|
|
76
|
+
*
|
|
77
|
+
*
|
|
64
78
|
*/
|
|
65
79
|
export declare class CreateCaseCommand extends $Command<CreateCaseCommandInput, CreateCaseCommandOutput, SupportClientResolvedConfig> {
|
|
66
80
|
readonly input: CreateCaseCommandInput;
|
|
@@ -47,6 +47,17 @@ export interface DescribeAttachmentCommandOutput extends DescribeAttachmentRespo
|
|
|
47
47
|
* @see {@link DescribeAttachmentCommandOutput} for command's `response` shape.
|
|
48
48
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
49
49
|
*
|
|
50
|
+
* @throws {@link AttachmentIdNotFound} (client fault)
|
|
51
|
+
* <p>An attachment with the specified ID could not be found.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link DescribeAttachmentLimitExceeded} (client fault)
|
|
54
|
+
* <p>The limit for the number of <a>DescribeAttachment</a> requests in a short
|
|
55
|
+
* period of time has been exceeded.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link InternalServerError} (server fault)
|
|
58
|
+
* <p>An internal server error occurred.</p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
50
61
|
*/
|
|
51
62
|
export declare class DescribeAttachmentCommand extends $Command<DescribeAttachmentCommandInput, DescribeAttachmentCommandOutput, SupportClientResolvedConfig> {
|
|
52
63
|
readonly input: DescribeAttachmentCommandInput;
|
|
@@ -59,6 +59,13 @@ export interface DescribeCasesCommandOutput extends DescribeCasesResponse, __Met
|
|
|
59
59
|
* @see {@link DescribeCasesCommandOutput} for command's `response` shape.
|
|
60
60
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
61
61
|
*
|
|
62
|
+
* @throws {@link CaseIdNotFound} (client fault)
|
|
63
|
+
* <p>The requested <code>caseId</code> couldn't be located.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link InternalServerError} (server fault)
|
|
66
|
+
* <p>An internal server error occurred.</p>
|
|
67
|
+
*
|
|
68
|
+
*
|
|
62
69
|
*/
|
|
63
70
|
export declare class DescribeCasesCommand extends $Command<DescribeCasesCommandInput, DescribeCasesCommandOutput, SupportClientResolvedConfig> {
|
|
64
71
|
readonly input: DescribeCasesCommandInput;
|
|
@@ -52,6 +52,13 @@ export interface DescribeCommunicationsCommandOutput extends DescribeCommunicati
|
|
|
52
52
|
* @see {@link DescribeCommunicationsCommandOutput} for command's `response` shape.
|
|
53
53
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
54
54
|
*
|
|
55
|
+
* @throws {@link CaseIdNotFound} (client fault)
|
|
56
|
+
* <p>The requested <code>caseId</code> couldn't be located.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link InternalServerError} (server fault)
|
|
59
|
+
* <p>An internal server error occurred.</p>
|
|
60
|
+
*
|
|
61
|
+
*
|
|
55
62
|
*/
|
|
56
63
|
export declare class DescribeCommunicationsCommand extends $Command<DescribeCommunicationsCommandInput, DescribeCommunicationsCommandOutput, SupportClientResolvedConfig> {
|
|
57
64
|
readonly input: DescribeCommunicationsCommandInput;
|
|
@@ -51,6 +51,10 @@ export interface DescribeServicesCommandOutput extends DescribeServicesResponse,
|
|
|
51
51
|
* @see {@link DescribeServicesCommandOutput} for command's `response` shape.
|
|
52
52
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
53
53
|
*
|
|
54
|
+
* @throws {@link InternalServerError} (server fault)
|
|
55
|
+
* <p>An internal server error occurred.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
54
58
|
*/
|
|
55
59
|
export declare class DescribeServicesCommand extends $Command<DescribeServicesCommandInput, DescribeServicesCommandOutput, SupportClientResolvedConfig> {
|
|
56
60
|
readonly input: DescribeServicesCommandInput;
|
|
@@ -45,6 +45,10 @@ export interface DescribeSeverityLevelsCommandOutput extends DescribeSeverityLev
|
|
|
45
45
|
* @see {@link DescribeSeverityLevelsCommandOutput} for command's `response` shape.
|
|
46
46
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
47
47
|
*
|
|
48
|
+
* @throws {@link InternalServerError} (server fault)
|
|
49
|
+
* <p>An internal server error occurred.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
48
52
|
*/
|
|
49
53
|
export declare class DescribeSeverityLevelsCommand extends $Command<DescribeSeverityLevelsCommandInput, DescribeSeverityLevelsCommandOutput, SupportClientResolvedConfig> {
|
|
50
54
|
readonly input: DescribeSeverityLevelsCommandInput;
|
|
@@ -52,6 +52,10 @@ export interface DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput extends
|
|
|
52
52
|
* @see {@link DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput} for command's `response` shape.
|
|
53
53
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
54
54
|
*
|
|
55
|
+
* @throws {@link InternalServerError} (server fault)
|
|
56
|
+
* <p>An internal server error occurred.</p>
|
|
57
|
+
*
|
|
58
|
+
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class DescribeTrustedAdvisorCheckRefreshStatusesCommand extends $Command<DescribeTrustedAdvisorCheckRefreshStatusesCommandInput, DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput, SupportClientResolvedConfig> {
|
|
57
61
|
readonly input: DescribeTrustedAdvisorCheckRefreshStatusesCommandInput;
|
|
@@ -87,6 +87,10 @@ export interface DescribeTrustedAdvisorCheckResultCommandOutput extends Describe
|
|
|
87
87
|
* @see {@link DescribeTrustedAdvisorCheckResultCommandOutput} for command's `response` shape.
|
|
88
88
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
89
89
|
*
|
|
90
|
+
* @throws {@link InternalServerError} (server fault)
|
|
91
|
+
* <p>An internal server error occurred.</p>
|
|
92
|
+
*
|
|
93
|
+
*
|
|
90
94
|
*/
|
|
91
95
|
export declare class DescribeTrustedAdvisorCheckResultCommand extends $Command<DescribeTrustedAdvisorCheckResultCommandInput, DescribeTrustedAdvisorCheckResultCommandOutput, SupportClientResolvedConfig> {
|
|
92
96
|
readonly input: DescribeTrustedAdvisorCheckResultCommandInput;
|
|
@@ -50,6 +50,10 @@ export interface DescribeTrustedAdvisorCheckSummariesCommandOutput extends Descr
|
|
|
50
50
|
* @see {@link DescribeTrustedAdvisorCheckSummariesCommandOutput} for command's `response` shape.
|
|
51
51
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
52
52
|
*
|
|
53
|
+
* @throws {@link InternalServerError} (server fault)
|
|
54
|
+
* <p>An internal server error occurred.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
53
57
|
*/
|
|
54
58
|
export declare class DescribeTrustedAdvisorCheckSummariesCommand extends $Command<DescribeTrustedAdvisorCheckSummariesCommandInput, DescribeTrustedAdvisorCheckSummariesCommandOutput, SupportClientResolvedConfig> {
|
|
55
59
|
readonly input: DescribeTrustedAdvisorCheckSummariesCommandInput;
|
|
@@ -54,6 +54,10 @@ export interface DescribeTrustedAdvisorChecksCommandOutput extends DescribeTrust
|
|
|
54
54
|
* @see {@link DescribeTrustedAdvisorChecksCommandOutput} for command's `response` shape.
|
|
55
55
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
56
56
|
*
|
|
57
|
+
* @throws {@link InternalServerError} (server fault)
|
|
58
|
+
* <p>An internal server error occurred.</p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
57
61
|
*/
|
|
58
62
|
export declare class DescribeTrustedAdvisorChecksCommand extends $Command<DescribeTrustedAdvisorChecksCommandInput, DescribeTrustedAdvisorChecksCommandOutput, SupportClientResolvedConfig> {
|
|
59
63
|
readonly input: DescribeTrustedAdvisorChecksCommandInput;
|
|
@@ -54,6 +54,10 @@ export interface RefreshTrustedAdvisorCheckCommandOutput extends RefreshTrustedA
|
|
|
54
54
|
* @see {@link RefreshTrustedAdvisorCheckCommandOutput} for command's `response` shape.
|
|
55
55
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
56
56
|
*
|
|
57
|
+
* @throws {@link InternalServerError} (server fault)
|
|
58
|
+
* <p>An internal server error occurred.</p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
57
61
|
*/
|
|
58
62
|
export declare class RefreshTrustedAdvisorCheckCommand extends $Command<RefreshTrustedAdvisorCheckCommandInput, RefreshTrustedAdvisorCheckCommandOutput, SupportClientResolvedConfig> {
|
|
59
63
|
readonly input: RefreshTrustedAdvisorCheckCommandInput;
|
|
@@ -44,6 +44,13 @@ export interface ResolveCaseCommandOutput extends ResolveCaseResponse, __Metadat
|
|
|
44
44
|
* @see {@link ResolveCaseCommandOutput} for command's `response` shape.
|
|
45
45
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
46
46
|
*
|
|
47
|
+
* @throws {@link CaseIdNotFound} (client fault)
|
|
48
|
+
* <p>The requested <code>caseId</code> couldn't be located.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link InternalServerError} (server fault)
|
|
51
|
+
* <p>An internal server error occurred.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
47
54
|
*/
|
|
48
55
|
export declare class ResolveCaseCommand extends $Command<ResolveCaseCommandInput, ResolveCaseCommandOutput, SupportClientResolvedConfig> {
|
|
49
56
|
readonly input: ResolveCaseCommandInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-support",
|
|
3
3
|
"description": "AWS SDK for JavaScript Support Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.292.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,55 +20,50 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
45
|
-
"@aws-sdk/util-base64": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
-
"@aws-sdk/util-utf8": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.292.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.292.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.292.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.292.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.292.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.292.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.292.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.292.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.292.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.292.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.292.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.292.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.292.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.292.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.292.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.292.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.292.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.292.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.292.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.292.0",
|
|
43
|
+
"@aws-sdk/types": "3.292.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.292.0",
|
|
45
|
+
"@aws-sdk/util-base64": "3.292.0",
|
|
46
|
+
"@aws-sdk/util-body-length-browser": "3.292.0",
|
|
47
|
+
"@aws-sdk/util-body-length-node": "3.292.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.292.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.292.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.292.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.292.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.292.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.292.0",
|
|
54
|
+
"@aws-sdk/util-utf8": "3.292.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
58
|
+
"@aws-sdk/service-client-documentation-generator": "3.292.0",
|
|
59
59
|
"@tsconfig/node14": "1.0.3",
|
|
60
60
|
"@types/node": "^14.14.31",
|
|
61
61
|
"concurrently": "7.0.0",
|
|
62
62
|
"downlevel-dts": "0.10.1",
|
|
63
63
|
"rimraf": "3.0.2",
|
|
64
|
-
"typedoc": "0.
|
|
64
|
+
"typedoc": "0.23.23",
|
|
65
65
|
"typescript": "~4.6.2"
|
|
66
66
|
},
|
|
67
|
-
"overrides": {
|
|
68
|
-
"typedoc": {
|
|
69
|
-
"typescript": "~4.6.2"
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
67
|
"engines": {
|
|
73
68
|
"node": ">=14.0.0"
|
|
74
69
|
},
|