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
data/lib/aws-sdk-support.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -92,7 +92,8 @@ module Aws
|
|
|
92
92
|
file_name: ::String?,
|
|
93
93
|
data: ::String?
|
|
94
94
|
}
|
|
95
|
-
]
|
|
95
|
+
],
|
|
96
|
+
?dry_run: bool
|
|
96
97
|
) -> _AddAttachmentsToSetResponseSuccess
|
|
97
98
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddAttachmentsToSetResponseSuccess
|
|
98
99
|
|
|
@@ -105,10 +106,29 @@ module Aws
|
|
|
105
106
|
?case_id: ::String,
|
|
106
107
|
communication_body: ::String,
|
|
107
108
|
?cc_email_addresses: Array[::String],
|
|
108
|
-
?attachment_set_id: ::String
|
|
109
|
+
?attachment_set_id: ::String,
|
|
110
|
+
?upload_ids: Array[::String],
|
|
111
|
+
?dry_run: bool
|
|
109
112
|
) -> _AddCommunicationToCaseResponseSuccess
|
|
110
113
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddCommunicationToCaseResponseSuccess
|
|
111
114
|
|
|
115
|
+
interface _CompleteAttachmentUploadResponseSuccess
|
|
116
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CompleteAttachmentUploadResponse]
|
|
117
|
+
def upload_status: () -> ("attachment-ready" | "attachment-not-ready" | "failed")
|
|
118
|
+
end
|
|
119
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#complete_attachment_upload-instance_method
|
|
120
|
+
def complete_attachment_upload: (
|
|
121
|
+
upload_id: ::String,
|
|
122
|
+
completed_uploads: Array[
|
|
123
|
+
{
|
|
124
|
+
part_index: ::Integer,
|
|
125
|
+
e_tag: ::String
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
?dry_run: bool
|
|
129
|
+
) -> _CompleteAttachmentUploadResponseSuccess
|
|
130
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CompleteAttachmentUploadResponseSuccess
|
|
131
|
+
|
|
112
132
|
interface _CreateCaseResponseSuccess
|
|
113
133
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateCaseResponse]
|
|
114
134
|
def case_id: () -> ::String
|
|
@@ -123,7 +143,9 @@ module Aws
|
|
|
123
143
|
?cc_email_addresses: Array[::String],
|
|
124
144
|
?language: ::String,
|
|
125
145
|
?issue_type: ::String,
|
|
126
|
-
?attachment_set_id: ::String
|
|
146
|
+
?attachment_set_id: ::String,
|
|
147
|
+
?upload_ids: Array[::String],
|
|
148
|
+
?dry_run: bool
|
|
127
149
|
) -> _CreateCaseResponseSuccess
|
|
128
150
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCaseResponseSuccess
|
|
129
151
|
|
|
@@ -133,10 +155,24 @@ module Aws
|
|
|
133
155
|
end
|
|
134
156
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#describe_attachment-instance_method
|
|
135
157
|
def describe_attachment: (
|
|
136
|
-
attachment_id: ::String
|
|
158
|
+
attachment_id: ::String,
|
|
159
|
+
?dry_run: bool
|
|
137
160
|
) -> _DescribeAttachmentResponseSuccess
|
|
138
161
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAttachmentResponseSuccess
|
|
139
162
|
|
|
163
|
+
interface _DescribeAttachmentUploadStatusResponseSuccess
|
|
164
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAttachmentUploadStatusResponse]
|
|
165
|
+
def upload_status: () -> ("attachment-ready" | "attachment-not-ready" | "failed")
|
|
166
|
+
def file_name: () -> ::String
|
|
167
|
+
def upload_progress: () -> Types::UploadProgress
|
|
168
|
+
end
|
|
169
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#describe_attachment_upload_status-instance_method
|
|
170
|
+
def describe_attachment_upload_status: (
|
|
171
|
+
upload_id: ::String,
|
|
172
|
+
?dry_run: bool
|
|
173
|
+
) -> _DescribeAttachmentUploadStatusResponseSuccess
|
|
174
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAttachmentUploadStatusResponseSuccess
|
|
175
|
+
|
|
140
176
|
interface _DescribeCasesResponseSuccess
|
|
141
177
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCasesResponse]
|
|
142
178
|
def cases: () -> ::Array[Types::CaseDetails]
|
|
@@ -152,7 +188,8 @@ module Aws
|
|
|
152
188
|
?next_token: ::String,
|
|
153
189
|
?max_results: ::Integer,
|
|
154
190
|
?language: ::String,
|
|
155
|
-
?include_communications: bool
|
|
191
|
+
?include_communications: bool,
|
|
192
|
+
?dry_run: bool
|
|
156
193
|
) -> _DescribeCasesResponseSuccess
|
|
157
194
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCasesResponseSuccess
|
|
158
195
|
|
|
@@ -167,7 +204,8 @@ module Aws
|
|
|
167
204
|
?before_time: ::String,
|
|
168
205
|
?after_time: ::String,
|
|
169
206
|
?next_token: ::String,
|
|
170
|
-
?max_results: ::Integer
|
|
207
|
+
?max_results: ::Integer,
|
|
208
|
+
?dry_run: bool
|
|
171
209
|
) -> _DescribeCommunicationsResponseSuccess
|
|
172
210
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCommunicationsResponseSuccess
|
|
173
211
|
|
|
@@ -181,7 +219,8 @@ module Aws
|
|
|
181
219
|
issue_type: ::String,
|
|
182
220
|
service_code: ::String,
|
|
183
221
|
language: ::String,
|
|
184
|
-
category_code: ::String
|
|
222
|
+
category_code: ::String,
|
|
223
|
+
?dry_run: bool
|
|
185
224
|
) -> _DescribeCreateCaseOptionsResponseSuccess
|
|
186
225
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCreateCaseOptionsResponseSuccess
|
|
187
226
|
|
|
@@ -192,7 +231,8 @@ module Aws
|
|
|
192
231
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#describe_services-instance_method
|
|
193
232
|
def describe_services: (
|
|
194
233
|
?service_code_list: Array[::String],
|
|
195
|
-
?language: ::String
|
|
234
|
+
?language: ::String,
|
|
235
|
+
?dry_run: bool
|
|
196
236
|
) -> _DescribeServicesResponseSuccess
|
|
197
237
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeServicesResponseSuccess
|
|
198
238
|
|
|
@@ -202,7 +242,8 @@ module Aws
|
|
|
202
242
|
end
|
|
203
243
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#describe_severity_levels-instance_method
|
|
204
244
|
def describe_severity_levels: (
|
|
205
|
-
?language: ::String
|
|
245
|
+
?language: ::String,
|
|
246
|
+
?dry_run: bool
|
|
206
247
|
) -> _DescribeSeverityLevelsResponseSuccess
|
|
207
248
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSeverityLevelsResponseSuccess
|
|
208
249
|
|
|
@@ -214,7 +255,8 @@ module Aws
|
|
|
214
255
|
def describe_supported_languages: (
|
|
215
256
|
issue_type: ::String,
|
|
216
257
|
service_code: ::String,
|
|
217
|
-
category_code: ::String
|
|
258
|
+
category_code: ::String,
|
|
259
|
+
?dry_run: bool
|
|
218
260
|
) -> _DescribeSupportedLanguagesResponseSuccess
|
|
219
261
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSupportedLanguagesResponseSuccess
|
|
220
262
|
|
|
@@ -259,6 +301,39 @@ module Aws
|
|
|
259
301
|
) -> _DescribeTrustedAdvisorChecksResponseSuccess
|
|
260
302
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTrustedAdvisorChecksResponseSuccess
|
|
261
303
|
|
|
304
|
+
interface _GetAttachmentDownloadLinkResponseSuccess
|
|
305
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAttachmentDownloadLinkResponse]
|
|
306
|
+
def file_name: () -> ::String
|
|
307
|
+
def download_url: () -> Types::DownloadUrl
|
|
308
|
+
end
|
|
309
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#get_attachment_download_link-instance_method
|
|
310
|
+
def get_attachment_download_link: (
|
|
311
|
+
attachment_id: ::String,
|
|
312
|
+
?dry_run: bool
|
|
313
|
+
) -> _GetAttachmentDownloadLinkResponseSuccess
|
|
314
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAttachmentDownloadLinkResponseSuccess
|
|
315
|
+
|
|
316
|
+
interface _GetAttachmentUploadLinksResponseSuccess
|
|
317
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAttachmentUploadLinksResponse]
|
|
318
|
+
def upload_id: () -> ::String
|
|
319
|
+
def part_size_bytes: () -> ::Integer
|
|
320
|
+
def total_parts: () -> ::Integer
|
|
321
|
+
def next_index: () -> ::Integer
|
|
322
|
+
def upload_urls: () -> ::Array[Types::UploadUrl]
|
|
323
|
+
end
|
|
324
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#get_attachment_upload_links-instance_method
|
|
325
|
+
def get_attachment_upload_links: (
|
|
326
|
+
file_name: ::String,
|
|
327
|
+
?file_size_bytes: ::Integer,
|
|
328
|
+
?upload_id: ::String,
|
|
329
|
+
?upload_range: {
|
|
330
|
+
start_index: ::Integer,
|
|
331
|
+
end_index: ::Integer?
|
|
332
|
+
},
|
|
333
|
+
?dry_run: bool
|
|
334
|
+
) -> _GetAttachmentUploadLinksResponseSuccess
|
|
335
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAttachmentUploadLinksResponseSuccess
|
|
336
|
+
|
|
262
337
|
interface _RefreshTrustedAdvisorCheckResponseSuccess
|
|
263
338
|
include ::Seahorse::Client::_ResponseSuccess[Types::RefreshTrustedAdvisorCheckResponse]
|
|
264
339
|
def status: () -> Types::TrustedAdvisorCheckRefreshStatus
|
|
@@ -276,7 +351,8 @@ module Aws
|
|
|
276
351
|
end
|
|
277
352
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Support/Client.html#resolve_case-instance_method
|
|
278
353
|
def resolve_case: (
|
|
279
|
-
?case_id: ::String
|
|
354
|
+
?case_id: ::String,
|
|
355
|
+
?dry_run: bool
|
|
280
356
|
) -> _ResolveCaseResponseSuccess
|
|
281
357
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ResolveCaseResponseSuccess
|
|
282
358
|
end
|
data/sig/errors.rbs
CHANGED
|
@@ -35,11 +35,18 @@ module Aws
|
|
|
35
35
|
class DescribeAttachmentLimitExceeded < ::Aws::Errors::ServiceError
|
|
36
36
|
def message: () -> ::String
|
|
37
37
|
end
|
|
38
|
+
class DryRunOperationException < ::Aws::Errors::ServiceError
|
|
39
|
+
def message: () -> ::String
|
|
40
|
+
end
|
|
38
41
|
class InternalServerError < ::Aws::Errors::ServiceError
|
|
39
42
|
def message: () -> ::String
|
|
40
43
|
end
|
|
41
44
|
class ThrottlingException < ::Aws::Errors::ServiceError
|
|
42
45
|
def message: () -> ::String
|
|
46
|
+
def throttling_reasons: () -> ::String
|
|
47
|
+
end
|
|
48
|
+
class UploadIdNotFound < ::Aws::Errors::ServiceError
|
|
49
|
+
def message: () -> ::String
|
|
43
50
|
end
|
|
44
51
|
end
|
|
45
52
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -11,6 +11,7 @@ module Aws::Support
|
|
|
11
11
|
class AddAttachmentsToSetRequest
|
|
12
12
|
attr_accessor attachment_set_id: ::String
|
|
13
13
|
attr_accessor attachments: ::Array[Types::Attachment]
|
|
14
|
+
attr_accessor dry_run: bool
|
|
14
15
|
SENSITIVE: []
|
|
15
16
|
end
|
|
16
17
|
|
|
@@ -25,6 +26,8 @@ module Aws::Support
|
|
|
25
26
|
attr_accessor communication_body: ::String
|
|
26
27
|
attr_accessor cc_email_addresses: ::Array[::String]
|
|
27
28
|
attr_accessor attachment_set_id: ::String
|
|
29
|
+
attr_accessor upload_ids: ::Array[::String]
|
|
30
|
+
attr_accessor dry_run: bool
|
|
28
31
|
SENSITIVE: []
|
|
29
32
|
end
|
|
30
33
|
|
|
@@ -107,6 +110,7 @@ module Aws::Support
|
|
|
107
110
|
attr_accessor body: ::String
|
|
108
111
|
attr_accessor submitted_by: ::String
|
|
109
112
|
attr_accessor time_created: ::String
|
|
113
|
+
attr_accessor attachments: ::Array[Types::AttachmentDetails]
|
|
110
114
|
attr_accessor attachment_set: ::Array[Types::AttachmentDetails]
|
|
111
115
|
SENSITIVE: []
|
|
112
116
|
end
|
|
@@ -118,6 +122,24 @@ module Aws::Support
|
|
|
118
122
|
SENSITIVE: []
|
|
119
123
|
end
|
|
120
124
|
|
|
125
|
+
class CompleteAttachmentUploadRequest
|
|
126
|
+
attr_accessor upload_id: ::String
|
|
127
|
+
attr_accessor completed_uploads: ::Array[Types::CompletedUpload]
|
|
128
|
+
attr_accessor dry_run: bool
|
|
129
|
+
SENSITIVE: []
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
class CompleteAttachmentUploadResponse
|
|
133
|
+
attr_accessor upload_status: ("attachment-ready" | "attachment-not-ready" | "failed")
|
|
134
|
+
SENSITIVE: []
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
class CompletedUpload
|
|
138
|
+
attr_accessor part_index: ::Integer
|
|
139
|
+
attr_accessor e_tag: ::String
|
|
140
|
+
SENSITIVE: []
|
|
141
|
+
end
|
|
142
|
+
|
|
121
143
|
class CreateCaseRequest
|
|
122
144
|
attr_accessor subject: ::String
|
|
123
145
|
attr_accessor service_code: ::String
|
|
@@ -128,6 +150,8 @@ module Aws::Support
|
|
|
128
150
|
attr_accessor language: ::String
|
|
129
151
|
attr_accessor issue_type: ::String
|
|
130
152
|
attr_accessor attachment_set_id: ::String
|
|
153
|
+
attr_accessor upload_ids: ::Array[::String]
|
|
154
|
+
attr_accessor dry_run: bool
|
|
131
155
|
SENSITIVE: []
|
|
132
156
|
end
|
|
133
157
|
|
|
@@ -149,6 +173,7 @@ module Aws::Support
|
|
|
149
173
|
|
|
150
174
|
class DescribeAttachmentRequest
|
|
151
175
|
attr_accessor attachment_id: ::String
|
|
176
|
+
attr_accessor dry_run: bool
|
|
152
177
|
SENSITIVE: []
|
|
153
178
|
end
|
|
154
179
|
|
|
@@ -157,6 +182,19 @@ module Aws::Support
|
|
|
157
182
|
SENSITIVE: []
|
|
158
183
|
end
|
|
159
184
|
|
|
185
|
+
class DescribeAttachmentUploadStatusRequest
|
|
186
|
+
attr_accessor upload_id: ::String
|
|
187
|
+
attr_accessor dry_run: bool
|
|
188
|
+
SENSITIVE: []
|
|
189
|
+
end
|
|
190
|
+
|
|
191
|
+
class DescribeAttachmentUploadStatusResponse
|
|
192
|
+
attr_accessor upload_status: ("attachment-ready" | "attachment-not-ready" | "failed")
|
|
193
|
+
attr_accessor file_name: ::String
|
|
194
|
+
attr_accessor upload_progress: Types::UploadProgress
|
|
195
|
+
SENSITIVE: []
|
|
196
|
+
end
|
|
197
|
+
|
|
160
198
|
class DescribeCasesRequest
|
|
161
199
|
attr_accessor case_id_list: ::Array[::String]
|
|
162
200
|
attr_accessor display_id: ::String
|
|
@@ -167,6 +205,7 @@ module Aws::Support
|
|
|
167
205
|
attr_accessor max_results: ::Integer
|
|
168
206
|
attr_accessor language: ::String
|
|
169
207
|
attr_accessor include_communications: bool
|
|
208
|
+
attr_accessor dry_run: bool
|
|
170
209
|
SENSITIVE: []
|
|
171
210
|
end
|
|
172
211
|
|
|
@@ -182,6 +221,7 @@ module Aws::Support
|
|
|
182
221
|
attr_accessor after_time: ::String
|
|
183
222
|
attr_accessor next_token: ::String
|
|
184
223
|
attr_accessor max_results: ::Integer
|
|
224
|
+
attr_accessor dry_run: bool
|
|
185
225
|
SENSITIVE: []
|
|
186
226
|
end
|
|
187
227
|
|
|
@@ -196,6 +236,7 @@ module Aws::Support
|
|
|
196
236
|
attr_accessor service_code: ::String
|
|
197
237
|
attr_accessor language: ::String
|
|
198
238
|
attr_accessor category_code: ::String
|
|
239
|
+
attr_accessor dry_run: bool
|
|
199
240
|
SENSITIVE: []
|
|
200
241
|
end
|
|
201
242
|
|
|
@@ -208,6 +249,7 @@ module Aws::Support
|
|
|
208
249
|
class DescribeServicesRequest
|
|
209
250
|
attr_accessor service_code_list: ::Array[::String]
|
|
210
251
|
attr_accessor language: ::String
|
|
252
|
+
attr_accessor dry_run: bool
|
|
211
253
|
SENSITIVE: []
|
|
212
254
|
end
|
|
213
255
|
|
|
@@ -218,6 +260,7 @@ module Aws::Support
|
|
|
218
260
|
|
|
219
261
|
class DescribeSeverityLevelsRequest
|
|
220
262
|
attr_accessor language: ::String
|
|
263
|
+
attr_accessor dry_run: bool
|
|
221
264
|
SENSITIVE: []
|
|
222
265
|
end
|
|
223
266
|
|
|
@@ -230,6 +273,7 @@ module Aws::Support
|
|
|
230
273
|
attr_accessor issue_type: ::String
|
|
231
274
|
attr_accessor service_code: ::String
|
|
232
275
|
attr_accessor category_code: ::String
|
|
276
|
+
attr_accessor dry_run: bool
|
|
233
277
|
SENSITIVE: []
|
|
234
278
|
end
|
|
235
279
|
|
|
@@ -279,6 +323,47 @@ module Aws::Support
|
|
|
279
323
|
SENSITIVE: []
|
|
280
324
|
end
|
|
281
325
|
|
|
326
|
+
class DownloadUrl
|
|
327
|
+
attr_accessor url: ::String
|
|
328
|
+
attr_accessor expiry_date: ::String
|
|
329
|
+
SENSITIVE: []
|
|
330
|
+
end
|
|
331
|
+
|
|
332
|
+
class DryRunOperationException
|
|
333
|
+
attr_accessor message: ::String
|
|
334
|
+
SENSITIVE: []
|
|
335
|
+
end
|
|
336
|
+
|
|
337
|
+
class GetAttachmentDownloadLinkRequest
|
|
338
|
+
attr_accessor attachment_id: ::String
|
|
339
|
+
attr_accessor dry_run: bool
|
|
340
|
+
SENSITIVE: []
|
|
341
|
+
end
|
|
342
|
+
|
|
343
|
+
class GetAttachmentDownloadLinkResponse
|
|
344
|
+
attr_accessor file_name: ::String
|
|
345
|
+
attr_accessor download_url: Types::DownloadUrl
|
|
346
|
+
SENSITIVE: []
|
|
347
|
+
end
|
|
348
|
+
|
|
349
|
+
class GetAttachmentUploadLinksRequest
|
|
350
|
+
attr_accessor file_name: ::String
|
|
351
|
+
attr_accessor file_size_bytes: ::Integer
|
|
352
|
+
attr_accessor upload_id: ::String
|
|
353
|
+
attr_accessor upload_range: Types::UploadRange
|
|
354
|
+
attr_accessor dry_run: bool
|
|
355
|
+
SENSITIVE: []
|
|
356
|
+
end
|
|
357
|
+
|
|
358
|
+
class GetAttachmentUploadLinksResponse
|
|
359
|
+
attr_accessor upload_id: ::String
|
|
360
|
+
attr_accessor part_size_bytes: ::Integer
|
|
361
|
+
attr_accessor total_parts: ::Integer
|
|
362
|
+
attr_accessor next_index: ::Integer
|
|
363
|
+
attr_accessor upload_urls: ::Array[Types::UploadUrl]
|
|
364
|
+
SENSITIVE: []
|
|
365
|
+
end
|
|
366
|
+
|
|
282
367
|
class InternalServerError
|
|
283
368
|
attr_accessor message: ::String
|
|
284
369
|
SENSITIVE: []
|
|
@@ -302,6 +387,7 @@ module Aws::Support
|
|
|
302
387
|
|
|
303
388
|
class ResolveCaseRequest
|
|
304
389
|
attr_accessor case_id: ::String
|
|
390
|
+
attr_accessor dry_run: bool
|
|
305
391
|
SENSITIVE: []
|
|
306
392
|
end
|
|
307
393
|
|
|
@@ -339,6 +425,13 @@ module Aws::Support
|
|
|
339
425
|
|
|
340
426
|
class ThrottlingException
|
|
341
427
|
attr_accessor message: ::String
|
|
428
|
+
attr_accessor throttling_reasons: ::Array[Types::ThrottlingReason]
|
|
429
|
+
SENSITIVE: []
|
|
430
|
+
end
|
|
431
|
+
|
|
432
|
+
class ThrottlingReason
|
|
433
|
+
attr_accessor reason: ::String
|
|
434
|
+
attr_accessor resource: ::String
|
|
342
435
|
SENSITIVE: []
|
|
343
436
|
end
|
|
344
437
|
|
|
@@ -405,5 +498,29 @@ module Aws::Support
|
|
|
405
498
|
attr_accessor resources_suppressed: ::Integer
|
|
406
499
|
SENSITIVE: []
|
|
407
500
|
end
|
|
501
|
+
|
|
502
|
+
class UploadIdNotFound
|
|
503
|
+
attr_accessor message: ::String
|
|
504
|
+
SENSITIVE: []
|
|
505
|
+
end
|
|
506
|
+
|
|
507
|
+
class UploadProgress
|
|
508
|
+
attr_accessor total_parts: ::Integer
|
|
509
|
+
attr_accessor completed_parts_count: ::Integer
|
|
510
|
+
SENSITIVE: []
|
|
511
|
+
end
|
|
512
|
+
|
|
513
|
+
class UploadRange
|
|
514
|
+
attr_accessor start_index: ::Integer
|
|
515
|
+
attr_accessor end_index: ::Integer
|
|
516
|
+
SENSITIVE: []
|
|
517
|
+
end
|
|
518
|
+
|
|
519
|
+
class UploadUrl
|
|
520
|
+
attr_accessor url: ::String
|
|
521
|
+
attr_accessor part_index: ::Integer
|
|
522
|
+
attr_accessor expiry_date: ::String
|
|
523
|
+
SENSITIVE: []
|
|
524
|
+
end
|
|
408
525
|
end
|
|
409
526
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-support
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.96.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.255.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.255.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|