packages feed

amazonka-sdb 0.0.0 → 0.0.1

raw patch · 9 files changed

+28/−39 lines, 9 filesdep ~amazonka-corePVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: amazonka-core

API changes (from Hackage documentation)

- Network.AWS.SDB.BatchDeleteAttributes: batchDeleteAttributes :: Text -> [DeletableItem] -> BatchDeleteAttributes
+ Network.AWS.SDB.BatchDeleteAttributes: batchDeleteAttributes :: Text -> BatchDeleteAttributes
- Network.AWS.SDB.BatchPutAttributes: batchPutAttributes :: Text -> [ReplaceableItem] -> BatchPutAttributes
+ Network.AWS.SDB.BatchPutAttributes: batchPutAttributes :: Text -> BatchPutAttributes
- Network.AWS.SDB.DeleteAttributes: deleteAttributes :: Text -> Text -> [Attribute] -> DeleteAttributes
+ Network.AWS.SDB.DeleteAttributes: deleteAttributes :: Text -> Text -> DeleteAttributes
- Network.AWS.SDB.GetAttributes: getAttributes :: Text -> Text -> [Text] -> GetAttributes
+ Network.AWS.SDB.GetAttributes: getAttributes :: Text -> Text -> GetAttributes
- Network.AWS.SDB.GetAttributes: getAttributesResponse :: [Attribute] -> GetAttributesResponse
+ Network.AWS.SDB.GetAttributes: getAttributesResponse :: GetAttributesResponse
- Network.AWS.SDB.ListDomains: listDomainsResponse :: [Text] -> ListDomainsResponse
+ Network.AWS.SDB.ListDomains: listDomainsResponse :: ListDomainsResponse
- Network.AWS.SDB.PutAttributes: putAttributes :: Text -> Text -> [ReplaceableAttribute] -> PutAttributes
+ Network.AWS.SDB.PutAttributes: putAttributes :: Text -> Text -> PutAttributes
- Network.AWS.SDB.Select: selectResponse :: [Item] -> SelectResponse
+ Network.AWS.SDB.Select: selectResponse :: SelectResponse
- Network.AWS.SDB.Types: deletableItem :: Text -> [Attribute] -> DeletableItem
+ Network.AWS.SDB.Types: deletableItem :: Text -> DeletableItem
- Network.AWS.SDB.Types: item :: Text -> [Attribute] -> Item
+ Network.AWS.SDB.Types: item :: Text -> Item
- Network.AWS.SDB.Types: replaceableItem :: Text -> [ReplaceableAttribute] -> ReplaceableItem
+ Network.AWS.SDB.Types: replaceableItem :: Text -> ReplaceableItem

Files

