packages feed

amazonka-importexport 1.3.7 → 1.4.0

raw patch · 17 files changed

+41/−38 lines, 17 filesdep ~amazonka-coredep ~amazonka-importexportdep ~amazonka-testPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: amazonka-core, amazonka-importexport, amazonka-test

API changes (from Hackage documentation)

+ Network.AWS.ImportExport.CancelJob: instance Data.Hashable.Class.Hashable Network.AWS.ImportExport.CancelJob.CancelJob
+ Network.AWS.ImportExport.CreateJob: instance Data.Hashable.Class.Hashable Network.AWS.ImportExport.CreateJob.CreateJob
+ Network.AWS.ImportExport.GetShippingLabel: instance Data.Hashable.Class.Hashable Network.AWS.ImportExport.GetShippingLabel.GetShippingLabel
+ Network.AWS.ImportExport.GetStatus: instance Data.Hashable.Class.Hashable Network.AWS.ImportExport.GetStatus.GetStatus
+ Network.AWS.ImportExport.ListJobs: instance Data.Hashable.Class.Hashable Network.AWS.ImportExport.ListJobs.ListJobs
+ Network.AWS.ImportExport.UpdateJob: instance Data.Hashable.Class.Hashable Network.AWS.ImportExport.UpdateJob.UpdateJob

Files

