aws-sdk-support 1.94.0 → 1.96.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-support/client.rb +758 -129
- data/lib/aws-sdk-support/client_api.rb +181 -0
- data/lib/aws-sdk-support/errors.rb +37 -0
- data/lib/aws-sdk-support/types.rb +600 -51
- data/lib/aws-sdk-support.rb +1 -1
- data/sig/client.rbs +87 -11
- data/sig/errors.rbs +7 -0
- data/sig/types.rbs +117 -0
- metadata +3 -3
|
@@ -52,6 +52,12 @@ module Aws::Support
|
|
|
52
52
|
CommunicationList = Shapes::ListShape.new(name: 'CommunicationList')
|
|
53
53
|
CommunicationTypeOptions = Shapes::StructureShape.new(name: 'CommunicationTypeOptions')
|
|
54
54
|
CommunicationTypeOptionsList = Shapes::ListShape.new(name: 'CommunicationTypeOptionsList')
|
|
55
|
+
CompleteAttachmentUploadRequest = Shapes::StructureShape.new(name: 'CompleteAttachmentUploadRequest')
|
|
56
|
+
CompleteAttachmentUploadResponse = Shapes::StructureShape.new(name: 'CompleteAttachmentUploadResponse')
|
|
57
|
+
CompletedUpload = Shapes::StructureShape.new(name: 'CompletedUpload')
|
|
58
|
+
CompletedUploadList = Shapes::ListShape.new(name: 'CompletedUploadList')
|
|
59
|
+
CoralAvailabilityThrottledResource = Shapes::StringShape.new(name: 'CoralAvailabilityThrottledResource')
|
|
60
|
+
CoralAvailabilityThrottlingReason = Shapes::StringShape.new(name: 'CoralAvailabilityThrottlingReason')
|
|
55
61
|
CreateCaseRequest = Shapes::StructureShape.new(name: 'CreateCaseRequest')
|
|
56
62
|
CreateCaseResponse = Shapes::StructureShape.new(name: 'CreateCaseResponse')
|
|
57
63
|
Data = Shapes::BlobShape.new(name: 'Data')
|
|
@@ -60,6 +66,8 @@ module Aws::Support
|
|
|
60
66
|
DescribeAttachmentLimitExceeded = Shapes::StructureShape.new(name: 'DescribeAttachmentLimitExceeded')
|
|
61
67
|
DescribeAttachmentRequest = Shapes::StructureShape.new(name: 'DescribeAttachmentRequest')
|
|
62
68
|
DescribeAttachmentResponse = Shapes::StructureShape.new(name: 'DescribeAttachmentResponse')
|
|
69
|
+
DescribeAttachmentUploadStatusRequest = Shapes::StructureShape.new(name: 'DescribeAttachmentUploadStatusRequest')
|
|
70
|
+
DescribeAttachmentUploadStatusResponse = Shapes::StructureShape.new(name: 'DescribeAttachmentUploadStatusResponse')
|
|
63
71
|
DescribeCasesRequest = Shapes::StructureShape.new(name: 'DescribeCasesRequest')
|
|
64
72
|
DescribeCasesResponse = Shapes::StructureShape.new(name: 'DescribeCasesResponse')
|
|
65
73
|
DescribeCommunicationsRequest = Shapes::StructureShape.new(name: 'DescribeCommunicationsRequest')
|
|
@@ -83,18 +91,32 @@ module Aws::Support
|
|
|
83
91
|
Display = Shapes::StringShape.new(name: 'Display')
|
|
84
92
|
DisplayId = Shapes::StringShape.new(name: 'DisplayId')
|
|
85
93
|
Double = Shapes::FloatShape.new(name: 'Double')
|
|
94
|
+
DownloadUrl = Shapes::StructureShape.new(name: 'DownloadUrl')
|
|
95
|
+
DryRunOperationException = Shapes::StructureShape.new(name: 'DryRunOperationException')
|
|
96
|
+
ETag = Shapes::StringShape.new(name: 'ETag')
|
|
97
|
+
EndIndex = Shapes::IntegerShape.new(name: 'EndIndex')
|
|
86
98
|
EndTime = Shapes::StringShape.new(name: 'EndTime')
|
|
87
99
|
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
|
88
100
|
ExpiryTime = Shapes::StringShape.new(name: 'ExpiryTime')
|
|
101
|
+
FieldIntegerValue = Shapes::IntegerShape.new(name: 'FieldIntegerValue')
|
|
89
102
|
FileName = Shapes::StringShape.new(name: 'FileName')
|
|
103
|
+
FileSize = Shapes::IntegerShape.new(name: 'FileSize')
|
|
104
|
+
GetAttachmentDownloadLinkRequest = Shapes::StructureShape.new(name: 'GetAttachmentDownloadLinkRequest')
|
|
105
|
+
GetAttachmentDownloadLinkResponse = Shapes::StructureShape.new(name: 'GetAttachmentDownloadLinkResponse')
|
|
106
|
+
GetAttachmentUploadLinksRequest = Shapes::StructureShape.new(name: 'GetAttachmentUploadLinksRequest')
|
|
107
|
+
GetAttachmentUploadLinksResponse = Shapes::StructureShape.new(name: 'GetAttachmentUploadLinksResponse')
|
|
108
|
+
HttpsUrl = Shapes::StringShape.new(name: 'HttpsUrl')
|
|
90
109
|
IncludeCommunications = Shapes::BooleanShape.new(name: 'IncludeCommunications')
|
|
91
110
|
IncludeResolvedCases = Shapes::BooleanShape.new(name: 'IncludeResolvedCases')
|
|
111
|
+
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
|
92
112
|
InternalServerError = Shapes::StructureShape.new(name: 'InternalServerError')
|
|
93
113
|
IssueType = Shapes::StringShape.new(name: 'IssueType')
|
|
94
114
|
Language = Shapes::StringShape.new(name: 'Language')
|
|
95
115
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
|
96
116
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
|
97
117
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
|
118
|
+
NullableBooleanType = Shapes::BooleanShape.new(name: 'NullableBooleanType')
|
|
119
|
+
PartSizeBytes = Shapes::IntegerShape.new(name: 'PartSizeBytes')
|
|
98
120
|
RecentCaseCommunications = Shapes::StructureShape.new(name: 'RecentCaseCommunications')
|
|
99
121
|
RefreshTrustedAdvisorCheckRequest = Shapes::StructureShape.new(name: 'RefreshTrustedAdvisorCheckRequest')
|
|
100
122
|
RefreshTrustedAdvisorCheckResponse = Shapes::StructureShape.new(name: 'RefreshTrustedAdvisorCheckResponse')
|
|
@@ -111,6 +133,7 @@ module Aws::Support
|
|
|
111
133
|
SeverityLevelCode = Shapes::StringShape.new(name: 'SeverityLevelCode')
|
|
112
134
|
SeverityLevelName = Shapes::StringShape.new(name: 'SeverityLevelName')
|
|
113
135
|
SeverityLevelsList = Shapes::ListShape.new(name: 'SeverityLevelsList')
|
|
136
|
+
StartIndex = Shapes::IntegerShape.new(name: 'StartIndex')
|
|
114
137
|
StartTime = Shapes::StringShape.new(name: 'StartTime')
|
|
115
138
|
Status = Shapes::StringShape.new(name: 'Status')
|
|
116
139
|
String = Shapes::StringShape.new(name: 'String')
|
|
@@ -122,6 +145,8 @@ module Aws::Support
|
|
|
122
145
|
SupportedLanguage = Shapes::StructureShape.new(name: 'SupportedLanguage')
|
|
123
146
|
SupportedLanguagesList = Shapes::ListShape.new(name: 'SupportedLanguagesList')
|
|
124
147
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
|
148
|
+
ThrottlingReason = Shapes::StructureShape.new(name: 'ThrottlingReason')
|
|
149
|
+
ThrottlingReasonList = Shapes::ListShape.new(name: 'ThrottlingReasonList')
|
|
125
150
|
TimeCreated = Shapes::StringShape.new(name: 'TimeCreated')
|
|
126
151
|
TrustedAdvisorCategorySpecificSummary = Shapes::StructureShape.new(name: 'TrustedAdvisorCategorySpecificSummary')
|
|
127
152
|
TrustedAdvisorCheckDescription = Shapes::StructureShape.new(name: 'TrustedAdvisorCheckDescription')
|
|
@@ -136,6 +161,14 @@ module Aws::Support
|
|
|
136
161
|
TrustedAdvisorResourceDetailList = Shapes::ListShape.new(name: 'TrustedAdvisorResourceDetailList')
|
|
137
162
|
TrustedAdvisorResourcesSummary = Shapes::StructureShape.new(name: 'TrustedAdvisorResourcesSummary')
|
|
138
163
|
Type = Shapes::StringShape.new(name: 'Type')
|
|
164
|
+
UploadId = Shapes::StringShape.new(name: 'UploadId')
|
|
165
|
+
UploadIdNotFound = Shapes::StructureShape.new(name: 'UploadIdNotFound')
|
|
166
|
+
UploadIds = Shapes::ListShape.new(name: 'UploadIds')
|
|
167
|
+
UploadProgress = Shapes::StructureShape.new(name: 'UploadProgress')
|
|
168
|
+
UploadRange = Shapes::StructureShape.new(name: 'UploadRange')
|
|
169
|
+
UploadStatus = Shapes::StringShape.new(name: 'UploadStatus')
|
|
170
|
+
UploadUrl = Shapes::StructureShape.new(name: 'UploadUrl')
|
|
171
|
+
UploadUrlList = Shapes::ListShape.new(name: 'UploadUrlList')
|
|
139
172
|
ValidatedCategoryCode = Shapes::StringShape.new(name: 'ValidatedCategoryCode')
|
|
140
173
|
ValidatedCommunicationBody = Shapes::StringShape.new(name: 'ValidatedCommunicationBody')
|
|
141
174
|
ValidatedDateTime = Shapes::StringShape.new(name: 'ValidatedDateTime')
|
|
@@ -145,6 +178,7 @@ module Aws::Support
|
|
|
145
178
|
|
|
146
179
|
AddAttachmentsToSetRequest.add_member(:attachment_set_id, Shapes::ShapeRef.new(shape: AttachmentSetId, location_name: "attachmentSetId"))
|
|
147
180
|
AddAttachmentsToSetRequest.add_member(:attachments, Shapes::ShapeRef.new(shape: Attachments, required: true, location_name: "attachments"))
|
|
181
|
+
AddAttachmentsToSetRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: NullableBooleanType, location_name: "dryRun"))
|
|
148
182
|
AddAttachmentsToSetRequest.struct_class = Types::AddAttachmentsToSetRequest
|
|
149
183
|
|
|
150
184
|
AddAttachmentsToSetResponse.add_member(:attachment_set_id, Shapes::ShapeRef.new(shape: AttachmentSetId, location_name: "attachmentSetId"))
|
|
@@ -155,6 +189,8 @@ module Aws::Support
|
|
|
155
189
|
AddCommunicationToCaseRequest.add_member(:communication_body, Shapes::ShapeRef.new(shape: CommunicationBody, required: true, location_name: "communicationBody"))
|
|
156
190
|
AddCommunicationToCaseRequest.add_member(:cc_email_addresses, Shapes::ShapeRef.new(shape: CcEmailAddressList, location_name: "ccEmailAddresses"))
|
|
157
191
|
AddCommunicationToCaseRequest.add_member(:attachment_set_id, Shapes::ShapeRef.new(shape: AttachmentSetId, location_name: "attachmentSetId"))
|
|
192
|
+
AddCommunicationToCaseRequest.add_member(:upload_ids, Shapes::ShapeRef.new(shape: UploadIds, location_name: "uploadIds"))
|
|
193
|
+
AddCommunicationToCaseRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: NullableBooleanType, location_name: "dryRun"))
|
|
158
194
|
AddCommunicationToCaseRequest.struct_class = Types::AddCommunicationToCaseRequest
|
|
159
195
|
|
|
160
196
|
AddCommunicationToCaseResponse.add_member(:result, Shapes::ShapeRef.new(shape: Result, location_name: "result"))
|
|
@@ -223,6 +259,7 @@ module Aws::Support
|
|
|
223
259
|
Communication.add_member(:body, Shapes::ShapeRef.new(shape: ValidatedCommunicationBody, location_name: "body"))
|
|
224
260
|
Communication.add_member(:submitted_by, Shapes::ShapeRef.new(shape: SubmittedBy, location_name: "submittedBy"))
|
|
225
261
|
Communication.add_member(:time_created, Shapes::ShapeRef.new(shape: TimeCreated, location_name: "timeCreated"))
|
|
262
|
+
Communication.add_member(:attachments, Shapes::ShapeRef.new(shape: AttachmentSet, location_name: "attachments"))
|
|
226
263
|
Communication.add_member(:attachment_set, Shapes::ShapeRef.new(shape: AttachmentSet, location_name: "attachmentSet"))
|
|
227
264
|
Communication.struct_class = Types::Communication
|
|
228
265
|
|
|
@@ -235,6 +272,20 @@ module Aws::Support
|
|
|
235
272
|
|
|
236
273
|
CommunicationTypeOptionsList.member = Shapes::ShapeRef.new(shape: CommunicationTypeOptions)
|
|
237
274
|
|
|
275
|
+
CompleteAttachmentUploadRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: UploadId, required: true, location_name: "uploadId"))
|
|
276
|
+
CompleteAttachmentUploadRequest.add_member(:completed_uploads, Shapes::ShapeRef.new(shape: CompletedUploadList, required: true, location_name: "completedUploads"))
|
|
277
|
+
CompleteAttachmentUploadRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: NullableBooleanType, location_name: "dryRun"))
|
|
278
|
+
CompleteAttachmentUploadRequest.struct_class = Types::CompleteAttachmentUploadRequest
|
|
279
|
+
|
|
280
|
+
CompleteAttachmentUploadResponse.add_member(:upload_status, Shapes::ShapeRef.new(shape: UploadStatus, required: true, location_name: "uploadStatus"))
|
|
281
|
+
CompleteAttachmentUploadResponse.struct_class = Types::CompleteAttachmentUploadResponse
|
|
282
|
+
|
|
283
|
+
CompletedUpload.add_member(:part_index, Shapes::ShapeRef.new(shape: FieldIntegerValue, required: true, location_name: "partIndex"))
|
|
284
|
+
CompletedUpload.add_member(:e_tag, Shapes::ShapeRef.new(shape: ETag, required: true, location_name: "eTag"))
|
|
285
|
+
CompletedUpload.struct_class = Types::CompletedUpload
|
|
286
|
+
|
|
287
|
+
CompletedUploadList.member = Shapes::ShapeRef.new(shape: CompletedUpload)
|
|
288
|
+
|
|
238
289
|
CreateCaseRequest.add_member(:subject, Shapes::ShapeRef.new(shape: Subject, required: true, location_name: "subject"))
|
|
239
290
|
CreateCaseRequest.add_member(:service_code, Shapes::ShapeRef.new(shape: ServiceCode, location_name: "serviceCode"))
|
|
240
291
|
CreateCaseRequest.add_member(:severity_code, Shapes::ShapeRef.new(shape: SeverityCode, location_name: "severityCode"))
|
|
@@ -244,6 +295,8 @@ module Aws::Support
|
|
|
244
295
|
CreateCaseRequest.add_member(:language, Shapes::ShapeRef.new(shape: Language, location_name: "language"))
|
|
245
296
|
CreateCaseRequest.add_member(:issue_type, Shapes::ShapeRef.new(shape: IssueType, location_name: "issueType"))
|
|
246
297
|
CreateCaseRequest.add_member(:attachment_set_id, Shapes::ShapeRef.new(shape: AttachmentSetId, location_name: "attachmentSetId"))
|
|
298
|
+
CreateCaseRequest.add_member(:upload_ids, Shapes::ShapeRef.new(shape: UploadIds, location_name: "uploadIds"))
|
|
299
|
+
CreateCaseRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: NullableBooleanType, location_name: "dryRun"))
|
|
247
300
|
CreateCaseRequest.struct_class = Types::CreateCaseRequest
|
|
248
301
|
|
|
249
302
|
CreateCaseResponse.add_member(:case_id, Shapes::ShapeRef.new(shape: CaseId, location_name: "caseId"))
|
|
@@ -259,11 +312,21 @@ module Aws::Support
|
|
|
259
312
|
DescribeAttachmentLimitExceeded.struct_class = Types::DescribeAttachmentLimitExceeded
|
|
260
313
|
|
|
261
314
|
DescribeAttachmentRequest.add_member(:attachment_id, Shapes::ShapeRef.new(shape: AttachmentId, required: true, location_name: "attachmentId"))
|
|
315
|
+
DescribeAttachmentRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: NullableBooleanType, location_name: "dryRun"))
|
|
262
316
|
DescribeAttachmentRequest.struct_class = Types::DescribeAttachmentRequest
|
|
263
317
|
|
|
264
318
|
DescribeAttachmentResponse.add_member(:attachment, Shapes::ShapeRef.new(shape: Attachment, location_name: "attachment"))
|
|
265
319
|
DescribeAttachmentResponse.struct_class = Types::DescribeAttachmentResponse
|
|
266
320
|
|
|
321
|
+
DescribeAttachmentUploadStatusRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: UploadId, required: true, location_name: "uploadId"))
|
|
322
|
+
DescribeAttachmentUploadStatusRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: NullableBooleanType, location_name: "dryRun"))
|
|
323
|
+
DescribeAttachmentUploadStatusRequest.struct_class = Types::DescribeAttachmentUploadStatusRequest
|
|
324
|
+
|
|
325
|
+
DescribeAttachmentUploadStatusResponse.add_member(:upload_status, Shapes::ShapeRef.new(shape: UploadStatus, required: true, location_name: "uploadStatus"))
|
|
326
|
+
DescribeAttachmentUploadStatusResponse.add_member(:file_name, Shapes::ShapeRef.new(shape: FileName, required: true, location_name: "fileName"))
|
|
327
|
+
DescribeAttachmentUploadStatusResponse.add_member(:upload_progress, Shapes::ShapeRef.new(shape: UploadProgress, location_name: "uploadProgress"))
|
|
328
|
+
DescribeAttachmentUploadStatusResponse.struct_class = Types::DescribeAttachmentUploadStatusResponse
|
|
329
|
+
|
|
267
330
|
DescribeCasesRequest.add_member(:case_id_list, Shapes::ShapeRef.new(shape: CaseIdList, location_name: "caseIdList"))
|
|
268
331
|
DescribeCasesRequest.add_member(:display_id, Shapes::ShapeRef.new(shape: DisplayId, location_name: "displayId"))
|
|
269
332
|
DescribeCasesRequest.add_member(:after_time, Shapes::ShapeRef.new(shape: AfterTime, location_name: "afterTime"))
|
|
@@ -273,6 +336,7 @@ module Aws::Support
|
|
|
273
336
|
DescribeCasesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "maxResults"))
|
|
274
337
|
DescribeCasesRequest.add_member(:language, Shapes::ShapeRef.new(shape: Language, location_name: "language"))
|
|
275
338
|
DescribeCasesRequest.add_member(:include_communications, Shapes::ShapeRef.new(shape: IncludeCommunications, location_name: "includeCommunications"))
|
|
339
|
+
DescribeCasesRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: NullableBooleanType, location_name: "dryRun"))
|
|
276
340
|
DescribeCasesRequest.struct_class = Types::DescribeCasesRequest
|
|
277
341
|
|
|
278
342
|
DescribeCasesResponse.add_member(:cases, Shapes::ShapeRef.new(shape: CaseList, location_name: "cases"))
|
|
@@ -284,6 +348,7 @@ module Aws::Support
|
|
|
284
348
|
DescribeCommunicationsRequest.add_member(:after_time, Shapes::ShapeRef.new(shape: AfterTime, location_name: "afterTime"))
|
|
285
349
|
DescribeCommunicationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
286
350
|
DescribeCommunicationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "maxResults"))
|
|
351
|
+
DescribeCommunicationsRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: NullableBooleanType, location_name: "dryRun"))
|
|
287
352
|
DescribeCommunicationsRequest.struct_class = Types::DescribeCommunicationsRequest
|
|
288
353
|
|
|
289
354
|
DescribeCommunicationsResponse.add_member(:communications, Shapes::ShapeRef.new(shape: CommunicationList, location_name: "communications"))
|
|
@@ -294,6 +359,7 @@ module Aws::Support
|
|
|
294
359
|
DescribeCreateCaseOptionsRequest.add_member(:service_code, Shapes::ShapeRef.new(shape: ServiceCode, required: true, location_name: "serviceCode"))
|
|
295
360
|
DescribeCreateCaseOptionsRequest.add_member(:language, Shapes::ShapeRef.new(shape: Language, required: true, location_name: "language"))
|
|
296
361
|
DescribeCreateCaseOptionsRequest.add_member(:category_code, Shapes::ShapeRef.new(shape: CategoryCode, required: true, location_name: "categoryCode"))
|
|
362
|
+
DescribeCreateCaseOptionsRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: NullableBooleanType, location_name: "dryRun"))
|
|
297
363
|
DescribeCreateCaseOptionsRequest.struct_class = Types::DescribeCreateCaseOptionsRequest
|
|
298
364
|
|
|
299
365
|
DescribeCreateCaseOptionsResponse.add_member(:language_availability, Shapes::ShapeRef.new(shape: ValidatedLanguageAvailability, location_name: "languageAvailability"))
|
|
@@ -302,12 +368,14 @@ module Aws::Support
|
|
|
302
368
|
|
|
303
369
|
DescribeServicesRequest.add_member(:service_code_list, Shapes::ShapeRef.new(shape: ServiceCodeList, location_name: "serviceCodeList"))
|
|
304
370
|
DescribeServicesRequest.add_member(:language, Shapes::ShapeRef.new(shape: Language, location_name: "language"))
|
|
371
|
+
DescribeServicesRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: NullableBooleanType, location_name: "dryRun"))
|
|
305
372
|
DescribeServicesRequest.struct_class = Types::DescribeServicesRequest
|
|
306
373
|
|
|
307
374
|
DescribeServicesResponse.add_member(:services, Shapes::ShapeRef.new(shape: ServiceList, location_name: "services"))
|
|
308
375
|
DescribeServicesResponse.struct_class = Types::DescribeServicesResponse
|
|
309
376
|
|
|
310
377
|
DescribeSeverityLevelsRequest.add_member(:language, Shapes::ShapeRef.new(shape: Language, location_name: "language"))
|
|
378
|
+
DescribeSeverityLevelsRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: NullableBooleanType, location_name: "dryRun"))
|
|
311
379
|
DescribeSeverityLevelsRequest.struct_class = Types::DescribeSeverityLevelsRequest
|
|
312
380
|
|
|
313
381
|
DescribeSeverityLevelsResponse.add_member(:severity_levels, Shapes::ShapeRef.new(shape: SeverityLevelsList, location_name: "severityLevels"))
|
|
@@ -316,6 +384,7 @@ module Aws::Support
|
|
|
316
384
|
DescribeSupportedLanguagesRequest.add_member(:issue_type, Shapes::ShapeRef.new(shape: ValidatedIssueTypeString, required: true, location_name: "issueType"))
|
|
317
385
|
DescribeSupportedLanguagesRequest.add_member(:service_code, Shapes::ShapeRef.new(shape: ValidatedServiceCode, required: true, location_name: "serviceCode"))
|
|
318
386
|
DescribeSupportedLanguagesRequest.add_member(:category_code, Shapes::ShapeRef.new(shape: ValidatedCategoryCode, required: true, location_name: "categoryCode"))
|
|
387
|
+
DescribeSupportedLanguagesRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: NullableBooleanType, location_name: "dryRun"))
|
|
319
388
|
DescribeSupportedLanguagesRequest.struct_class = Types::DescribeSupportedLanguagesRequest
|
|
320
389
|
|
|
321
390
|
DescribeSupportedLanguagesResponse.add_member(:supported_languages, Shapes::ShapeRef.new(shape: SupportedLanguagesList, location_name: "supportedLanguages"))
|
|
@@ -346,6 +415,35 @@ module Aws::Support
|
|
|
346
415
|
DescribeTrustedAdvisorChecksResponse.add_member(:checks, Shapes::ShapeRef.new(shape: TrustedAdvisorCheckList, required: true, location_name: "checks"))
|
|
347
416
|
DescribeTrustedAdvisorChecksResponse.struct_class = Types::DescribeTrustedAdvisorChecksResponse
|
|
348
417
|
|
|
418
|
+
DownloadUrl.add_member(:url, Shapes::ShapeRef.new(shape: HttpsUrl, required: true, location_name: "url"))
|
|
419
|
+
DownloadUrl.add_member(:expiry_date, Shapes::ShapeRef.new(shape: ValidatedDateTime, required: true, location_name: "expiryDate"))
|
|
420
|
+
DownloadUrl.struct_class = Types::DownloadUrl
|
|
421
|
+
|
|
422
|
+
DryRunOperationException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
|
423
|
+
DryRunOperationException.struct_class = Types::DryRunOperationException
|
|
424
|
+
|
|
425
|
+
GetAttachmentDownloadLinkRequest.add_member(:attachment_id, Shapes::ShapeRef.new(shape: AttachmentId, required: true, location_name: "attachmentId"))
|
|
426
|
+
GetAttachmentDownloadLinkRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: NullableBooleanType, location_name: "dryRun"))
|
|
427
|
+
GetAttachmentDownloadLinkRequest.struct_class = Types::GetAttachmentDownloadLinkRequest
|
|
428
|
+
|
|
429
|
+
GetAttachmentDownloadLinkResponse.add_member(:file_name, Shapes::ShapeRef.new(shape: FileName, required: true, location_name: "fileName"))
|
|
430
|
+
GetAttachmentDownloadLinkResponse.add_member(:download_url, Shapes::ShapeRef.new(shape: DownloadUrl, required: true, location_name: "downloadUrl"))
|
|
431
|
+
GetAttachmentDownloadLinkResponse.struct_class = Types::GetAttachmentDownloadLinkResponse
|
|
432
|
+
|
|
433
|
+
GetAttachmentUploadLinksRequest.add_member(:file_name, Shapes::ShapeRef.new(shape: FileName, required: true, location_name: "fileName"))
|
|
434
|
+
GetAttachmentUploadLinksRequest.add_member(:file_size_bytes, Shapes::ShapeRef.new(shape: FileSize, location_name: "fileSizeBytes"))
|
|
435
|
+
GetAttachmentUploadLinksRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: UploadId, location_name: "uploadId"))
|
|
436
|
+
GetAttachmentUploadLinksRequest.add_member(:upload_range, Shapes::ShapeRef.new(shape: UploadRange, location_name: "uploadRange"))
|
|
437
|
+
GetAttachmentUploadLinksRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: NullableBooleanType, location_name: "dryRun"))
|
|
438
|
+
GetAttachmentUploadLinksRequest.struct_class = Types::GetAttachmentUploadLinksRequest
|
|
439
|
+
|
|
440
|
+
GetAttachmentUploadLinksResponse.add_member(:upload_id, Shapes::ShapeRef.new(shape: UploadId, required: true, location_name: "uploadId"))
|
|
441
|
+
GetAttachmentUploadLinksResponse.add_member(:part_size_bytes, Shapes::ShapeRef.new(shape: PartSizeBytes, required: true, location_name: "partSizeBytes"))
|
|
442
|
+
GetAttachmentUploadLinksResponse.add_member(:total_parts, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "totalParts"))
|
|
443
|
+
GetAttachmentUploadLinksResponse.add_member(:next_index, Shapes::ShapeRef.new(shape: Integer, location_name: "nextIndex"))
|
|
444
|
+
GetAttachmentUploadLinksResponse.add_member(:upload_urls, Shapes::ShapeRef.new(shape: UploadUrlList, required: true, location_name: "uploadUrls"))
|
|
445
|
+
GetAttachmentUploadLinksResponse.struct_class = Types::GetAttachmentUploadLinksResponse
|
|
446
|
+
|
|
349
447
|
InternalServerError.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
|
350
448
|
InternalServerError.struct_class = Types::InternalServerError
|
|
351
449
|
|
|
@@ -360,6 +458,7 @@ module Aws::Support
|
|
|
360
458
|
RefreshTrustedAdvisorCheckResponse.struct_class = Types::RefreshTrustedAdvisorCheckResponse
|
|
361
459
|
|
|
362
460
|
ResolveCaseRequest.add_member(:case_id, Shapes::ShapeRef.new(shape: CaseId, location_name: "caseId"))
|
|
461
|
+
ResolveCaseRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: NullableBooleanType, location_name: "dryRun"))
|
|
363
462
|
ResolveCaseRequest.struct_class = Types::ResolveCaseRequest
|
|
364
463
|
|
|
365
464
|
ResolveCaseResponse.add_member(:initial_case_status, Shapes::ShapeRef.new(shape: CaseStatus, location_name: "initialCaseStatus"))
|
|
@@ -397,8 +496,15 @@ module Aws::Support
|
|
|
397
496
|
SupportedLanguagesList.member = Shapes::ShapeRef.new(shape: SupportedLanguage)
|
|
398
497
|
|
|
399
498
|
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: AvailabilityErrorMessage, location_name: "message"))
|
|
499
|
+
ThrottlingException.add_member(:throttling_reasons, Shapes::ShapeRef.new(shape: ThrottlingReasonList, location_name: "throttlingReasons"))
|
|
400
500
|
ThrottlingException.struct_class = Types::ThrottlingException
|
|
401
501
|
|
|
502
|
+
ThrottlingReason.add_member(:reason, Shapes::ShapeRef.new(shape: CoralAvailabilityThrottlingReason, location_name: "reason"))
|
|
503
|
+
ThrottlingReason.add_member(:resource, Shapes::ShapeRef.new(shape: CoralAvailabilityThrottledResource, location_name: "resource"))
|
|
504
|
+
ThrottlingReason.struct_class = Types::ThrottlingReason
|
|
505
|
+
|
|
506
|
+
ThrottlingReasonList.member = Shapes::ShapeRef.new(shape: ThrottlingReason)
|
|
507
|
+
|
|
402
508
|
TrustedAdvisorCategorySpecificSummary.add_member(:cost_optimizing, Shapes::ShapeRef.new(shape: TrustedAdvisorCostOptimizingSummary, location_name: "costOptimizing"))
|
|
403
509
|
TrustedAdvisorCategorySpecificSummary.struct_class = Types::TrustedAdvisorCategorySpecificSummary
|
|
404
510
|
|
|
@@ -455,6 +561,26 @@ module Aws::Support
|
|
|
455
561
|
TrustedAdvisorResourcesSummary.add_member(:resources_suppressed, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "resourcesSuppressed"))
|
|
456
562
|
TrustedAdvisorResourcesSummary.struct_class = Types::TrustedAdvisorResourcesSummary
|
|
457
563
|
|
|
564
|
+
UploadIdNotFound.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
|
565
|
+
UploadIdNotFound.struct_class = Types::UploadIdNotFound
|
|
566
|
+
|
|
567
|
+
UploadIds.member = Shapes::ShapeRef.new(shape: UploadId)
|
|
568
|
+
|
|
569
|
+
UploadProgress.add_member(:total_parts, Shapes::ShapeRef.new(shape: FieldIntegerValue, location_name: "totalParts"))
|
|
570
|
+
UploadProgress.add_member(:completed_parts_count, Shapes::ShapeRef.new(shape: FieldIntegerValue, location_name: "completedPartsCount"))
|
|
571
|
+
UploadProgress.struct_class = Types::UploadProgress
|
|
572
|
+
|
|
573
|
+
UploadRange.add_member(:start_index, Shapes::ShapeRef.new(shape: StartIndex, required: true, location_name: "startIndex"))
|
|
574
|
+
UploadRange.add_member(:end_index, Shapes::ShapeRef.new(shape: EndIndex, location_name: "endIndex"))
|
|
575
|
+
UploadRange.struct_class = Types::UploadRange
|
|
576
|
+
|
|
577
|
+
UploadUrl.add_member(:url, Shapes::ShapeRef.new(shape: HttpsUrl, required: true, location_name: "url"))
|
|
578
|
+
UploadUrl.add_member(:part_index, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "partIndex"))
|
|
579
|
+
UploadUrl.add_member(:expiry_date, Shapes::ShapeRef.new(shape: ValidatedDateTime, required: true, location_name: "expiryDate"))
|
|
580
|
+
UploadUrl.struct_class = Types::UploadUrl
|
|
581
|
+
|
|
582
|
+
UploadUrlList.member = Shapes::ShapeRef.new(shape: UploadUrl)
|
|
583
|
+
|
|
458
584
|
|
|
459
585
|
# @api private
|
|
460
586
|
API = Seahorse::Model::Api.new.tap do |api|
|
|
@@ -486,6 +612,7 @@ module Aws::Support
|
|
|
486
612
|
o.errors << Shapes::ShapeRef.new(shape: AttachmentSetExpired)
|
|
487
613
|
o.errors << Shapes::ShapeRef.new(shape: AttachmentSetSizeLimitExceeded)
|
|
488
614
|
o.errors << Shapes::ShapeRef.new(shape: AttachmentLimitExceeded)
|
|
615
|
+
o.errors << Shapes::ShapeRef.new(shape: DryRunOperationException)
|
|
489
616
|
end)
|
|
490
617
|
|
|
491
618
|
api.add_operation(:add_communication_to_case, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -498,6 +625,18 @@ module Aws::Support
|
|
|
498
625
|
o.errors << Shapes::ShapeRef.new(shape: CaseIdNotFound)
|
|
499
626
|
o.errors << Shapes::ShapeRef.new(shape: AttachmentSetIdNotFound)
|
|
500
627
|
o.errors << Shapes::ShapeRef.new(shape: AttachmentSetExpired)
|
|
628
|
+
o.errors << Shapes::ShapeRef.new(shape: DryRunOperationException)
|
|
629
|
+
end)
|
|
630
|
+
|
|
631
|
+
api.add_operation(:complete_attachment_upload, Seahorse::Model::Operation.new.tap do |o|
|
|
632
|
+
o.name = "CompleteAttachmentUpload"
|
|
633
|
+
o.http_method = "POST"
|
|
634
|
+
o.http_request_uri = "/"
|
|
635
|
+
o.input = Shapes::ShapeRef.new(shape: CompleteAttachmentUploadRequest)
|
|
636
|
+
o.output = Shapes::ShapeRef.new(shape: CompleteAttachmentUploadResponse)
|
|
637
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
|
638
|
+
o.errors << Shapes::ShapeRef.new(shape: DryRunOperationException)
|
|
639
|
+
o.errors << Shapes::ShapeRef.new(shape: UploadIdNotFound)
|
|
501
640
|
end)
|
|
502
641
|
|
|
503
642
|
api.add_operation(:create_case, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -510,6 +649,7 @@ module Aws::Support
|
|
|
510
649
|
o.errors << Shapes::ShapeRef.new(shape: CaseCreationLimitExceeded)
|
|
511
650
|
o.errors << Shapes::ShapeRef.new(shape: AttachmentSetIdNotFound)
|
|
512
651
|
o.errors << Shapes::ShapeRef.new(shape: AttachmentSetExpired)
|
|
652
|
+
o.errors << Shapes::ShapeRef.new(shape: DryRunOperationException)
|
|
513
653
|
end)
|
|
514
654
|
|
|
515
655
|
api.add_operation(:describe_attachment, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -521,6 +661,18 @@ module Aws::Support
|
|
|
521
661
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
|
522
662
|
o.errors << Shapes::ShapeRef.new(shape: DescribeAttachmentLimitExceeded)
|
|
523
663
|
o.errors << Shapes::ShapeRef.new(shape: AttachmentIdNotFound)
|
|
664
|
+
o.errors << Shapes::ShapeRef.new(shape: DryRunOperationException)
|
|
665
|
+
end)
|
|
666
|
+
|
|
667
|
+
api.add_operation(:describe_attachment_upload_status, Seahorse::Model::Operation.new.tap do |o|
|
|
668
|
+
o.name = "DescribeAttachmentUploadStatus"
|
|
669
|
+
o.http_method = "POST"
|
|
670
|
+
o.http_request_uri = "/"
|
|
671
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeAttachmentUploadStatusRequest)
|
|
672
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeAttachmentUploadStatusResponse)
|
|
673
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
|
674
|
+
o.errors << Shapes::ShapeRef.new(shape: DryRunOperationException)
|
|
675
|
+
o.errors << Shapes::ShapeRef.new(shape: UploadIdNotFound)
|
|
524
676
|
end)
|
|
525
677
|
|
|
526
678
|
api.add_operation(:describe_cases, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -531,6 +683,7 @@ module Aws::Support
|
|
|
531
683
|
o.output = Shapes::ShapeRef.new(shape: DescribeCasesResponse)
|
|
532
684
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
|
533
685
|
o.errors << Shapes::ShapeRef.new(shape: CaseIdNotFound)
|
|
686
|
+
o.errors << Shapes::ShapeRef.new(shape: DryRunOperationException)
|
|
534
687
|
o[:pager] = Aws::Pager.new(
|
|
535
688
|
limit_key: "max_results",
|
|
536
689
|
tokens: {
|
|
@@ -547,6 +700,7 @@ module Aws::Support
|
|
|
547
700
|
o.output = Shapes::ShapeRef.new(shape: DescribeCommunicationsResponse)
|
|
548
701
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
|
549
702
|
o.errors << Shapes::ShapeRef.new(shape: CaseIdNotFound)
|
|
703
|
+
o.errors << Shapes::ShapeRef.new(shape: DryRunOperationException)
|
|
550
704
|
o[:pager] = Aws::Pager.new(
|
|
551
705
|
limit_key: "max_results",
|
|
552
706
|
tokens: {
|
|
@@ -563,6 +717,7 @@ module Aws::Support
|
|
|
563
717
|
o.output = Shapes::ShapeRef.new(shape: DescribeCreateCaseOptionsResponse)
|
|
564
718
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
|
565
719
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
720
|
+
o.errors << Shapes::ShapeRef.new(shape: DryRunOperationException)
|
|
566
721
|
end)
|
|
567
722
|
|
|
568
723
|
api.add_operation(:describe_services, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -572,6 +727,7 @@ module Aws::Support
|
|
|
572
727
|
o.input = Shapes::ShapeRef.new(shape: DescribeServicesRequest)
|
|
573
728
|
o.output = Shapes::ShapeRef.new(shape: DescribeServicesResponse)
|
|
574
729
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
|
730
|
+
o.errors << Shapes::ShapeRef.new(shape: DryRunOperationException)
|
|
575
731
|
end)
|
|
576
732
|
|
|
577
733
|
api.add_operation(:describe_severity_levels, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -581,6 +737,7 @@ module Aws::Support
|
|
|
581
737
|
o.input = Shapes::ShapeRef.new(shape: DescribeSeverityLevelsRequest)
|
|
582
738
|
o.output = Shapes::ShapeRef.new(shape: DescribeSeverityLevelsResponse)
|
|
583
739
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
|
740
|
+
o.errors << Shapes::ShapeRef.new(shape: DryRunOperationException)
|
|
584
741
|
end)
|
|
585
742
|
|
|
586
743
|
api.add_operation(:describe_supported_languages, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -591,6 +748,7 @@ module Aws::Support
|
|
|
591
748
|
o.output = Shapes::ShapeRef.new(shape: DescribeSupportedLanguagesResponse)
|
|
592
749
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
|
593
750
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
751
|
+
o.errors << Shapes::ShapeRef.new(shape: DryRunOperationException)
|
|
594
752
|
end)
|
|
595
753
|
|
|
596
754
|
api.add_operation(:describe_trusted_advisor_check_refresh_statuses, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -633,6 +791,28 @@ module Aws::Support
|
|
|
633
791
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
634
792
|
end)
|
|
635
793
|
|
|
794
|
+
api.add_operation(:get_attachment_download_link, Seahorse::Model::Operation.new.tap do |o|
|
|
795
|
+
o.name = "GetAttachmentDownloadLink"
|
|
796
|
+
o.http_method = "POST"
|
|
797
|
+
o.http_request_uri = "/"
|
|
798
|
+
o.input = Shapes::ShapeRef.new(shape: GetAttachmentDownloadLinkRequest)
|
|
799
|
+
o.output = Shapes::ShapeRef.new(shape: GetAttachmentDownloadLinkResponse)
|
|
800
|
+
o.errors << Shapes::ShapeRef.new(shape: AttachmentIdNotFound)
|
|
801
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
|
802
|
+
o.errors << Shapes::ShapeRef.new(shape: DryRunOperationException)
|
|
803
|
+
end)
|
|
804
|
+
|
|
805
|
+
api.add_operation(:get_attachment_upload_links, Seahorse::Model::Operation.new.tap do |o|
|
|
806
|
+
o.name = "GetAttachmentUploadLinks"
|
|
807
|
+
o.http_method = "POST"
|
|
808
|
+
o.http_request_uri = "/"
|
|
809
|
+
o.input = Shapes::ShapeRef.new(shape: GetAttachmentUploadLinksRequest)
|
|
810
|
+
o.output = Shapes::ShapeRef.new(shape: GetAttachmentUploadLinksResponse)
|
|
811
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
|
812
|
+
o.errors << Shapes::ShapeRef.new(shape: DryRunOperationException)
|
|
813
|
+
o.errors << Shapes::ShapeRef.new(shape: UploadIdNotFound)
|
|
814
|
+
end)
|
|
815
|
+
|
|
636
816
|
api.add_operation(:refresh_trusted_advisor_check, Seahorse::Model::Operation.new.tap do |o|
|
|
637
817
|
o.name = "RefreshTrustedAdvisorCheck"
|
|
638
818
|
o.http_method = "POST"
|
|
@@ -650,6 +830,7 @@ module Aws::Support
|
|
|
650
830
|
o.output = Shapes::ShapeRef.new(shape: ResolveCaseResponse)
|
|
651
831
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
|
652
832
|
o.errors << Shapes::ShapeRef.new(shape: CaseIdNotFound)
|
|
833
|
+
o.errors << Shapes::ShapeRef.new(shape: DryRunOperationException)
|
|
653
834
|
end)
|
|
654
835
|
end
|
|
655
836
|
|
|
@@ -35,8 +35,10 @@ module Aws::Support
|
|
|
35
35
|
# * {CaseCreationLimitExceeded}
|
|
36
36
|
# * {CaseIdNotFound}
|
|
37
37
|
# * {DescribeAttachmentLimitExceeded}
|
|
38
|
+
# * {DryRunOperationException}
|
|
38
39
|
# * {InternalServerError}
|
|
39
40
|
# * {ThrottlingException}
|
|
41
|
+
# * {UploadIdNotFound}
|
|
40
42
|
#
|
|
41
43
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
|
42
44
|
# if they are not defined above.
|
|
@@ -164,6 +166,21 @@ module Aws::Support
|
|
|
164
166
|
end
|
|
165
167
|
end
|
|
166
168
|
|
|
169
|
+
class DryRunOperationException < ServiceError
|
|
170
|
+
|
|
171
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
172
|
+
# @param [String] message
|
|
173
|
+
# @param [Aws::Support::Types::DryRunOperationException] data
|
|
174
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
175
|
+
super(context, message, data)
|
|
176
|
+
end
|
|
177
|
+
|
|
178
|
+
# @return [String]
|
|
179
|
+
def message
|
|
180
|
+
@message || @data[:message]
|
|
181
|
+
end
|
|
182
|
+
end
|
|
183
|
+
|
|
167
184
|
class InternalServerError < ServiceError
|
|
168
185
|
|
|
169
186
|
# @param [Seahorse::Client::RequestContext] context
|
|
@@ -192,6 +209,26 @@ module Aws::Support
|
|
|
192
209
|
def message
|
|
193
210
|
@message || @data[:message]
|
|
194
211
|
end
|
|
212
|
+
|
|
213
|
+
# @return [String]
|
|
214
|
+
def throttling_reasons
|
|
215
|
+
@data[:throttling_reasons]
|
|
216
|
+
end
|
|
217
|
+
end
|
|
218
|
+
|
|
219
|
+
class UploadIdNotFound < ServiceError
|
|
220
|
+
|
|
221
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
222
|
+
# @param [String] message
|
|
223
|
+
# @param [Aws::Support::Types::UploadIdNotFound] data
|
|
224
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
225
|
+
super(context, message, data)
|
|
226
|
+
end
|
|
227
|
+
|
|
228
|
+
# @return [String]
|
|
229
|
+
def message
|
|
230
|
+
@message || @data[:message]
|
|
231
|
+
end
|
|
195
232
|
end
|
|
196
233
|
|
|
197
234
|
end
|