amazonka-codedeploy 0.0.4 → 0.0.5
raw patch · 29 files changed
+58/−2 lines, 29 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
- README.md +2/−0
- amazonka-codedeploy.cabal +2/−2
- gen/Network/AWS/CodeDeploy.hs +2/−0
- gen/Network/AWS/CodeDeploy/BatchGetApplications.hs +2/−0
- gen/Network/AWS/CodeDeploy/BatchGetDeployments.hs +2/−0
- gen/Network/AWS/CodeDeploy/CreateApplication.hs +2/−0
- gen/Network/AWS/CodeDeploy/CreateDeployment.hs +2/−0
- gen/Network/AWS/CodeDeploy/CreateDeploymentConfig.hs +2/−0
- gen/Network/AWS/CodeDeploy/CreateDeploymentGroup.hs +2/−0
- gen/Network/AWS/CodeDeploy/DeleteApplication.hs +2/−0
- gen/Network/AWS/CodeDeploy/DeleteDeploymentConfig.hs +2/−0
- gen/Network/AWS/CodeDeploy/DeleteDeploymentGroup.hs +2/−0
- gen/Network/AWS/CodeDeploy/GetApplication.hs +2/−0
- gen/Network/AWS/CodeDeploy/GetApplicationRevision.hs +2/−0
- gen/Network/AWS/CodeDeploy/GetDeployment.hs +2/−0
- gen/Network/AWS/CodeDeploy/GetDeploymentConfig.hs +2/−0
- gen/Network/AWS/CodeDeploy/GetDeploymentGroup.hs +2/−0
- gen/Network/AWS/CodeDeploy/GetDeploymentInstance.hs +2/−0
- gen/Network/AWS/CodeDeploy/ListApplicationRevisions.hs +2/−0
- gen/Network/AWS/CodeDeploy/ListApplications.hs +2/−0
- gen/Network/AWS/CodeDeploy/ListDeploymentConfigs.hs +2/−0
- gen/Network/AWS/CodeDeploy/ListDeploymentGroups.hs +2/−0
- gen/Network/AWS/CodeDeploy/ListDeploymentInstances.hs +2/−0
- gen/Network/AWS/CodeDeploy/ListDeployments.hs +2/−0
- gen/Network/AWS/CodeDeploy/RegisterApplicationRevision.hs +2/−0
- gen/Network/AWS/CodeDeploy/StopDeployment.hs +2/−0
- gen/Network/AWS/CodeDeploy/Types.hs +2/−0
- gen/Network/AWS/CodeDeploy/UpdateApplication.hs +2/−0
- gen/Network/AWS/CodeDeploy/UpdateDeploymentGroup.hs +2/−0
README.md view
@@ -30,3 +30,5 @@ ## Licence `amazonka-codedeploy` 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-codedeploy.cabal view
@@ -1,5 +1,5 @@ name: amazonka-codedeploy-version: 0.0.4+version: 0.0.5 synopsis: Amazon CodeDeploy SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -69,5 +69,5 @@ other-modules: build-depends:- amazonka-core == 0.0.4.*+ amazonka-core == 0.0.5.* , base >= 4.7 && < 5
gen/Network/AWS/CodeDeploy.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 CodeDeploy is a service that automates code deployments to Amazon EC2 -- instances. Amazon CodeDeploy makes it easier for you to rapidly release new
gen/Network/AWS/CodeDeploy/BatchGetApplications.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. -- | Gets information about one or more applications. --
gen/Network/AWS/CodeDeploy/BatchGetDeployments.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. -- | Gets information about one or more deployments. --
gen/Network/AWS/CodeDeploy/CreateApplication.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. -- | Creates a new application. --
gen/Network/AWS/CodeDeploy/CreateDeployment.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. -- | Deploys an application revision to the specified deployment group. --
gen/Network/AWS/CodeDeploy/CreateDeploymentConfig.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. -- | Creates a new deployment configuration. --
gen/Network/AWS/CodeDeploy/CreateDeploymentGroup.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. -- | Creates a new deployment group for application revisions to be deployed to. --
gen/Network/AWS/CodeDeploy/DeleteApplication.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 an application. --
gen/Network/AWS/CodeDeploy/DeleteDeploymentConfig.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 a deployment configuration. --
gen/Network/AWS/CodeDeploy/DeleteDeploymentGroup.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 a deployment group. --
gen/Network/AWS/CodeDeploy/GetApplication.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. -- | Gets information about an application. --
gen/Network/AWS/CodeDeploy/GetApplicationRevision.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. -- | Gets information about an application revision. --
gen/Network/AWS/CodeDeploy/GetDeployment.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. -- | Gets information about a deployment. --
gen/Network/AWS/CodeDeploy/GetDeploymentConfig.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. -- | Gets information about a deployment configuration. --
gen/Network/AWS/CodeDeploy/GetDeploymentGroup.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. -- | Gets information about a deployment group. --
gen/Network/AWS/CodeDeploy/GetDeploymentInstance.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. -- | Gets information about an Amazon EC2 instance as part of a deployment. --
gen/Network/AWS/CodeDeploy/ListApplicationRevisions.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. -- | Lists information about revisions for an application. --
gen/Network/AWS/CodeDeploy/ListApplications.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. -- | Lists the applications registered within the AWS user account. --
gen/Network/AWS/CodeDeploy/ListDeploymentConfigs.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. -- | Lists the deployment configurations within the AWS user account. --
gen/Network/AWS/CodeDeploy/ListDeploymentGroups.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. -- | Lists the deployment groups for an application registered within the AWS user -- account.
gen/Network/AWS/CodeDeploy/ListDeploymentInstances.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. -- | Lists the Amazon EC2 instances for a deployment within the AWS user account. --
gen/Network/AWS/CodeDeploy/ListDeployments.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. -- | Lists the deployments under a deployment group for an application registered -- within the AWS user account.
gen/Network/AWS/CodeDeploy/RegisterApplicationRevision.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. -- | Registers with AWS CodeDeploy a revision for the specified application. --
gen/Network/AWS/CodeDeploy/StopDeployment.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. -- | Attempts to stop an ongoing deployment. --
gen/Network/AWS/CodeDeploy/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.CodeDeploy.Types (
gen/Network/AWS/CodeDeploy/UpdateApplication.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. -- | Changes an existing application's name. --
gen/Network/AWS/CodeDeploy/UpdateDeploymentGroup.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. -- | Changes information about an existing deployment group. --