aws-sdk-core 2.11.60 → 2.11.61

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2f23fcdf0d913e3b5eec6262db79ec2ee4b88319
4
- data.tar.gz: 3add36c3d0943acfe046d842eae0280dba13b445
3
+ metadata.gz: 3a69d6eb7b1b4f21c47876b3da320698a4a02e6a
4
+ data.tar.gz: 21dcaa7bb4abe35bda0422ff382a0008db40f17d
5
5
  SHA512:
6
- metadata.gz: f370adb2c0b4f047eab2e744d15d4c62b7d32b4ad9f3769babc4d25c0e63c972694521aaaee39f57b12e6edec52e908152e307db4bdf0097252be1ce445ffb7c
7
- data.tar.gz: 9735e5a76be1b81eee8c537d342a943a21cb8bb014f6084f29ede7088acfde90a06639706a674c768ed3a0a025cba42165854f9151f727696d486d9528deaa41
6
+ metadata.gz: aa536ed654294a98e3136f88c5bf392e7d4b765fa78c82f316201d09eae4463d67fd99dfd37075fd7276df45167fc00e39f9ecfdfb6ffc17fbfcd031f062ce41
7
+ data.tar.gz: 194c2fc3611bbc54514ebc82e923a875a2c17496fa3f84f3036290b42c6bf0d7f929ea39212ddef808c5c6d74afaf90d52423ee8a9bdc2ce1715a379fc3637a7
@@ -551,6 +551,24 @@
551
551
  {"shape":"ServiceException"}
552
552
  ]
553
553
  },
554
+ "ResetUserPassword":{
555
+ "name":"ResetUserPassword",
556
+ "http":{
557
+ "method":"POST",
558
+ "requestUri":"/"
559
+ },
560
+ "input":{"shape":"ResetUserPasswordRequest"},
561
+ "output":{"shape":"ResetUserPasswordResult"},
562
+ "errors":[
563
+ {"shape":"DirectoryUnavailableException"},
564
+ {"shape":"UserDoesNotExistException"},
565
+ {"shape":"InvalidPasswordException"},
566
+ {"shape":"UnsupportedOperationException"},
567
+ {"shape":"EntityDoesNotExistException"},
568
+ {"shape":"ClientException"},
569
+ {"shape":"ServiceException"}
570
+ ]
571
+ },
554
572
  "RestoreFromSnapshot":{
555
573
  "name":"RestoreFromSnapshot",
556
574
  "http":{
@@ -960,6 +978,12 @@
960
978
  }
961
979
  },
962
980
  "CreatedDateTime":{"type":"timestamp"},
981
+ "CustomerUserName":{
982
+ "type":"string",
983
+ "max":64,
984
+ "min":1,
985
+ "pattern":"^(?!.*\\\\|.*\"|.*\\/|.*\\[|.*\\]|.*:|.*;|.*\\||.*=|.*,|.*\\+|.*\\*|.*\\?|.*<|.*>|.*@).*$"
986
+ },
963
987
  "DeleteAssociatedConditionalForwarder":{"type":"boolean"},
964
988
  "DeleteConditionalForwarderRequest":{
965
989
  "type":"structure",
@@ -1481,6 +1505,14 @@
1481
1505
  },
1482
1506
  "exception":true
1483
1507
  },
1508
+ "InvalidPasswordException":{
1509
+ "type":"structure",
1510
+ "members":{
1511
+ "Message":{"shape":"ExceptionMessage"},
1512
+ "RequestId":{"shape":"RequestId"}
1513
+ },
1514
+ "exception":true
1515
+ },
1484
1516
  "IpAddr":{
1485
1517
  "type":"string",
1486
1518
  "pattern":"^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$"
@@ -1726,6 +1758,24 @@
1726
1758
  "type":"string",
1727
1759
  "pattern":"^([A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12})$"
1728
1760
  },
1761
+ "ResetUserPasswordRequest":{
1762
+ "type":"structure",
1763
+ "required":[
1764
+ "DirectoryId",
1765
+ "UserName",
1766
+ "NewPassword"
1767
+ ],
1768
+ "members":{
1769
+ "DirectoryId":{"shape":"DirectoryId"},
1770
+ "UserName":{"shape":"CustomerUserName"},
1771
+ "NewPassword":{"shape":"UserPassword"}
1772
+ }
1773
+ },
1774
+ "ResetUserPasswordResult":{
1775
+ "type":"structure",
1776
+ "members":{
1777
+ }
1778
+ },
1729
1779
  "ResourceId":{
1730
1780
  "type":"string",
1731
1781
  "pattern":"^[d]-[0-9a-f]{10}$"
@@ -2077,11 +2127,25 @@
2077
2127
  },
