module Stratosphere.IoTWireless.FuotaTask (
module Exports, FuotaTask(..), mkFuotaTask
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.IoTWireless.FuotaTask.LoRaWANProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data FuotaTask
=
FuotaTask {FuotaTask -> ()
haddock_workaround_ :: (),
FuotaTask -> Maybe (Value Text)
associateMulticastGroup :: (Prelude.Maybe (Value Prelude.Text)),
FuotaTask -> Maybe (Value Text)
associateWirelessDevice :: (Prelude.Maybe (Value Prelude.Text)),
FuotaTask -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
FuotaTask -> Maybe (Value Text)
disassociateMulticastGroup :: (Prelude.Maybe (Value Prelude.Text)),
FuotaTask -> Maybe (Value Text)
disassociateWirelessDevice :: (Prelude.Maybe (Value Prelude.Text)),
FuotaTask -> Value Text
firmwareUpdateImage :: (Value Prelude.Text),
FuotaTask -> Value Text
firmwareUpdateRole :: (Value Prelude.Text),
FuotaTask -> LoRaWANProperty
loRaWAN :: LoRaWANProperty,
FuotaTask -> Maybe (Value Text)
name :: (Prelude.Maybe (Value Prelude.Text)),
FuotaTask -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag])}
deriving stock (FuotaTask -> FuotaTask -> Bool
(FuotaTask -> FuotaTask -> Bool)
-> (FuotaTask -> FuotaTask -> Bool) -> Eq FuotaTask
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: FuotaTask -> FuotaTask -> Bool
== :: FuotaTask -> FuotaTask -> Bool
$c/= :: FuotaTask -> FuotaTask -> Bool
/= :: FuotaTask -> FuotaTask -> Bool
Prelude.Eq, Int -> FuotaTask -> ShowS
[FuotaTask] -> ShowS
FuotaTask -> String
(Int -> FuotaTask -> ShowS)
-> (FuotaTask -> String)
-> ([FuotaTask] -> ShowS)
-> Show FuotaTask
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> FuotaTask -> ShowS
showsPrec :: Int -> FuotaTask -> ShowS
$cshow :: FuotaTask -> String
show :: FuotaTask -> String
$cshowList :: [FuotaTask] -> ShowS
showList :: [FuotaTask] -> ShowS
Prelude.Show)
mkFuotaTask ::
Value Prelude.Text
-> Value Prelude.Text -> LoRaWANProperty -> FuotaTask
mkFuotaTask :: Value Text -> Value Text -> LoRaWANProperty -> FuotaTask
mkFuotaTask Value Text
firmwareUpdateImage Value Text
firmwareUpdateRole LoRaWANProperty
loRaWAN
= FuotaTask
{haddock_workaround_ :: ()
haddock_workaround_ = (),
firmwareUpdateImage :: Value Text
firmwareUpdateImage = Value Text
firmwareUpdateImage,
firmwareUpdateRole :: Value Text
firmwareUpdateRole = Value Text
firmwareUpdateRole, loRaWAN :: LoRaWANProperty
loRaWAN = LoRaWANProperty
loRaWAN,
associateMulticastGroup :: Maybe (Value Text)
associateMulticastGroup = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
associateWirelessDevice :: Maybe (Value Text)
associateWirelessDevice = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
disassociateMulticastGroup :: Maybe (Value Text)
disassociateMulticastGroup = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
disassociateWirelessDevice :: Maybe (Value Text)
disassociateWirelessDevice = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
name :: Maybe (Value Text)
name = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties FuotaTask where
toResourceProperties :: FuotaTask -> ResourceProperties
toResourceProperties FuotaTask {Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: FuotaTask -> ()
associateMulticastGroup :: FuotaTask -> Maybe (Value Text)
associateWirelessDevice :: FuotaTask -> Maybe (Value Text)
description :: FuotaTask -> Maybe (Value Text)
disassociateMulticastGroup :: FuotaTask -> Maybe (Value Text)
disassociateWirelessDevice :: FuotaTask -> Maybe (Value Text)
firmwareUpdateImage :: FuotaTask -> Value Text
firmwareUpdateRole :: FuotaTask -> Value Text
loRaWAN :: FuotaTask -> LoRaWANProperty
name :: FuotaTask -> Maybe (Value Text)
tags :: FuotaTask -> Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::IoTWireless::FuotaTask",
supportsTags :: Bool
supportsTags = Bool
Prelude.True,
properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
[Key
"FirmwareUpdateImage" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
firmwareUpdateImage,
Key
"FirmwareUpdateRole" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
firmwareUpdateRole,
Key
"LoRaWAN" Key -> LoRaWANProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= LoRaWANProperty
loRaWAN]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AssociateMulticastGroup"
(Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
associateMulticastGroup,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AssociateWirelessDevice"
(Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
associateWirelessDevice,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Description" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
description,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DisassociateMulticastGroup"
(Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
disassociateMulticastGroup,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DisassociateWirelessDevice"
(Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
disassociateWirelessDevice,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Name" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
name,
Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags]))}
instance JSON.ToJSON FuotaTask where
toJSON :: FuotaTask -> Value
toJSON FuotaTask {Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: FuotaTask -> ()
associateMulticastGroup :: FuotaTask -> Maybe (Value Text)
associateWirelessDevice :: FuotaTask -> Maybe (Value Text)
description :: FuotaTask -> Maybe (Value Text)
disassociateMulticastGroup :: FuotaTask -> Maybe (Value Text)
disassociateWirelessDevice :: FuotaTask -> Maybe (Value Text)
firmwareUpdateImage :: FuotaTask -> Value Text
firmwareUpdateRole :: FuotaTask -> Value Text
loRaWAN :: FuotaTask -> LoRaWANProperty
name :: FuotaTask -> Maybe (Value Text)
tags :: FuotaTask -> Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= [(Key, Value)] -> Value
JSON.object
([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
[Key
"FirmwareUpdateImage" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
firmwareUpdateImage,
Key
"FirmwareUpdateRole" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
firmwareUpdateRole,
Key
"LoRaWAN" Key -> LoRaWANProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= LoRaWANProperty
loRaWAN]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AssociateMulticastGroup"
(Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
associateMulticastGroup,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AssociateWirelessDevice"
(Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
associateWirelessDevice,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Description" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
description,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DisassociateMulticastGroup"
(Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
disassociateMulticastGroup,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DisassociateWirelessDevice"
(Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
disassociateWirelessDevice,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Name" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
name,
Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags])))
instance Property "AssociateMulticastGroup" FuotaTask where
type PropertyType "AssociateMulticastGroup" FuotaTask = Value Prelude.Text
set :: PropertyType "AssociateMulticastGroup" FuotaTask
-> FuotaTask -> FuotaTask
set PropertyType "AssociateMulticastGroup" FuotaTask
newValue FuotaTask {Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: FuotaTask -> ()
associateMulticastGroup :: FuotaTask -> Maybe (Value Text)
associateWirelessDevice :: FuotaTask -> Maybe (Value Text)
description :: FuotaTask -> Maybe (Value Text)
disassociateMulticastGroup :: FuotaTask -> Maybe (Value Text)
disassociateWirelessDevice :: FuotaTask -> Maybe (Value Text)
firmwareUpdateImage :: FuotaTask -> Value Text
firmwareUpdateRole :: FuotaTask -> Value Text
loRaWAN :: FuotaTask -> LoRaWANProperty
name :: FuotaTask -> Maybe (Value Text)
tags :: FuotaTask -> Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= FuotaTask {associateMulticastGroup :: Maybe (Value Text)
associateMulticastGroup = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AssociateMulticastGroup" FuotaTask
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: ()
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "AssociateWirelessDevice" FuotaTask where
type PropertyType "AssociateWirelessDevice" FuotaTask = Value Prelude.Text
set :: PropertyType "AssociateWirelessDevice" FuotaTask
-> FuotaTask -> FuotaTask
set PropertyType "AssociateWirelessDevice" FuotaTask
newValue FuotaTask {Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: FuotaTask -> ()
associateMulticastGroup :: FuotaTask -> Maybe (Value Text)
associateWirelessDevice :: FuotaTask -> Maybe (Value Text)
description :: FuotaTask -> Maybe (Value Text)
disassociateMulticastGroup :: FuotaTask -> Maybe (Value Text)
disassociateWirelessDevice :: FuotaTask -> Maybe (Value Text)
firmwareUpdateImage :: FuotaTask -> Value Text
firmwareUpdateRole :: FuotaTask -> Value Text
loRaWAN :: FuotaTask -> LoRaWANProperty
name :: FuotaTask -> Maybe (Value Text)
tags :: FuotaTask -> Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= FuotaTask {associateWirelessDevice :: Maybe (Value Text)
associateWirelessDevice = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AssociateWirelessDevice" FuotaTask
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "Description" FuotaTask where
type PropertyType "Description" FuotaTask = Value Prelude.Text
set :: PropertyType "Description" FuotaTask -> FuotaTask -> FuotaTask
set PropertyType "Description" FuotaTask
newValue FuotaTask {Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: FuotaTask -> ()
associateMulticastGroup :: FuotaTask -> Maybe (Value Text)
associateWirelessDevice :: FuotaTask -> Maybe (Value Text)
description :: FuotaTask -> Maybe (Value Text)
disassociateMulticastGroup :: FuotaTask -> Maybe (Value Text)
disassociateWirelessDevice :: FuotaTask -> Maybe (Value Text)
firmwareUpdateImage :: FuotaTask -> Value Text
firmwareUpdateRole :: FuotaTask -> Value Text
loRaWAN :: FuotaTask -> LoRaWANProperty
name :: FuotaTask -> Maybe (Value Text)
tags :: FuotaTask -> Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= FuotaTask {description :: Maybe (Value Text)
description = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Description" FuotaTask
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "DisassociateMulticastGroup" FuotaTask where
type PropertyType "DisassociateMulticastGroup" FuotaTask = Value Prelude.Text
set :: PropertyType "DisassociateMulticastGroup" FuotaTask
-> FuotaTask -> FuotaTask
set PropertyType "DisassociateMulticastGroup" FuotaTask
newValue FuotaTask {Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: FuotaTask -> ()
associateMulticastGroup :: FuotaTask -> Maybe (Value Text)
associateWirelessDevice :: FuotaTask -> Maybe (Value Text)
description :: FuotaTask -> Maybe (Value Text)
disassociateMulticastGroup :: FuotaTask -> Maybe (Value Text)
disassociateWirelessDevice :: FuotaTask -> Maybe (Value Text)
firmwareUpdateImage :: FuotaTask -> Value Text
firmwareUpdateRole :: FuotaTask -> Value Text
loRaWAN :: FuotaTask -> LoRaWANProperty
name :: FuotaTask -> Maybe (Value Text)
tags :: FuotaTask -> Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= FuotaTask
{disassociateMulticastGroup :: Maybe (Value Text)
disassociateMulticastGroup = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DisassociateMulticastGroup" FuotaTask
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "DisassociateWirelessDevice" FuotaTask where
type PropertyType "DisassociateWirelessDevice" FuotaTask = Value Prelude.Text
set :: PropertyType "DisassociateWirelessDevice" FuotaTask
-> FuotaTask -> FuotaTask
set PropertyType "DisassociateWirelessDevice" FuotaTask
newValue FuotaTask {Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: FuotaTask -> ()
associateMulticastGroup :: FuotaTask -> Maybe (Value Text)
associateWirelessDevice :: FuotaTask -> Maybe (Value Text)
description :: FuotaTask -> Maybe (Value Text)
disassociateMulticastGroup :: FuotaTask -> Maybe (Value Text)
disassociateWirelessDevice :: FuotaTask -> Maybe (Value Text)
firmwareUpdateImage :: FuotaTask -> Value Text
firmwareUpdateRole :: FuotaTask -> Value Text
loRaWAN :: FuotaTask -> LoRaWANProperty
name :: FuotaTask -> Maybe (Value Text)
tags :: FuotaTask -> Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= FuotaTask
{disassociateWirelessDevice :: Maybe (Value Text)
disassociateWirelessDevice = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DisassociateWirelessDevice" FuotaTask
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "FirmwareUpdateImage" FuotaTask where
type PropertyType "FirmwareUpdateImage" FuotaTask = Value Prelude.Text
set :: PropertyType "FirmwareUpdateImage" FuotaTask
-> FuotaTask -> FuotaTask
set PropertyType "FirmwareUpdateImage" FuotaTask
newValue FuotaTask {Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: FuotaTask -> ()
associateMulticastGroup :: FuotaTask -> Maybe (Value Text)
associateWirelessDevice :: FuotaTask -> Maybe (Value Text)
description :: FuotaTask -> Maybe (Value Text)
disassociateMulticastGroup :: FuotaTask -> Maybe (Value Text)
disassociateWirelessDevice :: FuotaTask -> Maybe (Value Text)
firmwareUpdateImage :: FuotaTask -> Value Text
firmwareUpdateRole :: FuotaTask -> Value Text
loRaWAN :: FuotaTask -> LoRaWANProperty
name :: FuotaTask -> Maybe (Value Text)
tags :: FuotaTask -> Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= FuotaTask {firmwareUpdateImage :: Value Text
firmwareUpdateImage = PropertyType "FirmwareUpdateImage" FuotaTask
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "FirmwareUpdateRole" FuotaTask where
type PropertyType "FirmwareUpdateRole" FuotaTask = Value Prelude.Text
set :: PropertyType "FirmwareUpdateRole" FuotaTask
-> FuotaTask -> FuotaTask
set PropertyType "FirmwareUpdateRole" FuotaTask
newValue FuotaTask {Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: FuotaTask -> ()
associateMulticastGroup :: FuotaTask -> Maybe (Value Text)
associateWirelessDevice :: FuotaTask -> Maybe (Value Text)
description :: FuotaTask -> Maybe (Value Text)
disassociateMulticastGroup :: FuotaTask -> Maybe (Value Text)
disassociateWirelessDevice :: FuotaTask -> Maybe (Value Text)
firmwareUpdateImage :: FuotaTask -> Value Text
firmwareUpdateRole :: FuotaTask -> Value Text
loRaWAN :: FuotaTask -> LoRaWANProperty
name :: FuotaTask -> Maybe (Value Text)
tags :: FuotaTask -> Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= FuotaTask {firmwareUpdateRole :: Value Text
firmwareUpdateRole = PropertyType "FirmwareUpdateRole" FuotaTask
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "LoRaWAN" FuotaTask where
type PropertyType "LoRaWAN" FuotaTask = LoRaWANProperty
set :: PropertyType "LoRaWAN" FuotaTask -> FuotaTask -> FuotaTask
set PropertyType "LoRaWAN" FuotaTask
newValue FuotaTask {Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: FuotaTask -> ()
associateMulticastGroup :: FuotaTask -> Maybe (Value Text)
associateWirelessDevice :: FuotaTask -> Maybe (Value Text)
description :: FuotaTask -> Maybe (Value Text)
disassociateMulticastGroup :: FuotaTask -> Maybe (Value Text)
disassociateWirelessDevice :: FuotaTask -> Maybe (Value Text)
firmwareUpdateImage :: FuotaTask -> Value Text
firmwareUpdateRole :: FuotaTask -> Value Text
loRaWAN :: FuotaTask -> LoRaWANProperty
name :: FuotaTask -> Maybe (Value Text)
tags :: FuotaTask -> Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..} = FuotaTask {loRaWAN :: LoRaWANProperty
loRaWAN = PropertyType "LoRaWAN" FuotaTask
LoRaWANProperty
newValue, Maybe [Tag]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
name :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "Name" FuotaTask where
type PropertyType "Name" FuotaTask = Value Prelude.Text
set :: PropertyType "Name" FuotaTask -> FuotaTask -> FuotaTask
set PropertyType "Name" FuotaTask
newValue FuotaTask {Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: FuotaTask -> ()
associateMulticastGroup :: FuotaTask -> Maybe (Value Text)
associateWirelessDevice :: FuotaTask -> Maybe (Value Text)
description :: FuotaTask -> Maybe (Value Text)
disassociateMulticastGroup :: FuotaTask -> Maybe (Value Text)
disassociateWirelessDevice :: FuotaTask -> Maybe (Value Text)
firmwareUpdateImage :: FuotaTask -> Value Text
firmwareUpdateRole :: FuotaTask -> Value Text
loRaWAN :: FuotaTask -> LoRaWANProperty
name :: FuotaTask -> Maybe (Value Text)
tags :: FuotaTask -> Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= FuotaTask {name :: Maybe (Value Text)
name = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Name" FuotaTask
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
tags :: Maybe [Tag]
..}
instance Property "Tags" FuotaTask where
type PropertyType "Tags" FuotaTask = [Tag]
set :: PropertyType "Tags" FuotaTask -> FuotaTask -> FuotaTask
set PropertyType "Tags" FuotaTask
newValue FuotaTask {Maybe [Tag]
Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: FuotaTask -> ()
associateMulticastGroup :: FuotaTask -> Maybe (Value Text)
associateWirelessDevice :: FuotaTask -> Maybe (Value Text)
description :: FuotaTask -> Maybe (Value Text)
disassociateMulticastGroup :: FuotaTask -> Maybe (Value Text)
disassociateWirelessDevice :: FuotaTask -> Maybe (Value Text)
firmwareUpdateImage :: FuotaTask -> Value Text
firmwareUpdateRole :: FuotaTask -> Value Text
loRaWAN :: FuotaTask -> LoRaWANProperty
name :: FuotaTask -> Maybe (Value Text)
tags :: FuotaTask -> Maybe [Tag]
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= FuotaTask {tags :: Maybe [Tag]
tags = [Tag] -> Maybe [Tag]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [Tag]
PropertyType "Tags" FuotaTask
newValue, Maybe (Value Text)
()
Value Text
LoRaWANProperty
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
haddock_workaround_ :: ()
associateMulticastGroup :: Maybe (Value Text)
associateWirelessDevice :: Maybe (Value Text)
description :: Maybe (Value Text)
disassociateMulticastGroup :: Maybe (Value Text)
disassociateWirelessDevice :: Maybe (Value Text)
firmwareUpdateImage :: Value Text
firmwareUpdateRole :: Value Text
loRaWAN :: LoRaWANProperty
name :: Maybe (Value Text)
..}