gogol-deploymentmanager-1.0.0: gen/Gogol/DeploymentManager/Deployments/Update.hs
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DerivingStrategies #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE ImportQualifiedPost #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE PatternSynonyms #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-duplicate-exports #-}
{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
-- |
-- Module : Gogol.DeploymentManager.Deployments.Update
-- Copyright : (c) 2015-2025 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay <brendan.g.hay+gogol@gmail.com>
-- Toni Cebrián <toni@tonicebrian.com>
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Updates a deployment and all of the resources described by the deployment manifest.
--
-- /See:/ <https://cloud.google.com/deployment-manager Cloud Deployment Manager V2 API Reference> for @deploymentmanager.deployments.update@.
module Gogol.DeploymentManager.Deployments.Update
( -- * Resource
DeploymentManagerDeploymentsUpdateResource,
-- ** Constructing a Request
DeploymentManagerDeploymentsUpdate (..),
newDeploymentManagerDeploymentsUpdate,
)
where
import Gogol.DeploymentManager.Types
import Gogol.Prelude qualified as Core
-- | A resource alias for @deploymentmanager.deployments.update@ method which the
-- 'DeploymentManagerDeploymentsUpdate' request conforms to.
type DeploymentManagerDeploymentsUpdateResource =
"deploymentmanager"
Core.:> "v2"
Core.:> "projects"
Core.:> Core.Capture "project" Core.Text
Core.:> "global"
Core.:> "deployments"
Core.:> Core.Capture "deployment" Core.Text
Core.:> Core.QueryParam "$.xgafv" Xgafv
Core.:> Core.QueryParam "access_token" Core.Text
Core.:> Core.QueryParam "callback" Core.Text
Core.:> Core.QueryParam "createPolicy" DeploymentsUpdateCreatePolicy
Core.:> Core.QueryParam "deletePolicy" DeploymentsUpdateDeletePolicy
Core.:> Core.QueryParam "header.bypassBillingFilter" Core.Bool
Core.:> Core.QueryParam "preview" Core.Bool
Core.:> Core.QueryParam "uploadType" Core.Text
Core.:> Core.QueryParam "upload_protocol" Core.Text
Core.:> Core.QueryParam "alt" Core.AltJSON
Core.:> Core.ReqBody '[Core.JSON] Deployment
Core.:> Core.Put '[Core.JSON] Operation
-- | Updates a deployment and all of the resources described by the deployment manifest.
--
-- /See:/ 'newDeploymentManagerDeploymentsUpdate' smart constructor.
data DeploymentManagerDeploymentsUpdate = DeploymentManagerDeploymentsUpdate
{ -- | V1 error format.
xgafv :: (Core.Maybe Xgafv),
-- | OAuth access token.
accessToken :: (Core.Maybe Core.Text),
-- | JSONP
callback :: (Core.Maybe Core.Text),
-- | Sets the policy to use for creating new resources.
createPolicy :: DeploymentsUpdateCreatePolicy,
-- | Sets the policy to use for deleting resources.
deletePolicy :: DeploymentsUpdateDeletePolicy,
-- | The name of the deployment for this request.
deployment :: Core.Text,
headerBypassBillingFilter :: (Core.Maybe Core.Bool),
-- | Multipart request metadata.
payload :: Deployment,
-- | If set to true, updates the deployment and creates and updates the \"shell\" resources but does not actually alter or instantiate these resources. This allows you to preview what your deployment will look like. You can use this intent to preview how an update would affect your deployment. You must provide a @target.config@ with a configuration if this is set to true. After previewing a deployment, you can deploy your resources by making a request with the @update()@ or you can @cancelPreview()@ to remove the preview altogether. Note that the deployment will still exist after you cancel the preview and you must separately delete this deployment if you want to remove it.
preview :: Core.Bool,
-- | The project ID for this request.
project :: Core.Text,
-- | Legacy upload protocol for media (e.g. \"media\", \"multipart\").
uploadType :: (Core.Maybe Core.Text),
-- | Upload protocol for media (e.g. \"raw\", \"multipart\").
uploadProtocol :: (Core.Maybe Core.Text)
}
deriving (Core.Eq, Core.Show, Core.Generic)
-- | Creates a value of 'DeploymentManagerDeploymentsUpdate' with the minimum fields required to make a request.
newDeploymentManagerDeploymentsUpdate ::
-- | The name of the deployment for this request. See 'deployment'.
Core.Text ->
-- | Multipart request metadata. See 'payload'.
Deployment ->
-- | The project ID for this request. See 'project'.
Core.Text ->
DeploymentManagerDeploymentsUpdate
newDeploymentManagerDeploymentsUpdate deployment payload project =
DeploymentManagerDeploymentsUpdate
{ xgafv = Core.Nothing,
accessToken = Core.Nothing,
callback = Core.Nothing,
createPolicy = DeploymentsUpdateCreatePolicy_CREATEORACQUIRE,
deletePolicy = DeploymentsUpdateDeletePolicy_Delete',
deployment = deployment,
headerBypassBillingFilter = Core.Nothing,
payload = payload,
preview = Core.False,
project = project,
uploadType = Core.Nothing,
uploadProtocol = Core.Nothing
}
instance Core.GoogleRequest DeploymentManagerDeploymentsUpdate where
type Rs DeploymentManagerDeploymentsUpdate = Operation
type
Scopes DeploymentManagerDeploymentsUpdate =
'[CloudPlatform'FullControl, Ndev'Cloudman]
requestClient DeploymentManagerDeploymentsUpdate {..} =
go
project
deployment
xgafv
accessToken
callback
(Core.Just createPolicy)
(Core.Just deletePolicy)
headerBypassBillingFilter
(Core.Just preview)
uploadType
uploadProtocol
(Core.Just Core.AltJSON)
payload
deploymentManagerService
where
go =
Core.buildClient
( Core.Proxy ::
Core.Proxy DeploymentManagerDeploymentsUpdateResource
)
Core.mempty