{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}

-- Derived from AWS service descriptions, licensed under Apache 2.0.

-- |
-- Module      : Amazonka.ElasticSearch.Types.ServiceSoftwareOptions
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.ElasticSearch.Types.ServiceSoftwareOptions where

import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.ElasticSearch.Types.DeploymentStatus
import qualified Amazonka.Prelude as Prelude

-- | The current options of an Elasticsearch domain service software options.
--
-- /See:/ 'newServiceSoftwareOptions' smart constructor.
data ServiceSoftwareOptions = ServiceSoftwareOptions'
  { -- | Timestamp, in Epoch time, until which you can manually request a service
    -- software update. After this date, we automatically update your service
    -- software.
    ServiceSoftwareOptions -> Maybe POSIX
automatedUpdateDate :: Prelude.Maybe Data.POSIX,
    -- | @True@ if you are able to cancel your service software version update.
    -- @False@ if you are not able to cancel your service software version.
    ServiceSoftwareOptions -> Maybe Bool
cancellable :: Prelude.Maybe Prelude.Bool,
    -- | The current service software version that is present on the domain.
    ServiceSoftwareOptions -> Maybe Text
currentVersion :: Prelude.Maybe Prelude.Text,
    -- | The description of the @UpdateStatus@.
    ServiceSoftwareOptions -> Maybe Text
description :: Prelude.Maybe Prelude.Text,
    -- | The new service software version if one is available.
    ServiceSoftwareOptions -> Maybe Text
newVersion' :: Prelude.Maybe Prelude.Text,
    -- | @True@ if a service software is never automatically updated. @False@ if
    -- a service software is automatically updated after @AutomatedUpdateDate@.
    ServiceSoftwareOptions -> Maybe Bool
optionalDeployment :: Prelude.Maybe Prelude.Bool,
    -- | @True@ if you are able to update you service software version. @False@
    -- if you are not able to update your service software version.
    ServiceSoftwareOptions -> Maybe Bool
updateAvailable :: Prelude.Maybe Prelude.Bool,
    -- | The status of your service software update. This field can take the
    -- following values: @ELIGIBLE@, @PENDING_UPDATE@, @IN_PROGRESS@,
    -- @COMPLETED@, and @NOT_ELIGIBLE@.
    ServiceSoftwareOptions -> Maybe DeploymentStatus
updateStatus :: Prelude.Maybe DeploymentStatus
  }
  deriving (ServiceSoftwareOptions -> ServiceSoftwareOptions -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ServiceSoftwareOptions -> ServiceSoftwareOptions -> Bool
$c/= :: ServiceSoftwareOptions -> ServiceSoftwareOptions -> Bool
== :: ServiceSoftwareOptions -> ServiceSoftwareOptions -> Bool
$c== :: ServiceSoftwareOptions -> ServiceSoftwareOptions -> Bool
Prelude.Eq, ReadPrec [ServiceSoftwareOptions]
ReadPrec ServiceSoftwareOptions
Int -> ReadS ServiceSoftwareOptions
ReadS [ServiceSoftwareOptions]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ServiceSoftwareOptions]
$creadListPrec :: ReadPrec [ServiceSoftwareOptions]
readPrec :: ReadPrec ServiceSoftwareOptions
$creadPrec :: ReadPrec ServiceSoftwareOptions
readList :: ReadS [ServiceSoftwareOptions]
$creadList :: ReadS [ServiceSoftwareOptions]
readsPrec :: Int -> ReadS ServiceSoftwareOptions
$creadsPrec :: Int -> ReadS ServiceSoftwareOptions
Prelude.Read, Int -> ServiceSoftwareOptions -> ShowS
[ServiceSoftwareOptions] -> ShowS
ServiceSoftwareOptions -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ServiceSoftwareOptions] -> ShowS
$cshowList :: [ServiceSoftwareOptions] -> ShowS
show :: ServiceSoftwareOptions -> String
$cshow :: ServiceSoftwareOptions -> String
showsPrec :: Int -> ServiceSoftwareOptions -> ShowS
$cshowsPrec :: Int -> ServiceSoftwareOptions -> ShowS
Prelude.Show, forall x. Rep ServiceSoftwareOptions x -> ServiceSoftwareOptions
forall x. ServiceSoftwareOptions -> Rep ServiceSoftwareOptions x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ServiceSoftwareOptions x -> ServiceSoftwareOptions
$cfrom :: forall x. ServiceSoftwareOptions -> Rep ServiceSoftwareOptions x
Prelude.Generic)

