packages feed

amazonka-sdb 0.0.4 → 0.0.5

raw patch · 14 files changed

+39/−13 lines, 14 filesdep ~amazonka-corePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: amazonka-core

API changes (from Hackage documentation)

Files

README.md view
@@ -37,3 +37,5 @@ ## Licence  `amazonka-sdb` is released under the [Mozilla Public License Version 2.0](http://www.mozilla.org/MPL/).++Parts of the code are derived from AWS service descriptions, licensed under Apache 2.0.
amazonka-sdb.cabal view
@@ -1,5 +1,5 @@ name:                  amazonka-sdb-version:               0.0.4+version:               0.0.5 synopsis:              Amazon SimpleDB SDK. homepage:              https://github.com/brendanhay/amazonka license:               OtherLicense@@ -61,5 +61,5 @@     other-modules:      build-depends:-          amazonka-core == 0.0.4.*+          amazonka-core == 0.0.5.*         , base          >= 4.7     && < 5
gen/Network/AWS/SDB.hs view
@@ -7,6 +7,8 @@ -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0.  -- | Amazon SimpleDB is a highly available and flexible non-relational data store -- that offloads the work of database administration. Developers simply store
gen/Network/AWS/SDB/BatchDeleteAttributes.hs view
@@ -19,6 +19,8 @@ -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0.  -- | Performs multiple DeleteAttributes operations in a single call, which -- reduces round trips and latencies. This enables Amazon SimpleDB to optimize@@ -51,7 +53,7 @@  data BatchDeleteAttributes = BatchDeleteAttributes     { _bdaDomainName :: Text-    , _bdaItems      :: List "Item" DeletableItem+    , _bdaItems      :: List "member" DeletableItem     } deriving (Eq, Show)  -- | 'BatchDeleteAttributes' constructor.
gen/Network/AWS/SDB/BatchPutAttributes.hs view
@@ -19,6 +19,8 @@ -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0.  -- | The 'BatchPutAttributes' operation creates or replaces attributes within one -- or more items. By using this operation, the client can perform multiple 'PutAttribute' operation with a single call. This helps yield savings in round trips and@@ -80,7 +82,7 @@  data BatchPutAttributes = BatchPutAttributes     { _bpaDomainName :: Text-    , _bpaItems      :: List "Item" ReplaceableItem+    , _bpaItems      :: List "member" ReplaceableItem     } deriving (Eq, Show)  -- | 'BatchPutAttributes' constructor.
gen/Network/AWS/SDB/CreateDomain.hs view
@@ -19,6 +19,8 @@ -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0.  -- | The 'CreateDomain' operation creates a new domain. The domain name should be -- unique among the domains associated with the Access Key ID provided in the
gen/Network/AWS/SDB/DeleteAttributes.hs view
@@ -19,6 +19,8 @@ -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0.  -- | Deletes one or more attributes associated with an item. If all attributes of -- the item are deleted, the item is deleted.@@ -56,7 +58,7 @@ import qualified GHC.Exts  data DeleteAttributes = DeleteAttributes-    { _daAttributes :: List "Attribute" Attribute+    { _daAttributes :: List "member" Attribute     , _daDomainName :: Text     , _daExpected   :: Maybe UpdateCondition     , _daItemName   :: Text
gen/Network/AWS/SDB/DeleteDomain.hs view
@@ -19,6 +19,8 @@ -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0.  -- | The 'DeleteDomain' operation deletes a domain. Any items (and their -- attributes) in the domain are deleted as well. The 'DeleteDomain' operation
gen/Network/AWS/SDB/DomainMetadata.hs view
@@ -19,6 +19,8 @@ -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0.  -- | Returns information about the domain, including when the domain was created, -- the number of items and attributes in the domain, and the size of the
gen/Network/AWS/SDB/GetAttributes.hs view
@@ -19,6 +19,8 @@ -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0.  -- | Returns all of the attributes associated with the specified item. -- Optionally, the attributes returned can be limited to one or more attributes@@ -55,7 +57,7 @@ import qualified GHC.Exts  data GetAttributes = GetAttributes-    { _gaAttributeNames :: List "AttributeName" Text+    { _gaAttributeNames :: List "member" Text     , _gaConsistentRead :: Maybe Bool     , _gaDomainName     :: Text     , _gaItemName       :: Text@@ -103,7 +105,7 @@ gaItemName = lens _gaItemName (\s a -> s { _gaItemName = a })  newtype GetAttributesResponse = GetAttributesResponse-    { _garAttributes :: List "Attribute" Attribute+    { _garAttributes :: List "member" Attribute     } deriving (Eq, Show, Monoid, Semigroup)  -- | 'GetAttributesResponse' constructor.
gen/Network/AWS/SDB/ListDomains.hs view
@@ -19,6 +19,8 @@ -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0.  -- | The 'ListDomains' operation lists all domains associated with the Access Key -- ID. It returns domain names up to the limit set by <#MaxNumberOfDomains MaxNumberOfDomains>. A <#NextToken NextToken> is returned if there are more than 'MaxNumberOfDomains' domains. Calling 'ListDomains' successive times with the 'NextToken' provided by the operation returns up to 'MaxNumberOfDomains' more domain names with each successive operation call.@@ -79,7 +81,7 @@ ldNextToken = lens _ldNextToken (\s a -> s { _ldNextToken = a })  data ListDomainsResponse = ListDomainsResponse-    { _ldrDomainNames :: List "DomainName" Text+    { _ldrDomainNames :: List "member" Text     , _ldrNextToken   :: Maybe Text     } deriving (Eq, Ord, Show) 
gen/Network/AWS/SDB/PutAttributes.hs view
@@ -19,6 +19,8 @@ -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0.  -- | The PutAttributes operation creates or replaces attributes in an item. The -- client may specify new attributes using a combination of the 'Attribute.X.Name'@@ -74,7 +76,7 @@ import qualified GHC.Exts  data PutAttributes = PutAttributes-    { _paAttributes :: List "Attribute" ReplaceableAttribute+    { _paAttributes :: List "member" ReplaceableAttribute     , _paDomainName :: Text     , _paExpected   :: Maybe UpdateCondition     , _paItemName   :: Text
gen/Network/AWS/SDB/Select.hs view
@@ -19,6 +19,8 @@ -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0.  -- | The 'Select' operation returns a set of attributes for 'ItemNames' that match -- the select expression. 'Select' is similar to the standard SQL SELECT@@ -100,7 +102,7 @@     lens _sSelectExpression (\s a -> s { _sSelectExpression = a })  data SelectResponse = SelectResponse-    { _srItems     :: List "Item" Item+    { _srItems     :: List "member" Item     , _srNextToken :: Maybe Text     } deriving (Eq, Show) 
gen/Network/AWS/SDB/Types.hs view
@@ -19,6 +19,8 @@ -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0.  module Network.AWS.SDB.Types     (@@ -159,7 +161,7 @@         ]  data DeletableItem = DeletableItem-    { _diAttributes :: List "Attribute" Attribute+    { _diAttributes :: List "member" Attribute     , _diName       :: Text     } deriving (Eq, Show) @@ -196,7 +198,7 @@         ]  data ReplaceableItem = ReplaceableItem-    { _riAttributes :: List "Attribute" ReplaceableAttribute+    { _riAttributes :: List "member" ReplaceableAttribute     , _riName       :: Text     } deriving (Eq, Show) @@ -339,7 +341,7 @@  data Item = Item     { _iAlternateNameEncoding :: Maybe Text-    , _iAttributes            :: List "Attribute" Attribute+    , _iAttributes            :: List "member" Attribute     , _iName                  :: Text     } deriving (Eq, Show)