2078
2128
  "UpdateSecurityGroupForDirectoryControllers":{"type":"boolean"},
2079
2129
  "UseSameUsername":{"type":"boolean"},
2130
+ "UserDoesNotExistException":{
2131
+ "type":"structure",
2132
+ "members":{
2133
+ "Message":{"shape":"ExceptionMessage"},
2134
+ "RequestId":{"shape":"RequestId"}
2135
+ },
2136
+ "exception":true
2137
+ },
2080
2138
  "UserName":{
2081
2139
  "type":"string",
2082
2140
  "min":1,
2083
2141
  "pattern":"[a-zA-Z0-9._-]+"
2084
2142
  },
2143
+ "UserPassword":{
2144
+ "type":"string",
2145
+ "max":127,
2146
+ "min":1,
2147
+ "sensitive":true
2148
+ },
2085
2149
  "VerifyTrustRequest":{
2086
2150
  "type":"structure",
2087
2151
  "required":["TrustId"],
@@ -143,6 +143,22 @@
143
143
  {"shape":"ServiceUnavailableException"}
144
144
  ]
145
145
  },
146
+ "CancelJobExecution":{
147
+ "name":"CancelJobExecution",
148
+ "http":{
149
+ "method":"PUT",
150
+ "requestUri":"/things/{thingName}/jobs/{jobId}/cancel"
151
+ },
152
+ "input":{"shape":"CancelJobExecutionRequest"},
153
+ "errors":[
154
+ {"shape":"InvalidRequestException"},
155
+ {"shape":"InvalidStateTransitionException"},
156
+ {"shape":"ResourceNotFoundException"},
157
+ {"shape":"ThrottlingException"},
158
+ {"shape":"ServiceUnavailableException"},
159
+ {"shape":"VersionConflictException"}
160
+ ]
161
+ },
146
162
  "ClearDefaultAuthorizer":{
147
163
  "name":"ClearDefaultAuthorizer",
148
164
  "http":{
@@ -2379,6 +2395,32 @@
2379
2395
  }
2380
2396
  }
2381
2397
  },
2398
+ "CancelJobExecutionRequest":{
2399
+ "type":"structure",
2400
+ "required":[
2401
+ "jobId",
2402
+ "thingName"
2403
+ ],
2404
+ "members":{
2405
+ "jobId":{
2406
+ "shape":"JobId",
2407
+ "location":"uri",
2408
+ "locationName":"jobId"
2409
+ },
2410
+ "thingName":{
2411
+ "shape":"ThingName",
2412
+ "location":"uri",
2413
+ "locationName":"thingName"
2414
+ },
2415
+ "force":{
2416
+ "shape":"ForceFlag",
2417
+ "location":"querystring",
2418
+ "locationName":"force"
2419
+ },
2420
+ "expectedVersion":{"shape":"ExpectedVersion"},
2421
+ "statusDetails":{"shape":"DetailsMap"}
2422
+ }
2423
+ },
2382
2424
  "CancelJobRequest":{
2383
2425
  "type":"structure",
2384
2426
  "required":["jobId"],
@@ -2388,7 +2430,12 @@
2388
2430
  "location":"uri",
2389
2431
  "locationName":"jobId"
2390
2432
  },
2391
- "comment":{"shape":"Comment"}
2433
+ "comment":{"shape":"Comment"},
2434
+ "force":{
2435
+ "shape":"ForceFlag",
2436
+ "location":"querystring",
2437
+ "locationName":"force"
2438
+ }
2392
2439
  }
2393
2440
  },
2394
2441
  "CancelJobResponse":{
@@ -3709,6 +3756,7 @@
3709
3756
  ]
3710
3757
  },
3711
3758
  "ExecutionNumber":{"type":"long"},