-- |
-- Create a value of 'ServiceSoftwareOptions' 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:
--
-- 'automatedUpdateDate', 'serviceSoftwareOptions_automatedUpdateDate' - Timestamp, in Epoch time, until which you can manually request a service
-- software update. After this date, we automatically update your service
-- software.
--
-- 'cancellable', 'serviceSoftwareOptions_cancellable' - @True@ if you are able to cancel your service software version update.
-- @False@ if you are not able to cancel your service software version.
--
-- 'currentVersion', 'serviceSoftwareOptions_currentVersion' - The current service software version that is present on the domain.
--
-- 'description', 'serviceSoftwareOptions_description' - The description of the @UpdateStatus@.
--
-- 'newVersion'', 'serviceSoftwareOptions_newVersion' - The new service software version if one is available.
--
-- 'optionalDeployment', 'serviceSoftwareOptions_optionalDeployment' - @True@ if a service software is never automatically updated. @False@ if
-- a service software is automatically updated after @AutomatedUpdateDate@.
--
-- 'updateAvailable', 'serviceSoftwareOptions_updateAvailable' - @True@ if you are able to update you service software version. @False@
-- if you are not able to update your service software version.
--
-- 'updateStatus', 'serviceSoftwareOptions_updateStatus' - The status of your service software update. This field can take the
-- following values: @ELIGIBLE@, @PENDING_UPDATE@, @IN_PROGRESS@,
-- @COMPLETED@, and @NOT_ELIGIBLE@.
newServiceSoftwareOptions ::
  ServiceSoftwareOptions
newServiceSoftwareOptions :: ServiceSoftwareOptions
newServiceSoftwareOptions =
  ServiceSoftwareOptions'
    { $sel:automatedUpdateDate:ServiceSoftwareOptions' :: Maybe POSIX
automatedUpdateDate =
        forall a. Maybe a
Prelude.Nothing,
      $sel:cancellable:ServiceSoftwareOptions' :: Maybe Bool
cancellable = forall a. Maybe a
Prelude.Nothing,
      $sel:currentVersion:ServiceSoftwareOptions' :: Maybe Text
currentVersion = forall a. Maybe a
Prelude.Nothing,
      $sel:description:ServiceSoftwareOptions' :: Maybe Text
description = forall a. Maybe a
Prelude.Nothing,
      $sel:newVersion':ServiceSoftwareOptions' :: Maybe Text
newVersion' = forall a. Maybe a
Prelude.Nothing,
      $sel:optionalDeployment:ServiceSoftwareOptions' :: Maybe Bool
optionalDeployment = forall a. Maybe a
Prelude.Nothing,
      $sel:updateAvailable:ServiceSoftwareOptions' :: Maybe Bool
updateAvailable = forall a. Maybe a
Prelude.Nothing,
      $sel:updateStatus:ServiceSoftwareOptions' :: Maybe DeploymentStatus
updateStatus = forall a. Maybe a
Prelude.Nothing
    }

-- | Timestamp, in Epoch time, until which you can manually request a service
-- software update. After this date, we automatically update your service
-- software.
serviceSoftwareOptions_automatedUpdateDate :: Lens.Lens' ServiceSoftwareOptions (Prelude.Maybe Prelude.UTCTime)
serviceSoftwareOptions_automatedUpdateDate :: Lens' ServiceSoftwareOptions (Maybe UTCTime)
serviceSoftwareOptions_automatedUpdateDate = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ServiceSoftwareOptions' {Maybe POSIX
automatedUpdateDate :: Maybe POSIX
$sel:automatedUpdateDate:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe POSIX
automatedUpdateDate} -> Maybe POSIX
automatedUpdateDate) (\s :: ServiceSoftwareOptions
s@ServiceSoftwareOptions' {} Maybe POSIX
a -> ServiceSoftwareOptions
s {$sel:automatedUpdateDate:ServiceSoftwareOptions' :: Maybe POSIX
automatedUpdateDate = Maybe POSIX
a} :: ServiceSoftwareOptions) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall (a :: Format). Iso' (Time a) UTCTime
Data._Time

