aws-sdk-core 2.6.26 → 2.6.27

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7bfa98ddbc0810fb28a72f45cb955acfdd0620ed
4
- data.tar.gz: 252187ce0184dc9181200be039e0495c99b31b7f
3
+ metadata.gz: 3cbd121f229f2fc66ebb725978acf027ccbca19f
4
+ data.tar.gz: 7b9f71acb28dee63891b20d93dda5e615734fc8f
5
5
  SHA512:
6
- metadata.gz: 5697a401ec999fc0ae57c1f3e7a1117d72dd7df5b6f5a925788410903b04a2ad245b02d4ff572141eb26d2916c32c4ab54d025cf724bd687824ef98aa696b0fd
7
- data.tar.gz: 611a487dd52f76ddafd940b99fc8e3bb4731e28d6dd6609f464baaa6215291311714e0f24246a1ec7fff14ecdbbbccde8e76f45e0e24a684d035bc75af084b43
6
+ metadata.gz: 3a1fb37d8e81b58b1295655243e75f63a7d2bbc5223ed5e7ff3a199579342729070b0d6b9a618ea6bd9ba250f0852336251f7893514784d2f2fb6edcdbc59c52
7
+ data.tar.gz: 635ebf4975069dbd21e75009c4a7cec45816ecabe98f13feb79f162cac844cb10a2042383ae796a2aaa53b68ba68c29c0ac2482020f5d4818e3d4945ecf90aec
@@ -93,6 +93,22 @@
93
93
  ],
94
94
  "idempotent":true
95
95
  },
96
+ "GetEventSelectors":{
97
+ "name":"GetEventSelectors",
98
+ "http":{
99
+ "method":"POST",
100
+ "requestUri":"/"
101
+ },
102
+ "input":{"shape":"GetEventSelectorsRequest"},
103
+ "output":{"shape":"GetEventSelectorsResponse"},
104
+ "errors":[
105
+ {"shape":"TrailNotFoundException"},
106
+ {"shape":"InvalidTrailNameException"},
107
+ {"shape":"UnsupportedOperationException"},
108
+ {"shape":"OperationNotPermittedException"}
109
+ ],
110
+ "idempotent":true
111
+ },
96
112
  "GetTrailStatus":{
97
113
  "name":"GetTrailStatus",
98
114
  "http":{
@@ -158,6 +174,24 @@
158
174
  ],
159
175
  "idempotent":true
160
176
  },
177
+ "PutEventSelectors":{
178
+ "name":"PutEventSelectors",
179
+ "http":{
180
+ "method":"POST",
181
+ "requestUri":"/"
182
+ },
183
+ "input":{"shape":"PutEventSelectorsRequest"},
184
+ "output":{"shape":"PutEventSelectorsResponse"},
185
+ "errors":[
186
+ {"shape":"TrailNotFoundException"},
187
+ {"shape":"InvalidTrailNameException"},
188
+ {"shape":"InvalidHomeRegionException"},
189
+ {"shape":"InvalidEventSelectorsException"},
190
+ {"shape":"UnsupportedOperationException"},
191
+ {"shape":"OperationNotPermittedException"}
192
+ ],
193
+ "idempotent":true
194
+ },
161
195
  "RemoveTags":{
162
196
  "name":"RemoveTags",
163
197
  "http":{
@@ -308,6 +342,21 @@
308
342
  "KmsKeyId":{"shape":"String"}
309
343
  }
310
344
  },
345
+ "DataResource":{
346
+ "type":"structure",
347
+ "members":{
348
+ "Type":{"shape":"String"},
349
+ "Values":{"shape":"DataResourceValues"}
350
+ }
351
+ },
352
+ "DataResourceValues":{
353
+ "type":"list",
354
+ "member":{"shape":"String"}
355
+ },
356
+ "DataResources":{
357
+ "type":"list",
358
+ "member":{"shape":"DataResource"}
359
+ },
311
360
  "Date":{"type":"timestamp"},
312
361
  "DeleteTrailRequest":{
313
362
  "type":"structure",
@@ -340,15 +389,41 @@
340
389
  "EventId":{"shape":"String"},
341
390
  "EventName":{"shape":"String"},
342
391
  "EventTime":{"shape":"Date"},
392
+ "EventSource":{"shape":"String"},
343
393
  "Username":{"shape":"String"},
344
394
  "Resources":{"shape":"ResourceList"},
345
395
  "CloudTrailEvent":{"shape":"String"}
346
396
  }
