amazonka-iotwireless-2.0: gen/Amazonka/IoTWireless/Types/LoRaWANDevice.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.IoTWireless.Types.LoRaWANDevice
-- 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.IoTWireless.Types.LoRaWANDevice where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.IoTWireless.Types.AbpV1_0_x
import Amazonka.IoTWireless.Types.AbpV1_1
import Amazonka.IoTWireless.Types.FPorts
import Amazonka.IoTWireless.Types.OtaaV1_0_x
import Amazonka.IoTWireless.Types.OtaaV1_1
import qualified Amazonka.Prelude as Prelude
-- | LoRaWAN object for create functions.
--
-- /See:/ 'newLoRaWANDevice' smart constructor.
data LoRaWANDevice = LoRaWANDevice'
{ -- | LoRaWAN object for create APIs
abpV1_0_x :: Prelude.Maybe AbpV1_0_x,
-- | ABP device object for create APIs for v1.1
abpV1_1 :: Prelude.Maybe AbpV1_1,
-- | The DevEUI value.
devEui :: Prelude.Maybe Prelude.Text,
-- | The ID of the device profile for the new wireless device.
deviceProfileId :: Prelude.Maybe Prelude.Text,
fPorts :: Prelude.Maybe FPorts,
-- | OTAA device object for create APIs for v1.0.x
otaaV1_0_x :: Prelude.Maybe OtaaV1_0_x,
-- | OTAA device object for v1.1 for create APIs
otaaV1_1 :: Prelude.Maybe OtaaV1_1,
-- | The ID of the service profile.
serviceProfileId :: Prelude.Maybe Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'LoRaWANDevice' 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:
--
-- 'abpV1_0_x', 'loRaWANDevice_abpV1_0_x' - LoRaWAN object for create APIs
--
-- 'abpV1_1', 'loRaWANDevice_abpV1_1' - ABP device object for create APIs for v1.1
--
-- 'devEui', 'loRaWANDevice_devEui' - The DevEUI value.
--
-- 'deviceProfileId', 'loRaWANDevice_deviceProfileId' - The ID of the device profile for the new wireless device.
--
-- 'fPorts', 'loRaWANDevice_fPorts' - Undocumented member.
--
-- 'otaaV1_0_x', 'loRaWANDevice_otaaV1_0_x' - OTAA device object for create APIs for v1.0.x
--
-- 'otaaV1_1', 'loRaWANDevice_otaaV1_1' - OTAA device object for v1.1 for create APIs
--
-- 'serviceProfileId', 'loRaWANDevice_serviceProfileId' - The ID of the service profile.
newLoRaWANDevice ::
LoRaWANDevice
newLoRaWANDevice =
LoRaWANDevice'
{ abpV1_0_x = Prelude.Nothing,
abpV1_1 = Prelude.Nothing,
devEui = Prelude.Nothing,
deviceProfileId = Prelude.Nothing,
fPorts = Prelude.Nothing,
otaaV1_0_x = Prelude.Nothing,
otaaV1_1 = Prelude.Nothing,
serviceProfileId = Prelude.Nothing
}
-- | LoRaWAN object for create APIs
loRaWANDevice_abpV1_0_x :: Lens.Lens' LoRaWANDevice (Prelude.Maybe AbpV1_0_x)
loRaWANDevice_abpV1_0_x = Lens.lens (\LoRaWANDevice' {abpV1_0_x} -> abpV1_0_x) (\s@LoRaWANDevice' {} a -> s {abpV1_0_x = a} :: LoRaWANDevice)
-- | ABP device object for create APIs for v1.1
loRaWANDevice_abpV1_1 :: Lens.Lens' LoRaWANDevice (Prelude.Maybe AbpV1_1)
loRaWANDevice_abpV1_1 = Lens.lens (\LoRaWANDevice' {abpV1_1} -> abpV1_1) (\s@LoRaWANDevice' {} a -> s {abpV1_1 = a} :: LoRaWANDevice)
-- | The DevEUI value.
loRaWANDevice_devEui :: Lens.Lens' LoRaWANDevice (Prelude.Maybe Prelude.Text)
loRaWANDevice_devEui = Lens.lens (\LoRaWANDevice' {devEui} -> devEui) (\s@LoRaWANDevice' {} a -> s {devEui = a} :: LoRaWANDevice)
-- | The ID of the device profile for the new wireless device.
loRaWANDevice_deviceProfileId :: Lens.Lens' LoRaWANDevice (Prelude.Maybe Prelude.Text)
loRaWANDevice_deviceProfileId = Lens.lens (\LoRaWANDevice' {deviceProfileId} -> deviceProfileId) (\s@LoRaWANDevice' {} a -> s {deviceProfileId = a} :: LoRaWANDevice)
-- | Undocumented member.
loRaWANDevice_fPorts :: Lens.Lens' LoRaWANDevice (Prelude.Maybe FPorts)
loRaWANDevice_fPorts = Lens.lens (\LoRaWANDevice' {fPorts} -> fPorts) (\s@LoRaWANDevice' {} a -> s {fPorts = a} :: LoRaWANDevice)
-- | OTAA device object for create APIs for v1.0.x
loRaWANDevice_otaaV1_0_x :: Lens.Lens' LoRaWANDevice (Prelude.Maybe OtaaV1_0_x)
loRaWANDevice_otaaV1_0_x = Lens.lens (\LoRaWANDevice' {otaaV1_0_x} -> otaaV1_0_x) (\s@LoRaWANDevice' {} a -> s {otaaV1_0_x = a} :: LoRaWANDevice)
-- | OTAA device object for v1.1 for create APIs
loRaWANDevice_otaaV1_1 :: Lens.Lens' LoRaWANDevice (Prelude.Maybe OtaaV1_1)
loRaWANDevice_otaaV1_1 = Lens.lens (\LoRaWANDevice' {otaaV1_1} -> otaaV1_1) (\s@LoRaWANDevice' {} a -> s {otaaV1_1 = a} :: LoRaWANDevice)
-- | The ID of the service profile.
loRaWANDevice_serviceProfileId :: Lens.Lens' LoRaWANDevice (Prelude.Maybe Prelude.Text)
loRaWANDevice_serviceProfileId = Lens.lens (\LoRaWANDevice' {serviceProfileId} -> serviceProfileId) (\s@LoRaWANDevice' {} a -> s {serviceProfileId = a} :: LoRaWANDevice)
instance Data.FromJSON LoRaWANDevice where
parseJSON =
Data.withObject
"LoRaWANDevice"
( \x ->
LoRaWANDevice'
Prelude.<$> (x Data..:? "AbpV1_0_x")
Prelude.<*> (x Data..:? "AbpV1_1")
Prelude.<*> (x Data..:? "DevEui")
Prelude.<*> (x Data..:? "DeviceProfileId")
Prelude.<*> (x Data..:? "FPorts")
Prelude.<*> (x Data..:? "OtaaV1_0_x")
Prelude.<*> (x Data..:? "OtaaV1_1")
Prelude.<*> (x Data..:? "ServiceProfileId")
)
instance Prelude.Hashable LoRaWANDevice where
hashWithSalt _salt LoRaWANDevice' {..} =
_salt
`Prelude.hashWithSalt` abpV1_0_x
`Prelude.hashWithSalt` abpV1_1
`Prelude.hashWithSalt` devEui
`Prelude.hashWithSalt` deviceProfileId
`Prelude.hashWithSalt` fPorts
`Prelude.hashWithSalt` otaaV1_0_x
`Prelude.hashWithSalt` otaaV1_1
`Prelude.hashWithSalt` serviceProfileId
instance Prelude.NFData LoRaWANDevice where
rnf LoRaWANDevice' {..} =
Prelude.rnf abpV1_0_x
`Prelude.seq` Prelude.rnf abpV1_1
`Prelude.seq` Prelude.rnf devEui
`Prelude.seq` Prelude.rnf deviceProfileId
`Prelude.seq` Prelude.rnf fPorts
`Prelude.seq` Prelude.rnf otaaV1_0_x
`Prelude.seq` Prelude.rnf otaaV1_1
`Prelude.seq` Prelude.rnf serviceProfileId
instance Data.ToJSON LoRaWANDevice where
toJSON LoRaWANDevice' {..} =
Data.object
( Prelude.catMaybes
[ ("AbpV1_0_x" Data..=) Prelude.<$> abpV1_0_x,
("AbpV1_1" Data..=) Prelude.<$> abpV1_1,
("DevEui" Data..=) Prelude.<$> devEui,
("DeviceProfileId" Data..=)
Prelude.<$> deviceProfileId,
("FPorts" Data..=) Prelude.<$> fPorts,
("OtaaV1_0_x" Data..=) Prelude.<$> otaaV1_0_x,
("OtaaV1_1" Data..=) Prelude.<$> otaaV1_1,
("ServiceProfileId" Data..=)
Prelude.<$> serviceProfileId
]
)