-- | @True@ if you are able to cancel your service software version update.
-- @False@ if you are not able to cancel your service software version.
serviceSoftwareOptions_cancellable :: Lens.Lens' ServiceSoftwareOptions (Prelude.Maybe Prelude.Bool)
serviceSoftwareOptions_cancellable :: Lens' ServiceSoftwareOptions (Maybe Bool)
serviceSoftwareOptions_cancellable = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ServiceSoftwareOptions' {Maybe Bool
cancellable :: Maybe Bool
$sel:cancellable:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe Bool
cancellable} -> Maybe Bool
cancellable) (\s :: ServiceSoftwareOptions
s@ServiceSoftwareOptions' {} Maybe Bool
a -> ServiceSoftwareOptions
s {$sel:cancellable:ServiceSoftwareOptions' :: Maybe Bool
cancellable = Maybe Bool
a} :: ServiceSoftwareOptions)

-- | The current service software version that is present on the domain.
serviceSoftwareOptions_currentVersion :: Lens.Lens' ServiceSoftwareOptions (Prelude.Maybe Prelude.Text)
serviceSoftwareOptions_currentVersion :: Lens' ServiceSoftwareOptions (Maybe Text)
serviceSoftwareOptions_currentVersion = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ServiceSoftwareOptions' {Maybe Text
currentVersion :: Maybe Text
$sel:currentVersion:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe Text
currentVersion} -> Maybe Text
currentVersion) (\s :: ServiceSoftwareOptions
s@ServiceSoftwareOptions' {} Maybe Text
a -> ServiceSoftwareOptions
s {$sel:currentVersion:ServiceSoftwareOptions' :: Maybe Text
currentVersion = Maybe Text
a} :: ServiceSoftwareOptions)

-- | The description of the @UpdateStatus@.
serviceSoftwareOptions_description :: Lens.Lens' ServiceSoftwareOptions (Prelude.Maybe Prelude.Text)
serviceSoftwareOptions_description :: Lens' ServiceSoftwareOptions (Maybe Text)
serviceSoftwareOptions_description = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ServiceSoftwareOptions' {Maybe Text
description :: Maybe Text
$sel:description:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe Text
description} -> Maybe Text
description) (\s :: ServiceSoftwareOptions
s@ServiceSoftwareOptions' {} Maybe Text
a -> ServiceSoftwareOptions
s {$sel:description:ServiceSoftwareOptions' :: Maybe Text
description = Maybe Text
a} :: ServiceSoftwareOptions)

-- | The new service software version if one is available.
serviceSoftwareOptions_newVersion :: Lens.Lens' ServiceSoftwareOptions (Prelude.Maybe Prelude.Text)
serviceSoftwareOptions_newVersion :: Lens' ServiceSoftwareOptions (Maybe Text)
serviceSoftwareOptions_newVersion = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ServiceSoftwareOptions' {Maybe Text
newVersion' :: Maybe Text
$sel:newVersion':ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe Text
newVersion'} -> Maybe Text
newVersion') (\s :: ServiceSoftwareOptions
s@ServiceSoftwareOptions' {} Maybe Text
a -> ServiceSoftwareOptions
s {$sel:newVersion':ServiceSoftwareOptions' :: Maybe Text
newVersion' = Maybe Text
a} :: ServiceSoftwareOptions)

-- | @True@ if a service software is never automatically updated. @False@ if
-- a service software is automatically updated after @AutomatedUpdateDate@.
serviceSoftwareOptions_optionalDeployment :: Lens.Lens' ServiceSoftwareOptions (Prelude.Maybe Prelude.Bool)
serviceSoftwareOptions_optionalDeployment :: Lens' ServiceSoftwareOptions (Maybe Bool)
serviceSoftwareOptions_optionalDeployment = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ServiceSoftwareOptions' {Maybe Bool
optionalDeployment :: Maybe Bool
$sel:optionalDeployment:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe Bool
optionalDeployment} -> Maybe Bool
optionalDeployment) (\s :: ServiceSoftwareOptions
s@ServiceSoftwareOptions' {} Maybe Bool
a -> ServiceSoftwareOptions
s {$sel:optionalDeployment:ServiceSoftwareOptions' :: Maybe Bool
optionalDeployment = Maybe Bool
a} :: ServiceSoftwareOptions)

-- | @True@ if you are able to update you service software version. @False@
-- if you are not able to update your service software version.
serviceSoftwareOptions_updateAvailable :: Lens.Lens' ServiceSoftwareOptions (Prelude.Maybe Prelude.Bool)
serviceSoftwareOptions_updateAvailable :: Lens' ServiceSoftwareOptions (Maybe Bool)
serviceSoftwareOptions_updateAvailable = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ServiceSoftwareOptions' {Maybe Bool
updateAvailable :: Maybe Bool
$sel:updateAvailable:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe Bool
updateAvailable} -> Maybe Bool
updateAvailable) (\s :: ServiceSoftwareOptions
s@ServiceSoftwareOptions' {} Maybe Bool
a -> ServiceSoftwareOptions
s {$sel:updateAvailable:ServiceSoftwareOptions' :: Maybe Bool
updateAvailable = Maybe Bool
a} :: ServiceSoftwareOptions)

