packages feed

amazonka-codepipeline 1.3.7 → 1.4.0

raw patch · 34 files changed

+262/−186 lines, 34 filesdep ~amazonka-codepipelinedep ~amazonka-coredep ~amazonka-testPVP ok

version bump matches the API change (PVP)

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

API changes (from Hackage documentation)

+ Network.AWS.CodePipeline.AcknowledgeJob: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.AcknowledgeJob.AcknowledgeJob
+ Network.AWS.CodePipeline.AcknowledgeThirdPartyJob: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.AcknowledgeThirdPartyJob.AcknowledgeThirdPartyJob
+ Network.AWS.CodePipeline.CreateCustomActionType: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.CreateCustomActionType.CreateCustomActionType
+ Network.AWS.CodePipeline.CreatePipeline: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.CreatePipeline.CreatePipeline
+ Network.AWS.CodePipeline.DeleteCustomActionType: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.DeleteCustomActionType.DeleteCustomActionType
+ Network.AWS.CodePipeline.DeletePipeline: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.DeletePipeline.DeletePipeline
+ Network.AWS.CodePipeline.DisableStageTransition: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.DisableStageTransition.DisableStageTransition
+ Network.AWS.CodePipeline.EnableStageTransition: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.EnableStageTransition.EnableStageTransition
+ Network.AWS.CodePipeline.GetJobDetails: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.GetJobDetails.GetJobDetails
+ Network.AWS.CodePipeline.GetPipeline: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.GetPipeline.GetPipeline
+ Network.AWS.CodePipeline.GetPipelineState: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.GetPipelineState.GetPipelineState
+ Network.AWS.CodePipeline.GetThirdPartyJobDetails: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.GetThirdPartyJobDetails.GetThirdPartyJobDetails
+ Network.AWS.CodePipeline.ListActionTypes: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.ListActionTypes.ListActionTypes
+ Network.AWS.CodePipeline.ListPipelines: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.ListPipelines.ListPipelines
+ Network.AWS.CodePipeline.PollForJobs: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.PollForJobs.PollForJobs
+ Network.AWS.CodePipeline.PollForThirdPartyJobs: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.PollForThirdPartyJobs.PollForThirdPartyJobs
+ Network.AWS.CodePipeline.PutActionRevision: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.PutActionRevision.PutActionRevision
+ Network.AWS.CodePipeline.PutJobFailureResult: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.PutJobFailureResult.PutJobFailureResult
+ Network.AWS.CodePipeline.PutJobSuccessResult: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.PutJobSuccessResult.PutJobSuccessResult
+ Network.AWS.CodePipeline.PutThirdPartyJobFailureResult: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.PutThirdPartyJobFailureResult.PutThirdPartyJobFailureResult
+ Network.AWS.CodePipeline.PutThirdPartyJobSuccessResult: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.PutThirdPartyJobSuccessResult.PutThirdPartyJobSuccessResult
+ Network.AWS.CodePipeline.StartPipelineExecution: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.StartPipelineExecution.StartPipelineExecution
+ Network.AWS.CodePipeline.UpdatePipeline: instance Data.Hashable.Class.Hashable Network.AWS.CodePipeline.UpdatePipeline.UpdatePipeline

Files

