amazonka-lambda 1.2.0.1 → 1.2.0.2
raw patch · 35 files changed
+39/−38 lines, 35 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- README.md +1/−1
- amazonka-lambda.cabal +6/−5
- fixture/AddPermission.yaml +0/−0
- fixture/AddPermissionResponse.proto +0/−0
- fixture/CreateEventSourceMapping.yaml +0/−0
- fixture/CreateEventSourceMappingResponse.proto +0/−0
- fixture/CreateFunction.yaml +0/−0
- fixture/CreateFunctionResponse.proto +0/−0
- fixture/DeleteEventSourceMapping.yaml +0/−0
- fixture/DeleteEventSourceMappingResponse.proto +0/−0
- fixture/DeleteFunction.yaml +0/−0
- fixture/DeleteFunctionResponse.proto +0/−0
- fixture/GetEventSourceMapping.yaml +0/−0
- fixture/GetEventSourceMappingResponse.proto +0/−0
- fixture/GetFunction.yaml +0/−0
- fixture/GetFunctionConfiguration.yaml +0/−0
- fixture/GetFunctionConfigurationResponse.proto +0/−0
- fixture/GetFunctionResponse.proto +0/−0
- fixture/GetPolicy.yaml +0/−0
- fixture/GetPolicyResponse.proto +0/−0
- fixture/Invoke.yaml +0/−0
- fixture/InvokeResponse.proto +0/−0
- fixture/ListEventSourceMappings.yaml +0/−0
- fixture/ListEventSourceMappingsResponse.proto +0/−0
- fixture/ListFunctions.yaml +0/−0
- fixture/ListFunctionsResponse.proto +0/−0
- fixture/RemovePermission.yaml +0/−0
- fixture/RemovePermissionResponse.proto +0/−0
- fixture/UpdateEventSourceMapping.yaml +0/−0
- fixture/UpdateEventSourceMappingResponse.proto +0/−0
- fixture/UpdateFunctionCode.yaml +0/−0
- fixture/UpdateFunctionCodeResponse.proto +0/−0
- fixture/UpdateFunctionConfiguration.yaml +0/−0
- fixture/UpdateFunctionConfigurationResponse.proto +0/−0
- test/Test/AWS/Gen/Lambda.hs +32/−32
README.md view
@@ -8,7 +8,7 @@ ## Version -`1.2.0.1`+`1.2.0.2` ## Description
amazonka-lambda.cabal view
@@ -1,7 +1,8 @@ name: amazonka-lambda-version: 1.2.0.1+version: 1.2.0.2 synopsis: Amazon Lambda SDK. homepage: https://github.com/brendanhay/amazonka+bug-reports: https://github.com/brendanhay/amazonka/issues license: OtherLicense license-file: LICENSE author: Brendan Hay@@ -9,9 +10,8 @@ copyright: Copyright (c) 2013-2015 Brendan Hay category: Network, AWS, Cloud, Distributed Computing build-type: Simple-extra-source-files: README.md cabal-version: >= 1.10-+extra-source-files: README.md fixture/*.yaml fixture/*.proto description: AWS Lambda @@ -85,8 +85,9 @@ ghc-options: -Wall -threaded - -- This is not comprehensive if modules have manually been added.- -- It exists to ensure cabal 'somewhat' detects test module changes.+ -- This section is encoded by the template and any modules added by+ -- hand outside these namespaces will not correctly be added to the+ -- distribution package. other-modules: Test.AWS.Lambda , Test.AWS.Gen.Lambda
+ fixture/AddPermission.yaml view
+ fixture/AddPermissionResponse.proto view
+ fixture/CreateEventSourceMapping.yaml view
+ fixture/CreateEventSourceMappingResponse.proto view
+ fixture/CreateFunction.yaml view
+ fixture/CreateFunctionResponse.proto view
+ fixture/DeleteEventSourceMapping.yaml view
+ fixture/DeleteEventSourceMappingResponse.proto view
+ fixture/DeleteFunction.yaml view
+ fixture/DeleteFunctionResponse.proto view
+ fixture/GetEventSourceMapping.yaml view
+ fixture/GetEventSourceMappingResponse.proto view
+ fixture/GetFunction.yaml view
+ fixture/GetFunctionConfiguration.yaml view
+ fixture/GetFunctionConfigurationResponse.proto view
+ fixture/GetFunctionResponse.proto view
+ fixture/GetPolicy.yaml view
+ fixture/GetPolicyResponse.proto view
+ fixture/Invoke.yaml view
+ fixture/InvokeResponse.proto view
+ fixture/ListEventSourceMappings.yaml view
+ fixture/ListEventSourceMappingsResponse.proto view
+ fixture/ListFunctions.yaml view
+ fixture/ListFunctionsResponse.proto view
+ fixture/RemovePermission.yaml view
+ fixture/RemovePermissionResponse.proto view
+ fixture/UpdateEventSourceMapping.yaml view
+ fixture/UpdateEventSourceMappingResponse.proto view
+ fixture/UpdateFunctionCode.yaml view
+ fixture/UpdateFunctionCodeResponse.proto view
+ fixture/UpdateFunctionConfiguration.yaml view
+ fixture/UpdateFunctionConfigurationResponse.proto view
test/Test/AWS/Gen/Lambda.hs view
@@ -135,193 +135,193 @@ testGetFunctionConfiguration :: GetFunctionConfiguration -> TestTree testGetFunctionConfiguration = req "GetFunctionConfiguration"- "fixture/GetFunctionConfiguration"+ "fixture/GetFunctionConfiguration.yaml" testUpdateEventSourceMapping :: UpdateEventSourceMapping -> TestTree testUpdateEventSourceMapping = req "UpdateEventSourceMapping"- "fixture/UpdateEventSourceMapping"+ "fixture/UpdateEventSourceMapping.yaml" testDeleteEventSourceMapping :: DeleteEventSourceMapping -> TestTree testDeleteEventSourceMapping = req "DeleteEventSourceMapping"- "fixture/DeleteEventSourceMapping"+ "fixture/DeleteEventSourceMapping.yaml" testRemovePermission :: RemovePermission -> TestTree testRemovePermission = req "RemovePermission"- "fixture/RemovePermission"+ "fixture/RemovePermission.yaml" testInvoke :: Invoke -> TestTree testInvoke = req "Invoke"- "fixture/Invoke"+ "fixture/Invoke.yaml" testGetEventSourceMapping :: GetEventSourceMapping -> TestTree testGetEventSourceMapping = req "GetEventSourceMapping"- "fixture/GetEventSourceMapping"+ "fixture/GetEventSourceMapping.yaml" testCreateFunction :: CreateFunction -> TestTree testCreateFunction = req "CreateFunction"- "fixture/CreateFunction"+ "fixture/CreateFunction.yaml" testCreateEventSourceMapping :: CreateEventSourceMapping -> TestTree testCreateEventSourceMapping = req "CreateEventSourceMapping"- "fixture/CreateEventSourceMapping"+ "fixture/CreateEventSourceMapping.yaml" testGetFunction :: GetFunction -> TestTree testGetFunction = req "GetFunction"- "fixture/GetFunction"+ "fixture/GetFunction.yaml" testListEventSourceMappings :: ListEventSourceMappings -> TestTree testListEventSourceMappings = req "ListEventSourceMappings"- "fixture/ListEventSourceMappings"+ "fixture/ListEventSourceMappings.yaml" testAddPermission :: AddPermission -> TestTree testAddPermission = req "AddPermission"- "fixture/AddPermission"+ "fixture/AddPermission.yaml" testDeleteFunction :: DeleteFunction -> TestTree testDeleteFunction = req "DeleteFunction"- "fixture/DeleteFunction"+ "fixture/DeleteFunction.yaml" testUpdateFunctionConfiguration :: UpdateFunctionConfiguration -> TestTree testUpdateFunctionConfiguration = req "UpdateFunctionConfiguration"- "fixture/UpdateFunctionConfiguration"+ "fixture/UpdateFunctionConfiguration.yaml" testListFunctions :: ListFunctions -> TestTree testListFunctions = req "ListFunctions"- "fixture/ListFunctions"+ "fixture/ListFunctions.yaml" testUpdateFunctionCode :: UpdateFunctionCode -> TestTree testUpdateFunctionCode = req "UpdateFunctionCode"- "fixture/UpdateFunctionCode"+ "fixture/UpdateFunctionCode.yaml" testGetPolicy :: GetPolicy -> TestTree testGetPolicy = req "GetPolicy"- "fixture/GetPolicy"+ "fixture/GetPolicy.yaml" -- Responses testGetFunctionConfigurationResponse :: FunctionConfiguration -> TestTree testGetFunctionConfigurationResponse = res "GetFunctionConfigurationResponse"- "fixture/GetFunctionConfigurationResponse"+ "fixture/GetFunctionConfigurationResponse.proto" lambda (Proxy :: Proxy GetFunctionConfiguration) testUpdateEventSourceMappingResponse :: EventSourceMappingConfiguration -> TestTree testUpdateEventSourceMappingResponse = res "UpdateEventSourceMappingResponse"- "fixture/UpdateEventSourceMappingResponse"+ "fixture/UpdateEventSourceMappingResponse.proto" lambda (Proxy :: Proxy UpdateEventSourceMapping) testDeleteEventSourceMappingResponse :: EventSourceMappingConfiguration -> TestTree testDeleteEventSourceMappingResponse = res "DeleteEventSourceMappingResponse"- "fixture/DeleteEventSourceMappingResponse"+ "fixture/DeleteEventSourceMappingResponse.proto" lambda (Proxy :: Proxy DeleteEventSourceMapping) testRemovePermissionResponse :: RemovePermissionResponse -> TestTree testRemovePermissionResponse = res "RemovePermissionResponse"- "fixture/RemovePermissionResponse"+ "fixture/RemovePermissionResponse.proto" lambda (Proxy :: Proxy RemovePermission) testInvokeResponse :: InvokeResponse -> TestTree testInvokeResponse = res "InvokeResponse"- "fixture/InvokeResponse"+ "fixture/InvokeResponse.proto" lambda (Proxy :: Proxy Invoke) testGetEventSourceMappingResponse :: EventSourceMappingConfiguration -> TestTree testGetEventSourceMappingResponse = res "GetEventSourceMappingResponse"- "fixture/GetEventSourceMappingResponse"+ "fixture/GetEventSourceMappingResponse.proto" lambda (Proxy :: Proxy GetEventSourceMapping) testCreateFunctionResponse :: FunctionConfiguration -> TestTree testCreateFunctionResponse = res "CreateFunctionResponse"- "fixture/CreateFunctionResponse"+ "fixture/CreateFunctionResponse.proto" lambda (Proxy :: Proxy CreateFunction) testCreateEventSourceMappingResponse :: EventSourceMappingConfiguration -> TestTree testCreateEventSourceMappingResponse = res "CreateEventSourceMappingResponse"- "fixture/CreateEventSourceMappingResponse"+ "fixture/CreateEventSourceMappingResponse.proto" lambda (Proxy :: Proxy CreateEventSourceMapping) testGetFunctionResponse :: GetFunctionResponse -> TestTree testGetFunctionResponse = res "GetFunctionResponse"- "fixture/GetFunctionResponse"+ "fixture/GetFunctionResponse.proto" lambda (Proxy :: Proxy GetFunction) testListEventSourceMappingsResponse :: ListEventSourceMappingsResponse -> TestTree testListEventSourceMappingsResponse = res "ListEventSourceMappingsResponse"- "fixture/ListEventSourceMappingsResponse"+ "fixture/ListEventSourceMappingsResponse.proto" lambda (Proxy :: Proxy ListEventSourceMappings) testAddPermissionResponse :: AddPermissionResponse -> TestTree testAddPermissionResponse = res "AddPermissionResponse"- "fixture/AddPermissionResponse"+ "fixture/AddPermissionResponse.proto" lambda (Proxy :: Proxy AddPermission) testDeleteFunctionResponse :: DeleteFunctionResponse -> TestTree testDeleteFunctionResponse = res "DeleteFunctionResponse"- "fixture/DeleteFunctionResponse"+ "fixture/DeleteFunctionResponse.proto" lambda (Proxy :: Proxy DeleteFunction) testUpdateFunctionConfigurationResponse :: FunctionConfiguration -> TestTree testUpdateFunctionConfigurationResponse = res "UpdateFunctionConfigurationResponse"- "fixture/UpdateFunctionConfigurationResponse"+ "fixture/UpdateFunctionConfigurationResponse.proto" lambda (Proxy :: Proxy UpdateFunctionConfiguration) testListFunctionsResponse :: ListFunctionsResponse -> TestTree testListFunctionsResponse = res "ListFunctionsResponse"- "fixture/ListFunctionsResponse"+ "fixture/ListFunctionsResponse.proto" lambda (Proxy :: Proxy ListFunctions) testUpdateFunctionCodeResponse :: FunctionConfiguration -> TestTree testUpdateFunctionCodeResponse = res "UpdateFunctionCodeResponse"- "fixture/UpdateFunctionCodeResponse"+ "fixture/UpdateFunctionCodeResponse.proto" lambda (Proxy :: Proxy UpdateFunctionCode) testGetPolicyResponse :: GetPolicyResponse -> TestTree testGetPolicyResponse = res "GetPolicyResponse"- "fixture/GetPolicyResponse"+ "fixture/GetPolicyResponse.proto" lambda (Proxy :: Proxy GetPolicy)