README.md view
@@ -8,7 +8,7 @@  ## Version -`1.3.7`+`1.4.0`   ## Description@@ -22,7 +22,7 @@ upgrading your connectivity.  Documentation is available via [Hackage](http://hackage.haskell.org/package/amazonka-importexport)-and the [AWS API Reference](http://docs.aws.amazon.com/AWSImportExport/latest/DG/api-reference.html).+and the [AWS API Reference](https://aws.amazon.com/documentation/).  The types from this library are intended to be used with [amazonka](http://hackage.haskell.org/package/amazonka), which provides mechanisms for specifying AuthN/AuthZ information and sending requests.
amazonka-importexport.cabal view
@@ -1,5 +1,5 @@ name:                  amazonka-importexport-version:               1.3.7+version:               1.4.0 synopsis:              Amazon Import/Export SDK. homepage:              https://github.com/brendanhay/amazonka bug-reports:           https://github.com/brendanhay/amazonka/issues@@ -7,7 +7,7 @@ license-file:          LICENSE author:                Brendan Hay maintainer:            Brendan Hay <brendan.g.hay@gmail.com>-copyright:             Copyright (c) 2013-2015 Brendan Hay+copyright:             Copyright (c) 2013-2016 Brendan Hay category:              Network, AWS, Cloud, Distributed Computing build-type:            Simple cabal-version:         >= 1.10@@ -32,7 +32,7 @@     such as <http://hackage.haskell.org/package/lens lens> or     <http://hackage.haskell.org/package/lens-family-core lens-family-core>.     .-    See "Network.AWS.ImportExport" and the <http://docs.aws.amazon.com/AWSImportExport/latest/DG/api-reference.html AWS API Reference>+    See "Network.AWS.ImportExport" or <https://aws.amazon.com/documentation/ the AWS Documentation>     to get started.  source-repository head@@ -61,7 +61,7 @@         , Network.AWS.ImportExport.Types.Sum      build-depends:-          amazonka-core == 1.3.7.*+          amazonka-core == 1.4.0.*         , base          >= 4.7     && < 5  test-suite amazonka-importexport-test@@ -81,9 +81,9 @@         , Test.AWS.ImportExport.Internal      build-depends:-          amazonka-core == 1.3.7.*-        , amazonka-test == 1.3.7.*-        , amazonka-importexport == 1.3.7.*+          amazonka-core == 1.4.0.*+        , amazonka-test == 1.4.0.*+        , amazonka-importexport == 1.4.0.*         , base         , bytestring         , tasty
gen/Network/AWS/ImportExport.hs view
@@ -5,7 +5,7 @@  -- | -- Module      : Network.AWS.ImportExport--- Copyright   : (c) 2013-2015 Brendan Hay+-- Copyright   : (c) 2013-2016 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : auto-generated@@ -18,8 +18,6 @@ -- and bypassing the Internet. For large data sets, AWS Import\/Export is -- often faster than Internet transfer and more cost effective than -- upgrading your connectivity.------ /See:/ <http://docs.aws.amazon.com/AWSImportExport/latest/DG/api-reference.html AWS API Reference> module Network.AWS.ImportExport     (     -- * Service Configuration
gen/Network/AWS/ImportExport/CancelJob.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.ImportExport.CancelJob--- Copyright   : (c) 2013-2015 Brendan Hay+-- Copyright   : (c) 2013-2016 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : auto-generated@@ -20,8 +20,6 @@ -- -- This operation cancels a specified job. Only the job owner can cancel -- it. The operation fails if the job has already started or is complete.------ /See:/ <http://docs.aws.amazon.com/AWSImportExport/latest/DG/WebCancelJob.html AWS API Reference> for CancelJob. module Network.AWS.ImportExport.CancelJob     (     -- * Creating a Request@@ -86,6 +84,8 @@               (\ s h x ->                  CancelJobResponse' <$>                    (x .@? "Success") <*> (pure (fromEnum s)))++instance Hashable CancelJob  instance ToHeaders CancelJob where         toHeaders = const mempty
gen/Network/AWS/ImportExport/CreateJob.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.ImportExport.CreateJob--- Copyright   : (c) 2013-2015 Brendan Hay+-- Copyright   : (c) 2013-2016 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : auto-generated@@ -24,8 +24,6 @@ -- which you can use in other operations, a signature that you use to -- identify your storage device, and the address where you should ship your -- storage device.------ /See:/ <http://docs.aws.amazon.com/AWSImportExport/latest/DG/WebCreateJob.html AWS API Reference> for CreateJob. module Network.AWS.ImportExport.CreateJob     (     -- * Creating a Request@@ -131,6 +129,8 @@                      (x .@? "ArtifactList" .!@ mempty >>=                         may (parseXMLList "member"))                      <*> (pure (fromEnum s)))++instance Hashable CreateJob  instance ToHeaders CreateJob where         toHeaders = const mempty
gen/Network/AWS/ImportExport/GetShippingLabel.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.ImportExport.GetShippingLabel--- Copyright   : (c) 2013-2015 Brendan Hay+-- Copyright   : (c) 2013-2016 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : auto-generated@@ -20,8 +20,6 @@ -- -- This operation generates a pre-paid UPS shipping label that you will use -- to ship your device to AWS for processing.------ /See:/ <http://docs.aws.amazon.com/AWSImportExport/latest/DG/WebGetShippingLabel.html AWS API Reference> for GetShippingLabel. module Network.AWS.ImportExport.GetShippingLabel     (     -- * Creating a Request@@ -175,6 +173,8 @@                  GetShippingLabelResponse' <$>                    (x .@? "ShippingLabelURL") <*> (x .@? "Warning") <*>                      (pure (fromEnum s)))++instance Hashable GetShippingLabel  instance ToHeaders GetShippingLabel where         toHeaders = const mempty
gen/Network/AWS/ImportExport/GetStatus.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.ImportExport.GetStatus--- Copyright   : (c) 2013-2015 Brendan Hay+-- Copyright   : (c) 2013-2016 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : auto-generated@@ -22,8 +22,6 @@ -- is in the processing pipeline, the status of the results, and the -- signature value associated with the job. You can only return information -- about jobs you own.------ /See:/ <http://docs.aws.amazon.com/AWSImportExport/latest/DG/WebGetStatus.html AWS API Reference> for GetStatus. module Network.AWS.ImportExport.GetStatus     (     -- * Creating a Request@@ -120,6 +118,8 @@                      <*> (x .@? "LocationMessage")                      <*> (x .@? "ProgressMessage")                      <*> (pure (fromEnum s)))++instance Hashable GetStatus  instance ToHeaders GetStatus where         toHeaders = const mempty
gen/Network/AWS/ImportExport/ListJobs.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.ImportExport.ListJobs--- Copyright   : (c) 2013-2015 Brendan Hay+-- Copyright   : (c) 2013-2016 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : auto-generated@@ -24,8 +24,6 @@ -- Test2 was created 2010Feb05, the ListJobs operation would return Test2 -- followed by Test1. ----- /See:/ <http://docs.aws.amazon.com/AWSImportExport/latest/DG/WebListJobs.html AWS API Reference> for ListJobs.--- -- This operation returns paginated results. module Network.AWS.ImportExport.ListJobs     (@@ -113,6 +111,8 @@                       may (parseXMLList "member"))                      <*> (x .@? "IsTruncated")                      <*> (pure (fromEnum s)))++instance Hashable ListJobs  instance ToHeaders ListJobs where         toHeaders = const mempty
gen/Network/AWS/ImportExport/Types.hs view
@@ -4,7 +4,7 @@  -- | -- Module      : Network.AWS.ImportExport.Types--- Copyright   : (c) 2013-2015 Brendan Hay+-- Copyright   : (c) 2013-2016 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : auto-generated@@ -84,6 +84,7 @@         , _retryCheck = check         }     check e+      | has (hasStatus 429) e = Just "too_many_requests"       | has (hasCode "ThrottlingException" . hasStatus 400) e =           Just "throttling_exception"       | has (hasCode "Throttling" . hasStatus 400) e = Just "throttling"
gen/Network/AWS/ImportExport/Types/Product.hs view
@@ -9,7 +9,7 @@  -- | -- Module      : Network.AWS.ImportExport.Types.Product--- Copyright   : (c) 2013-2015 Brendan Hay+-- Copyright   : (c) 2013-2016 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : auto-generated@@ -58,6 +58,8 @@           = Artifact' <$>               (x .@? "URL") <*> (x .@? "Description") +instance Hashable Artifact+ -- | Representation of a job returned by the ListJobs operation. -- -- /See:/ 'job' smart constructor.@@ -115,3 +117,5 @@               (x .@ "JobType") <*> (x .@ "JobId") <*>                 (x .@ "IsCanceled")                 <*> (x .@ "CreationDate")++instance Hashable Job
gen/Network/AWS/ImportExport/Types/Sum.hs view
@@ -9,7 +9,7 @@  -- | -- Module      : Network.AWS.ImportExport.Types.Sum--- Copyright   : (c) 2013-2015 Brendan Hay+-- Copyright   : (c) 2013-2016 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : auto-generated
gen/Network/AWS/ImportExport/UpdateJob.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.ImportExport.UpdateJob--- Copyright   : (c) 2013-2015 Brendan Hay+-- Copyright   : (c) 2013-2016 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : auto-generated@@ -23,8 +23,6 @@ -- file attached to this request replaces the original manifest file. You -- can only use the operation after a CreateJob request but before the data -- transfer starts and you can only use it on jobs you own.------ /See:/ <http://docs.aws.amazon.com/AWSImportExport/latest/DG/WebUpdateJob.html AWS API Reference> for UpdateJob. module Network.AWS.ImportExport.UpdateJob     (     -- * Creating a Request@@ -124,6 +122,8 @@                      (x .@? "ArtifactList" .!@ mempty >>=                         may (parseXMLList "member"))                      <*> (pure (fromEnum s)))++instance Hashable UpdateJob  instance ToHeaders UpdateJob where         toHeaders = const mempty
gen/Network/AWS/ImportExport/Waiters.hs view
@@ -7,7 +7,7 @@  -- | -- Module      : Network.AWS.ImportExport.Waiters--- Copyright   : (c) 2013-2015 Brendan Hay+-- Copyright   : (c) 2013-2016 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : auto-generated
test/Main.hs view
@@ -2,7 +2,7 @@  -- | -- Module      : Main--- Copyright   : (c) 2013-2015 Brendan Hay+-- Copyright   : (c) 2013-2016 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : auto-generated
test/Test/AWS/Gen/ImportExport.hs view
@@ -5,7 +5,7 @@  -- | -- Module      : Test.AWS.Gen.ImportExport--- Copyright   : (c) 2013-2015 Brendan Hay+-- Copyright   : (c) 2013-2016 Brendan Hay -- License     : Mozilla Public License, v. 2.0. -- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com> -- Stability   : auto-generated
test/Test/AWS/ImportExport.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE OverloadedStrings #-}  -- Module      : Test.AWS.ImportExport--- Copyright   : (c) 2013-2015 Brendan Hay+-- Copyright   : (c) 2013-2016 Brendan Hay -- License     : This Source Code Form is subject to the terms of --               the Mozilla Public License, v. 2.0. --               A copy of the MPL can be found in the LICENSE file or
test/Test/AWS/ImportExport/Internal.hs view
@@ -2,7 +2,7 @@ {-# OPTIONS_GHC -fno-warn-unused-imports #-}  -- Module      : Test.AWS.ImportExport.Internal--- Copyright   : (c) 2013-2015 Brendan Hay+-- Copyright   : (c) 2013-2016 Brendan Hay -- License     : This Source Code Form is subject to the terms of --               the Mozilla Public License, v. 2.0. --               A copy of the MPL can be found in the LICENSE file or