{-# 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.WorkSpaces.Types.RootStorage
-- 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.WorkSpaces.Types.RootStorage where

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

-- | Describes the root volume for a WorkSpace bundle.
--
-- /See:/ 'newRootStorage' smart constructor.
data RootStorage = RootStorage'
  { -- | The size of the root volume.
    RootStorage -> Maybe Text
capacity :: Prelude.Maybe Prelude.Text
  }
  deriving (RootStorage -> RootStorage -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: RootStorage -> RootStorage -> Bool
$c/= :: RootStorage -> RootStorage -> Bool
== :: RootStorage -> RootStorage -> Bool
$c== :: RootStorage -> RootStorage -> Bool
Prelude.Eq, ReadPrec [RootStorage]
ReadPrec RootStorage
Int -> ReadS RootStorage
ReadS [RootStorage]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [RootStorage]
$creadListPrec :: ReadPrec [RootStorage]
readPrec :: ReadPrec RootStorage
$creadPrec :: ReadPrec RootStorage
readList :: ReadS [RootStorage]
$creadList :: ReadS [RootStorage]
readsPrec :: Int -> ReadS RootStorage
$creadsPrec :: Int -> ReadS RootStorage
Prelude.Read, Int -> RootStorage -> ShowS
[RootStorage] -> ShowS
RootStorage -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [RootStorage] -> ShowS
$cshowList :: [RootStorage] -> ShowS
show :: RootStorage -> String
$cshow :: RootStorage -> String
showsPrec :: Int -> RootStorage -> ShowS
$cshowsPrec :: Int -> RootStorage -> ShowS
Prelude.Show, forall x. Rep RootStorage x -> RootStorage
forall x. RootStorage -> Rep RootStorage x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep RootStorage x -> RootStorage
$cfrom :: forall x. RootStorage -> Rep RootStorage x
Prelude.Generic)

-- |
-- Create a value of 'RootStorage' 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:
--
-- 'capacity', 'rootStorage_capacity' - The size of the root volume.
newRootStorage ::
  RootStorage
newRootStorage :: RootStorage
newRootStorage =
  RootStorage' {$sel:capacity:RootStorage' :: Maybe Text
capacity = forall a. Maybe a
Prelude.Nothing}

-- | The size of the root volume.
rootStorage_capacity :: Lens.Lens' RootStorage (Prelude.Maybe Prelude.Text)
rootStorage_capacity :: Lens' RootStorage (Maybe Text)
rootStorage_capacity = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RootStorage' {Maybe Text
capacity :: Maybe Text
$sel:capacity:RootStorage' :: RootStorage -> Maybe Text
capacity} -> Maybe Text
capacity) (\s :: RootStorage
s@RootStorage' {} Maybe Text
a -> RootStorage
s {$sel:capacity:RootStorage' :: Maybe Text
capacity = Maybe Text
a} :: RootStorage)

instance Data.FromJSON RootStorage where
  parseJSON :: Value -> Parser RootStorage
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"RootStorage"
      ( \Object
x ->
          Maybe Text -> RootStorage
RootStorage' 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
"Capacity")
      )

instance Prelude.Hashable RootStorage where
  hashWithSalt :: Int -> RootStorage -> Int
hashWithSalt Int
_salt RootStorage' {Maybe Text
capacity :: Maybe Text
$sel:capacity:RootStorage' :: RootStorage -> Maybe Text
..} =
    Int
_salt forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
capacity

instance Prelude.NFData RootStorage where
  rnf :: RootStorage -> ()
rnf RootStorage' {Maybe Text
capacity :: Maybe Text
$sel:capacity:RootStorage' :: RootStorage -> Maybe Text
..} = forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
capacity

instance Data.ToJSON RootStorage where
  toJSON :: RootStorage -> Value
toJSON RootStorage' {Maybe Text
capacity :: Maybe Text
$sel:capacity:RootStorage' :: RootStorage -> Maybe Text
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [(Key
"Capacity" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
capacity]
      )