3759
+ "ExpectedVersion":{"type":"long"},
3712
3760
  "ExpiresInSec":{
3713
3761
  "type":"long",
3714
3762
  "max":3600,
@@ -3746,6 +3794,7 @@
3746
3794
  "Flag":{"type":"boolean"},
3747
3795
  "ForceDelete":{"type":"boolean"},
3748
3796
  "ForceFlag":{"type":"boolean"},
3797
+ "Forced":{"type":"boolean"},
3749
3798
  "FunctionArn":{"type":"string"},
3750
3799
  "GEMaxResults":{
3751
3800
  "type":"integer",
@@ -4038,6 +4087,7 @@
4038
4087
  "jobId":{"shape":"JobId"},
4039
4088
  "targetSelection":{"shape":"TargetSelection"},
4040
4089
  "status":{"shape":"JobStatus"},
4090
+ "forceCanceled":{"shape":"Forced"},
4041
4091
  "comment":{"shape":"Comment"},
4042
4092
  "targets":{"shape":"JobTargets"},
4043
4093
  "description":{"shape":"JobDescription"},
@@ -4076,12 +4126,14 @@
4076
4126
  "members":{
4077
4127
  "jobId":{"shape":"JobId"},
4078
4128
  "status":{"shape":"JobExecutionStatus"},
4129
+ "forceCanceled":{"shape":"Forced"},
4079
4130
  "statusDetails":{"shape":"JobExecutionStatusDetails"},
4080
4131
  "thingArn":{"shape":"ThingArn"},
4081
4132
  "queuedAt":{"shape":"DateType"},
4082
4133
  "startedAt":{"shape":"DateType"},
4083
4134
  "lastUpdatedAt":{"shape":"DateType"},
4084
- "executionNumber":{"shape":"ExecutionNumber"}
4135
+ "executionNumber":{"shape":"ExecutionNumber"},
4136
+ "versionNumber":{"shape":"VersionNumber"}
4085
4137
  }
4086
4138
  },
4087
4139
  "JobExecutionStatus":{
@@ -6515,6 +6567,7 @@
6515
6567
  "error":{"httpStatusCode":409},
6516
6568
  "exception":true
6517
6569
  },
6570
+ "VersionNumber":{"type":"long"},
6518
6571
  "VersionsLimitExceededException":{
6519
6572
  "type":"structure",
6520
6573
  "members":{
@@ -0,0 +1,266 @@
1
+ {
2
+ "metadata" : {
3
+ "apiVersion" : "2018-04-23",
4
+ "endpointPrefix" : "api.mediatailor",
5
+ "signingName" : "mediatailor",
6
+ "serviceFullName" : "AWS MediaTailor",
7
+ "serviceId" : "MediaTailor",
8
+ "protocol" : "rest-json",
9
+ "jsonVersion" : "1.1",
10
+ "uid" : "mediatailor-2018-04-23",
11
+ "signatureVersion" : "v4",
12
+ "serviceAbbreviation": "MediaTailor"
13
+ },
14
+ "operations" : {
15
+ "DeletePlaybackConfiguration" : {
16
+ "name" : "DeletePlaybackConfiguration",
17
+ "http" : {
18
+ "method" : "DELETE",
19
+ "requestUri" : "/prod/playbackConfiguration/{Name}",
20
+ "responseCode" : 204
21
+ },
22
+ "input" : {
23
+ "shape" : "DeletePlaybackConfigurationRequest"
24
+ },
25
+ "errors" : [ ]
26
+ },
27
+ "GetPlaybackConfiguration" : {
28
+ "name" : "GetPlaybackConfiguration",
29
+ "http" : {
30
+ "method" : "GET",
31
+ "requestUri" : "/prod/playbackConfiguration/{Name}",
32
+ "responseCode" : 200
33
+ },
34
+ "input" : {
35
+ "shape" : "GetPlaybackConfigurationRequest"
36
+ },
37
+ "output" : {
38
+ "shape" : "GetPlaybackConfigurationResponse"
39
+ },
40
+ "errors" : [ ]
41
+ },
42
+ "ListPlaybackConfigurations" : {
43
+ "name" : "ListPlaybackConfigurations",
44
+ "http" : {
45
+ "method" : "GET",
46
+ "requestUri" : "/prod/playbackConfigurations",
47
+ "responseCode" : 200
48
+ },
49
+ "input" : {
50
+ "shape" : "ListPlaybackConfigurationsRequest"
51
+ },
52
+ "output" : {
53
+ "shape" : "ListPlaybackConfigurationsResponse"
54
+ },
55
+ "errors" : [ ]
56
+ },
57
+ "PutPlaybackConfiguration" : {
58
+ "name" : "PutPlaybackConfiguration",
59
+ "http" : {
60
+ "method" : "PUT",
61
+ "requestUri" : "/prod/playbackConfiguration",
62
+ "responseCode" : 200
63
+ },
64
+ "input" : {
65
+ "shape" : "PutPlaybackConfigurationRequest"
66
+ },
67
+ "output" : {
68
+ "shape" : "PutPlaybackConfigurationResponse"
69
+ },
70
+ "errors" : [ ]
71
+ }
72
+ },
73
+ "shapes" : {
74
+ "CdnConfiguration" : {
75
+ "type" : "structure",
76
+ "members" : {
77
+ "AdSegmentUrlPrefix" : {
78
+ "shape" : "__string"
79
+ },
80
+ "ContentSegmentUrlPrefix" : {
81
+ "shape" : "__string"
82
+ }
83
+ }
84
+ },
85
+ "HlsConfiguration": {
86
+ "type" : "structure",
87
+ "members" : {
88
+ "ManifestEndpointPrefix" : {
89
+ "shape" : "__string"
90
+ }
91
+ }
92
+ },
93
+ "DeletePlaybackConfigurationRequest" : {
94
+ "type" : "structure",
95
+ "members" : {
96
+ "Name" : {
97
+ "shape" : "__string",
98
+ "location" : "uri",
99
+ "locationName" : "Name"
100
+ }
101
+ },
102
+ "required" : [ "Name" ]
103
+ },
104
+ "GetPlaybackConfigurationRequest" : {
105
+ "type" : "structure",
106
+ "members" : {
107
+ "Name" : {
108
+ "shape" : "__string",
109
+ "location" : "uri",
110
+ "locationName" : "Name"
111
+ }
112
+ },
113
+ "required" : [ "Name" ]
114
+ },
115
+ "GetPlaybackConfigurationResponse" : {
116
+ "type" : "structure",
117
+ "members" : {
118
+ "AdDecisionServerUrl" : {
119
+ "shape" : "__string"
120
+ },
121
+ "CdnConfiguration" : {
122
+ "shape" : "CdnConfiguration"
123
+ },
124
+ "HlsConfiguration" : {
125
+ "shape" : "HlsConfiguration"
126
+ },
127
+ "Name" : {
128
+ "shape" : "__string"
129
+ },
130
+ "PlaybackEndpointPrefix" : {
131
+ "shape" : "__string"
132
+ },
133
+ "SessionInitializationEndpointPrefix" : {
134
+ "shape" : "__string"
135
+ },
136
+ "SlateAdUrl" : {
137
+ "shape" : "__string"
138
+ },
139
+ "VideoContentSourceUrl" : {
140
+ "shape" : "__string"
141
+ }
142
+ }
143
+ },
144
+ "PlaybackConfiguration" : {
145
+ "type" : "structure",
146
+ "members" : {
147
+ "AdDecisionServerUrl" : {
148
+ "shape" : "__string"
149
+ },
150
+ "CdnConfiguration" : {
151
+ "shape" : "CdnConfiguration"
152
+ },
153
+ "Name" : {
154
+ "shape" : "__string"
155
+ },
156
+ "SlateAdUrl" : {
157
+ "shape" : "__string"
158
+ },
159
+ "VideoContentSourceUrl" : {
160
+ "shape" : "__string"
161
+ }
162
+ }
163
+ },
164
+ "ListPlaybackConfigurationsRequest" : {
165
+ "type" : "structure",
166
+ "members" : {
167
+ "MaxResults" : {
168
+ "shape" : "__integerMin1Max100",
169
+ "location" : "querystring",
170
+ "locationName" : "MaxResults"
171
+ },
172
+ "NextToken" : {
173
+ "shape" : "__string",
174
+ "location" : "querystring",
175
+ "locationName" : "NextToken"
176
+ }
177
+ }
178
+ },
179
+ "ListPlaybackConfigurationsResponse" : {
180
+ "type" : "structure",
181
+ "members" : {
182
+ "Items" : {
183
+ "shape" : "__listOfPlaybackConfigurations"
184
+ },
185
+ "NextToken" : {
186
+ "shape" : "__string"
187
+ }
188
+ }
189
+ },
190
+ "PutPlaybackConfigurationRequest" : {
191
+ "type" : "structure",
192
+ "members" : {
193
+ "AdDecisionServerUrl" : {
194
+ "shape" : "__string"
195
+ },
196
+ "CdnConfiguration" : {
197
+ "shape" : "CdnConfiguration"
198
+ },
199
+ "Name" : {
200
+ "shape" : "__string"
201
+ },
202
+ "SlateAdUrl" : {
203
+ "shape" : "__string"
204
+ },
205
+ "VideoContentSourceUrl" : {
206
+ "shape" : "__string"
207
+ }
208
+ }
209
+ },
210
+ "PutPlaybackConfigurationResponse" : {
211
+ "type" : "structure",
212
+ "members" : {
213
+ "AdDecisionServerUrl" : {
214
+ "shape" : "__string"
215
+ },
216
+ "CdnConfiguration" : {
217
+ "shape" : "CdnConfiguration"
218
+ },
219
+ "HlsConfiguration" : {
220
+ "shape" : "HlsConfiguration"
221
+ },
222
+ "Name" : {
223
+ "shape" : "__string"
224
+ },
225
+ "PlaybackEndpointPrefix" : {
226
+ "shape" : "__string"
227
+ },
228
+ "SessionInitializationEndpointPrefix" : {
229
+ "shape" : "__string"
230
+ },
231
+ "SlateAdUrl" : {
232
+ "shape" : "__string"
233
+ },
234
+ "VideoContentSourceUrl" : {
235
+ "shape" : "__string"
236
+ }
237
+ }
238
+ },
239
+ "__boolean" : {
240
+ "type" : "boolean"
241
+ },
242
+ "__double" : {
243
+ "type" : "double"
244
+ },
245
+ "__integer" : {
246
+ "type" : "integer"
247
+ },
248
+ "__listOfPlaybackConfigurations" : {
249
+ "type" : "list",
250
+ "member" : {
251
+ "shape" : "PlaybackConfiguration"
252
+ }
253
+ },
254
+ "__long" : {
255
+ "type" : "long"
256
+ },
257
+ "__string" : {
258
+ "type" : "string"
259
+ },
260
+ "__integerMin1Max100" : {
261
+ "type": "integer",
262
+ "min": 1,
263
+ "max": 100
264
+ }
265
+ }
266
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ "pagination" : { }
3
+ }
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "version":"2.0",
3
3
  "metadata":{
4
- "uid":"sns-2010-03-31",
5
4
  "apiVersion":"2010-03-31",
6
5
  "endpointPrefix":"sns",
7
6
  "protocol":"query",
8
7
  "serviceAbbreviation":"Amazon SNS",
9
8
  "serviceFullName":"Amazon Simple Notification Service",
9
+ "serviceId":"SNS",
10
10
  "signatureVersion":"v4",
11
+ "uid":"sns-2010-03-31",
11
12
  "xmlNamespace":"http://sns.amazonaws.com/doc/2010-03-31/"
12
13
  },
13
14
  "operations":{
@@ -458,6 +459,7 @@
458
459
  "input":{"shape":"SetSubscriptionAttributesInput"},
459
460
  "errors":[
460
461
  {"shape":"InvalidParameterException"},
462
+ {"shape":"FilterPolicyLimitExceededException"},
461
463
  {"shape":"InternalErrorException"},
462
464
  {"shape":"NotFoundException"},
463
465
  {"shape":"AuthorizationErrorException"}
@@ -490,6 +492,7 @@
490
492
  },
491
493
  "errors":[
492
494
  {"shape":"SubscriptionLimitExceededException"},
495
+ {"shape":"FilterPolicyLimitExceededException"},
493
496
  {"shape":"InvalidParameterException"},
494
497
  {"shape":"InternalErrorException"},
495
498
  {"shape":"NotFoundException"},
@@ -670,6 +673,18 @@
670
673
  },
671
674
  "exception":true
672
675
  },
676
+ "FilterPolicyLimitExceededException":{
677
+ "type":"structure",
678
+ "members":{
679
+ "message":{"shape":"string"}
680
+ },
681
+ "error":{
682
+ "code":"FilterPolicyLimitExceeded",
683
+ "httpStatusCode":403,
684
+ "senderFault":true
685
+ },
686
+ "exception":true
687
+ },
673
688
  "GetEndpointAttributesInput":{
674
689
  "type":"structure",
675
690
  "required":["EndpointArn"],
@@ -1035,7 +1050,9 @@
1035
1050
  "members":{
1036
1051
  "TopicArn":{"shape":"topicARN"},
1037
1052
  "Protocol":{"shape":"protocol"},
1038
- "Endpoint":{"shape":"endpoint"}
1053
+ "Endpoint":{"shape":"endpoint"},
1054
+ "Attributes":{"shape":"SubscriptionAttributesMap"},
1055
+ "ReturnSubscriptionArn":{"shape":"boolean"}
1039
1056
  }
1040
1057
  },
1041
1058
  "SubscribeResponse":{
@@ -26,4 +26,4 @@
26
26
  "result_key": "Topics"
27
27
  }
28
28
  }
29
- }
29
+ }
@@ -97,6 +97,15 @@
97
97
  "us-west-2" : { }
