packages feed

amazonka-sdb 0.2.1 → 0.2.2

raw patch · 12 files changed

+28/−28 lines, 12 filesdep ~amazonka-corePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: amazonka-core

API changes (from Hackage documentation)

+ Network.AWS.SDB.BatchDeleteAttributes: instance Read BatchDeleteAttributes
+ Network.AWS.SDB.BatchDeleteAttributes: instance Read BatchDeleteAttributesResponse
+ Network.AWS.SDB.BatchPutAttributes: instance Read BatchPutAttributes
+ Network.AWS.SDB.BatchPutAttributes: instance Read BatchPutAttributesResponse
+ Network.AWS.SDB.CreateDomain: instance Read CreateDomain
+ Network.AWS.SDB.CreateDomain: instance Read CreateDomainResponse
+ Network.AWS.SDB.DeleteAttributes: instance Read DeleteAttributes
+ Network.AWS.SDB.DeleteAttributes: instance Read DeleteAttributesResponse
+ Network.AWS.SDB.DeleteDomain: instance Read DeleteDomain
+ Network.AWS.SDB.DeleteDomain: instance Read DeleteDomainResponse
+ Network.AWS.SDB.DomainMetadata: instance Read DomainMetadata
+ Network.AWS.SDB.DomainMetadata: instance Read DomainMetadataResponse
+ Network.AWS.SDB.GetAttributes: instance Read GetAttributes
+ Network.AWS.SDB.GetAttributes: instance Read GetAttributesResponse
+ Network.AWS.SDB.ListDomains: instance Read ListDomains
+ Network.AWS.SDB.ListDomains: instance Read ListDomainsResponse
+ Network.AWS.SDB.PutAttributes: instance Read PutAttributes
+ Network.AWS.SDB.PutAttributes: instance Read PutAttributesResponse
+ Network.AWS.SDB.Select: instance Read Select
+ Network.AWS.SDB.Select: instance Read SelectResponse
+ Network.AWS.SDB.Types: instance Read Attribute
+ Network.AWS.SDB.Types: instance Read DeletableItem
+ Network.AWS.SDB.Types: instance Read Item
+ Network.AWS.SDB.Types: instance Read ReplaceableAttribute
+ Network.AWS.SDB.Types: instance Read ReplaceableItem
+ Network.AWS.SDB.Types: instance Read UpdateCondition

Files

