amazonka-lightsail-2.0: gen/Amazonka/Lightsail/Types/DiskInfo.hs
{-# 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.Lightsail.Types.DiskInfo
-- 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.Lightsail.Types.DiskInfo 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 a disk.
--
-- /See:/ 'newDiskInfo' smart constructor.
data DiskInfo = DiskInfo'
{ -- | A Boolean value indicating whether this disk is a system disk (has an
-- operating system loaded on it).
isSystemDisk :: Prelude.Maybe Prelude.Bool,
-- | The disk name.
name :: Prelude.Maybe Prelude.Text,
-- | The disk path.
path :: Prelude.Maybe Prelude.Text,
-- | The size of the disk in GB (e.g., @32@).
sizeInGb :: Prelude.Maybe Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DiskInfo' 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:
--
-- 'isSystemDisk', 'diskInfo_isSystemDisk' - A Boolean value indicating whether this disk is a system disk (has an
-- operating system loaded on it).
--
-- 'name', 'diskInfo_name' - The disk name.
--
-- 'path', 'diskInfo_path' - The disk path.
--
-- 'sizeInGb', 'diskInfo_sizeInGb' - The size of the disk in GB (e.g., @32@).
newDiskInfo ::
DiskInfo
newDiskInfo =
DiskInfo'
{ isSystemDisk = Prelude.Nothing,
name = Prelude.Nothing,
path = Prelude.Nothing,
sizeInGb = Prelude.Nothing
}
-- | A Boolean value indicating whether this disk is a system disk (has an
-- operating system loaded on it).
diskInfo_isSystemDisk :: Lens.Lens' DiskInfo (Prelude.Maybe Prelude.Bool)
diskInfo_isSystemDisk = Lens.lens (\DiskInfo' {isSystemDisk} -> isSystemDisk) (\s@DiskInfo' {} a -> s {isSystemDisk = a} :: DiskInfo)
-- | The disk name.
diskInfo_name :: Lens.Lens' DiskInfo (Prelude.Maybe Prelude.Text)
diskInfo_name = Lens.lens (\DiskInfo' {name} -> name) (\s@DiskInfo' {} a -> s {name = a} :: DiskInfo)
-- | The disk path.
diskInfo_path :: Lens.Lens' DiskInfo (Prelude.Maybe Prelude.Text)
diskInfo_path = Lens.lens (\DiskInfo' {path} -> path) (\s@DiskInfo' {} a -> s {path = a} :: DiskInfo)
-- | The size of the disk in GB (e.g., @32@).
diskInfo_sizeInGb :: Lens.Lens' DiskInfo (Prelude.Maybe Prelude.Int)
diskInfo_sizeInGb = Lens.lens (\DiskInfo' {sizeInGb} -> sizeInGb) (\s@DiskInfo' {} a -> s {sizeInGb = a} :: DiskInfo)
instance Data.FromJSON DiskInfo where
parseJSON =
Data.withObject
"DiskInfo"
( \x ->
DiskInfo'
Prelude.<$> (x Data..:? "isSystemDisk")
Prelude.<*> (x Data..:? "name")
Prelude.<*> (x Data..:? "path")
Prelude.<*> (x Data..:? "sizeInGb")
)
instance Prelude.Hashable DiskInfo where
hashWithSalt _salt DiskInfo' {..} =
_salt
`Prelude.hashWithSalt` isSystemDisk
`Prelude.hashWithSalt` name
`Prelude.hashWithSalt` path
`Prelude.hashWithSalt` sizeInGb
instance Prelude.NFData DiskInfo where
rnf DiskInfo' {..} =
Prelude.rnf isSystemDisk
`Prelude.seq` Prelude.rnf name
`Prelude.seq` Prelude.rnf path
`Prelude.seq` Prelude.rnf sizeInGb