amazonka-cloudformation 0.0.6 → 0.0.7
raw patch · 9 files changed
+16/−16 lines, 9 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
- amazonka-cloudformation.cabal +2/−2
- gen/Network/AWS/CloudFormation/DescribeStackEvents.hs +1/−1
- gen/Network/AWS/CloudFormation/DescribeStackResources.hs +1/−1
- gen/Network/AWS/CloudFormation/DescribeStacks.hs +1/−1
- gen/Network/AWS/CloudFormation/GetTemplateSummary.hs +2/−2
- gen/Network/AWS/CloudFormation/ListStackResources.hs +1/−1
- gen/Network/AWS/CloudFormation/ListStacks.hs +1/−1
- gen/Network/AWS/CloudFormation/Types.hs +5/−5
- gen/Network/AWS/CloudFormation/ValidateTemplate.hs +2/−2
amazonka-cloudformation.cabal view
@@ -1,5 +1,5 @@ name: amazonka-cloudformation-version: 0.0.6+version: 0.0.7 synopsis: Amazon CloudFormation SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -65,5 +65,5 @@ other-modules: build-depends:- amazonka-core == 0.0.6.*+ amazonka-core == 0.0.7.* , base >= 4.7 && < 5
gen/Network/AWS/CloudFormation/DescribeStackEvents.hs view
@@ -136,7 +136,7 @@ instance FromXML DescribeStackEventsResponse where parseXML = withElement "DescribeStackEventsResult" $ \x -> DescribeStackEventsResponse <$> x .@? "NextToken"- <*> x .@ "StackEvents"+ <*> x .@? "StackEvents" .!@ mempty instance AWSPager DescribeStackEvents where page rq rs
gen/Network/AWS/CloudFormation/DescribeStackResources.hs view
@@ -166,4 +166,4 @@ instance FromXML DescribeStackResourcesResponse where parseXML = withElement "DescribeStackResourcesResult" $ \x -> DescribeStackResourcesResponse- <$> x .@ "StackResources"+ <$> x .@? "StackResources" .!@ mempty
gen/Network/AWS/CloudFormation/DescribeStacks.hs view
@@ -130,7 +130,7 @@ instance FromXML DescribeStacksResponse where parseXML = withElement "DescribeStacksResult" $ \x -> DescribeStacksResponse <$> x .@? "NextToken"- <*> x .@ "Stacks"+ <*> x .@? "Stacks" .!@ mempty instance AWSPager DescribeStacks where page rq rs
gen/Network/AWS/CloudFormation/GetTemplateSummary.hs view
@@ -192,8 +192,8 @@ instance FromXML GetTemplateSummaryResponse where parseXML = withElement "GetTemplateSummaryResult" $ \x -> GetTemplateSummaryResponse- <$> x .@ "Capabilities"+ <$> x .@? "Capabilities" .!@ mempty <*> x .@? "CapabilitiesReason" <*> x .@? "Description"- <*> x .@ "Parameters"+ <*> x .@? "Parameters" .!@ mempty <*> x .@? "Version"
gen/Network/AWS/CloudFormation/ListStackResources.hs view
@@ -140,7 +140,7 @@ instance FromXML ListStackResourcesResponse where parseXML = withElement "ListStackResourcesResult" $ \x -> ListStackResourcesResponse <$> x .@? "NextToken"- <*> x .@ "StackResourceSummaries"+ <*> x .@? "StackResourceSummaries" .!@ mempty instance AWSPager ListStackResources where page rq rs
gen/Network/AWS/CloudFormation/ListStacks.hs view
@@ -137,7 +137,7 @@ instance FromXML ListStacksResponse where parseXML = withElement "ListStacksResult" $ \x -> ListStacksResponse <$> x .@? "NextToken"- <*> x .@ "StackSummaries"+ <*> x .@? "StackSummaries" .!@ mempty instance AWSPager ListStacks where page rq rs
gen/Network/AWS/CloudFormation/Types.hs view
@@ -1283,19 +1283,19 @@ instance FromXML Stack where parseXML x = Stack- <$> x .@ "Capabilities"+ <$> x .@? "Capabilities" .!@ mempty <*> x .@ "CreationTime" <*> x .@? "Description" <*> x .@? "DisableRollback" <*> x .@? "LastUpdatedTime"- <*> x .@ "NotificationARNs"- <*> x .@ "Outputs"- <*> x .@ "Parameters"+ <*> x .@? "NotificationARNs" .!@ mempty+ <*> x .@? "Outputs" .!@ mempty+ <*> x .@? "Parameters" .!@ mempty <*> x .@? "StackId" <*> x .@ "StackName" <*> x .@ "StackStatus" <*> x .@? "StackStatusReason"- <*> x .@ "Tags"+ <*> x .@? "Tags" .!@ mempty <*> x .@? "TimeoutInMinutes" instance ToQuery Stack where
gen/Network/AWS/CloudFormation/ValidateTemplate.hs view
@@ -157,7 +157,7 @@ instance FromXML ValidateTemplateResponse where parseXML = withElement "ValidateTemplateResult" $ \x -> ValidateTemplateResponse- <$> x .@ "Capabilities"+ <$> x .@? "Capabilities" .!@ mempty <*> x .@? "CapabilitiesReason" <*> x .@? "Description"- <*> x .@ "Parameters"+ <*> x .@? "Parameters" .!@ mempty