packages feed

amazonka-cloudformation 1.2.0.1 → 1.2.0.2

raw patch · 37 files changed

+41/−40 lines, 37 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

README.md view
@@ -8,7 +8,7 @@  ## Version -`1.2.0.1`+`1.2.0.2`   ## Description
amazonka-cloudformation.cabal view
@@ -1,7 +1,8 @@ name:                  amazonka-cloudformation-version:               1.2.0.1+version:               1.2.0.2 synopsis:              Amazon CloudFormation 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 CloudFormation @@ -98,8 +98,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.CloudFormation         , Test.AWS.Gen.CloudFormation
+ fixture/CancelUpdateStack.yaml view
+ fixture/CancelUpdateStackResponse.proto view
+ fixture/CreateStack.yaml view
+ fixture/CreateStackResponse.proto view
+ fixture/DeleteStack.yaml view
+ fixture/DeleteStackResponse.proto view
+ fixture/DescribeStackEvents.yaml view
+ fixture/DescribeStackEventsResponse.proto view
+ fixture/DescribeStackResource.yaml view
+ fixture/DescribeStackResourceResponse.proto view
+ fixture/DescribeStackResources.yaml view
+ fixture/DescribeStackResourcesResponse.proto view
+ fixture/DescribeStacks.yaml view
+ fixture/DescribeStacksResponse.proto view
+ fixture/EstimateTemplateCost.yaml view
+ fixture/EstimateTemplateCostResponse.proto view
+ fixture/GetStackPolicy.yaml view
+ fixture/GetStackPolicyResponse.proto view
+ fixture/GetTemplate.yaml view
+ fixture/GetTemplateResponse.proto view
+ fixture/GetTemplateSummary.yaml view
+ fixture/GetTemplateSummaryResponse.proto view
+ fixture/ListStackResources.yaml view
+ fixture/ListStackResourcesResponse.proto view
+ fixture/ListStacks.yaml view
+ fixture/ListStacksResponse.proto view
+ fixture/SetStackPolicy.yaml view
+ fixture/SetStackPolicyResponse.proto view
+ fixture/SignalResource.yaml view
+ fixture/SignalResourceResponse.proto view
+ fixture/UpdateStack.yaml view
+ fixture/UpdateStackResponse.proto view
+ fixture/ValidateTemplate.yaml view
+ fixture/ValidateTemplateResponse.proto view
test/Test/AWS/Gen/CloudFormation.hs view
@@ -141,205 +141,205 @@ testDeleteStack :: DeleteStack -> TestTree testDeleteStack = req     "DeleteStack"-    "fixture/DeleteStack"+    "fixture/DeleteStack.yaml"  testUpdateStack :: UpdateStack -> TestTree testUpdateStack = req     "UpdateStack"-    "fixture/UpdateStack"+    "fixture/UpdateStack.yaml"  testGetTemplateSummary :: GetTemplateSummary -> TestTree testGetTemplateSummary = req     "GetTemplateSummary"-    "fixture/GetTemplateSummary"+    "fixture/GetTemplateSummary.yaml"  testListStackResources :: ListStackResources -> TestTree testListStackResources = req     "ListStackResources"-    "fixture/ListStackResources"+    "fixture/ListStackResources.yaml"  testDescribeStacks :: DescribeStacks -> TestTree testDescribeStacks = req     "DescribeStacks"-    "fixture/DescribeStacks"+    "fixture/DescribeStacks.yaml"  testGetStackPolicy :: GetStackPolicy -> TestTree testGetStackPolicy = req     "GetStackPolicy"-    "fixture/GetStackPolicy"+    "fixture/GetStackPolicy.yaml"  testValidateTemplate :: ValidateTemplate -> TestTree testValidateTemplate = req     "ValidateTemplate"-    "fixture/ValidateTemplate"+    "fixture/ValidateTemplate.yaml"  testCancelUpdateStack :: CancelUpdateStack -> TestTree testCancelUpdateStack = req     "CancelUpdateStack"-    "fixture/CancelUpdateStack"+    "fixture/CancelUpdateStack.yaml"  testSetStackPolicy :: SetStackPolicy -> TestTree testSetStackPolicy = req     "SetStackPolicy"-    "fixture/SetStackPolicy"+    "fixture/SetStackPolicy.yaml"  testDescribeStackEvents :: DescribeStackEvents -> TestTree testDescribeStackEvents = req     "DescribeStackEvents"-    "fixture/DescribeStackEvents"+    "fixture/DescribeStackEvents.yaml"  testSignalResource :: SignalResource -> TestTree testSignalResource = req     "SignalResource"-    "fixture/SignalResource"+    "fixture/SignalResource.yaml"  testListStacks :: ListStacks -> TestTree testListStacks = req     "ListStacks"-    "fixture/ListStacks"+    "fixture/ListStacks.yaml"  testCreateStack :: CreateStack -> TestTree testCreateStack = req     "CreateStack"-    "fixture/CreateStack"+    "fixture/CreateStack.yaml"  testDescribeStackResources :: DescribeStackResources -> TestTree testDescribeStackResources = req     "DescribeStackResources"-    "fixture/DescribeStackResources"+    "fixture/DescribeStackResources.yaml"  testEstimateTemplateCost :: EstimateTemplateCost -> TestTree testEstimateTemplateCost = req     "EstimateTemplateCost"-    "fixture/EstimateTemplateCost"+    "fixture/EstimateTemplateCost.yaml"  testGetTemplate :: GetTemplate -> TestTree testGetTemplate = req     "GetTemplate"-    "fixture/GetTemplate"+    "fixture/GetTemplate.yaml"  testDescribeStackResource :: DescribeStackResource -> TestTree testDescribeStackResource = req     "DescribeStackResource"-    "fixture/DescribeStackResource"+    "fixture/DescribeStackResource.yaml"  -- Responses  testDeleteStackResponse :: DeleteStackResponse -> TestTree testDeleteStackResponse = res     "DeleteStackResponse"-    "fixture/DeleteStackResponse"+    "fixture/DeleteStackResponse.proto"     cloudFormation     (Proxy :: Proxy DeleteStack)  testUpdateStackResponse :: UpdateStackResponse -> TestTree testUpdateStackResponse = res     "UpdateStackResponse"-    "fixture/UpdateStackResponse"+    "fixture/UpdateStackResponse.proto"     cloudFormation     (Proxy :: Proxy UpdateStack)  testGetTemplateSummaryResponse :: GetTemplateSummaryResponse -> TestTree testGetTemplateSummaryResponse = res     "GetTemplateSummaryResponse"-    "fixture/GetTemplateSummaryResponse"+    "fixture/GetTemplateSummaryResponse.proto"     cloudFormation     (Proxy :: Proxy GetTemplateSummary)  testListStackResourcesResponse :: ListStackResourcesResponse -> TestTree testListStackResourcesResponse = res     "ListStackResourcesResponse"-    "fixture/ListStackResourcesResponse"+    "fixture/ListStackResourcesResponse.proto"     cloudFormation     (Proxy :: Proxy ListStackResources)  testDescribeStacksResponse :: DescribeStacksResponse -> TestTree testDescribeStacksResponse = res     "DescribeStacksResponse"-    "fixture/DescribeStacksResponse"+    "fixture/DescribeStacksResponse.proto"     cloudFormation     (Proxy :: Proxy DescribeStacks)  testGetStackPolicyResponse :: GetStackPolicyResponse -> TestTree testGetStackPolicyResponse = res     "GetStackPolicyResponse"-    "fixture/GetStackPolicyResponse"+    "fixture/GetStackPolicyResponse.proto"     cloudFormation     (Proxy :: Proxy GetStackPolicy)  testValidateTemplateResponse :: ValidateTemplateResponse -> TestTree testValidateTemplateResponse = res     "ValidateTemplateResponse"-    "fixture/ValidateTemplateResponse"+    "fixture/ValidateTemplateResponse.proto"     cloudFormation     (Proxy :: Proxy ValidateTemplate)  testCancelUpdateStackResponse :: CancelUpdateStackResponse -> TestTree testCancelUpdateStackResponse = res     "CancelUpdateStackResponse"-    "fixture/CancelUpdateStackResponse"+    "fixture/CancelUpdateStackResponse.proto"     cloudFormation     (Proxy :: Proxy CancelUpdateStack)  testSetStackPolicyResponse :: SetStackPolicyResponse -> TestTree testSetStackPolicyResponse = res     "SetStackPolicyResponse"-    "fixture/SetStackPolicyResponse"+    "fixture/SetStackPolicyResponse.proto"     cloudFormation     (Proxy :: Proxy SetStackPolicy)  testDescribeStackEventsResponse :: DescribeStackEventsResponse -> TestTree testDescribeStackEventsResponse = res     "DescribeStackEventsResponse"-    "fixture/DescribeStackEventsResponse"+    "fixture/DescribeStackEventsResponse.proto"     cloudFormation     (Proxy :: Proxy DescribeStackEvents)  testSignalResourceResponse :: SignalResourceResponse -> TestTree testSignalResourceResponse = res     "SignalResourceResponse"-    "fixture/SignalResourceResponse"+    "fixture/SignalResourceResponse.proto"     cloudFormation     (Proxy :: Proxy SignalResource)  testListStacksResponse :: ListStacksResponse -> TestTree testListStacksResponse = res     "ListStacksResponse"-    "fixture/ListStacksResponse"+    "fixture/ListStacksResponse.proto"     cloudFormation     (Proxy :: Proxy ListStacks)  testCreateStackResponse :: CreateStackResponse -> TestTree testCreateStackResponse = res     "CreateStackResponse"-    "fixture/CreateStackResponse"+    "fixture/CreateStackResponse.proto"     cloudFormation     (Proxy :: Proxy CreateStack)  testDescribeStackResourcesResponse :: DescribeStackResourcesResponse -> TestTree testDescribeStackResourcesResponse = res     "DescribeStackResourcesResponse"-    "fixture/DescribeStackResourcesResponse"+    "fixture/DescribeStackResourcesResponse.proto"     cloudFormation     (Proxy :: Proxy DescribeStackResources)  testEstimateTemplateCostResponse :: EstimateTemplateCostResponse -> TestTree testEstimateTemplateCostResponse = res     "EstimateTemplateCostResponse"-    "fixture/EstimateTemplateCostResponse"+    "fixture/EstimateTemplateCostResponse.proto"     cloudFormation     (Proxy :: Proxy EstimateTemplateCost)  testGetTemplateResponse :: GetTemplateResponse -> TestTree testGetTemplateResponse = res     "GetTemplateResponse"-    "fixture/GetTemplateResponse"+    "fixture/GetTemplateResponse.proto"     cloudFormation     (Proxy :: Proxy GetTemplate)  testDescribeStackResourceResponse :: DescribeStackResourceResponse -> TestTree testDescribeStackResourceResponse = res     "DescribeStackResourceResponse"-    "fixture/DescribeStackResourceResponse"+    "fixture/DescribeStackResourceResponse.proto"     cloudFormation     (Proxy :: Proxy DescribeStackResource)