amazonka-appconfig-2.0: gen/Amazonka/AppConfig/StartDeployment.hs
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- |
-- Module : Amazonka.AppConfig.StartDeployment
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Starts a deployment.
module Amazonka.AppConfig.StartDeployment
( -- * Creating a Request
StartDeployment (..),
newStartDeployment,
-- * Request Lenses
startDeployment_description,
startDeployment_tags,
startDeployment_applicationId,
startDeployment_environmentId,
startDeployment_deploymentStrategyId,
startDeployment_configurationProfileId,
startDeployment_configurationVersion,
-- * Destructuring the Response
Deployment (..),
newDeployment,
-- * Response Lenses
deployment_applicationId,
deployment_appliedExtensions,
deployment_completedAt,
deployment_configurationLocationUri,
deployment_configurationName,
deployment_configurationProfileId,
deployment_configurationVersion,
deployment_deploymentDurationInMinutes,
deployment_deploymentNumber,
deployment_deploymentStrategyId,
deployment_description,
deployment_environmentId,
deployment_eventLog,
deployment_finalBakeTimeInMinutes,
deployment_growthFactor,
deployment_growthType,
deployment_percentageComplete,
deployment_startedAt,
deployment_state,
)
where
import Amazonka.AppConfig.Types
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | /See:/ 'newStartDeployment' smart constructor.
data StartDeployment = StartDeployment'
{ -- | A description of the deployment.
description :: Prelude.Maybe Prelude.Text,
-- | Metadata to assign to the deployment. Tags help organize and categorize
-- your AppConfig resources. Each tag consists of a key and an optional
-- value, both of which you define.
tags :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text),
-- | The application ID.
applicationId :: Prelude.Text,
-- | The environment ID.
environmentId :: Prelude.Text,
-- | The deployment strategy ID.
deploymentStrategyId :: Prelude.Text,
-- | The configuration profile ID.
configurationProfileId :: Prelude.Text,
-- | The configuration version to deploy.
configurationVersion :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'StartDeployment' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'description', 'startDeployment_description' - A description of the deployment.
--
-- 'tags', 'startDeployment_tags' - Metadata to assign to the deployment. Tags help organize and categorize
-- your AppConfig resources. Each tag consists of a key and an optional
-- value, both of which you define.
--
-- 'applicationId', 'startDeployment_applicationId' - The application ID.
--
-- 'environmentId', 'startDeployment_environmentId' - The environment ID.
--
-- 'deploymentStrategyId', 'startDeployment_deploymentStrategyId' - The deployment strategy ID.
--
-- 'configurationProfileId', 'startDeployment_configurationProfileId' - The configuration profile ID.
--
-- 'configurationVersion', 'startDeployment_configurationVersion' - The configuration version to deploy.
newStartDeployment ::
-- | 'applicationId'
Prelude.Text ->
-- | 'environmentId'
Prelude.Text ->
-- | 'deploymentStrategyId'
Prelude.Text ->
-- | 'configurationProfileId'
Prelude.Text ->
-- | 'configurationVersion'
Prelude.Text ->
StartDeployment
newStartDeployment
pApplicationId_
pEnvironmentId_
pDeploymentStrategyId_
pConfigurationProfileId_
pConfigurationVersion_ =
StartDeployment'
{ description = Prelude.Nothing,
tags = Prelude.Nothing,
applicationId = pApplicationId_,
environmentId = pEnvironmentId_,
deploymentStrategyId = pDeploymentStrategyId_,
configurationProfileId = pConfigurationProfileId_,
configurationVersion = pConfigurationVersion_
}
-- | A description of the deployment.
startDeployment_description :: Lens.Lens' StartDeployment (Prelude.Maybe Prelude.Text)
startDeployment_description = Lens.lens (\StartDeployment' {description} -> description) (\s@StartDeployment' {} a -> s {description = a} :: StartDeployment)
-- | Metadata to assign to the deployment. Tags help organize and categorize
-- your AppConfig resources. Each tag consists of a key and an optional
-- value, both of which you define.
startDeployment_tags :: Lens.Lens' StartDeployment (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text))
startDeployment_tags = Lens.lens (\StartDeployment' {tags} -> tags) (\s@StartDeployment' {} a -> s {tags = a} :: StartDeployment) Prelude.. Lens.mapping Lens.coerced
-- | The application ID.
startDeployment_applicationId :: Lens.Lens' StartDeployment Prelude.Text
startDeployment_applicationId = Lens.lens (\StartDeployment' {applicationId} -> applicationId) (\s@StartDeployment' {} a -> s {applicationId = a} :: StartDeployment)
-- | The environment ID.
startDeployment_environmentId :: Lens.Lens' StartDeployment Prelude.Text
startDeployment_environmentId = Lens.lens (\StartDeployment' {environmentId} -> environmentId) (\s@StartDeployment' {} a -> s {environmentId = a} :: StartDeployment)
-- | The deployment strategy ID.
startDeployment_deploymentStrategyId :: Lens.Lens' StartDeployment Prelude.Text
startDeployment_deploymentStrategyId = Lens.lens (\StartDeployment' {deploymentStrategyId} -> deploymentStrategyId) (\s@StartDeployment' {} a -> s {deploymentStrategyId = a} :: StartDeployment)
-- | The configuration profile ID.
startDeployment_configurationProfileId :: Lens.Lens' StartDeployment Prelude.Text
startDeployment_configurationProfileId = Lens.lens (\StartDeployment' {configurationProfileId} -> configurationProfileId) (\s@StartDeployment' {} a -> s {configurationProfileId = a} :: StartDeployment)
-- | The configuration version to deploy.
startDeployment_configurationVersion :: Lens.Lens' StartDeployment Prelude.Text
startDeployment_configurationVersion = Lens.lens (\StartDeployment' {configurationVersion} -> configurationVersion) (\s@StartDeployment' {} a -> s {configurationVersion = a} :: StartDeployment)
instance Core.AWSRequest StartDeployment where
type AWSResponse StartDeployment = Deployment
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveJSON
(\s h x -> Data.eitherParseJSON x)
instance Prelude.Hashable StartDeployment where
hashWithSalt _salt StartDeployment' {..} =
_salt
`Prelude.hashWithSalt` description
`Prelude.hashWithSalt` tags
`Prelude.hashWithSalt` applicationId
`Prelude.hashWithSalt` environmentId
`Prelude.hashWithSalt` deploymentStrategyId
`Prelude.hashWithSalt` configurationProfileId
`Prelude.hashWithSalt` configurationVersion
instance Prelude.NFData StartDeployment where
rnf StartDeployment' {..} =
Prelude.rnf description
`Prelude.seq` Prelude.rnf tags
`Prelude.seq` Prelude.rnf applicationId
`Prelude.seq` Prelude.rnf environmentId
`Prelude.seq` Prelude.rnf deploymentStrategyId
`Prelude.seq` Prelude.rnf configurationProfileId
`Prelude.seq` Prelude.rnf configurationVersion
instance Data.ToHeaders StartDeployment where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToJSON StartDeployment where
toJSON StartDeployment' {..} =
Data.object
( Prelude.catMaybes
[ ("Description" Data..=) Prelude.<$> description,
("Tags" Data..=) Prelude.<$> tags,
Prelude.Just
( "DeploymentStrategyId"
Data..= deploymentStrategyId
),
Prelude.Just
( "ConfigurationProfileId"
Data..= configurationProfileId
),
Prelude.Just
( "ConfigurationVersion"
Data..= configurationVersion
)
]
)
instance Data.ToPath StartDeployment where
toPath StartDeployment' {..} =
Prelude.mconcat
[ "/applications/",
Data.toBS applicationId,
"/environments/",
Data.toBS environmentId,
"/deployments"
]
instance Data.ToQuery StartDeployment where
toQuery = Prelude.const Prelude.mempty