@aws-sdk/client-support 3.296.0 → 3.297.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/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 -0
- 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/package.json +3 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { SupportServiceException as __BaseException } from "./SupportServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>An attachment to a case communication. The attachment consists of the file name and
|
|
5
6
|
* the content of the file.</p>
|
|
6
7
|
*/
|
|
@@ -14,6 +15,9 @@ export interface Attachment {
|
|
|
14
15
|
*/
|
|
15
16
|
data?: Uint8Array;
|
|
16
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
17
21
|
export interface AddAttachmentsToSetRequest {
|
|
18
22
|
/**
|
|
19
23
|
* <p>The ID of the attachment set. If an <code>attachmentSetId</code> is not specified, a
|
|
@@ -34,6 +38,7 @@ export interface AddAttachmentsToSetRequest {
|
|
|
34
38
|
attachments: Attachment[] | undefined;
|
|
35
39
|
}
|
|
36
40
|
/**
|
|
41
|
+
* @public
|
|
37
42
|
* <p>The ID and expiry time of the attachment set returned by the <a>AddAttachmentsToSet</a> operation.</p>
|
|
38
43
|
*/
|
|
39
44
|
export interface AddAttachmentsToSetResponse {
|
|
@@ -50,6 +55,7 @@ export interface AddAttachmentsToSetResponse {
|
|
|
50
55
|
expiryTime?: string;
|
|
51
56
|
}
|
|
52
57
|
/**
|
|
58
|
+
* @public
|
|
53
59
|
* <p>The limit for the number of attachment sets created in a short period of time has been
|
|
54
60
|
* exceeded.</p>
|
|
55
61
|
*/
|
|
@@ -62,6 +68,7 @@ export declare class AttachmentLimitExceeded extends __BaseException {
|
|
|
62
68
|
constructor(opts: __ExceptionOptionType<AttachmentLimitExceeded, __BaseException>);
|
|
63
69
|
}
|
|
64
70
|
/**
|
|
71
|
+
* @public
|
|
65
72
|
* <p>The expiration time of the attachment set has passed. The set expires 1 hour after it
|
|
66
73
|
* is created.</p>
|
|
67
74
|
*/
|
|
@@ -74,6 +81,7 @@ export declare class AttachmentSetExpired extends __BaseException {
|
|
|
74
81
|
constructor(opts: __ExceptionOptionType<AttachmentSetExpired, __BaseException>);
|
|
75
82
|
}
|
|
76
83
|
/**
|
|
84
|
+
* @public
|
|
77
85
|
* <p>An attachment set with the specified ID could not be found.</p>
|
|
78
86
|
*/
|
|
79
87
|
export declare class AttachmentSetIdNotFound extends __BaseException {
|
|
@@ -85,6 +93,7 @@ export declare class AttachmentSetIdNotFound extends __BaseException {
|
|
|
85
93
|
constructor(opts: __ExceptionOptionType<AttachmentSetIdNotFound, __BaseException>);
|
|
86
94
|
}
|
|
87
95
|
/**
|
|
96
|
+
* @public
|
|
88
97
|
* <p>A limit for the size of an attachment set has been exceeded. The limits are three
|
|
89
98
|
* attachments and 5 MB per attachment.</p>
|
|
90
99
|
*/
|
|
@@ -97,6 +106,7 @@ export declare class AttachmentSetSizeLimitExceeded extends __BaseException {
|
|
|
97
106
|
constructor(opts: __ExceptionOptionType<AttachmentSetSizeLimitExceeded, __BaseException>);
|
|
98
107
|
}
|
|
99
108
|
/**
|
|
109
|
+
* @public
|
|
100
110
|
* <p>An internal server error occurred.</p>
|
|
101
111
|
*/
|
|
102
112
|
export declare class InternalServerError extends __BaseException {
|
|
@@ -107,6 +117,9 @@ export declare class InternalServerError extends __BaseException {
|
|
|
107
117
|
*/
|
|
108
118
|
constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
|
|
109
119
|
}
|
|
120
|
+
/**
|
|
121
|
+
* @public
|
|
122
|
+
*/
|
|
110
123
|
export interface AddCommunicationToCaseRequest {
|
|
111
124
|
/**
|
|
112
125
|
* <p>The support case ID requested or returned in the call. The case ID is an alphanumeric
|
|
@@ -131,6 +144,7 @@ export interface AddCommunicationToCaseRequest {
|
|
|
131
144
|
attachmentSetId?: string;
|
|
132
145
|
}
|
|
133
146
|
/**
|
|
147
|
+
* @public
|
|
134
148
|
* <p>The result of the <a>AddCommunicationToCase</a> operation.</p>
|
|
135
149
|
*/
|
|
136
150
|
export interface AddCommunicationToCaseResponse {
|
|
@@ -141,6 +155,7 @@ export interface AddCommunicationToCaseResponse {
|
|
|
141
155
|
result?: boolean;
|
|
142
156
|
}
|
|
143
157
|
/**
|
|
158
|
+
* @public
|
|
144
159
|
* <p>The requested <code>caseId</code> couldn't be located.</p>
|
|
145
160
|
*/
|
|
146
161
|
export declare class CaseIdNotFound extends __BaseException {
|
|
@@ -152,6 +167,7 @@ export declare class CaseIdNotFound extends __BaseException {
|
|
|
152
167
|
constructor(opts: __ExceptionOptionType<CaseIdNotFound, __BaseException>);
|
|
153
168
|
}
|
|
154
169
|
/**
|
|
170
|
+
* @public
|
|
155
171
|
* <p>The file name and ID of an attachment to a case communication. You can use the ID to
|
|
156
172
|
* retrieve the attachment with the <a>DescribeAttachment</a> operation.</p>
|
|
157
173
|
*/
|
|
@@ -166,6 +182,7 @@ export interface AttachmentDetails {
|
|
|
166
182
|
fileName?: string;
|
|
167
183
|
}
|
|
168
184
|
/**
|
|
185
|
+
* @public
|
|
169
186
|
* <p>An attachment with the specified ID could not be found.</p>
|
|
170
187
|
*/
|
|
171
188
|
export declare class AttachmentIdNotFound extends __BaseException {
|
|
@@ -177,6 +194,7 @@ export declare class AttachmentIdNotFound extends __BaseException {
|
|
|
177
194
|
constructor(opts: __ExceptionOptionType<AttachmentIdNotFound, __BaseException>);
|
|
178
195
|
}
|
|
179
196
|
/**
|
|
197
|
+
* @public
|
|
180
198
|
* <p>The case creation limit for the account has been exceeded.</p>
|
|
181
199
|
*/
|
|
182
200
|
export declare class CaseCreationLimitExceeded extends __BaseException {
|
|
@@ -187,6 +205,9 @@ export declare class CaseCreationLimitExceeded extends __BaseException {
|
|
|
187
205
|
*/
|
|
188
206
|
constructor(opts: __ExceptionOptionType<CaseCreationLimitExceeded, __BaseException>);
|
|
189
207
|
}
|
|
208
|
+
/**
|
|
209
|
+
* @public
|
|
210
|
+
*/
|
|
190
211
|
export interface CreateCaseRequest {
|
|
191
212
|
/**
|
|
192
213
|
* <p>The title of the support case. The title appears in the <b>Subject</b> field on the Amazon Web Services Support Center <a href="https://console.aws.amazon.com/support/home#/case/create">Create Case</a> page.</p>
|
|
@@ -244,6 +265,7 @@ export interface CreateCaseRequest {
|
|
|
244
265
|
attachmentSetId?: string;
|
|
245
266
|
}
|
|
246
267
|
/**
|
|
268
|
+
* @public
|
|
247
269
|
* <p>The support case ID returned by a successful completion of the <a>CreateCase</a> operation.</p>
|
|
248
270
|
*/
|
|
249
271
|
export interface CreateCaseResponse {
|
|
@@ -256,6 +278,7 @@ export interface CreateCaseResponse {
|
|
|
256
278
|
caseId?: string;
|
|
257
279
|
}
|
|
258
280
|
/**
|
|
281
|
+
* @public
|
|
259
282
|
* <p>The limit for the number of <a>DescribeAttachment</a> requests in a short
|
|
260
283
|
* period of time has been exceeded.</p>
|
|
261
284
|
*/
|
|
@@ -267,6 +290,9 @@ export declare class DescribeAttachmentLimitExceeded extends __BaseException {
|
|
|
267
290
|
*/
|
|
268
291
|
constructor(opts: __ExceptionOptionType<DescribeAttachmentLimitExceeded, __BaseException>);
|
|
269
292
|
}
|
|
293
|
+
/**
|
|
294
|
+
* @public
|
|
295
|
+
*/
|
|
270
296
|
export interface DescribeAttachmentRequest {
|
|
271
297
|
/**
|
|
272
298
|
* <p>The ID of the attachment to return. Attachment IDs are returned by the <a>DescribeCommunications</a> operation.</p>
|
|
@@ -274,6 +300,7 @@ export interface DescribeAttachmentRequest {
|
|
|
274
300
|
attachmentId: string | undefined;
|
|
275
301
|
}
|
|
276
302
|
/**
|
|
303
|
+
* @public
|
|
277
304
|
* <p>The content and file name of the attachment returned by the <a>DescribeAttachment</a> operation.</p>
|
|
278
305
|
*/
|
|
279
306
|
export interface DescribeAttachmentResponse {
|
|
@@ -286,6 +313,9 @@ export interface DescribeAttachmentResponse {
|
|
|
286
313
|
*/
|
|
287
314
|
attachment?: Attachment;
|
|
288
315
|
}
|
|
316
|
+
/**
|
|
317
|
+
* @public
|
|
318
|
+
*/
|
|
289
319
|
export interface DescribeCasesRequest {
|
|
290
320
|
/**
|
|
291
321
|
* <p>A list of ID numbers of the support cases you want returned. The maximum number of
|
|
@@ -331,6 +361,7 @@ export interface DescribeCasesRequest {
|
|
|
331
361
|
includeCommunications?: boolean;
|
|
332
362
|
}
|
|
333
363
|
/**
|
|
364
|
+
* @public
|
|
334
365
|
* <p>A communication associated with a support case. The communication consists of the case
|
|
335
366
|
* ID, the message body, attachment information, the submitter of the communication, and
|
|
336
367
|
* the date and time of the communication.</p>
|
|
@@ -365,6 +396,7 @@ export interface Communication {
|
|
|
365
396
|
attachmentSet?: AttachmentDetails[];
|
|
366
397
|
}
|
|
367
398
|
/**
|
|
399
|
+
* @public
|
|
368
400
|
* <p>The five most recent communications associated with the case.</p>
|
|
369
401
|
*/
|
|
370
402
|
export interface RecentCaseCommunications {
|
|
@@ -378,6 +410,7 @@ export interface RecentCaseCommunications {
|
|
|
378
410
|
nextToken?: string;
|
|
379
411
|
}
|
|
380
412
|
/**
|
|
413
|
+
* @public
|
|
381
414
|
* <p>A JSON-formatted object that contains the metadata for a support case. It is contained
|
|
382
415
|
* in the response from a <a>DescribeCases</a> request. <b>CaseDetails</b> contains the following fields:</p>
|
|
383
416
|
* <ul>
|
|
@@ -573,6 +606,7 @@ export interface CaseDetails {
|
|
|
573
606
|
language?: string;
|
|
574
607
|
}
|
|
575
608
|
/**
|
|
609
|
+
* @public
|
|
576
610
|
* <p>Returns an array of <a href="https://docs.aws.amazon.com/awssupport/latest/APIReference/API_CaseDetails.html">CaseDetails</a>
|
|
577
611
|
* objects and a <code>nextToken</code> that defines a point for pagination in the result
|
|
578
612
|
* set.</p>
|
|
@@ -587,6 +621,9 @@ export interface DescribeCasesResponse {
|
|
|
587
621
|
*/
|
|
588
622
|
nextToken?: string;
|
|
589
623
|
}
|
|
624
|
+
/**
|
|
625
|
+
* @public
|
|
626
|
+
*/
|
|
590
627
|
export interface DescribeCommunicationsRequest {
|
|
591
628
|
/**
|
|
592
629
|
* <p>The support case ID requested or returned in the call. The case ID is an alphanumeric
|
|
@@ -615,6 +652,7 @@ export interface DescribeCommunicationsRequest {
|
|
|
615
652
|
maxResults?: number;
|
|
616
653
|
}
|
|
617
654
|
/**
|
|
655
|
+
* @public
|
|
618
656
|
* <p>The communications returned by the <a>DescribeCommunications</a>
|
|
619
657
|
* operation.</p>
|
|
620
658
|
*/
|
|
@@ -628,6 +666,9 @@ export interface DescribeCommunicationsResponse {
|
|
|
628
666
|
*/
|
|
629
667
|
nextToken?: string;
|
|
630
668
|
}
|
|
669
|
+
/**
|
|
670
|
+
* @public
|
|
671
|
+
*/
|
|
631
672
|
export interface DescribeServicesRequest {
|
|
632
673
|
/**
|
|
633
674
|
* <p>A JSON-formatted list of service codes available for Amazon Web Services services.</p>
|
|
@@ -640,6 +681,7 @@ export interface DescribeServicesRequest {
|
|
|
640
681
|
language?: string;
|
|
641
682
|
}
|
|
642
683
|
/**
|
|
684
|
+
* @public
|
|
643
685
|
* <p>A JSON-formatted name/value pair that represents the category name and category code
|
|
644
686
|
* of the problem, selected from the <a>DescribeServices</a> response for each
|
|
645
687
|
* Amazon Web Services service.</p>
|
|
@@ -655,6 +697,7 @@ export interface Category {
|
|
|
655
697
|
name?: string;
|
|
656
698
|
}
|
|
657
699
|
/**
|
|
700
|
+
* @public
|
|
658
701
|
* <p>Information about an Amazon Web Services service returned by the <a>DescribeServices</a>
|
|
659
702
|
* operation.</p>
|
|
660
703
|
*/
|
|
@@ -677,6 +720,7 @@ export interface Service {
|
|
|
677
720
|
categories?: Category[];
|
|
678
721
|
}
|
|
679
722
|
/**
|
|
723
|
+
* @public
|
|
680
724
|
* <p>The list of Amazon Web Services services returned by the <a>DescribeServices</a>
|
|
681
725
|
* operation.</p>
|
|
682
726
|
*/
|
|
@@ -686,6 +730,9 @@ export interface DescribeServicesResponse {
|
|
|
686
730
|
*/
|
|
687
731
|
services?: Service[];
|
|
688
732
|
}
|
|
733
|
+
/**
|
|
734
|
+
* @public
|
|
735
|
+
*/
|
|
689
736
|
export interface DescribeSeverityLevelsRequest {
|
|
690
737
|
/**
|
|
691
738
|
* <p>The language in which Amazon Web Services Support handles the case. Amazon Web Services Support
|
|
@@ -694,6 +741,7 @@ export interface DescribeSeverityLevelsRequest {
|
|
|
694
741
|
language?: string;
|
|
695
742
|
}
|
|
696
743
|
/**
|
|
744
|
+
* @public
|
|
697
745
|
* <p>A code and name pair that represents the severity level of a support case. The
|
|
698
746
|
* available values depend on the support plan for the account. For more information, see
|
|
699
747
|
* <a href="https://docs.aws.amazon.com/awssupport/latest/user/case-management.html#choosing-severity">Choosing a
|
|
@@ -743,6 +791,7 @@ export interface SeverityLevel {
|
|
|
743
791
|
name?: string;
|
|
744
792
|
}
|
|
745
793
|
/**
|
|
794
|
+
* @public
|
|
746
795
|
* <p>The list of severity levels returned by the <a>DescribeSeverityLevels</a>
|
|
747
796
|
* operation.</p>
|
|
748
797
|
*/
|
|
@@ -753,6 +802,9 @@ export interface DescribeSeverityLevelsResponse {
|
|
|
753
802
|
*/
|
|
754
803
|
severityLevels?: SeverityLevel[];
|
|
755
804
|
}
|
|
805
|
+
/**
|
|
806
|
+
* @public
|
|
807
|
+
*/
|
|
756
808
|
export interface DescribeTrustedAdvisorCheckRefreshStatusesRequest {
|
|
757
809
|
/**
|
|
758
810
|
* <p>The IDs of the Trusted Advisor checks to get the status.</p>
|
|
@@ -764,6 +816,7 @@ export interface DescribeTrustedAdvisorCheckRefreshStatusesRequest {
|
|
|
764
816
|
checkIds: string[] | undefined;
|
|
765
817
|
}
|
|
766
818
|
/**
|
|
819
|
+
* @public
|
|
767
820
|
* <p>The refresh status of a Trusted Advisor check.</p>
|
|
768
821
|
*/
|
|
769
822
|
export interface TrustedAdvisorCheckRefreshStatus {
|
|
@@ -808,6 +861,7 @@ export interface TrustedAdvisorCheckRefreshStatus {
|
|
|
808
861
|
millisUntilNextRefreshable: number | undefined;
|
|
809
862
|
}
|
|
810
863
|
/**
|
|
864
|
+
* @public
|
|
811
865
|
* <p>The statuses of the Trusted Advisor checks returned by the <a>DescribeTrustedAdvisorCheckRefreshStatuses</a> operation.</p>
|
|
812
866
|
*/
|
|
813
867
|
export interface DescribeTrustedAdvisorCheckRefreshStatusesResponse {
|
|
@@ -817,6 +871,7 @@ export interface DescribeTrustedAdvisorCheckRefreshStatusesResponse {
|
|
|
817
871
|
statuses: TrustedAdvisorCheckRefreshStatus[] | undefined;
|
|
818
872
|
}
|
|
819
873
|
/**
|
|
874
|
+
* @public
|
|
820
875
|
* <p></p>
|
|
821
876
|
*/
|
|
822
877
|
export interface DescribeTrustedAdvisorCheckResultRequest {
|
|
@@ -878,6 +933,7 @@ export interface DescribeTrustedAdvisorCheckResultRequest {
|
|
|
878
933
|
language?: string;
|
|
879
934
|
}
|
|
880
935
|
/**
|
|
936
|
+
* @public
|
|
881
937
|
* <p>The estimated cost savings that might be realized if the recommended operations are
|
|
882
938
|
* taken.</p>
|
|
883
939
|
*/
|
|
@@ -894,6 +950,7 @@ export interface TrustedAdvisorCostOptimizingSummary {
|
|
|
894
950
|
estimatedPercentMonthlySavings: number | undefined;
|
|
895
951
|
}
|
|
896
952
|
/**
|
|
953
|
+
* @public
|
|
897
954
|
* <p>The container for summary information that relates to the category of the Trusted Advisor
|
|
898
955
|
* check.</p>
|
|
899
956
|
*/
|
|
@@ -905,6 +962,7 @@ export interface TrustedAdvisorCategorySpecificSummary {
|
|
|
905
962
|
costOptimizing?: TrustedAdvisorCostOptimizingSummary;
|
|
906
963
|
}
|
|
907
964
|
/**
|
|
965
|
+
* @public
|
|
908
966
|
* <p>Contains information about a resource identified by a Trusted Advisor check.</p>
|
|
909
967
|
*/
|
|
910
968
|
export interface TrustedAdvisorResourceDetail {
|
|
@@ -934,6 +992,7 @@ export interface TrustedAdvisorResourceDetail {
|
|
|
934
992
|
metadata: string[] | undefined;
|
|
935
993
|
}
|
|
936
994
|
/**
|
|
995
|
+
* @public
|
|
937
996
|
* <p>Details about Amazon Web Services resources that were analyzed in a call to Trusted Advisor <a>DescribeTrustedAdvisorCheckSummaries</a>.</p>
|
|
938
997
|
*/
|
|
939
998
|
export interface TrustedAdvisorResourcesSummary {
|
|
@@ -957,6 +1016,7 @@ export interface TrustedAdvisorResourcesSummary {
|
|
|
957
1016
|
resourcesSuppressed: number | undefined;
|
|
958
1017
|
}
|
|
959
1018
|
/**
|
|
1019
|
+
* @public
|
|
960
1020
|
* <p>The results of a Trusted Advisor check returned by <a>DescribeTrustedAdvisorCheckResult</a>.</p>
|
|
961
1021
|
*/
|
|
962
1022
|
export interface TrustedAdvisorCheckResult {
|
|
@@ -988,6 +1048,7 @@ export interface TrustedAdvisorCheckResult {
|
|
|
988
1048
|
flaggedResources: TrustedAdvisorResourceDetail[] | undefined;
|
|
989
1049
|
}
|
|
990
1050
|
/**
|
|
1051
|
+
* @public
|
|
991
1052
|
* <p>The result of the Trusted Advisor check returned by the <a>DescribeTrustedAdvisorCheckResult</a> operation.</p>
|
|
992
1053
|
*/
|
|
993
1054
|
export interface DescribeTrustedAdvisorCheckResultResponse {
|
|
@@ -996,6 +1057,9 @@ export interface DescribeTrustedAdvisorCheckResultResponse {
|
|
|
996
1057
|
*/
|
|
997
1058
|
result?: TrustedAdvisorCheckResult;
|
|
998
1059
|
}
|
|
1060
|
+
/**
|
|
1061
|
+
* @public
|
|
1062
|
+
*/
|
|
999
1063
|
export interface DescribeTrustedAdvisorChecksRequest {
|
|
1000
1064
|
/**
|
|
1001
1065
|
* <p>The ISO 639-1 code for the language that you want your checks to appear in.</p>
|
|
@@ -1050,6 +1114,7 @@ export interface DescribeTrustedAdvisorChecksRequest {
|
|
|
1050
1114
|
language: string | undefined;
|
|
1051
1115
|
}
|
|
1052
1116
|
/**
|
|
1117
|
+
* @public
|
|
1053
1118
|
* <p>The description and metadata for a Trusted Advisor check.</p>
|
|
1054
1119
|
*/
|
|
1055
1120
|
export interface TrustedAdvisorCheckDescription {
|
|
@@ -1080,6 +1145,7 @@ export interface TrustedAdvisorCheckDescription {
|
|
|
1080
1145
|
metadata: string[] | undefined;
|
|
1081
1146
|
}
|
|
1082
1147
|
/**
|
|
1148
|
+
* @public
|
|
1083
1149
|
* <p>Information about the Trusted Advisor checks returned by the <a>DescribeTrustedAdvisorChecks</a> operation.</p>
|
|
1084
1150
|
*/
|
|
1085
1151
|
export interface DescribeTrustedAdvisorChecksResponse {
|
|
@@ -1088,6 +1154,9 @@ export interface DescribeTrustedAdvisorChecksResponse {
|
|
|
1088
1154
|
*/
|
|
1089
1155
|
checks: TrustedAdvisorCheckDescription[] | undefined;
|
|
1090
1156
|
}
|
|
1157
|
+
/**
|
|
1158
|
+
* @public
|
|
1159
|
+
*/
|
|
1091
1160
|
export interface DescribeTrustedAdvisorCheckSummariesRequest {
|
|
1092
1161
|
/**
|
|
1093
1162
|
* <p>The IDs of the Trusted Advisor checks.</p>
|
|
@@ -1095,6 +1164,7 @@ export interface DescribeTrustedAdvisorCheckSummariesRequest {
|
|
|
1095
1164
|
checkIds: string[] | undefined;
|
|
1096
1165
|
}
|
|
1097
1166
|
/**
|
|
1167
|
+
* @public
|
|
1098
1168
|
* <p>A summary of a Trusted Advisor check result, including the alert status, last refresh, and
|
|
1099
1169
|
* number of resources examined.</p>
|
|
1100
1170
|
*/
|
|
@@ -1127,6 +1197,7 @@ export interface TrustedAdvisorCheckSummary {
|
|
|
1127
1197
|
categorySpecificSummary: TrustedAdvisorCategorySpecificSummary | undefined;
|
|
1128
1198
|
}
|
|
1129
1199
|
/**
|
|
1200
|
+
* @public
|
|
1130
1201
|
* <p>The summaries of the Trusted Advisor checks returned by the <a>DescribeTrustedAdvisorCheckSummaries</a> operation.</p>
|
|
1131
1202
|
*/
|
|
1132
1203
|
export interface DescribeTrustedAdvisorCheckSummariesResponse {
|
|
@@ -1136,6 +1207,7 @@ export interface DescribeTrustedAdvisorCheckSummariesResponse {
|
|
|
1136
1207
|
summaries: TrustedAdvisorCheckSummary[] | undefined;
|
|
1137
1208
|
}
|
|
1138
1209
|
/**
|
|
1210
|
+
* @public
|
|
1139
1211
|
* <p></p>
|
|
1140
1212
|
*/
|
|
1141
1213
|
export interface RefreshTrustedAdvisorCheckRequest {
|
|
@@ -1149,6 +1221,7 @@ export interface RefreshTrustedAdvisorCheckRequest {
|
|
|
1149
1221
|
checkId: string | undefined;
|
|
1150
1222
|
}
|
|
1151
1223
|
/**
|
|
1224
|
+
* @public
|
|
1152
1225
|
* <p>The current refresh status of a Trusted Advisor check.</p>
|
|
1153
1226
|
*/
|
|
1154
1227
|
export interface RefreshTrustedAdvisorCheckResponse {
|
|
@@ -1158,6 +1231,9 @@ export interface RefreshTrustedAdvisorCheckResponse {
|
|
|
1158
1231
|
*/
|
|
1159
1232
|
status: TrustedAdvisorCheckRefreshStatus | undefined;
|
|
1160
1233
|
}
|
|
1234
|
+
/**
|
|
1235
|
+
* @public
|
|
1236
|
+
*/
|
|
1161
1237
|
export interface ResolveCaseRequest {
|
|
1162
1238
|
/**
|
|
1163
1239
|
* <p>The support case ID requested or returned in the call. The case ID is an alphanumeric
|
|
@@ -1168,6 +1244,7 @@ export interface ResolveCaseRequest {
|
|
|
1168
1244
|
caseId?: string;
|
|
1169
1245
|
}
|
|
1170
1246
|
/**
|
|
1247
|
+
* @public
|
|
1171
1248
|
* <p>The status of the case returned by the <a>ResolveCase</a> operation.</p>
|
|
1172
1249
|
*/
|
|
1173
1250
|
export interface ResolveCaseResponse {
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { DescribeCasesCommandInput, DescribeCasesCommandOutput } from "../commands/DescribeCasesCommand";
|
|
3
3
|
import { SupportPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateDescribeCases(config: SupportPaginationConfiguration, input: DescribeCasesCommandInput, ...additionalArguments: any): Paginator<DescribeCasesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { DescribeCommunicationsCommandInput, DescribeCommunicationsCommandOutput } from "../commands/DescribeCommunicationsCommand";
|
|
3
3
|
import { SupportPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateDescribeCommunications(config: SupportPaginationConfiguration, input: DescribeCommunicationsCommandInput, ...additionalArguments: any): Paginator<DescribeCommunicationsCommandOutput>;
|
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.297.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,9 +20,9 @@
|
|
|
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.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.296.0",
|