aws-sdk-core 2.0.42 → 2.0.43

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,5 @@
1
1
  {
2
+ "version":"2.0",
2
3
  "metadata":{
3
4
  "apiVersion":"2010-06-01",
4
5
  "endpointPrefix":"importexport",
@@ -1,8 +1,9 @@
1
1
  {
2
+ "version": "2.0",
2
3
  "operations": {
3
4
  "CancelJob": "This operation cancels a specified job. Only the job owner can cancel it. The operation fails if the job has already started or is complete.",
4
5
  "CreateJob": "This operation initiates the process of scheduling an upload or download of your data. You include in the request a manifest that describes the data transfer specifics. The response to the request includes a job ID, which you can use in other operations, a signature that you use to identify your storage device, and the address where you should ship your storage device.",
5
- "GetShippingLabel": "This operation returns information about a job, including where the job is in the processing pipeline, the status of the results, and the signature value associated with the job. You can only return information about jobs you own.",
6
+ "GetShippingLabel": "This operation generates a pre-paid UPS shipping label that you will use to ship your device to AWS for processing.",
6
7
  "GetStatus": "This operation returns information about a job, including where the job is in the processing pipeline, the status of the results, and the signature value associated with the job. You can only return information about jobs you own.",
7
8
  "ListJobs": "This operation returns the jobs associated with the requester. AWS Import/Export lists the jobs in reverse chronological order based on the date of creation. For example if Job Test1 was created 2009Dec30 and Test2 was created 2010Feb05, the ListJobs operation would return Test2 followed by Test1.",
8
9
  "UpdateJob": "You use this operation to change the parameters specified in the original manifest file by supplying a new manifest file. The manifest file attached to this request replaces the original manifest file. You can only use the operation after a CreateJob request but before the data transfer starts and you can only use it on jobs you own."
@@ -244,6 +244,30 @@
244
244
  }
245
245
  ]
246
246
  },
247
+ "FilterLogEvents":{
248
+ "name":"FilterLogEvents",
249
+ "http":{
250
+ "method":"POST",
251
+ "requestUri":"/"
252
+ },
253
+ "input":{"shape":"FilterLogEventsRequest"},
254
+ "output":{"shape":"FilterLogEventsResponse"},
255
+ "errors":[
256
+ {
257
+ "shape":"InvalidParameterException",
258
+ "exception":true
259
+ },
260
+ {
261
+ "shape":"ResourceNotFoundException",
262
+ "exception":true
263
+ },
264
+ {
265
+ "shape":"ServiceUnavailableException",
266
+ "exception":true,
267
+ "fault":true
268
+ }
269
+ ]
270
+ },
247
271
  "GetLogEvents":{
248
272
  "name":"GetLogEvents",
249
273
  "http":{
@@ -504,6 +528,7 @@
504
528
  "nextToken":{"shape":"NextToken"}
505
529
  }
506
530
  },
531
+ "EventId":{"type":"string"},
507
532
  "EventMessage":{
508
533
  "type":"string",
509
534
  "min":1
@@ -520,6 +545,28 @@
520
545
  "value":{"shape":"Value"}
521
546
  },
522
547
  "FilterCount":{"type":"integer"},
548
+ "FilterLogEventsRequest":{
549
+ "type":"structure",
550
+ "required":["logGroupName"],
551
+ "members":{
552
+ "logGroupName":{"shape":"LogGroupName"},
553
+ "logStreamNames":{"shape":"InputLogStreamNames"},
554
+ "startTime":{"shape":"Timestamp"},
555
+ "endTime":{"shape":"Timestamp"},
556
+ "filterPattern":{"shape":"FilterPattern"},
557
+ "nextToken":{"shape":"NextToken"},
558
+ "limit":{"shape":"EventsLimit"},
559
+ "interleaved":{"shape":"Interleaved"}
560
+ }
561
+ },
562
+ "FilterLogEventsResponse":{
563
+ "type":"structure",
564
+ "members":{
565
+ "events":{"shape":"FilteredLogEvents"},
566
+ "searchedLogStreams":{"shape":"SearchedLogStreams"},
567
+ "nextToken":{"shape":"NextToken"}
568
+ }
569
+ },
523
570
  "FilterName":{
524
571
  "type":"string",
525
572
  "min":1,
@@ -531,6 +578,20 @@
531
578
  "min":0,
532
579
  "max":512
533
580
  },
581
+ "FilteredLogEvent":{
582
+ "type":"structure",
583
+ "members":{
584
+ "logStreamName":{"shape":"LogStreamName"},
585
+ "timestamp":{"shape":"Timestamp"},
586
+ "message":{"shape":"EventMessage"},
587
+ "ingestionTime":{"shape":"Timestamp"},
588
+ "eventId":{"shape":"EventId"}
589
+ }
590
+ },
591
+ "FilteredLogEvents":{
592
+ "type":"list",
593
+ "member":{"shape":"FilteredLogEvent"}
594
+ },
534
595
  "GetLogEventsRequest":{
535
596
  "type":"structure",
536
597
  "required":[
@@ -572,6 +633,13 @@
572
633
  "min":1,
573
634
  "max":10000
574
635
  },
636
+ "InputLogStreamNames":{
637
+ "type":"list",
638
+ "member":{"shape":"LogStreamName"},
639
+ "min":1,
640
+ "max":100
641
+ },
642
+ "Interleaved":{"type":"boolean"},
575
643
  "InvalidParameterException":{
576
644
  "type":"structure",
577
645
  "members":{
@@ -632,6 +700,7 @@
632
700
  "max":512,
633
701
  "pattern":"[^:*]*"
634
702
  },
703
+ "LogStreamSearchedCompletely":{"type":"boolean"},
635
704
  "LogStreams":{
636
705
  "type":"list",
637
706
  "member":{"shape":"LogStream"}
@@ -790,6 +859,17 @@
790
859
  },
791
860
  "exception":true
792
861
  },
862
+ "SearchedLogStream":{
863
+ "type":"structure",
864
+ "members":{
865
+ "logStreamName":{"shape":"LogStreamName"},
866
+ "searchedCompletely":{"shape":"LogStreamSearchedCompletely"}
867
+ }
868
+ },
869
+ "SearchedLogStreams":{
870
+ "type":"list",
871
+ "member":{"shape":"SearchedLogStream"}
872
+ },
793
873
  "SequenceToken":{
794
874
  "type":"string",
795
875
  "min":1
@@ -10,6 +10,7 @@
10
10
  "DescribeLogGroups": "<p> Returns all the log groups that are associated with the AWS account making the request. The list returned in the response is ASCII-sorted by log group name. </p> <p> By default, this operation returns up to 50 log groups. If there are more log groups to list, the response would contain a <code class=\"code\">nextToken</code> value in the response body. You can also limit the number of log groups returned in the response by specifying the <code class=\"code\">limit</code> parameter in the request. </p>",
11
11
  "DescribeLogStreams": "<p> Returns all the log streams that are associated with the specified log group. The list returned in the response is ASCII-sorted by log stream name. </p> <p> By default, this operation returns up to 50 log streams. If there are more log streams to list, the response would contain a <code class=\"code\">nextToken</code> value in the response body. You can also limit the number of log streams returned in the response by specifying the <code class=\"code\">limit</code> parameter in the request. This operation has a limit of five transactions per second, after which transactions are throttled. </p>",
12
12
  "DescribeMetricFilters": "<p> Returns all the metrics filters associated with the specified log group. The list returned in the response is ASCII-sorted by filter name. </p> <p> By default, this operation returns up to 50 metric filters. If there are more metric filters to list, the response would contain a <code class=\"code\">nextToken</code> value in the response body. You can also limit the number of metric filters returned in the response by specifying the <code class=\"code\">limit</code> parameter in the request. </p>",
13
+ "FilterLogEvents": "<p> Retrieves log events, optionally filtered by a filter pattern from the specified log group. You can provide an optional time range to filter the results on the event <code class=\"code\">timestamp</code>. You can limit the streams searched to an explicit list of <code class=\"code\">logStreamNames</code>. </p> <p> By default, this operation returns as much matching log events as can fit in a response size of 1MB, up to 10,000 log events, or all the events found within a time-bounded scan window. If the response includes a <code class=\"code\">nextToken</code>, then there is more data to search, and the search can be resumed with a new request providing the nextToken. The response will contain a list of <code class=\"code\">searchedLogStreams</code> that contains information about which streams were searched in the request and whether they have been searched completely or require further pagination. The <code class=\"code\">limit</code> parameter in the request. can be used to specify the maximum number of events to return in a page. </p>",
13
14
  "GetLogEvents": "<p> Retrieves log events from the specified log stream. You can provide an optional time range to filter the results on the event <code class=\"code\">timestamp</code>. </p> <p> By default, this operation returns as much log events as can fit in a response size of 1MB, up to 10,000 log events. The response will always include a <code class=\"code\">nextForwardToken</code> and a <code class=\"code\">nextBackwardToken</code> in the response body. You can use any of these tokens in subsequent <code class=\"code\">GetLogEvents</code> requests to paginate through events in either forward or backward direction. You can also limit the number of log events returned in the response by specifying the <code class=\"code\">limit</code> parameter in the request. </p>",
14
15
  "PutLogEvents": "<p> Uploads a batch of log events to the specified log stream. </p> <p> Every PutLogEvents request must include the <code class=\"code\">sequenceToken</code> obtained from the response of the previous request. An upload in a newly created log stream does not require a <code class=\"code\">sequenceToken</code>. </p> <p> The batch of events must satisfy the following constraints: <ul> <li>The maximum batch size is 1,048,576 bytes, and this size is calculated as the sum of all event messages in UTF-8, plus 26 bytes for each log event.</li> <li>None of the log events in the batch can be more than 2 hours in the future.</li> <li>None of the log events in the batch can be older than 14 days or the retention period of the log group.</li> <li>The log events in the batch must be in chronological ordered by their <code class=\"code\">timestamp</code>.</li> <li>The maximum number of log events in a batch is 10,000.</li> </ul> </p>",
15
16
  "PutMetricFilter": "<p> Creates or updates a metric filter and associates it with the specified log group. Metric filters allow you to configure rules to extract metric data from log events ingested through <code class=\"code\">PutLogEvents</code> requests. </p>",
@@ -111,9 +112,16 @@
111
112
  "refs": {
112
113
  }
113
114
  },
115
+ "EventId": {
116
+ "base": null,
117
+ "refs": {
118
+ "FilteredLogEvent$eventId": "A unique identifier for this event."
119
+ }
120
+ },
114
121
  "EventMessage": {
115
122
  "base": null,
116
123
  "refs": {
124
+ "FilteredLogEvent$message": null,
117
125
  "InputLogEvent$message": null,
118
126
  "MetricFilterMatchRecord$eventMessage": null,
119
127
  "OutputLogEvent$message": null,
@@ -129,7 +137,8 @@
129
137
  "EventsLimit": {
130
138
  "base": "The maximum number of events to return.",
131
139
  "refs": {
132
- "GetLogEventsRequest$limit": "<p> The maximum number of log events returned in the response. If you don't specify a value, the request would return as much log events as can fit in a response size of 1MB, up to 10,000 log events. </p>"
140
+ "FilterLogEventsRequest$limit": "<p> The maximum number of events to return in a page of results. Default is 10,000 events. </p>",
141
+ "GetLogEventsRequest$limit": "<p> The maximum number of log events returned in the response. If you don't specify a value, the request would return as many log events as can fit in a response size of 1MB, up to 10,000 log events. </p>"
133
142
  }
134
143
  },
135
144
  "ExtractedValues": {
@@ -144,6 +153,16 @@
144
153
  "LogGroup$metricFilterCount": null
145
154
  }
146
155
  },
156
+ "FilterLogEventsRequest": {
157
+ "base": null,
158
+ "refs": {
159
+ }
160
+ },
161
+ "FilterLogEventsResponse": {
162
+ "base": null,
163
+ "refs": {
164
+ }
165
+ },
147
166
  "FilterName": {
148
167
  "base": "The name of the metric filter.",
149
168
  "refs": {
@@ -156,11 +175,24 @@
156
175
  "FilterPattern": {
157
176
  "base": "A symbolic description of how Amazon CloudWatch Logs should interpret the data in each log entry. For example, a log entry may contain timestamps, IP addresses, strings, and so on. You use the pattern to specify what to look for in the log stream.",
158
177
  "refs": {
178
+ "FilterLogEventsRequest$filterPattern": "<p> A valid CloudWatch Logs filter pattern to use for filtering the response. If not provided, all the events are matched. </p>",
159
179
  "MetricFilter$filterPattern": null,
160
180
  "PutMetricFilterRequest$filterPattern": null,
161
181
  "TestMetricFilterRequest$filterPattern": null
162
182
  }
163
183
  },
184
+ "FilteredLogEvent": {
185
+ "base": "Represents a matched event from a <code class=\"code\">FilterLogEvents</code> request.",
186
+ "refs": {
187
+ "FilteredLogEvents$member": null
188
+ }
189
+ },
190
+ "FilteredLogEvents": {
191
+ "base": "A list of matched <code class=\"code\">FilteredLogEvent</code> objects returned from a <code class=\"code\">FilterLogEvents</code> request.",
192
+ "refs": {
193
+ "FilterLogEventsResponse$events": "<p> A list of <code class=\"code\">FilteredLogEvent</code> objects representing the matched events from the request. </p>"
194
+ }
195
+ },
164
196
  "GetLogEventsRequest": {
165
197
  "base": null,
166
198
  "refs": {
@@ -183,6 +215,18 @@
183
215
  "PutLogEventsRequest$logEvents": null
184
216
  }
185
217
  },
218
+ "InputLogStreamNames": {
219
+ "base": "A list of log stream names.",
220
+ "refs": {
221
+ "FilterLogEventsRequest$logStreamNames": "<p> Optional list of log stream names within the specified log group to search. Defaults to all the log streams in the log group. </p>"
222
+ }
223
+ },
224
+ "Interleaved": {
225
+ "base": null,
226
+ "refs": {
227
+ "FilterLogEventsRequest$interleaved": "<p> If provided, the API will make a best effort to provide responses that contain events from multiple log streams within the log group interleaved in a single response. If not provided, all the matched log events in the first log stream will be searched first, then those in the next log stream, etc. </p>"
228
+ }
229
+ },
186
230
  "InvalidParameterException": {
187
231
  "base": "<p>Returned if a parameter of the request is incorrectly specified.</p>",
188
232
  "refs": {
@@ -224,6 +268,7 @@
224
268
  "DescribeLogGroupsRequest$logGroupNamePrefix": null,
225
269
  "DescribeLogStreamsRequest$logGroupName": null,
226
270
  "DescribeMetricFiltersRequest$logGroupName": null,
271
+ "FilterLogEventsRequest$logGroupName": "<p> The name of the log group to query </p>",
227
272
  "GetLogEventsRequest$logGroupName": null,
228
273
  "LogGroup$logGroupName": null,
229
274
  "PutLogEventsRequest$logGroupName": null,
@@ -249,9 +294,18 @@
249
294
  "CreateLogStreamRequest$logStreamName": null,
250
295
  "DeleteLogStreamRequest$logStreamName": null,
251
296
  "DescribeLogStreamsRequest$logStreamNamePrefix": "<p> Will only return log streams that match the provided logStreamNamePrefix. If you don't specify a value, no prefix filter is applied. </p>",
297
+ "FilteredLogEvent$logStreamName": "The name of the log stream this event belongs to.",
252
298
  "GetLogEventsRequest$logStreamName": null,
299
+ "InputLogStreamNames$member": null,
253
300
  "LogStream$logStreamName": null,
254
- "PutLogEventsRequest$logStreamName": null
301
+ "PutLogEventsRequest$logStreamName": null,
302
+ "SearchedLogStream$logStreamName": "The name of the log stream."
303
+ }
304
+ },
305
+ "LogStreamSearchedCompletely": {
306
+ "base": null,
307
+ "refs": {
308
+ "SearchedLogStream$searchedCompletely": "Indicates whether all the events in this log stream were searched or more data exists to search by paginating further."
255
309
  }
256
310
  },
257
311
  "LogStreams": {
@@ -324,6 +378,8 @@
324
378
  "DescribeLogStreamsResponse$nextToken": null,
325
379
  "DescribeMetricFiltersRequest$nextToken": "<p> A string token used for pagination that points to the next page of results. It must be a value obtained from the response of the previous <code class=\"code\">DescribeMetricFilters</code> request. </p>",
326
380
  "DescribeMetricFiltersResponse$nextToken": null,
381
+ "FilterLogEventsRequest$nextToken": "<p> A pagination token obtained from a <code class=\"code\">FilterLogEvents</code> response to continue paginating the FilterLogEvents results. </p>",
382
+ "FilterLogEventsResponse$nextToken": "<p> A pagination token obtained from a <code class=\"code\">FilterLogEvents</code> response to continue paginating the FilterLogEvents results. </p>",
327
383
  "GetLogEventsRequest$nextToken": "<p> A string token used for pagination that points to the next page of results. It must be a value obtained from the <code class=\"code\">nextForwardToken</code> or <code class=\"code\">nextBackwardToken</code> fields in the response of the previous <code class=\"code\">GetLogEvents</code> request. </p>",
328
384
  "GetLogEventsResponse$nextForwardToken": null,
329
385
  "GetLogEventsResponse$nextBackwardToken": null
@@ -388,6 +444,18 @@
388
444
  "refs": {
389
445
  }
390
446
  },
447
+ "SearchedLogStream": {
448
+ "base": "An object indicating the search status of a log stream in a <code class=\"code\">FilterLogEvents</code> request.",
449
+ "refs": {
450
+ "SearchedLogStreams$member": null
451
+ }
452
+ },
453
+ "SearchedLogStreams": {
454
+ "base": "A list of <code class=\"code\">SearchedLogStream</code> objects indicating the search status for log streams in a <code class=\"code\">FilterLogEvents</code> request.",
455
+ "refs": {
456
+ "FilterLogEventsResponse$searchedLogStreams": "<p> A list of <code class=\"code\">SearchedLogStream</code> objects indicating which log streams have been searched in this request and whether each has been searched completely or still has more to be paginated. </p>"
457
+ }
458
+ },
391
459
  "SequenceToken": {
392
460
  "base": "A string token used for making PutLogEvents requests. A <code class=\"code\">sequenceToken</code> can only be used once, and PutLogEvents requests must include the <code class=\"code\">sequenceToken</code> obtained from the response of the previous request.",
393
461
  "refs": {
@@ -435,6 +503,10 @@
435
503
  "Timestamp": {
436
504
  "base": "A point in time expressed as the number milliseconds since Jan 1, 1970 00:00:00 UTC.",
437
505
  "refs": {
506
+ "FilterLogEventsRequest$startTime": "<p> A unix timestamp indicating the start time of the range for the request. If provided, events with a timestamp prior to this time will not be returned. </p>",
507
+ "FilterLogEventsRequest$endTime": "<p> A unix timestamp indicating the end time of the range for the request. If provided, events with a timestamp later than this time will not be returned. </p>",
508
+ "FilteredLogEvent$timestamp": null,
509
+ "FilteredLogEvent$ingestionTime": null,
438
510
  "GetLogEventsRequest$startTime": null,
439
511
  "GetLogEventsRequest$endTime": null,
440
512
  "InputLogEvent$timestamp": null,
@@ -49,6 +49,11 @@
49
49
  "shape":"OperationLimitExceeded",
50
50
  "error":{"httpStatusCode":400},
51
51
  "exception":true
52
+ },
53
+ {
54
+ "shape":"UnsupportedTLD",
55
+ "error":{"httpStatusCode":400},
56
+ "exception":true
52
57
  }
53
58
  ]
54
59
  },
@@ -65,6 +70,11 @@
65
70
  "shape":"InvalidInput",
66
71
  "error":{"httpStatusCode":400},
67
72
  "exception":true
73
+ },
74
+ {
75
+ "shape":"UnsupportedTLD",
76
+ "error":{"httpStatusCode":400},
77
+ "exception":true
68
78
  }
69
79
  ]
70
80
  },
@@ -96,6 +106,11 @@
96
106
  "shape":"OperationLimitExceeded",
97
107
  "error":{"httpStatusCode":400},
98
108
  "exception":true
109
+ },
110
+ {
111
+ "shape":"UnsupportedTLD",
112
+ "error":{"httpStatusCode":400},
113
+ "exception":true
99
114
  }
100
115
  ]
101
116
  },
