amazonka-importexport 0.0.1 → 0.0.2
raw patch · 9 files changed
+36/−30 lines, 9 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
- README.md +6/−1
- amazonka-importexport.cabal +8/−8
- gen/Network/AWS/ImportExport.hs +2/−2
- gen/Network/AWS/ImportExport/CancelJob.hs +2/−2
- gen/Network/AWS/ImportExport/CreateJob.hs +2/−2
- gen/Network/AWS/ImportExport/GetStatus.hs +4/−5
- gen/Network/AWS/ImportExport/ListJobs.hs +4/−4
- gen/Network/AWS/ImportExport/Types.hs +6/−4
- gen/Network/AWS/ImportExport/UpdateJob.hs +2/−2
README.md view
@@ -8,7 +8,12 @@ ## Description -AWS Import/Export accelerates moving large amounts of data into and out of AWS using portable storage devices for transport. AWS transfers your data directly onto and off of storage devices using Amazon’s high-speed internal network and bypassing the Internet. For significant data sets, AWS Import/Export is often faster than Internet transfer and more cost effective than upgrading your connectivity.+ AWS Import/Export accelerates moving large amounts of data into and out of+ AWS using portable storage devices for transport. AWS transfers your data+ directly onto and off of storage devices using Amazon’s high-speed internal+ network and bypassing the Internet. For significant data sets, AWS+ Import/Export is often faster than Internet transfer and more cost effective+ than upgrading your connectivity. Documentation is available via [Hackage](http://hackage.haskell.org/package/amazonka-importexport) and [AWS API Reference](http://docs.aws.amazon.com/AWSImportExport/latest/DG/api-reference.html).
amazonka-importexport.cabal view
@@ -1,5 +1,5 @@ name: amazonka-importexport-version: 0.0.1+version: 0.0.2 synopsis: Amazon Import/Export SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -13,12 +13,12 @@ cabal-version: >= 1.10 description:- AWS Import/Export accelerates moving large amounts of data into and out- of AWS using portable storage devices for transport. AWS transfers your- data directly onto and off of storage devices using Amazon’s high-speed- internal network and bypassing the Internet. For significant data sets,- AWS Import/Export is often faster than Internet transfer and more cost- effective than upgrading your connectivity.+ AWS Import/Export accelerates moving large amounts of data into and out of+ AWS using portable storage devices for transport. AWS transfers your data+ directly onto and off of storage devices using Amazon’s high-speed internal+ network and bypassing the Internet. For significant 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> .@@ -47,5 +47,5 @@ other-modules: build-depends:- amazonka-core == 0.0.1.*+ amazonka-core == 0.0.2.* , base >= 4.7 && < 5
gen/Network/AWS/ImportExport.hs view
@@ -12,8 +12,8 @@ -- AWS using portable storage devices for transport. AWS transfers your data -- directly onto and off of storage devices using Amazon’s high-speed internal -- network and bypassing the Internet. For significant data sets, AWS--- Import/Export is often faster than Internet transfer and more cost--- effective than upgrading your connectivity.+-- Import/Export is often faster than Internet transfer and more cost effective+-- than upgrading your connectivity. module Network.AWS.ImportExport ( module Network.AWS.ImportExport.CancelJob , module Network.AWS.ImportExport.CreateJob
gen/Network/AWS/ImportExport/CancelJob.hs view
@@ -20,8 +20,8 @@ -- Stability : experimental -- Portability : non-portable (GHC extensions) --- | 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.+-- | 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. -- -- <http://docs.aws.amazon.com/AWSImportExport/latest/DG/WebCancelJob.html> module Network.AWS.ImportExport.CancelJob
gen/Network/AWS/ImportExport/CreateJob.hs view
@@ -22,8 +22,8 @@ -- | This operation initiates the process of scheduling an upload or download of -- your data. You include in the request a manifest that describes the data--- transfer specifics. The response to the request includes a job ID, which--- you can use in other operations, a signature that you use to identify your+-- transfer specifics. The response to the request includes a job ID, 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. -- -- <http://docs.aws.amazon.com/AWSImportExport/latest/DG/WebCreateJob.html>
gen/Network/AWS/ImportExport/GetStatus.hs view
@@ -20,10 +20,9 @@ -- Stability : experimental -- Portability : non-portable (GHC extensions) --- | This operation returns information about a job, including where the job 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.+-- | This operation returns information about a job, including where the job 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. -- -- <http://docs.aws.amazon.com/AWSImportExport/latest/DG/WebGetStatus.html> module Network.AWS.ImportExport.GetStatus@@ -85,7 +84,7 @@ data GetStatusResponse = GetStatusResponse { _gsrAwsShippingAddress :: Maybe Text , _gsrCarrier :: Maybe Text- , _gsrCreationDate :: Maybe RFC822+ , _gsrCreationDate :: Maybe ISO8601 , _gsrCurrentManifest :: Maybe Text , _gsrErrorCount :: Maybe Int , _gsrJobId :: Maybe Text
gen/Network/AWS/ImportExport/ListJobs.hs view
@@ -21,10 +21,10 @@ -- Portability : non-portable (GHC extensions) -- | This operation returns the jobs associated with the requester. AWS--- Import/Export lists the jobs in reverse chronological order based on the--- date of creation. For example if Job Test1 was created 2009Dec30 and Test2--- was created 2010Feb05, the ListJobs operation would return Test2 followed--- by Test1.+-- Import/Export lists the jobs in reverse chronological order based on the date+-- of creation. For example if Job Test1 was created 2009Dec30 and Test2 was+-- created 2010Feb05, the ListJobs operation would return Test2 followed by+-- Test1. -- -- <http://docs.aws.amazon.com/AWSImportExport/latest/DG/WebListJobs.html> module Network.AWS.ImportExport.ListJobs
gen/Network/AWS/ImportExport/Types.hs view
@@ -75,8 +75,11 @@ instance Hashable JobType instance FromText JobType where- parser = match "Export" Export'- <|> match "Import" Import'+ parser = takeText >>= \case+ "Export" -> pure Export'+ "Import" -> pure Import'+ e -> fail $+ "Failure parsing JobType from " ++ show e instance ToText JobType where toText = \case@@ -90,9 +93,8 @@ instance FromXML JobType where parseXML = parseXMLText "JobType" - data Job = Job- { _jobCreationDate :: RFC822+ { _jobCreationDate :: ISO8601 , _jobIsCanceled :: Bool , _jobJobId :: Text , _jobJobType :: JobType
gen/Network/AWS/ImportExport/UpdateJob.hs view
@@ -21,8 +21,8 @@ -- Portability : non-portable (GHC extensions) -- | You use this operation to change the parameters specified in the original--- manifest file by supplying a new manifest file. The manifest file attached--- to this request replaces the original manifest file. You can only use the+-- manifest file by supplying a new manifest file. The manifest 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. --