amazonka-sdb.cabal view
@@ -1,5 +1,5 @@ name:                  amazonka-sdb-version:               0.0.0+version:               0.0.1 synopsis:              Amazon SimpleDB SDK. homepage:              https://github.com/brendanhay/amazonka license:               OtherLicense@@ -61,5 +61,5 @@     other-modules:      build-depends:-          amazonka-core-        , base          >= 4.7 && < 5+          amazonka-core == 0.0.1.*+        , base          >= 4.7     && < 5
gen/Network/AWS/SDB/BatchDeleteAttributes.hs view
@@ -62,11 +62,10 @@ -- * 'bdaItems' @::@ ['DeletableItem'] -- batchDeleteAttributes :: Text -- ^ 'bdaDomainName'-                      -> [DeletableItem] -- ^ 'bdaItems'                       -> BatchDeleteAttributes-batchDeleteAttributes p1 p2 = BatchDeleteAttributes+batchDeleteAttributes p1 = BatchDeleteAttributes     { _bdaDomainName = p1-    , _bdaItems      = withIso _List (const id) p2+    , _bdaItems      = mempty     }  -- | The name of the domain in which the attributes are being deleted.
gen/Network/AWS/SDB/BatchPutAttributes.hs view
@@ -90,11 +90,10 @@ -- * 'bpaItems' @::@ ['ReplaceableItem'] -- batchPutAttributes :: Text -- ^ 'bpaDomainName'-                   -> [ReplaceableItem] -- ^ 'bpaItems'                    -> BatchPutAttributes-batchPutAttributes p1 p2 = BatchPutAttributes+batchPutAttributes p1 = BatchPutAttributes     { _bpaDomainName = p1-    , _bpaItems      = withIso _List (const id) p2+    , _bpaItems      = mempty     }  -- | The name of the domain in which the attributes are being stored.
gen/Network/AWS/SDB/DeleteAttributes.hs view
@@ -74,12 +74,11 @@ -- deleteAttributes :: Text -- ^ 'daDomainName'                  -> Text -- ^ 'daItemName'-                 -> [Attribute] -- ^ 'daAttributes'                  -> DeleteAttributes-deleteAttributes p1 p2 p3 = DeleteAttributes+deleteAttributes p1 p2 = DeleteAttributes     { _daDomainName = p1     , _daItemName   = p2-    , _daAttributes = withIso _List (const id) p3+    , _daAttributes = mempty     , _daExpected   = Nothing     } 
gen/Network/AWS/SDB/GetAttributes.hs view
@@ -74,12 +74,11 @@ -- getAttributes :: Text -- ^ 'gaDomainName'               -> Text -- ^ 'gaItemName'-              -> [Text] -- ^ 'gaAttributeNames'               -> GetAttributes-getAttributes p1 p2 p3 = GetAttributes+getAttributes p1 p2 = GetAttributes     { _gaDomainName     = p1     , _gaItemName       = p2-    , _gaAttributeNames = withIso _List (const id) p3+    , _gaAttributeNames = mempty     , _gaConsistentRead = Nothing     } @@ -113,10 +112,9 @@ -- -- * 'garAttributes' @::@ ['Attribute'] ---getAttributesResponse :: [Attribute] -- ^ 'garAttributes'-                      -> GetAttributesResponse-getAttributesResponse p1 = GetAttributesResponse-    { _garAttributes = withIso _List (const id) p1+getAttributesResponse :: GetAttributesResponse+getAttributesResponse = GetAttributesResponse+    { _garAttributes = mempty     }  -- | The list of attributes returned by the operation.
gen/Network/AWS/SDB/ListDomains.hs view
@@ -95,10 +95,9 @@ -- -- * 'ldrNextToken' @::@ 'Maybe' 'Text' ---listDomainsResponse :: [Text] -- ^ 'ldrDomainNames'-                    -> ListDomainsResponse-listDomainsResponse p1 = ListDomainsResponse-    { _ldrDomainNames = withIso _List (const id) p1+listDomainsResponse :: ListDomainsResponse+listDomainsResponse = ListDomainsResponse+    { _ldrDomainNames = mempty     , _ldrNextToken   = Nothing     } 
gen/Network/AWS/SDB/PutAttributes.hs view
@@ -91,12 +91,11 @@ -- putAttributes :: Text -- ^ 'paDomainName'               -> Text -- ^ 'paItemName'-              -> [ReplaceableAttribute] -- ^ 'paAttributes'               -> PutAttributes-putAttributes p1 p2 p3 = PutAttributes+putAttributes p1 p2 = PutAttributes     { _paDomainName = p1     , _paItemName   = p2-    , _paAttributes = withIso _List (const id) p3+    , _paAttributes = mempty     , _paExpected   = Nothing     } 
gen/Network/AWS/SDB/Select.hs view
@@ -111,10 +111,9 @@ -- -- * 'srNextToken' @::@ 'Maybe' 'Text' ---selectResponse :: [Item] -- ^ 'srItems'-               -> SelectResponse-selectResponse p1 = SelectResponse-    { _srItems     = withIso _List (const id) p1+selectResponse :: SelectResponse+selectResponse = SelectResponse+    { _srItems     = mempty     , _srNextToken = Nothing     } 
gen/Network/AWS/SDB/Types.hs view
@@ -173,11 +173,10 @@ -- * 'diName' @::@ 'Text' -- deletableItem :: Text -- ^ 'diName'-              -> [Attribute] -- ^ 'diAttributes'               -> DeletableItem-deletableItem p1 p2 = DeletableItem+deletableItem p1 = DeletableItem     { _diName       = p1-    , _diAttributes = withIso _List (const id) p2+    , _diAttributes = mempty     }  diAttributes :: Lens' DeletableItem [Attribute]@@ -211,11 +210,10 @@ -- * 'riName' @::@ 'Text' -- replaceableItem :: Text -- ^ 'riName'-                -> [ReplaceableAttribute] -- ^ 'riAttributes'                 -> ReplaceableItem-replaceableItem p1 p2 = ReplaceableItem+replaceableItem p1 = ReplaceableItem     { _riName       = p1-    , _riAttributes = withIso _List (const id) p2+    , _riAttributes = mempty     }  -- | The list of attributes for a replaceable item.@@ -358,12 +356,11 @@ -- * 'iName' @::@ 'Text' -- item :: Text -- ^ 'iName'-     -> [Attribute] -- ^ 'iAttributes'      -> Item-item p1 p2 = Item+item p1 = Item     { _iName                  = p1-    , _iAttributes            = withIso _List (const id) p2     , _iAlternateNameEncoding = Nothing+    , _iAttributes            = mempty     }  -- |