@@ -112,6 +127,11 @@
112
127
  "shape":"InvalidInput",
113
128
  "error":{"httpStatusCode":400},
114
129
  "exception":true
130
+ },
131
+ {
132
+ "shape":"UnsupportedTLD",
133
+ "error":{"httpStatusCode":400},
134
+ "exception":true
115
135
  }
116
136
  ]
117
137
  },
@@ -143,6 +163,11 @@
143
163
  "shape":"OperationLimitExceeded",
144
164
  "error":{"httpStatusCode":400},
145
165
  "exception":true
166
+ },
167
+ {
168
+ "shape":"UnsupportedTLD",
169
+ "error":{"httpStatusCode":400},
170
+ "exception":true
146
171
  }
147
172
  ]
148
173
  },
@@ -159,6 +184,11 @@
159
184
  "shape":"InvalidInput",
160
185
  "error":{"httpStatusCode":400},
161
186
  "exception":true
187
+ },
188
+ {
189
+ "shape":"UnsupportedTLD",
190
+ "error":{"httpStatusCode":400},
191
+ "exception":true
162
192
  }
163
193
  ]
164
194
  },
@@ -228,6 +258,11 @@
228
258
  "shape":"OperationLimitExceeded",
229
259
  "error":{"httpStatusCode":400},