-- | The status of your service software update. This field can take the
-- following values: @ELIGIBLE@, @PENDING_UPDATE@, @IN_PROGRESS@,
-- @COMPLETED@, and @NOT_ELIGIBLE@.
serviceSoftwareOptions_updateStatus :: Lens.Lens' ServiceSoftwareOptions (Prelude.Maybe DeploymentStatus)
serviceSoftwareOptions_updateStatus :: Lens' ServiceSoftwareOptions (Maybe DeploymentStatus)
serviceSoftwareOptions_updateStatus = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ServiceSoftwareOptions' {Maybe DeploymentStatus
updateStatus :: Maybe DeploymentStatus
$sel:updateStatus:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe DeploymentStatus
updateStatus} -> Maybe DeploymentStatus
updateStatus) (\s :: ServiceSoftwareOptions
s@ServiceSoftwareOptions' {} Maybe DeploymentStatus
a -> ServiceSoftwareOptions
s {$sel:updateStatus:ServiceSoftwareOptions' :: Maybe DeploymentStatus
updateStatus = Maybe DeploymentStatus
a} :: ServiceSoftwareOptions)

instance Data.FromJSON ServiceSoftwareOptions where
  parseJSON :: Value -> Parser ServiceSoftwareOptions
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"ServiceSoftwareOptions"
      ( \Object
x ->
          Maybe POSIX
-> Maybe Bool
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe Bool
-> Maybe Bool
-> Maybe DeploymentStatus
-> ServiceSoftwareOptions
ServiceSoftwareOptions'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"AutomatedUpdateDate")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"Cancellable")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"CurrentVersion")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"Description")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"NewVersion")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"OptionalDeployment")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"UpdateAvailable")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"UpdateStatus")
      )

instance Prelude.Hashable ServiceSoftwareOptions where
  hashWithSalt :: Int -> ServiceSoftwareOptions -> Int
hashWithSalt Int
_salt ServiceSoftwareOptions' {Maybe Bool
Maybe Text
Maybe POSIX
Maybe DeploymentStatus
updateStatus :: Maybe DeploymentStatus
updateAvailable :: Maybe Bool
optionalDeployment :: Maybe Bool
newVersion' :: Maybe Text
description :: Maybe Text
currentVersion :: Maybe Text
cancellable :: Maybe Bool
automatedUpdateDate :: Maybe POSIX
$sel:updateStatus:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe DeploymentStatus
$sel:updateAvailable:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe Bool
$sel:optionalDeployment:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe Bool
$sel:newVersion':ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe Text
$sel:description:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe Text
$sel:currentVersion:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe Text
$sel:cancellable:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe Bool
$sel:automatedUpdateDate:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe POSIX
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe POSIX
automatedUpdateDate
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Bool
cancellable
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
currentVersion
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
description
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
newVersion'
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Bool
optionalDeployment
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Bool
updateAvailable
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe DeploymentStatus
updateStatus

instance Prelude.NFData ServiceSoftwareOptions where
  rnf :: ServiceSoftwareOptions -> ()
rnf ServiceSoftwareOptions' {Maybe Bool
Maybe Text
Maybe POSIX
Maybe DeploymentStatus
updateStatus :: Maybe DeploymentStatus
updateAvailable :: Maybe Bool
optionalDeployment :: Maybe Bool
newVersion' :: Maybe Text
description :: Maybe Text
currentVersion :: Maybe Text
cancellable :: Maybe Bool
automatedUpdateDate :: Maybe POSIX
$sel:updateStatus:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe DeploymentStatus
$sel:updateAvailable:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe Bool
$sel:optionalDeployment:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe Bool
$sel:newVersion':ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe Text
$sel:description:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe Text
$sel:currentVersion:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe Text
$sel:cancellable:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe Bool
$sel:automatedUpdateDate:ServiceSoftwareOptions' :: ServiceSoftwareOptions -> Maybe POSIX
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe POSIX
automatedUpdateDate
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Bool
cancellable
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
currentVersion
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
description
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
newVersion'
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Bool
optionalDeployment
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Bool
updateAvailable
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe DeploymentStatus
updateStatus