98
98
  }
99
99
  },
100
+ "api.mediatailor" : {
101
+ "endpoints" : {
102
+ "ap-northeast-1" : { },
103
+ "ap-southeast-1" : { },
104
+ "ap-southeast-2" : { },
105
+ "eu-west-1" : { },
106
+ "us-east-1" : { }
107
+ }
108
+ },
100
109
  "api.pricing" : {
101
110
  "defaults" : {
102
111
  "credentialScope" : {
@@ -813,6 +822,7 @@
813
822
  },
814
823
  "elasticfilesystem" : {
815
824
  "endpoints" : {
825
+ "ap-northeast-2" : { },
816
826
  "ap-southeast-2" : { },
817
827
  "eu-central-1" : { },
818
828
  "eu-west-1" : { },
@@ -1565,6 +1575,7 @@
1565
1575
  },
1566
1576
  "runtime.sagemaker" : {
1567
1577
  "endpoints" : {
1578
+ "ap-northeast-1" : { },
1568
1579
  "eu-west-1" : { },
1569
1580
  "us-east-1" : { },
1570
1581
  "us-east-2" : { },
@@ -1629,6 +1640,7 @@
1629
1640
  },
1630
1641
  "sagemaker" : {
1631
1642
  "endpoints" : {
1643
+ "ap-northeast-1" : { },
1632
1644
  "eu-west-1" : { },
1633
1645
  "us-east-1" : { },
1634
1646
  "us-east-2" : { },
@@ -2731,4 +2743,4 @@
2731
2743
  }
2732
2744
  } ],
2733
2745
  "version" : 3
2734
- }
2746
+ }
@@ -119,6 +119,7 @@ module Aws
119
119
  MediaPackage
120
120
  MediaStore
121
121
  MediaStoreData
122
+ MediaTailor
122
123
  MigrationHub
123
124
  Mobile
124
125
  Neptune
@@ -0,0 +1,5 @@
1
+ Aws.add_service(:MediaTailor, {
2
+ api: "#{Aws::API_DIR}/mediatailor/2018-04-23/api-2.json",
3
+ docs: "#{Aws::API_DIR}/mediatailor/2018-04-23/docs-2.json",
4
+ paginators: "#{Aws::API_DIR}/mediatailor/2018-04-23/paginators-1.json",
5
+ })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.60'
2
+ VERSION = '2.11.61'
3
3
  end
@@ -382,6 +382,10 @@
382
382
  "models": "mediastore-data/2017-09-01",
383
383
  "endpoint": "data.mediastore"
384
384
  },