230
260
  "exception":true
261
+ },
262
+ {
263
+ "shape":"UnsupportedTLD",
264
+ "error":{"httpStatusCode":400},
265
+ "exception":true
231
266
  }
232
267
  ]
233
268
  },
@@ -285,6 +320,11 @@
285
320
  "shape":"InvalidInput",
286
321
  "error":{"httpStatusCode":400},
287
322
  "exception":true
323
+ },
324
+ {
325
+ "shape":"UnsupportedTLD",
326
+ "error":{"httpStatusCode":400},
327
+ "exception":true
288
328
  }
289
329
  ]
290
330
  },
@@ -357,6 +397,11 @@
357
397
  "shape":"OperationLimitExceeded",
358
398
  "error":{"httpStatusCode":400},
359
399
  "exception":true
400
+ },
401
+ {
402
+ "shape":"UnsupportedTLD",
403
+ "error":{"httpStatusCode":400},
404
+ "exception":true
360
405
  }
361
406
  ]
362
407
  },
@@ -388,6 +433,11 @@
388
433
  "shape":"OperationLimitExceeded",
389
434
  "error":{"httpStatusCode":400},
390
435
  "exception":true
436
+ },
437
+ {
438
+ "shape":"UnsupportedTLD",
439
+ "error":{"httpStatusCode":400},
440
+ "exception":true
391
441
  }
392
442
  ]
393
443
  },
@@ -419,6 +469,11 @@
419
469
  "shape":"OperationLimitExceeded",
420
470
  "error":{"httpStatusCode":400},
421
471
  "exception":true
472
+ },
473
+ {
474
+ "shape":"UnsupportedTLD",
475
+ "error":{"httpStatusCode":400},
476
+ "exception":true
422
477
  }
423
478
  ]
424
479
  },
@@ -440,6 +495,11 @@
440
495
  "shape":"OperationLimitExceeded",
441
496
  "error":{"httpStatusCode":400},
442
497
  "exception":true
498
+ },
499
+ {
500
+ "shape":"UnsupportedTLD",
501
+ "error":{"httpStatusCode":400},
502
+ "exception":true
443
503
  }
444
504
  ]
445
505
  }
@@ -798,7 +858,8 @@
798
858
  "UNAVAILABLE",
799
859
  "UNAVAILABLE_PREMIUM",
800
860
  "UNAVAILABLE_RESTRICTED",
801
- "RESERVED"
861
+ "RESERVED",
862
+ "DONT_KNOW"
802
863
  ]
803
864
  },
804
865
  "DomainLimitExceeded":{