amazonka-sdb.cabal view
@@ -1,5 +1,5 @@ name:                  amazonka-sdb-version:               0.2.1+version:               0.2.2 synopsis:              Amazon SimpleDB SDK. homepage:              https://github.com/brendanhay/amazonka license:               OtherLicense@@ -61,5 +61,5 @@     other-modules:      build-depends:-          amazonka-core == 0.2.1.*+          amazonka-core == 0.2.2.*         , base          >= 4.7     && < 5
gen/Network/AWS/SDB/BatchDeleteAttributes.hs view
@@ -54,7 +54,7 @@ data BatchDeleteAttributes = BatchDeleteAttributes     { _bdaDomainName :: Text     , _bdaItems      :: List "member" DeletableItem-    } deriving (Eq, Show)+    } deriving (Eq, Read, Show)  -- | 'BatchDeleteAttributes' constructor. --@@ -80,7 +80,7 @@ bdaItems = lens _bdaItems (\s a -> s { _bdaItems = a }) . _List  data BatchDeleteAttributesResponse = BatchDeleteAttributesResponse-    deriving (Eq, Ord, Show, Generic)+    deriving (Eq, Ord, Read, Show, Generic)  -- | 'BatchDeleteAttributesResponse' constructor. batchDeleteAttributesResponse :: BatchDeleteAttributesResponse
gen/Network/AWS/SDB/BatchPutAttributes.hs view
@@ -83,7 +83,7 @@ data BatchPutAttributes = BatchPutAttributes     { _bpaDomainName :: Text     , _bpaItems      :: List "member" ReplaceableItem-    } deriving (Eq, Show)+    } deriving (Eq, Read, Show)  -- | 'BatchPutAttributes' constructor. --@@ -109,7 +109,7 @@ bpaItems = lens _bpaItems (\s a -> s { _bpaItems = a }) . _List  data BatchPutAttributesResponse = BatchPutAttributesResponse-    deriving (Eq, Ord, Show, Generic)+    deriving (Eq, Ord, Read, Show, Generic)  -- | 'BatchPutAttributesResponse' constructor. batchPutAttributesResponse :: BatchPutAttributesResponse
gen/Network/AWS/SDB/CreateDomain.hs view
@@ -53,7 +53,7 @@  newtype CreateDomain = CreateDomain     { _cdDomainName :: Text-    } deriving (Eq, Ord, Show, Monoid, IsString)+    } deriving (Eq, Ord, Read, Show, Monoid, IsString)  -- | 'CreateDomain' constructor. --@@ -74,7 +74,7 @@ cdDomainName = lens _cdDomainName (\s a -> s { _cdDomainName = a })  data CreateDomainResponse = CreateDomainResponse-    deriving (Eq, Ord, Show, Generic)+    deriving (Eq, Ord, Read, Show, Generic)  -- | 'CreateDomainResponse' constructor. createDomainResponse :: CreateDomainResponse
gen/Network/AWS/SDB/DeleteAttributes.hs view
@@ -62,7 +62,7 @@     , _daDomainName :: Text     , _daExpected   :: Maybe UpdateCondition     , _daItemName   :: Text-    } deriving (Eq, Show)+    } deriving (Eq, Read, Show)  -- | 'DeleteAttributes' constructor. --@@ -107,7 +107,7 @@ daItemName = lens _daItemName (\s a -> s { _daItemName = a })  data DeleteAttributesResponse = DeleteAttributesResponse-    deriving (Eq, Ord, Show, Generic)+    deriving (Eq, Ord, Read, Show, Generic)  -- | 'DeleteAttributesResponse' constructor. deleteAttributesResponse :: DeleteAttributesResponse
gen/Network/AWS/SDB/DeleteDomain.hs view
@@ -49,7 +49,7 @@  newtype DeleteDomain = DeleteDomain     { _ddDomainName :: Text-    } deriving (Eq, Ord, Show, Monoid, IsString)+    } deriving (Eq, Ord, Read, Show, Monoid, IsString)  -- | 'DeleteDomain' constructor. --@@ -68,7 +68,7 @@ ddDomainName = lens _ddDomainName (\s a -> s { _ddDomainName = a })  data DeleteDomainResponse = DeleteDomainResponse-    deriving (Eq, Ord, Show, Generic)+    deriving (Eq, Ord, Read, Show, Generic)  -- | 'DeleteDomainResponse' constructor. deleteDomainResponse :: DeleteDomainResponse
gen/Network/AWS/SDB/DomainMetadata.hs view
@@ -57,7 +57,7 @@  newtype DomainMetadata = DomainMetadata     { _dmDomainName :: Text-    } deriving (Eq, Ord, Show, Monoid, IsString)+    } deriving (Eq, Ord, Read, Show, Monoid, IsString)  -- | 'DomainMetadata' constructor. --@@ -83,7 +83,7 @@     , _dmrItemCount                :: Maybe Int     , _dmrItemNamesSizeBytes       :: Maybe Integer     , _dmrTimestamp                :: Maybe Int-    } deriving (Eq, Ord, Show)+    } deriving (Eq, Ord, Read, Show)  -- | 'DomainMetadataResponse' constructor. --
gen/Network/AWS/SDB/GetAttributes.hs view
@@ -61,7 +61,7 @@     , _gaConsistentRead :: Maybe Bool     , _gaDomainName     :: Text     , _gaItemName       :: Text-    } deriving (Eq, Ord, Show)+    } deriving (Eq, Ord, Read, Show)  -- | 'GetAttributes' constructor. --@@ -106,7 +106,7 @@  newtype GetAttributesResponse = GetAttributesResponse     { _garAttributes :: List "member" Attribute-    } deriving (Eq, Show, Monoid, Semigroup)+    } deriving (Eq, Read, Show, Monoid, Semigroup)  -- | 'GetAttributesResponse' constructor. --
gen/Network/AWS/SDB/ListDomains.hs view
@@ -53,7 +53,7 @@ data ListDomains = ListDomains     { _ldMaxNumberOfDomains :: Maybe Int     , _ldNextToken          :: Maybe Text-    } deriving (Eq, Ord, Show)+    } deriving (Eq, Ord, Read, Show)  -- | 'ListDomains' constructor. --@@ -83,7 +83,7 @@ data ListDomainsResponse = ListDomainsResponse     { _ldrDomainNames :: List "member" Text     , _ldrNextToken   :: Maybe Text-    } deriving (Eq, Ord, Show)+    } deriving (Eq, Ord, Read, Show)  -- | 'ListDomainsResponse' constructor. --
gen/Network/AWS/SDB/PutAttributes.hs view
@@ -80,7 +80,7 @@     , _paDomainName :: Text     , _paExpected   :: Maybe UpdateCondition     , _paItemName   :: Text-    } deriving (Eq, Show)+    } deriving (Eq, Read, Show)  -- | 'PutAttributes' constructor. --@@ -123,7 +123,7 @@ paItemName = lens _paItemName (\s a -> s { _paItemName = a })  data PutAttributesResponse = PutAttributesResponse-    deriving (Eq, Ord, Show, Generic)+    deriving (Eq, Ord, Read, Show, Generic)  -- | 'PutAttributesResponse' constructor. putAttributesResponse :: PutAttributesResponse
gen/Network/AWS/SDB/Select.hs view
@@ -65,7 +65,7 @@     { _sConsistentRead   :: Maybe Bool     , _sNextToken        :: Maybe Text     , _sSelectExpression :: Text-    } deriving (Eq, Ord, Show)+    } deriving (Eq, Ord, Read, Show)  -- | 'Select' constructor. --@@ -104,7 +104,7 @@ data SelectResponse = SelectResponse     { _srItems     :: List "member" Item     , _srNextToken :: Maybe Text-    } deriving (Eq, Show)+    } deriving (Eq, Read, Show)  -- | 'SelectResponse' constructor. --
gen/Network/AWS/SDB/Types.hs view
@@ -128,7 +128,7 @@     , _aAlternateValueEncoding :: Maybe Text     , _aName                   :: Text     , _aValue                  :: Text-    } deriving (Eq, Ord, Show)+    } deriving (Eq, Ord, Read, Show)  -- | 'Attribute' constructor. --@@ -188,7 +188,7 @@ data DeletableItem = DeletableItem     { _diAttributes :: List "member" Attribute     , _diName       :: Text-    } deriving (Eq, Show)+    } deriving (Eq, Read, Show)  -- | 'DeletableItem' constructor. --@@ -225,7 +225,7 @@ data ReplaceableItem = ReplaceableItem     { _riAttributes :: List "member" ReplaceableAttribute     , _riName       :: Text-    } deriving (Eq, Show)+    } deriving (Eq, Read, Show)  -- | 'ReplaceableItem' constructor. --@@ -265,7 +265,7 @@     { _ucExists :: Maybe Bool     , _ucName   :: Maybe Text     , _ucValue  :: Maybe Text-    } deriving (Eq, Ord, Show)+    } deriving (Eq, Ord, Read, Show)  -- | 'UpdateCondition' constructor. --@@ -317,7 +317,7 @@     { _raName    :: Text     , _raReplace :: Maybe Bool     , _raValue   :: Text-    } deriving (Eq, Ord, Show)+    } deriving (Eq, Ord, Read, Show)  -- | 'ReplaceableAttribute' constructor. --@@ -368,7 +368,7 @@     { _iAlternateNameEncoding :: Maybe Text     , _iAttributes            :: List "member" Attribute     , _iName                  :: Text-    } deriving (Eq, Show)+    } deriving (Eq, Read, Show)  -- | 'Item' constructor. --