README.md view
@@ -8,7 +8,7 @@  ## Version -`1.3.7`+`1.4.0`   ## Description@@ -29,16 +29,17 @@  You can work with pipelines by calling: --   CreatePipeline, which creates a uniquely-named pipeline.--   DeletePipeline, which deletes the specified pipeline.--   GetPipeline, which returns information about a pipeline structure.--   GetPipelineState, which returns information about the current state-    of the stages and actions of a pipeline.--   ListPipelines, which gets a summary of all of the pipelines+-   < CreatePipeline>, which creates a uniquely-named pipeline.+-   < DeletePipeline>, which deletes the specified pipeline.+-   < GetPipeline>, which returns information about a pipeline+    structure.+-   < GetPipelineState>, which returns information about the current+    state of the stages and actions of a pipeline.+-   < ListPipelines>, which gets a summary of all of the pipelines     associated with your account.--   StartPipelineExecution, which runs the the most recent revision of-    an artifact through the pipeline.--   UpdatePipeline, which updates a pipeline with edits or changes to+-   < StartPipelineExecution>, which runs the the most recent revision+    of an artifact through the pipeline.+-   < UpdatePipeline>, which updates a pipeline with edits or changes to     the structure of the pipeline.  Pipelines include /stages/, which are which are logical groupings of@@ -47,9 +48,9 @@ failure. If a stage fails, then the pipeline stops at that stage and will remain stopped until either a new version of an artifact appears in the source location, or a user takes action to re-run the most recent-artifact through the pipeline. You can call GetPipelineState, which+artifact through the pipeline. You can call < GetPipelineState>, which displays the status of a pipeline, including the status of stages in the-pipeline, or GetPipeline, which returns the entire structure of the+pipeline, or < GetPipeline>, which returns the entire structure of the pipeline, including the stages of that pipeline. For more information about the structure of stages and actions, also refer to the AWS CodePipeline Pipeline Structure Reference.@@ -59,8 +60,8 @@ For example, you can use a source action to import artifacts into a pipeline from a source such as Amazon S3. Like stages, you do not work with actions directly in most cases, but you do define and interact with-actions when working with pipeline operations such as CreatePipeline and-GetPipelineState.+actions when working with pipeline operations such as < CreatePipeline>+and < GetPipelineState>.  Pipelines also include /transitions/, which allow the transition of artifacts from one stage to the next in a pipeline after the actions in@@ -68,10 +69,10 @@  You can work with transitions by calling: --   DisableStageTransition, which prevents artifacts from transitioning-    to the next stage in a pipeline.--   EnableStageTransition, which enables transition of artifacts between-    stages in a pipeline.+-   < DisableStageTransition>, which prevents artifacts from+    transitioning to the next stage in a pipeline.+-   < EnableStageTransition>, which enables transition of artifacts+    between stages in a pipeline.  __Using the API to integrate with AWS CodePipeline__ @@ -85,33 +86,33 @@      You can work with jobs by calling: -    -   AcknowledgeJob, which confirms whether a job worker has received-        the specified job,-    -   GetJobDetails, which returns the details of a job,-    -   PollForJobs, which determines whether there are any jobs to act-        upon,-    -   PutJobFailureResult, which provides details of a job failure,+    -   < AcknowledgeJob>, which confirms whether a job worker has+        received the specified job,+    -   < GetJobDetails>, which returns the details of a job,+    -   < PollForJobs>, which determines whether there are any jobs to+        act upon,+    -   < PutJobFailureResult>, which provides details of a job failure,         and-    -   PutJobSuccessResult, which provides details of a job success.+    -   < PutJobSuccessResult>, which provides details of a job success. -   Third party jobs, which are instances of an action created by a     partner action and integrated into AWS CodePipeline. Partner actions     are created by members of the AWS Partner Network.      You can work with third party jobs by calling: -    -   AcknowledgeThirdPartyJob, which confirms whether a job worker+    -   < AcknowledgeThirdPartyJob>, which confirms whether a job worker         has received the specified job,-    -   GetThirdPartyJobDetails, which requests the details of a job for-        a partner action,-    -   PollForThirdPartyJobs, which determines whether there are any+    -   < GetThirdPartyJobDetails>, which requests the details of a job+        for a partner action,+    -   < PollForThirdPartyJobs>, which determines whether there are any         jobs to act upon,-    -   PutThirdPartyJobFailureResult, which provides details of a job-        failure, and-    -   PutThirdPartyJobSuccessResult, which provides details of a job-        success.+    -   < PutThirdPartyJobFailureResult>, which provides details of a+        job failure, and+    -   < PutThirdPartyJobSuccessResult>, which provides details of a+        job success.  Documentation is available via [Hackage](http://hackage.haskell.org/package/amazonka-codepipeline)-and the [AWS API Reference](http://docs.aws.amazon.com/codepipeline/latest/APIReference/Welcome.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-codepipeline.cabal view
@@ -1,5 +1,5 @@ name:                  amazonka-codepipeline-version:               1.3.7+version:               1.4.0 synopsis:              Amazon CodePipeline 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@@ -29,16 +29,17 @@      You can work with pipelines by calling: -    -   CreatePipeline, which creates a uniquely-named pipeline.-    -   DeletePipeline, which deletes the specified pipeline.-    -   GetPipeline, which returns information about a pipeline structure.-    -   GetPipelineState, which returns information about the current state-        of the stages and actions of a pipeline.-    -   ListPipelines, which gets a summary of all of the pipelines+    -   < CreatePipeline>, which creates a uniquely-named pipeline.+    -   < DeletePipeline>, which deletes the specified pipeline.+    -   < GetPipeline>, which returns information about a pipeline+        structure.+    -   < GetPipelineState>, which returns information about the current+        state of the stages and actions of a pipeline.+    -   < ListPipelines>, which gets a summary of all of the pipelines         associated with your account.-    -   StartPipelineExecution, which runs the the most recent revision of-        an artifact through the pipeline.-    -   UpdatePipeline, which updates a pipeline with edits or changes to+    -   < StartPipelineExecution>, which runs the the most recent revision+        of an artifact through the pipeline.+    -   < UpdatePipeline>, which updates a pipeline with edits or changes to         the structure of the pipeline.      Pipelines include /stages/, which are which are logical groupings of@@ -47,9 +48,9 @@     failure. If a stage fails, then the pipeline stops at that stage and     will remain stopped until either a new version of an artifact appears in     the source location, or a user takes action to re-run the most recent-    artifact through the pipeline. You can call GetPipelineState, which+    artifact through the pipeline. You can call < GetPipelineState>, which     displays the status of a pipeline, including the status of stages in the-    pipeline, or GetPipeline, which returns the entire structure of the+    pipeline, or < GetPipeline>, which returns the entire structure of the     pipeline, including the stages of that pipeline. For more information     about the structure of stages and actions, also refer to the AWS     CodePipeline Pipeline Structure Reference.@@ -59,8 +60,8 @@     For example, you can use a source action to import artifacts into a     pipeline from a source such as Amazon S3. Like stages, you do not work     with actions directly in most cases, but you do define and interact with-    actions when working with pipeline operations such as CreatePipeline and-    GetPipelineState.+    actions when working with pipeline operations such as < CreatePipeline>+    and < GetPipelineState>.      Pipelines also include /transitions/, which allow the transition of     artifacts from one stage to the next in a pipeline after the actions in@@ -68,10 +69,10 @@      You can work with transitions by calling: -    -   DisableStageTransition, which prevents artifacts from transitioning-        to the next stage in a pipeline.-    -   EnableStageTransition, which enables transition of artifacts between-        stages in a pipeline.+    -   < DisableStageTransition>, which prevents artifacts from+        transitioning to the next stage in a pipeline.+    -   < EnableStageTransition>, which enables transition of artifacts+        between stages in a pipeline.      __Using the API to integrate with AWS CodePipeline__ @@ -85,30 +86,30 @@          You can work with jobs by calling: -        -   AcknowledgeJob, which confirms whether a job worker has received-            the specified job,-        -   GetJobDetails, which returns the details of a job,-        -   PollForJobs, which determines whether there are any jobs to act-            upon,-        -   PutJobFailureResult, which provides details of a job failure,+        -   < AcknowledgeJob>, which confirms whether a job worker has+            received the specified job,+        -   < GetJobDetails>, which returns the details of a job,+        -   < PollForJobs>, which determines whether there are any jobs to+            act upon,+        -   < PutJobFailureResult>, which provides details of a job failure,             and-        -   PutJobSuccessResult, which provides details of a job success.+        -   < PutJobSuccessResult>, which provides details of a job success.     -   Third party jobs, which are instances of an action created by a         partner action and integrated into AWS CodePipeline. Partner actions         are created by members of the AWS Partner Network.          You can work with third party jobs by calling: -        -   AcknowledgeThirdPartyJob, which confirms whether a job worker+        -   < AcknowledgeThirdPartyJob>, which confirms whether a job worker             has received the specified job,-        -   GetThirdPartyJobDetails, which requests the details of a job for-            a partner action,-        -   PollForThirdPartyJobs, which determines whether there are any+        -   < GetThirdPartyJobDetails>, which requests the details of a job+            for a partner action,+        -   < PollForThirdPartyJobs>, which determines whether there are any             jobs to act upon,-        -   PutThirdPartyJobFailureResult, which provides details of a job-            failure, and-        -   PutThirdPartyJobSuccessResult, which provides details of a job-            success.+        -   < PutThirdPartyJobFailureResult>, which provides details of a+            job failure, and+        -   < PutThirdPartyJobSuccessResult>, which provides details of a+            job success.     .     The types from this library are intended to be used with     <http://hackage.haskell.org/package/amazonka amazonka>, which provides@@ -121,7 +122,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.CodePipeline" and the <http://docs.aws.amazon.com/codepipeline/latest/APIReference/Welcome.html AWS API Reference>+    See "Network.AWS.CodePipeline" or <https://aws.amazon.com/documentation/ the AWS Documentation>     to get started.  source-repository head@@ -167,7 +168,7 @@         , Network.AWS.CodePipeline.Types.Sum      build-depends:-          amazonka-core == 1.3.7.*+          amazonka-core == 1.4.0.*         , base          >= 4.7     && < 5  test-suite amazonka-codepipeline-test@@ -187,9 +188,9 @@         , Test.AWS.CodePipeline.Internal      build-depends:-          amazonka-core == 1.3.7.*-        , amazonka-test == 1.3.7.*-        , amazonka-codepipeline == 1.3.7.*+          amazonka-core == 1.4.0.*+        , amazonka-test == 1.4.0.*+        , amazonka-codepipeline == 1.4.0.*         , base         , bytestring         , tasty
gen/Network/AWS/CodePipeline.hs view
@@ -5,7 +5,7 @@  -- | -- Module      : Network.AWS.CodePipeline--- 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@@ -27,16 +27,17 @@ -- -- You can work with pipelines by calling: ----- -   CreatePipeline, which creates a uniquely-named pipeline.--- -   DeletePipeline, which deletes the specified pipeline.--- -   GetPipeline, which returns information about a pipeline structure.--- -   GetPipelineState, which returns information about the current state---     of the stages and actions of a pipeline.--- -   ListPipelines, which gets a summary of all of the pipelines+-- -   < CreatePipeline>, which creates a uniquely-named pipeline.+-- -   < DeletePipeline>, which deletes the specified pipeline.+-- -   < GetPipeline>, which returns information about a pipeline+--     structure.+-- -   < GetPipelineState>, which returns information about the current+--     state of the stages and actions of a pipeline.+-- -   < ListPipelines>, which gets a summary of all of the pipelines --     associated with your account.--- -   StartPipelineExecution, which runs the the most recent revision of---     an artifact through the pipeline.--- -   UpdatePipeline, which updates a pipeline with edits or changes to+-- -   < StartPipelineExecution>, which runs the the most recent revision+--     of an artifact through the pipeline.+-- -   < UpdatePipeline>, which updates a pipeline with edits or changes to --     the structure of the pipeline. -- -- Pipelines include /stages/, which are which are logical groupings of@@ -45,9 +46,9 @@ -- failure. If a stage fails, then the pipeline stops at that stage and -- will remain stopped until either a new version of an artifact appears in -- the source location, or a user takes action to re-run the most recent--- artifact through the pipeline. You can call GetPipelineState, which+-- artifact through the pipeline. You can call < GetPipelineState>, which -- displays the status of a pipeline, including the status of stages in the--- pipeline, or GetPipeline, which returns the entire structure of the+-- pipeline, or < GetPipeline>, which returns the entire structure of the -- pipeline, including the stages of that pipeline. For more information -- about the structure of stages and actions, also refer to the AWS -- CodePipeline Pipeline Structure Reference.@@ -57,8 +58,8 @@ -- For example, you can use a source action to import artifacts into a -- pipeline from a source such as Amazon S3. Like stages, you do not work -- with actions directly in most cases, but you do define and interact with--- actions when working with pipeline operations such as CreatePipeline and--- GetPipelineState.+-- actions when working with pipeline operations such as < CreatePipeline>+-- and < GetPipelineState>. -- -- Pipelines also include /transitions/, which allow the transition of -- artifacts from one stage to the next in a pipeline after the actions in@@ -66,10 +67,10 @@ -- -- You can work with transitions by calling: ----- -   DisableStageTransition, which prevents artifacts from transitioning---     to the next stage in a pipeline.--- -   EnableStageTransition, which enables transition of artifacts between---     stages in a pipeline.+-- -   < DisableStageTransition>, which prevents artifacts from+--     transitioning to the next stage in a pipeline.+-- -   < EnableStageTransition>, which enables transition of artifacts+--     between stages in a pipeline. -- -- __Using the API to integrate with AWS CodePipeline__ --@@ -83,32 +84,30 @@ -- --     You can work with jobs by calling: -----     -   AcknowledgeJob, which confirms whether a job worker has received---         the specified job,---     -   GetJobDetails, which returns the details of a job,---     -   PollForJobs, which determines whether there are any jobs to act---         upon,---     -   PutJobFailureResult, which provides details of a job failure,+--     -   < AcknowledgeJob>, which confirms whether a job worker has+--         received the specified job,+--     -   < GetJobDetails>, which returns the details of a job,+--     -   < PollForJobs>, which determines whether there are any jobs to+--         act upon,+--     -   < PutJobFailureResult>, which provides details of a job failure, --         and---     -   PutJobSuccessResult, which provides details of a job success.+--     -   < PutJobSuccessResult>, which provides details of a job success. -- -   Third party jobs, which are instances of an action created by a --     partner action and integrated into AWS CodePipeline. Partner actions --     are created by members of the AWS Partner Network. -- --     You can work with third party jobs by calling: -----     -   AcknowledgeThirdPartyJob, which confirms whether a job worker+--     -   < AcknowledgeThirdPartyJob>, which confirms whether a job worker --         has received the specified job,---     -   GetThirdPartyJobDetails, which requests the details of a job for---         a partner action,---     -   PollForThirdPartyJobs, which determines whether there are any+--     -   < GetThirdPartyJobDetails>, which requests the details of a job+--         for a partner action,+--     -   < PollForThirdPartyJobs>, which determines whether there are any --         jobs to act upon,---     -   PutThirdPartyJobFailureResult, which provides details of a job---         failure, and---     -   PutThirdPartyJobSuccessResult, which provides details of a job---         success.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/Welcome.html AWS API Reference>+--     -   < PutThirdPartyJobFailureResult>, which provides details of a+--         job failure, and+--     -   < PutThirdPartyJobSuccessResult>, which provides details of a+--         job success. module Network.AWS.CodePipeline     (     -- * Service Configuration
gen/Network/AWS/CodePipeline/AcknowledgeJob.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodePipeline.AcknowledgeJob--- 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 @@ -- -- Returns information about a specified job and whether that job has been -- received by the job worker. Only used for custom actions.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_AcknowledgeJob.html AWS API Reference> for AcknowledgeJob. module Network.AWS.CodePipeline.AcknowledgeJob     (     -- * Creating a Request@@ -90,6 +88,8 @@               (\ s h x ->                  AcknowledgeJobResponse' <$>                    (x .?> "status") <*> (pure (fromEnum s)))++instance Hashable AcknowledgeJob  instance ToHeaders AcknowledgeJob where         toHeaders
gen/Network/AWS/CodePipeline/AcknowledgeThirdPartyJob.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodePipeline.AcknowledgeThirdPartyJob--- 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 @@ -- -- Confirms a job worker has received the specified job. Only used for -- partner actions.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_AcknowledgeThirdPartyJob.html AWS API Reference> for AcknowledgeThirdPartyJob. module Network.AWS.CodePipeline.AcknowledgeThirdPartyJob     (     -- * Creating a Request@@ -102,6 +100,8 @@               (\ s h x ->                  AcknowledgeThirdPartyJobResponse' <$>                    (x .?> "status") <*> (pure (fromEnum s)))++instance Hashable AcknowledgeThirdPartyJob  instance ToHeaders AcknowledgeThirdPartyJob where         toHeaders
gen/Network/AWS/CodePipeline/CreateCustomActionType.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodePipeline.CreateCustomActionType--- 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 @@ -- -- Creates a new custom action that can be used in all pipelines associated -- with the AWS account. Only used for custom actions.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_CreateCustomActionType.html AWS API Reference> for CreateCustomActionType. module Network.AWS.CodePipeline.CreateCustomActionType     (     -- * Creating a Request@@ -141,6 +139,8 @@               (\ s h x ->                  CreateCustomActionTypeResponse' <$>                    (pure (fromEnum s)) <*> (x .:> "actionType"))++instance Hashable CreateCustomActionType  instance ToHeaders CreateCustomActionType where         toHeaders
gen/Network/AWS/CodePipeline/CreatePipeline.hs view
@@ -12,15 +12,13 @@  -- | -- Module      : Network.AWS.CodePipeline.CreatePipeline--- 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 -- Portability : non-portable (GHC extensions) -- -- Creates a pipeline.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_CreatePipeline.html AWS API Reference> for CreatePipeline. module Network.AWS.CodePipeline.CreatePipeline     (     -- * Creating a Request@@ -76,6 +74,8 @@               (\ s h x ->                  CreatePipelineResponse' <$>                    (x .?> "pipeline") <*> (pure (fromEnum s)))++instance Hashable CreatePipeline  instance ToHeaders CreatePipeline where         toHeaders
gen/Network/AWS/CodePipeline/DeleteCustomActionType.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodePipeline.DeleteCustomActionType--- 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 @@ -- -- You cannot recreate a custom action after it has been deleted unless you -- increase the version number of the action.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_DeleteCustomActionType.html AWS API Reference> for DeleteCustomActionType. module Network.AWS.CodePipeline.DeleteCustomActionType     (     -- * Creating a Request@@ -99,6 +97,8 @@         request = postJSON codePipeline         response           = receiveNull DeleteCustomActionTypeResponse'++instance Hashable DeleteCustomActionType  instance ToHeaders DeleteCustomActionType where         toHeaders
gen/Network/AWS/CodePipeline/DeletePipeline.hs view
@@ -12,15 +12,13 @@  -- | -- Module      : Network.AWS.CodePipeline.DeletePipeline--- 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 -- Portability : non-portable (GHC extensions) -- -- Deletes the specified pipeline.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_DeletePipeline.html AWS API Reference> for DeletePipeline. module Network.AWS.CodePipeline.DeletePipeline     (     -- * Creating a Request@@ -69,6 +67,8 @@         type Rs DeletePipeline = DeletePipelineResponse         request = postJSON codePipeline         response = receiveNull DeletePipelineResponse'++instance Hashable DeletePipeline  instance ToHeaders DeletePipeline where         toHeaders
gen/Network/AWS/CodePipeline/DisableStageTransition.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodePipeline.DisableStageTransition--- 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 @@ -- -- Prevents artifacts in a pipeline from transitioning to the next stage in -- the pipeline.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_DisableStageTransition.html AWS API Reference> for DisableStageTransition. module Network.AWS.CodePipeline.DisableStageTransition     (     -- * Creating a Request@@ -109,6 +107,8 @@         request = postJSON codePipeline         response           = receiveNull DisableStageTransitionResponse'++instance Hashable DisableStageTransition  instance ToHeaders DisableStageTransition where         toHeaders
gen/Network/AWS/CodePipeline/EnableStageTransition.hs view
@@ -12,15 +12,13 @@  -- | -- Module      : Network.AWS.CodePipeline.EnableStageTransition--- 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 -- Portability : non-portable (GHC extensions) -- -- Enables artifacts in a pipeline to transition to a stage in a pipeline.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_EnableStageTransition.html AWS API Reference> for EnableStageTransition. module Network.AWS.CodePipeline.EnableStageTransition     (     -- * Creating a Request@@ -96,6 +94,8 @@              EnableStageTransitionResponse         request = postJSON codePipeline         response = receiveNull EnableStageTransitionResponse'++instance Hashable EnableStageTransition  instance ToHeaders EnableStageTransition where         toHeaders
gen/Network/AWS/CodePipeline/GetJobDetails.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodePipeline.GetJobDetails--- 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@@ -25,8 +25,6 @@ -- the action requires access to that Amazon S3 bucket for input or output -- artifacts. Additionally, this API returns any secret values defined for -- the action.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_GetJobDetails.html AWS API Reference> for GetJobDetails. module Network.AWS.CodePipeline.GetJobDetails     (     -- * Creating a Request@@ -82,6 +80,8 @@               (\ s h x ->                  GetJobDetailsResponse' <$>                    (x .?> "jobDetails") <*> (pure (fromEnum s)))++instance Hashable GetJobDetails  instance ToHeaders GetJobDetails where         toHeaders
gen/Network/AWS/CodePipeline/GetPipeline.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodePipeline.GetPipeline--- 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@@ -21,9 +21,7 @@ -- Returns the metadata, structure, stages, and actions of a pipeline. Can -- be used to return the entire structure of a pipeline in JSON format, -- which can then be modified and used to update the pipeline structure--- with UpdatePipeline.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_GetPipeline.html AWS API Reference> for GetPipeline.+-- with < UpdatePipeline>. module Network.AWS.CodePipeline.GetPipeline     (     -- * Creating a Request@@ -90,6 +88,8 @@               (\ s h x ->                  GetPipelineResponse' <$>                    (x .?> "pipeline") <*> (pure (fromEnum s)))++instance Hashable GetPipeline  instance ToHeaders GetPipeline where         toHeaders
gen/Network/AWS/CodePipeline/GetPipelineState.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodePipeline.GetPipelineState--- 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 @@ -- -- Returns information about the state of a pipeline, including the stages, -- actions, and details about the last run of the pipeline.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_GetPipelineState.html AWS API Reference> for GetPipelineState. module Network.AWS.CodePipeline.GetPipelineState     (     -- * Creating a Request@@ -85,6 +83,8 @@                      <*> (x .?> "pipelineVersion")                      <*> (x .?> "updated")                      <*> (pure (fromEnum s)))++instance Hashable GetPipelineState  instance ToHeaders GetPipelineState where         toHeaders
gen/Network/AWS/CodePipeline/GetThirdPartyJobDetails.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodePipeline.GetThirdPartyJobDetails--- 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@@ -26,8 +26,6 @@ -- the action requires access to that Amazon S3 bucket for input or output -- artifacts. Additionally, this API returns any secret values defined for -- the action.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_GetThirdPartyJobDetails.html AWS API Reference> for GetThirdPartyJobDetails. module Network.AWS.CodePipeline.GetThirdPartyJobDetails     (     -- * Creating a Request@@ -96,6 +94,8 @@               (\ s h x ->                  GetThirdPartyJobDetailsResponse' <$>                    (x .?> "jobDetails") <*> (pure (fromEnum s)))++instance Hashable GetThirdPartyJobDetails  instance ToHeaders GetThirdPartyJobDetails where         toHeaders
gen/Network/AWS/CodePipeline/ListActionTypes.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodePipeline.ListActionTypes--- 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 @@ -- -- Gets a summary of all AWS CodePipeline action types associated with your -- account.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_ListActionTypes.html AWS API Reference> for ListActionTypes. module Network.AWS.CodePipeline.ListActionTypes     (     -- * Creating a Request@@ -89,6 +87,8 @@                  ListActionTypesResponse' <$>                    (x .?> "nextToken") <*> (pure (fromEnum s)) <*>                      (x .?> "actionTypes" .!@ mempty))++instance Hashable ListActionTypes  instance ToHeaders ListActionTypes where         toHeaders
gen/Network/AWS/CodePipeline/ListPipelines.hs view
@@ -12,15 +12,13 @@  -- | -- Module      : Network.AWS.CodePipeline.ListPipelines--- 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 -- Portability : non-portable (GHC extensions) -- -- Gets a summary of all of the pipelines associated with your account.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_ListPipelines.html AWS API Reference> for ListPipelines. module Network.AWS.CodePipeline.ListPipelines     (     -- * Creating a Request@@ -79,6 +77,8 @@                    (x .?> "pipelines" .!@ mempty) <*>                      (x .?> "nextToken")                      <*> (pure (fromEnum s)))++instance Hashable ListPipelines  instance ToHeaders ListPipelines where         toHeaders
gen/Network/AWS/CodePipeline/PollForJobs.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodePipeline.PollForJobs--- 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@@ -25,8 +25,6 @@ -- the action requires access to that Amazon S3 bucket for input or output -- artifacts. Additionally, this API returns any secret values defined for -- the action.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_PollForJobs.html AWS API Reference> for PollForJobs. module Network.AWS.CodePipeline.PollForJobs     (     -- * Creating a Request@@ -104,6 +102,8 @@               (\ s h x ->                  PollForJobsResponse' <$>                    (x .?> "jobs" .!@ mempty) <*> (pure (fromEnum s)))++instance Hashable PollForJobs  instance ToHeaders PollForJobs where         toHeaders
gen/Network/AWS/CodePipeline/PollForThirdPartyJobs.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodePipeline.PollForThirdPartyJobs--- 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@@ -25,8 +25,6 @@ -- for the Amazon S3 bucket used to store artifacts for the pipeline, if -- the action requires access to that Amazon S3 bucket for input or output -- artifacts.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_PollForThirdPartyJobs.html AWS API Reference> for PollForThirdPartyJobs. module Network.AWS.CodePipeline.PollForThirdPartyJobs     (     -- * Creating a Request@@ -92,6 +90,8 @@               (\ s h x ->                  PollForThirdPartyJobsResponse' <$>                    (x .?> "jobs" .!@ mempty) <*> (pure (fromEnum s)))++instance Hashable PollForThirdPartyJobs  instance ToHeaders PollForThirdPartyJobs where         toHeaders
gen/Network/AWS/CodePipeline/PutActionRevision.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodePipeline.PutActionRevision--- 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 @@ -- -- Provides information to AWS CodePipeline about new revisions to a -- source.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_PutActionRevision.html AWS API Reference> for PutActionRevision. module Network.AWS.CodePipeline.PutActionRevision     (     -- * Creating a Request@@ -112,6 +110,8 @@                    (x .?> "newRevision") <*>                      (x .?> "pipelineExecutionId")                      <*> (pure (fromEnum s)))++instance Hashable PutActionRevision  instance ToHeaders PutActionRevision where         toHeaders
gen/Network/AWS/CodePipeline/PutJobFailureResult.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodePipeline.PutJobFailureResult--- 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 @@ -- -- Represents the failure of a job as returned to the pipeline by a job -- worker. Only used for custom actions.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_PutJobFailureResult.html AWS API Reference> for PutJobFailureResult. module Network.AWS.CodePipeline.PutJobFailureResult     (     -- * Creating a Request@@ -82,6 +80,8 @@              PutJobFailureResultResponse         request = postJSON codePipeline         response = receiveNull PutJobFailureResultResponse'++instance Hashable PutJobFailureResult  instance ToHeaders PutJobFailureResult where         toHeaders
gen/Network/AWS/CodePipeline/PutJobSuccessResult.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodePipeline.PutJobSuccessResult--- 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 @@ -- -- Represents the success of a job as returned to the pipeline by a job -- worker. Only used for custom actions.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_PutJobSuccessResult.html AWS API Reference> for PutJobSuccessResult. module Network.AWS.CodePipeline.PutJobSuccessResult     (     -- * Creating a Request@@ -102,6 +100,8 @@              PutJobSuccessResultResponse         request = postJSON codePipeline         response = receiveNull PutJobSuccessResultResponse'++instance Hashable PutJobSuccessResult  instance ToHeaders PutJobSuccessResult where         toHeaders
gen/Network/AWS/CodePipeline/PutThirdPartyJobFailureResult.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodePipeline.PutThirdPartyJobFailureResult--- 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 @@ -- -- Represents the failure of a third party job as returned to the pipeline -- by a job worker. Only used for partner actions.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_PutThirdPartyJobFailureResult.html AWS API Reference> for PutThirdPartyJobFailureResult. module Network.AWS.CodePipeline.PutThirdPartyJobFailureResult     (     -- * Creating a Request@@ -96,6 +94,8 @@         request = postJSON codePipeline         response           = receiveNull PutThirdPartyJobFailureResultResponse'++instance Hashable PutThirdPartyJobFailureResult  instance ToHeaders PutThirdPartyJobFailureResult          where
gen/Network/AWS/CodePipeline/PutThirdPartyJobSuccessResult.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodePipeline.PutThirdPartyJobSuccessResult--- 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 @@ -- -- Represents the success of a third party job as returned to the pipeline -- by a job worker. Only used for partner actions.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_PutThirdPartyJobSuccessResult.html AWS API Reference> for PutThirdPartyJobSuccessResult. module Network.AWS.CodePipeline.PutThirdPartyJobSuccessResult     (     -- * Creating a Request@@ -114,6 +112,8 @@         request = postJSON codePipeline         response           = receiveNull PutThirdPartyJobSuccessResultResponse'++instance Hashable PutThirdPartyJobSuccessResult  instance ToHeaders PutThirdPartyJobSuccessResult          where
gen/Network/AWS/CodePipeline/StartPipelineExecution.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodePipeline.StartPipelineExecution--- 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 @@ -- -- Starts the specified pipeline. Specifically, it begins processing the -- latest commit to the source location specified as part of the pipeline.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_StartPipelineExecution.html AWS API Reference> for StartPipelineExecution. module Network.AWS.CodePipeline.StartPipelineExecution     (     -- * Creating a Request@@ -79,6 +77,8 @@                  StartPipelineExecutionResponse' <$>                    (x .?> "pipelineExecutionId") <*>                      (pure (fromEnum s)))++instance Hashable StartPipelineExecution  instance ToHeaders StartPipelineExecution where         toHeaders
gen/Network/AWS/CodePipeline/Types.hs view
@@ -4,7 +4,7 @@  -- | -- Module      : Network.AWS.CodePipeline.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@@ -372,6 +372,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/CodePipeline/Types/Product.hs view
@@ -9,7 +9,7 @@  -- | -- Module      : Network.AWS.CodePipeline.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@@ -74,6 +74,8 @@                    (x .: "accessKeyId") <*> (x .: "secretAccessKey") <*>                      (x .: "sessionToken")) +instance Hashable AWSSessionCredentials+ -- | Represents information about an action configuration. -- -- /See:/ 'actionConfiguration' smart constructor.@@ -104,6 +106,8 @@                  ActionConfiguration' <$>                    (x .:? "configuration" .!= mempty)) +instance Hashable ActionConfiguration+ -- | Represents information about an action configuration property. -- -- /See:/ 'actionConfigurationProperty' smart constructor.@@ -206,6 +210,8 @@                      <*> (x .: "key")                      <*> (x .: "secret")) +instance Hashable ActionConfigurationProperty+ instance ToJSON ActionConfigurationProperty where         toJSON ActionConfigurationProperty'{..}           = object@@ -247,6 +253,8 @@           = withObject "ActionContext"               (\ x -> ActionContext' <$> (x .:? "name")) +instance Hashable ActionContext+ -- | Represents information about an action declaration. -- -- /See:/ 'actionDeclaration' smart constructor.@@ -336,6 +344,8 @@                      <*> (x .: "name")                      <*> (x .: "actionTypeId")) +instance Hashable ActionDeclaration+ instance ToJSON ActionDeclaration where         toJSON ActionDeclaration'{..}           = object@@ -433,6 +443,8 @@                      <*> (x .:? "errorDetails")                      <*> (x .:? "percentComplete")) +instance Hashable ActionExecution+ -- | Represents information about the version (or revision) of an action. -- -- /See:/ 'actionRevision' smart constructor.@@ -485,6 +497,8 @@                    (x .:? "revisionChangeId") <*> (x .: "revisionId")                      <*> (x .: "created")) +instance Hashable ActionRevision+ instance ToJSON ActionRevision where         toJSON ActionRevision'{..}           = object@@ -560,6 +574,8 @@                      <*> (x .:? "currentRevision")                      <*> (x .:? "latestExecution")) +instance Hashable ActionState+ -- | Returns information about the details of an action type. -- -- /See:/ 'actionType' smart constructor.@@ -629,6 +645,8 @@                      <*> (x .: "inputArtifactDetails")                      <*> (x .: "outputArtifactDetails")) +instance Hashable ActionType+ -- | Represents information about an action type. -- -- /See:/ 'actionTypeId' smart constructor.@@ -694,6 +712,8 @@                      (x .: "provider")                      <*> (x .: "version")) +instance Hashable ActionTypeId+ instance ToJSON ActionTypeId where         toJSON ActionTypeId'{..}           = object@@ -771,6 +791,8 @@                      <*> (x .:? "revisionUrlTemplate")                      <*> (x .:? "entityUrlTemplate")) +instance Hashable ActionTypeSettings+ instance ToJSON ActionTypeSettings where         toJSON ActionTypeSettings'{..}           = object@@ -832,6 +854,8 @@                    (x .:? "location") <*> (x .:? "name") <*>                      (x .:? "revision")) +instance Hashable Artifact+ -- | Returns information about the details of an artifact. -- -- /See:/ 'artifactDetails' smart constructor.@@ -872,6 +896,8 @@                  ArtifactDetails' <$>                    (x .: "minimumCount") <*> (x .: "maximumCount")) +instance Hashable ArtifactDetails+ instance ToJSON ArtifactDetails where         toJSON ArtifactDetails'{..}           = object@@ -917,6 +943,8 @@                  ArtifactLocation' <$>                    (x .:? "s3Location") <*> (x .:? "type")) +instance Hashable ArtifactLocation+ -- | The Amazon S3 location where artifacts are stored for the pipeline. If -- this Amazon S3 bucket is created manually, it must meet the requirements -- for AWS CodePipeline. For more information, see the Concepts.@@ -971,6 +999,8 @@                    (x .:? "encryptionKey") <*> (x .: "type") <*>                      (x .: "location")) +instance Hashable ArtifactStore+ instance ToJSON ArtifactStore where         toJSON ArtifactStore'{..}           = object@@ -1019,6 +1049,8 @@                  BlockerDeclaration' <$>                    (x .: "name") <*> (x .: "type")) +instance Hashable BlockerDeclaration+ instance ToJSON BlockerDeclaration where         toJSON BlockerDeclaration'{..}           = object@@ -1058,6 +1090,8 @@ crChangeIdentifier :: Lens' CurrentRevision Text crChangeIdentifier = lens _crChangeIdentifier (\ s a -> s{_crChangeIdentifier = a}); +instance Hashable CurrentRevision+ instance ToJSON CurrentRevision where         toJSON CurrentRevision'{..}           = object@@ -1105,6 +1139,8 @@               (\ x ->                  EncryptionKey' <$> (x .: "id") <*> (x .: "type")) +instance Hashable EncryptionKey+ instance ToJSON EncryptionKey where         toJSON EncryptionKey'{..}           = object@@ -1149,6 +1185,8 @@                  ErrorDetails' <$>                    (x .:? "code") <*> (x .:? "message")) +instance Hashable ErrorDetails+ -- | The details of the actions taken and results produced on an artifact as -- it passes through stages in the pipeline. --@@ -1191,6 +1229,8 @@ edPercentComplete :: Lens' ExecutionDetails (Maybe Natural) edPercentComplete = lens _edPercentComplete (\ s a -> s{_edPercentComplete = a}) . mapping _Nat; +instance Hashable ExecutionDetails+ instance ToJSON ExecutionDetails where         toJSON ExecutionDetails'{..}           = object@@ -1241,6 +1281,8 @@ fdMessage :: Lens' FailureDetails Text fdMessage = lens _fdMessage (\ s a -> s{_fdMessage = a}); +instance Hashable FailureDetails+ instance ToJSON FailureDetails where         toJSON FailureDetails'{..}           = object@@ -1286,6 +1328,8 @@           = withObject "InputArtifact"               (\ x -> InputArtifact' <$> (x .: "name")) +instance Hashable InputArtifact+ instance ToJSON InputArtifact where         toJSON InputArtifact'{..}           = object (catMaybes [Just ("name" .= _iaName)])@@ -1348,6 +1392,8 @@                      (x .:? "id")                      <*> (x .:? "nonce")) +instance Hashable Job+ -- | Represents additional information about a job required for a job worker -- to complete the job. --@@ -1443,6 +1489,8 @@                      <*> (x .:? "inputArtifacts" .!= mempty)                      <*> (x .:? "actionConfiguration")) +instance Hashable JobData+ -- | Represents information about the details of a job. -- -- /See:/ 'jobDetails' smart constructor.@@ -1490,6 +1538,8 @@                    (x .:? "data") <*> (x .:? "accountId") <*>                      (x .:? "id")) +instance Hashable JobDetails+ -- | Represents information about the output of an action. -- -- /See:/ 'outputArtifact' smart constructor.@@ -1527,6 +1577,8 @@           = withObject "OutputArtifact"               (\ x -> OutputArtifact' <$> (x .: "name")) +instance Hashable OutputArtifact+ instance ToJSON OutputArtifact where         toJSON OutputArtifact'{..}           = object (catMaybes [Just ("name" .= _oaName)])@@ -1580,6 +1632,8 @@                    (x .:? "stage") <*> (x .:? "pipelineName") <*>                      (x .:? "action")) +instance Hashable PipelineContext+ -- | Represents the structure of actions and stages to be performed in the -- pipeline. --@@ -1653,6 +1707,8 @@                      <*> (x .: "artifactStore")                      <*> (x .:? "stages" .!= mempty)) +instance Hashable PipelineDeclaration+ instance ToJSON PipelineDeclaration where         toJSON PipelineDeclaration'{..}           = object@@ -1720,6 +1776,8 @@                      (x .:? "version")                      <*> (x .:? "updated")) +instance Hashable PipelineSummary+ -- | The location of the Amazon S3 bucket that contains a revision. -- -- /See:/ 's3ArtifactLocation' smart constructor.@@ -1761,6 +1819,8 @@                  S3ArtifactLocation' <$>                    (x .: "bucketName") <*> (x .: "objectKey")) +instance Hashable S3ArtifactLocation+ -- | Represents information about a stage to a job worker. -- -- /See:/ 'stageContext' smart constructor.@@ -1789,6 +1849,8 @@           = withObject "StageContext"               (\ x -> StageContext' <$> (x .:? "name")) +instance Hashable StageContext+ -- | Represents information about a stage and its definition. -- -- /See:/ 'stageDeclaration' smart constructor.@@ -1837,6 +1899,8 @@                    (x .:? "blockers" .!= mempty) <*> (x .: "name") <*>                      (x .:? "actions" .!= mempty)) +instance Hashable StageDeclaration+ instance ToJSON StageDeclaration where         toJSON StageDeclaration'{..}           = object@@ -1894,6 +1958,8 @@                      (x .:? "actionStates" .!= mempty)                      <*> (x .:? "stageName")) +instance Hashable StageState+ -- | A response to a PollForThirdPartyJobs request returned by AWS -- CodePipeline when there is a job to be worked upon by a partner action. --@@ -1935,6 +2001,8 @@                  ThirdPartyJob' <$>                    (x .:? "clientId") <*> (x .:? "jobId")) +instance Hashable ThirdPartyJob+ -- | Represents information about the job data for a partner action. -- -- /See:/ 'thirdPartyJobData' smart constructor.@@ -2036,6 +2104,8 @@                      <*> (x .:? "inputArtifacts" .!= mempty)                      <*> (x .:? "actionConfiguration")) +instance Hashable ThirdPartyJobData+ -- | The details of a job sent in response to a GetThirdPartyJobDetails -- request. --@@ -2085,6 +2155,8 @@                  ThirdPartyJobDetails' <$>                    (x .:? "data") <*> (x .:? "id") <*> (x .:? "nonce")) +instance Hashable ThirdPartyJobDetails+ -- | Represents information about the state of transitions between one stage -- and another stage. --@@ -2143,3 +2215,5 @@                    (x .:? "enabled") <*> (x .:? "disabledReason") <*>                      (x .:? "lastChangedAt")                      <*> (x .:? "lastChangedBy"))++instance Hashable TransitionState
gen/Network/AWS/CodePipeline/Types/Sum.hs view
@@ -9,7 +9,7 @@  -- | -- Module      : Network.AWS.CodePipeline.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/CodePipeline/UpdatePipeline.hs view
@@ -12,7 +12,7 @@  -- | -- Module      : Network.AWS.CodePipeline.UpdatePipeline--- 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 @@ -- a JSON file with the pipeline structure in conjunction with -- UpdatePipeline to provide the full structure of the pipeline. Updating -- the pipeline increases the version number of the pipeline by 1.------ /See:/ <http://docs.aws.amazon.com/codepipeline/latest/APIReference/API_UpdatePipeline.html AWS API Reference> for UpdatePipeline. module Network.AWS.CodePipeline.UpdatePipeline     (     -- * Creating a Request@@ -79,6 +77,8 @@               (\ s h x ->                  UpdatePipelineResponse' <$>                    (x .?> "pipeline") <*> (pure (fromEnum s)))++instance Hashable UpdatePipeline  instance ToHeaders UpdatePipeline where         toHeaders
gen/Network/AWS/CodePipeline/Waiters.hs view
@@ -7,7 +7,7 @@  -- | -- Module      : Network.AWS.CodePipeline.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/CodePipeline.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE OverloadedStrings #-}  -- Module      : Test.AWS.CodePipeline--- 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/CodePipeline/Internal.hs view
@@ -2,7 +2,7 @@ {-# OPTIONS_GHC -fno-warn-unused-imports #-}  -- Module      : Test.AWS.CodePipeline.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
test/Test/AWS/Gen/CodePipeline.hs view
@@ -5,7 +5,7 @@  -- | -- Module      : Test.AWS.Gen.CodePipeline--- 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