347
397
  },
398
+ "EventSelector":{
399
+ "type":"structure",
400
+ "members":{
401
+ "ReadWriteType":{"shape":"ReadWriteType"},
402
+ "IncludeManagementEvents":{"shape":"Boolean"},
403
+ "DataResources":{"shape":"DataResources"}
404
+ }
405
+ },
406
+ "EventSelectors":{
407
+ "type":"list",
408
+ "member":{"shape":"EventSelector"}
409
+ },
348
410
  "EventsList":{
349
411
  "type":"list",
350
412
  "member":{"shape":"Event"}
351
413
  },
414
+ "GetEventSelectorsRequest":{
415
+ "type":"structure",
416
+ "members":{
417
+ "TrailName":{"shape":"String"}
418
+ }
419
+ },
420
+ "GetEventSelectorsResponse":{
421
+ "type":"structure",
422
+ "members":{
423
+ "TrailARN":{"shape":"String"},
424
+ "EventSelectors":{"shape":"EventSelectors"}
425
+ }
426
+ },
352
427
  "GetTrailStatusRequest":{
353
428
  "type":"structure",
354
429
  "required":["Name"],
@@ -408,6 +483,12 @@
408
483
  },
409
484
  "exception":true
410
485
  },
486
+ "InvalidEventSelectorsException":{
487
+ "type":"structure",
488
+ "members":{
489
+ },
490
+ "exception":true
491
+ },
411
492
  "InvalidHomeRegionException":{
412
493
  "type":"structure",
413
494
  "members":{
@@ -553,7 +634,8 @@
553
634
  "EventName",
554
635
  "Username",
555
636
  "ResourceType",
556
- "ResourceName"
637
+ "ResourceName",
638
+ "EventSource"
557
639
  ]
558
640
  },
559
641
  "LookupAttributesList":{
@@ -608,6 +690,28 @@
608
690
  "type":"list",
609
691
  "member":{"shape":"PublicKey"}
610
692
  },
693
+ "PutEventSelectorsRequest":{
694
+ "type":"structure",
695
+ "members":{
696
+ "TrailName":{"shape":"String"},
697
+ "EventSelectors":{"shape":"EventSelectors"}
698
+ }
699
+ },
700
+ "PutEventSelectorsResponse":{
701
+ "type":"structure",
702
+ "members":{
703
+ "TrailARN":{"shape":"String"},
704
+ "EventSelectors":{"shape":"EventSelectors"}
705
+ }
706
+ },
707
+ "ReadWriteType":{
708
+ "type":"string",
709
+ "enum":[
710
+ "ReadOnly",
711
+ "WriteOnly",
712
+ "All"
713
+ ]
714
+ },
611
715
  "RemoveTagsRequest":{
612
716
  "type":"structure",
613
717
  "required":["ResourceId"],
@@ -726,7 +830,8 @@
726
830
  "LogFileValidationEnabled":{"shape":"Boolean"},
727
831
  "CloudWatchLogsLogGroupArn":{"shape":"String"},
728
832
  "CloudWatchLogsRoleArn":{"shape":"String"},
729
- "KmsKeyId":{"shape":"String"}
833
+ "KmsKeyId":{"shape":"String"},
834
+ "HasCustomEventSelectors":{"shape":"Boolean"}
730
835
  }
731
836
  },
732
837
  "TrailAlreadyExistsException":{
@@ -536,6 +536,7 @@
536
536
  "members":{
537
537
  "containerInstanceArn":{"shape":"String"},
538
538
  "ec2InstanceId":{"shape":"String"},
539
+ "version":{"shape":"Long"},
539
540
  "versionInfo":{"shape":"VersionInfo"},
540
541
  "remainingResources":{"shape":"Resources"},
541
542
  "registeredResources":{"shape":"Resources"},
@@ -1247,6 +1248,7 @@
1247
1248
  "desiredStatus":{"shape":"String"},
1248
1249
  "containers":{"shape":"Containers"},
1249
1250
  "startedBy":{"shape":"String"},
1251
+ "version":{"shape":"Long"},
1250
1252
  "stoppedReason":{"shape":"String"},
1251
1253
  "createdAt":{"shape":"Timestamp"},
1252
1254
  "startedAt":{"shape":"Timestamp"},
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.6.26'
2
+ VERSION = '2.6.27'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.26
4
+ version: 2.6.27
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-18 00:00:00.000000000 Z
11
+ date: 2016-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath