aws-sdk-core 2.9.6 → 2.9.7

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: 00acc40335b373489dd1132640c743fdb1f6b6d6
4
- data.tar.gz: 81c7ff0529269b294782a557b29c863f4d0086e4
3
+ metadata.gz: 06203db633f6ec6ff1f82c0091117810f248b8bf
4
+ data.tar.gz: 395734707658246a09ebf796d6a8165cdefd060d
5
5
  SHA512:
6
- metadata.gz: 5b0e9eb32901b30958a710a832b7c20a75b5e78dc31818de0c5224f4c36f6a2bc946c10cb245a026b8e2cff627d17776e5b3d43b367f4cf8ff5cc1253de620ec
7
- data.tar.gz: 12d1f71e551d9459e429b86ff3aebf551ca2ed9352b6cb122f1317738320db688b259ab53feae48c30d664c4244dc51ef8a60809925173537cd5a2f33b965290
6
+ metadata.gz: 031534840c79a9bedeb0cbbec8cf2379856bf60298d2992b6e81b4c4c1b719c78a90772941664eba69ad6565fa1ca715e84be5d1550d9fd81c7a45420520e7ef
7
+ data.tar.gz: df19de8970f10c43ca49c74ea7e7c2f9e6b85ca3265a58c51488550dac29d4b966f76f3ec5f551a2fce2a189ca4521930e18510008b939f8588d92f9d8a83bc1
@@ -150,6 +150,23 @@
150
150
  {"shape":"TooManyRequestsException"}
151
151
  ]
152
152
  },
153
+ "CreateRequestValidator":{
154
+ "name":"CreateRequestValidator",
155
+ "http":{
156
+ "method":"POST",
157
+ "requestUri":"/restapis/{restapi_id}/requestvalidators",
158
+ "responseCode":201
159
+ },
160
+ "input":{"shape":"CreateRequestValidatorRequest"},
161
+ "output":{"shape":"RequestValidator"},
162
+ "errors":[
163
+ {"shape":"BadRequestException"},
164
+ {"shape":"UnauthorizedException"},
165
+ {"shape":"NotFoundException"},
166
+ {"shape":"LimitExceededException"},
167
+ {"shape":"TooManyRequestsException"}
168
+ ]
169
+ },
153
170
  "CreateResource":{
154
171
  "name":"CreateResource",
155
172
  "http":{
@@ -435,6 +452,22 @@
435
452
  {"shape":"ConflictException"}
436
453
  ]
437
454
  },
455
+ "DeleteRequestValidator":{
456
+ "name":"DeleteRequestValidator",
457
+ "http":{
458
+ "method":"DELETE",
459
+ "requestUri":"/restapis/{restapi_id}/requestvalidators/{requestvalidator_id}",
460
+ "responseCode":202
461
+ },
462
+ "input":{"shape":"DeleteRequestValidatorRequest"},
463
+ "errors":[
464
+ {"shape":"UnauthorizedException"},
465
+ {"shape":"NotFoundException"},
466
+ {"shape":"TooManyRequestsException"},
467
+ {"shape":"BadRequestException"},
468
+ {"shape":"ConflictException"}
469
+ ]
470
+ },
438
471
  "DeleteResource":{
439
472
  "name":"DeleteResource",
440
473
  "http":{
@@ -917,6 +950,35 @@
917
950
  {"shape":"TooManyRequestsException"}
918
951
  ]
919
952
  },
953
+ "GetRequestValidator":{
954
+ "name":"GetRequestValidator",
955
+ "http":{
956
+ "method":"GET",
957
+ "requestUri":"/restapis/{restapi_id}/requestvalidators/{requestvalidator_id}"
958
+ },
959
+ "input":{"shape":"GetRequestValidatorRequest"},
960
+ "output":{"shape":"RequestValidator"},
961
+ "errors":[
962
+ {"shape":"UnauthorizedException"},
963
+ {"shape":"NotFoundException"},
964
+ {"shape":"TooManyRequestsException"}
965
+ ]
966
+ },
967
+ "GetRequestValidators":{
968
+ "name":"GetRequestValidators",
969
+ "http":{
970
+ "method":"GET",
971
+ "requestUri":"/restapis/{restapi_id}/requestvalidators"
972
+ },
973
+ "input":{"shape":"GetRequestValidatorsRequest"},
974
+ "output":{"shape":"RequestValidators"},
975
+ "errors":[
976
+ {"shape":"BadRequestException"},
977
+ {"shape":"UnauthorizedException"},
978
+ {"shape":"NotFoundException"},
979
+ {"shape":"TooManyRequestsException"}
980
+ ]
981
+ },
920
982
  "GetResource":{
921
983
  "name":"GetResource",
922
984
  "http":{
@@ -1515,6 +1577,21 @@
1515
1577
  {"shape":"TooManyRequestsException"}
1516
1578
  ]
1517
1579
  },
1580
+ "UpdateRequestValidator":{
1581
+ "name":"UpdateRequestValidator",
1582
+ "http":{
1583
+ "method":"PATCH",
1584
+ "requestUri":"/restapis/{restapi_id}/requestvalidators/{requestvalidator_id}"
1585
+ },
1586
+ "input":{"shape":"UpdateRequestValidatorRequest"},
1587
+ "output":{"shape":"RequestValidator"},
1588
+ "errors":[
1589
+ {"shape":"UnauthorizedException"},
1590
+ {"shape":"NotFoundException"},
1591
+ {"shape":"BadRequestException"},
1592
+ {"shape":"TooManyRequestsException"}
1593
+ ]
1594
+ },
1518
1595
  "UpdateResource":{
1519
1596
  "name":"UpdateResource",
1520
1597
  "http":{
@@ -1902,6 +1979,20 @@
1902
1979
  "contentType":{"shape":"String"}
1903
1980
  }
1904
1981
  },
1982
+ "CreateRequestValidatorRequest":{
1983
+ "type":"structure",
1984
+ "required":["restApiId"],
1985
+ "members":{
1986
+ "restApiId":{
1987
+ "shape":"String",
1988
+ "location":"uri",
1989
+ "locationName":"restapi_id"
1990
+ },
1991
+ "name":{"shape":"String"},
1992
+ "validateRequestBody":{"shape":"Boolean"},
1993
+ "validateRequestParameters":{"shape":"Boolean"}
1994
+ }
1995
+ },
1905
1996
  "CreateResourceRequest":{
1906
1997
  "type":"structure",
1907
1998
  "required":[
@@ -2243,6 +2334,25 @@
2243
2334
  }
2244
2335
  }
2245
2336
  },
2337
+ "DeleteRequestValidatorRequest":{
2338
+ "type":"structure",
2339
+ "required":[
2340
+ "restApiId",
2341
+ "requestValidatorId"
2342
+ ],
2343
+ "members":{
2344
+ "restApiId":{
2345
+ "shape":"String",
2346
+ "location":"uri",
2347
+ "locationName":"restapi_id"
2348
+ },
2349
+ "requestValidatorId":{
2350
+ "shape":"String",
2351
+ "location":"uri",
2352
+ "locationName":"requestvalidator_id"
2353
+ }
2354
+ }
2355
+ },
2246
2356
  "DeleteResourceRequest":{
2247
2357
  "type":"structure",
2248
2358
  "required":[
@@ -3026,6 +3136,46 @@
3026
3136
  }
3027
3137
  }
3028
3138
  },
3139
+ "GetRequestValidatorRequest":{
3140
+ "type":"structure",
3141
+ "required":[
3142
+ "restApiId",
3143
+ "requestValidatorId"
3144
+ ],
3145
+ "members":{
3146
+ "restApiId":{
3147
+ "shape":"String",
3148
+ "location":"uri",
3149
+ "locationName":"restapi_id"
3150
+ },
3151
+ "requestValidatorId":{
3152
+ "shape":"String",
3153
+ "location":"uri",
3154
+ "locationName":"requestvalidator_id"
3155
+ }
3156
+ }
3157
+ },
3158
+ "GetRequestValidatorsRequest":{
3159
+ "type":"structure",
3160
+ "required":["restApiId"],
3161
+ "members":{
3162
+ "restApiId":{
3163
+ "shape":"String",
3164
+ "location":"uri",
3165
+ "locationName":"restapi_id"
3166
+ },
3167
+ "position":{
3168
+ "shape":"String",
3169
+ "location":"querystring",
3170
+ "locationName":"position"
3171
+ },
3172
+ "limit":{
3173
+ "shape":"NullableInteger",
3174
+ "location":"querystring",
3175
+ "locationName":"limit"
3176
+ }
3177
+ }
3178
+ },
3029
3179
  "GetResourceRequest":{
3030
3180
  "type":"structure",
3031
3181
  "required":[
@@ -3464,6 +3614,10 @@
3464
3614
  "type":"list",
3465
3615
  "member":{"shape":"PatchOperation"}
3466
3616
  },
3617
+ "ListOfRequestValidator":{
3618
+ "type":"list",
3619
+ "member":{"shape":"RequestValidator"}
3620
+ },
3467
3621
  "ListOfResource":{
3468
3622
  "type":"list",
3469
3623
  "member":{"shape":"Resource"}
@@ -3562,6 +3716,7 @@
3562
3716
  "authorizationType":{"shape":"String"},
3563
3717
  "authorizerId":{"shape":"String"},
3564
3718
  "apiKeyRequired":{"shape":"NullableBoolean"},
3719
+ "requestValidatorId":{"shape":"String"},
3565
3720
  "operationName":{"shape":"String"},
3566
3721
  "requestParameters":{"shape":"MapOfStringToBoolean"},
3567
3722
  "requestModels":{"shape":"MapOfStringToString"},
@@ -3758,7 +3913,8 @@
3758
3913
  "apiKeyRequired":{"shape":"Boolean"},
3759
3914
  "operationName":{"shape":"String"},
3760
3915
  "requestParameters":{"shape":"MapOfStringToBoolean"},
3761
- "requestModels":{"shape":"MapOfStringToString"}
3916
+ "requestModels":{"shape":"MapOfStringToString"},
3917
+ "requestValidatorId":{"shape":"String"}
3762
3918
  }
3763
3919
  },
3764
3920
  "PutMethodResponseRequest":{
@@ -3847,6 +4003,25 @@
3847
4003
  "period":{"shape":"QuotaPeriodType"}
3848
4004
  }
3849
4005
  },
4006
+ "RequestValidator":{
4007
+ "type":"structure",
4008
+ "members":{
4009
+ "id":{"shape":"String"},
4010
+ "name":{"shape":"String"},
4011
+ "validateRequestBody":{"shape":"Boolean"},
4012
+ "validateRequestParameters":{"shape":"Boolean"}
4013
+ }
4014
+ },
4015
+ "RequestValidators":{
4016
+ "type":"structure",
4017
+ "members":{
4018
+ "position":{"shape":"String"},
4019
+ "items":{
4020
+ "shape":"ListOfRequestValidator",
4021
+ "locationName":"item"
4022
+ }
4023
+ }
4024
+ },
3850
4025
  "Resource":{
3851
4026
  "type":"structure",
3852
4027
  "members":{
@@ -4381,6 +4556,26 @@
4381
4556
  "patchOperations":{"shape":"ListOfPatchOperation"}
4382
4557
  }
4383
4558
  },
4559
+ "UpdateRequestValidatorRequest":{
4560
+ "type":"structure",
4561
+ "required":[
4562
+ "restApiId",
4563
+ "requestValidatorId"
4564
+ ],
4565
+ "members":{
4566
+ "restApiId":{
4567
+ "shape":"String",
4568
+ "location":"uri",
4569
+ "locationName":"restapi_id"
4570
+ },
4571
+ "requestValidatorId":{
4572
+ "shape":"String",
4573
+ "location":"uri",
4574
+ "locationName":"requestvalidator_id"
4575
+ },
4576
+ "patchOperations":{"shape":"ListOfPatchOperation"}
4577
+ }
4578
+ },
4384
4579
  "UpdateResourceRequest":{
4385
4580
  "type":"structure",
4386
4581
  "required":[
@@ -355,6 +355,7 @@
355
355
  "maxvCpus":{"shape":"Integer"},
356
356
  "desiredvCpus":{"shape":"Integer"},
357
357
  "instanceTypes":{"shape":"StringList"},
358
+ "imageId":{"shape":"String"},
358
359
  "subnets":{"shape":"StringList"},
359
360
  "securityGroupIds":{"shape":"StringList"},
360
361
  "ec2KeyPair":{"shape":"String"},
@@ -893,7 +893,8 @@
893
893
  "Name":{"shape":"NonZeroAndMaxString"},
894
894
  "GameProperties":{"shape":"GamePropertyList"},
895
895
  "CreatorId":{"shape":"NonZeroAndMaxString"},
896
- "GameSessionId":{"shape":"IdStringModel"}
896
+ "GameSessionId":{"shape":"IdStringModel"},
897
+ "IdempotencyToken":{"shape":"IdStringModel"}
897
898
  }
898
899
  },
899
900
  "CreateGameSessionOutput":{
@@ -908,6 +909,7 @@
908
909
  "members":{
909
910
  "Name":{"shape":"GameSessionQueueName"},
910
911
  "TimeoutInSeconds":{"shape":"WholeNumber"},
912
+ "PlayerLatencyPolicies":{"shape":"PlayerLatencyPolicyList"},
911
913
  "Destinations":{"shape":"GameSessionQueueDestinationList"}
912
914
  }
913
915
  },
@@ -1508,11 +1510,15 @@
1508
1510
  "GameProperties":{"shape":"GamePropertyList"},
1509
1511
  "MaximumPlayerSessionCount":{"shape":"WholeNumber"},
1510
1512
  "GameSessionName":{"shape":"NonZeroAndMaxString"},
1513
+ "GameSessionId":{"shape":"NonZeroAndMaxString"},
1511
1514
  "GameSessionArn":{"shape":"NonZeroAndMaxString"},
1512
1515
  "GameSessionRegion":{"shape":"NonZeroAndMaxString"},
1513
1516
  "PlayerLatencies":{"shape":"PlayerLatencyList"},
1514
1517
  "StartTime":{"shape":"Timestamp"},
1515
- "EndTime":{"shape":"Timestamp"}
1518
+ "EndTime":{"shape":"Timestamp"},
1519
+ "IpAddress":{"shape":"IpAddress"},
1520
+ "Port":{"shape":"PortNumber"},
1521
+ "PlacedPlayerSessions":{"shape":"PlacedPlayerSessionList"}
1516
1522
  }
1517
1523
  },
1518
1524
  "GameSessionPlacementState":{
@@ -1528,7 +1534,9 @@
1528
1534
  "type":"structure",
1529
1535
  "members":{
1530
1536
  "Name":{"shape":"GameSessionQueueName"},
1537
+ "GameSessionQueueArn":{"shape":"ArnStringModel"},
1531
1538
  "TimeoutInSeconds":{"shape":"WholeNumber"},
1539
+ "PlayerLatencyPolicies":{"shape":"PlayerLatencyPolicyList"},
1532
1540
  "Destinations":{"shape":"GameSessionQueueDestinationList"}
1533
1541
  }
1534
1542
  },
@@ -1812,6 +1820,17 @@
1812
1820
  "AMAZON_LINUX"
1813
1821
  ]
1814
1822
  },
1823
+ "PlacedPlayerSession":{
1824
+ "type":"structure",
1825
+ "members":{
1826
+ "PlayerId":{"shape":"NonZeroAndMaxString"},
1827
+ "PlayerSessionId":{"shape":"PlayerSessionId"}
1828
+ }
1829
+ },
1830
+ "PlacedPlayerSessionList":{
1831
+ "type":"list",
1832
+ "member":{"shape":"PlacedPlayerSession"}
1833
+ },
1815
1834
  "PlayerData":{
1816
1835
  "type":"string",
1817
1836
  "max":2048,
@@ -1840,6 +1859,17 @@
1840
1859
  "type":"list",
1841
1860
  "member":{"shape":"PlayerLatency"}
1842
1861
  },