385
+ "MediaTailor": {
386
+ "models": "mediatailor/2018-04-23",
387
+ "endpoint": "api.mediatailor"
388
+ },
385
389
  "MigrationHub": {
386
390
  "models": "AWSMigrationHub/2017-05-31",
387
391
  "endpoint": "mgh"
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.11.60
4
+ version: 2.11.61
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: 2018-05-31 00:00:00.000000000 Z
11
+ date: 2018-06-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -375,6 +375,8 @@ files:
375
375
  - apis/mediastore/2017-09-01/api-2.json
376
376
  - apis/mediastore/2017-09-01/examples-1.json
377
377
  - apis/mediastore/2017-09-01/paginators-1.json
378
+ - apis/mediatailor/2018-04-23/api-2.json
379
+ - apis/mediatailor/2018-04-23/paginators-1.json
378
380
  - apis/meteringmarketplace/2016-01-14/api-2.json
379
381
  - apis/meteringmarketplace/2016-01-14/examples-1.json
380
382
  - apis/mobile/2017-07-01/api-2.json
@@ -691,6 +693,7 @@ files:
691
693
  - lib/aws-sdk-core/mediapackage.rb
692
694
  - lib/aws-sdk-core/mediastore.rb
693
695
  - lib/aws-sdk-core/mediastoredata.rb
696
+ - lib/aws-sdk-core/mediatailor.rb
694
697
  - lib/aws-sdk-core/migrationhub.rb
695
698
  - lib/aws-sdk-core/mobile.rb
696
699
  - lib/aws-sdk-core/mq.rb