1862
+ "PlayerLatencyPolicy":{
1863
+ "type":"structure",
1864
+ "members":{
1865
+ "MaximumIndividualPlayerLatencyMilliseconds":{"shape":"WholeNumber"},
1866
+ "PolicyDurationSeconds":{"shape":"WholeNumber"}
1867
+ }
1868
+ },
1869
+ "PlayerLatencyPolicyList":{
1870
+ "type":"list",
1871
+ "member":{"shape":"PlayerLatencyPolicy"}
1872
+ },
1843
1873
  "PlayerSession":{
1844
1874
  "type":"structure",
1845
1875
  "members":{
@@ -2222,6 +2252,7 @@
2222
2252
  "members":{
2223
2253
  "Name":{"shape":"GameSessionQueueName"},
2224
2254
  "TimeoutInSeconds":{"shape":"WholeNumber"},
2255
+ "PlayerLatencyPolicies":{"shape":"PlayerLatencyPolicyList"},
2225
2256
  "Destinations":{"shape":"GameSessionQueueDestinationList"}
2226
2257
  }
2227
2258
  },
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "version":"2.0",
3
3
  "metadata":{
4
- "uid":"opsworks-2013-02-18",
5
4
  "apiVersion":"2013-02-18",
6
5
  "endpointPrefix":"opsworks",
7
6
  "jsonVersion":"1.1",
8
7
  "protocol":"json",
9
8
  "serviceFullName":"AWS OpsWorks",
10
9
  "signatureVersion":"v4",
11
- "targetPrefix":"OpsWorks_20130218"
10
+ "targetPrefix":"OpsWorks_20130218",
11
+ "uid":"opsworks-2013-02-18"
12
12
  },
13
13
  "operations":{
14
14
  "AssignInstance":{
@@ -1063,6 +1063,144 @@
1063
1063
  "StackId":{"shape":"String"}
1064
1064
  }
1065
1065
  },
1066
+ "CloudWatchLogsConfiguration":{
1067
+ "type":"structure",
1068
+ "members":{
1069
+ "Enabled":{"shape":"Boolean"},
1070
+ "LogStreams":{"shape":"CloudWatchLogsLogStreams"}
1071
+ }
1072
+ },
1073
+ "CloudWatchLogsEncoding":{
1074
+ "type":"string",
1075
+ "enum":[
1076
+ "ascii",
1077
+ "big5",
1078
+ "big5hkscs",
1079
+ "cp037",
1080
+ "cp424",
1081
+ "cp437",
1082
+ "cp500",
1083
+ "cp720",
1084
+ "cp737",
1085
+ "cp775",
1086
+ "cp850",
1087
+ "cp852",
1088
+ "cp855",
1089
+ "cp856",
1090
+ "cp857",
1091
+ "cp858",
1092
+ "cp860",
1093
+ "cp861",
1094
+ "cp862",
1095
+ "cp863",
1096
+ "cp864",
1097
+ "cp865",
1098
+ "cp866",
1099
+ "cp869",
1100
+ "cp874",
1101
+ "cp875",
1102
+ "cp932",
1103
+ "cp949",
1104
+ "cp950",
1105
+ "cp1006",
1106
+ "cp1026",
1107
+ "cp1140",
1108
+ "cp1250",
1109
+ "cp1251",
1110
+ "cp1252",
1111
+ "cp1253",
1112
+ "cp1254",
1113
+ "cp1255",
1114
+ "cp1256",
1115
+ "cp1257",
1116
+ "cp1258",
1117
+ "euc_jp",
1118
+ "euc_jis_2004",
1119
+ "euc_jisx0213",
1120
+ "euc_kr",
1121
+ "gb2312",
1122
+ "gbk",
1123
+ "gb18030",
1124
+ "hz",
1125
+ "iso2022_jp",
1126
+ "iso2022_jp_1",
1127
+ "iso2022_jp_2",
1128
+ "iso2022_jp_2004",
1129
+ "iso2022_jp_3",
1130
+ "iso2022_jp_ext",
1131
+ "iso2022_kr",
1132
+ "latin_1",
1133
+ "iso8859_2",
1134
+ "iso8859_3",
1135
+ "iso8859_4",
1136
+ "iso8859_5",
1137
+ "iso8859_6",
1138
+ "iso8859_7",
1139
+ "iso8859_8",
1140
+ "iso8859_9",
1141
+ "iso8859_10",
1142
+ "iso8859_13",
1143
+ "iso8859_14",
1144
+ "iso8859_15",
1145
+ "iso8859_16",
1146
+ "johab",
1147
+ "koi8_r",
1148
+ "koi8_u",
1149
+ "mac_cyrillic",
1150
+ "mac_greek",
1151
+ "mac_iceland",
1152
+ "mac_latin2",
1153
+ "mac_roman",
1154
+ "mac_turkish",
1155
+ "ptcp154",
1156
+ "shift_jis",
1157
+ "shift_jis_2004",
1158
+ "shift_jisx0213",
1159
+ "utf_32",
1160
+ "utf_32_be",
1161
+ "utf_32_le",
1162
+ "utf_16",
1163
+ "utf_16_be",
1164
+ "utf_16_le",
1165
+ "utf_7",
1166
+ "utf_8",
1167
+ "utf_8_sig"
1168
+ ]
1169
+ },
1170
+ "CloudWatchLogsInitialPosition":{
1171
+ "type":"string",
1172
+ "enum":[
1173
+ "start_of_file",
1174
+ "end_of_file"
1175
+ ]
1176
+ },
1177
+ "CloudWatchLogsLogStream":{
1178
+ "type":"structure",
1179
+ "members":{
1180
+ "LogGroupName":{"shape":"String"},
1181
+ "DatetimeFormat":{"shape":"String"},
1182
+ "TimeZone":{"shape":"CloudWatchLogsTimeZone"},
1183
+ "File":{"shape":"String"},
1184
+ "FileFingerprintLines":{"shape":"String"},
1185
+ "MultiLineStartPattern":{"shape":"String"},
1186
+ "InitialPosition":{"shape":"CloudWatchLogsInitialPosition"},
1187
+ "Encoding":{"shape":"CloudWatchLogsEncoding"},
1188
+ "BufferDuration":{"shape":"Integer"},
1189
+ "BatchCount":{"shape":"Integer"},
1190
+ "BatchSize":{"shape":"Integer"}
1191
+ }
1192
+ },
1193
+ "CloudWatchLogsLogStreams":{
1194
+ "type":"list",
1195
+ "member":{"shape":"CloudWatchLogsLogStream"}
1196
+ },
1197
+ "CloudWatchLogsTimeZone":{
1198
+ "type":"string",
1199
+ "enum":[
1200
+ "LOCAL",
1201
+ "UTC"
1202
+ ]
1203
+ },
1066
1204
  "Command":{
1067
1205
  "type":"structure",
1068
1206
  "members":{
@@ -1180,6 +1318,7 @@
1180
1318
  "Name":{"shape":"String"},
1181
1319
  "Shortname":{"shape":"String"},
1182
1320
  "Attributes":{"shape":"LayerAttributes"},
1321
+ "CloudWatchLogsConfiguration":{"shape":"CloudWatchLogsConfiguration"},
1183
1322
  "CustomInstanceProfileArn":{"shape":"String"},
1184
1323
  "CustomJson":{"shape":"String"},
1185
1324
  "CustomSecurityGroupIds":{"shape":"Strings"},
@@ -1885,6 +2024,7 @@
1885
2024
  "Name":{"shape":"String"},
1886
2025
  "Shortname":{"shape":"String"},
1887
2026
  "Attributes":{"shape":"LayerAttributes"},
2027
+ "CloudWatchLogsConfiguration":{"shape":"CloudWatchLogsConfiguration"},
1888
2028
  "CustomInstanceProfileArn":{"shape":"String"},
1889
2029
  "CustomJson":{"shape":"String"},
1890
2030
  "CustomSecurityGroupIds":{"shape":"Strings"},
@@ -2435,6 +2575,7 @@
2435
2575
  "Name":{"shape":"String"},
2436
2576
  "Shortname":{"shape":"String"},
2437
2577
  "Attributes":{"shape":"LayerAttributes"},
2578
+ "CloudWatchLogsConfiguration":{"shape":"CloudWatchLogsConfiguration"},
2438
2579
  "CustomInstanceProfileArn":{"shape":"String"},
2439
2580
  "CustomJson":{"shape":"String"},
2440
2581
  "CustomSecurityGroupIds":{"shape":"Strings"},
@@ -11,8 +11,8 @@
11
11
  },
12
12
  "DescribeEcsClusters": {
13
13
  "input_token": "NextToken",
14
- "output_token": "NextToken",
15
14
  "limit_key": "MaxResults",
15
+ "output_token": "NextToken",
16
16
  "result_key": "EcsClusters"
17
17
  },
18
18
  "DescribeElasticIps": {
@@ -52,4 +52,4 @@
52
52
  "result_key": "Volumes"
53
53
  }
54
54
  }
55
- }
55
+ }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.9.6'
2
+ VERSION = '2.9.7'
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.9.6
4
+ version: 2.9.7
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: 2017-04-07 00:00:00.000000000 Z
11
+ date: 2017-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath