{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
module Amazonka.IoT.RemoveThingFromBillingGroup
(
RemoveThingFromBillingGroup (..),
newRemoveThingFromBillingGroup,
removeThingFromBillingGroup_thingArn,
removeThingFromBillingGroup_billingGroupArn,
removeThingFromBillingGroup_thingName,
removeThingFromBillingGroup_billingGroupName,
RemoveThingFromBillingGroupResponse (..),
newRemoveThingFromBillingGroupResponse,
removeThingFromBillingGroupResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import Amazonka.IoT.Types
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
data RemoveThingFromBillingGroup = RemoveThingFromBillingGroup'
{
RemoveThingFromBillingGroup -> Maybe Text
thingArn :: Prelude.Maybe Prelude.Text,
RemoveThingFromBillingGroup -> Maybe Text
billingGroupArn :: Prelude.Maybe Prelude.Text,
RemoveThingFromBillingGroup -> Maybe Text
thingName :: Prelude.Maybe Prelude.Text,
RemoveThingFromBillingGroup -> Maybe Text
billingGroupName :: Prelude.Maybe Prelude.Text
}
deriving (RemoveThingFromBillingGroup -> RemoveThingFromBillingGroup -> Bool
(RemoveThingFromBillingGroup
-> RemoveThingFromBillingGroup -> Bool)
-> (RemoveThingFromBillingGroup
-> RemoveThingFromBillingGroup -> Bool)
-> Eq RemoveThingFromBillingGroup
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: RemoveThingFromBillingGroup -> RemoveThingFromBillingGroup -> Bool
$c/= :: RemoveThingFromBillingGroup -> RemoveThingFromBillingGroup -> Bool
== :: RemoveThingFromBillingGroup -> RemoveThingFromBillingGroup -> Bool
$c== :: RemoveThingFromBillingGroup -> RemoveThingFromBillingGroup -> Bool
Prelude.Eq, ReadPrec [RemoveThingFromBillingGroup]
ReadPrec RemoveThingFromBillingGroup
Int -> ReadS RemoveThingFromBillingGroup
ReadS [RemoveThingFromBillingGroup]
(Int -> ReadS RemoveThingFromBillingGroup)
-> ReadS [RemoveThingFromBillingGroup]
-> ReadPrec RemoveThingFromBillingGroup
-> ReadPrec [RemoveThingFromBillingGroup]
-> Read RemoveThingFromBillingGroup
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [RemoveThingFromBillingGroup]
$creadListPrec :: ReadPrec [RemoveThingFromBillingGroup]
readPrec :: ReadPrec RemoveThingFromBillingGroup
$creadPrec :: ReadPrec RemoveThingFromBillingGroup
readList :: ReadS [RemoveThingFromBillingGroup]
$creadList :: ReadS [RemoveThingFromBillingGroup]
readsPrec :: Int -> ReadS RemoveThingFromBillingGroup
$creadsPrec :: Int -> ReadS RemoveThingFromBillingGroup
Prelude.Read, Int -> RemoveThingFromBillingGroup -> ShowS
[RemoveThingFromBillingGroup] -> ShowS
RemoveThingFromBillingGroup -> String
(Int -> RemoveThingFromBillingGroup -> ShowS)
-> (RemoveThingFromBillingGroup -> String)
-> ([RemoveThingFromBillingGroup] -> ShowS)
-> Show RemoveThingFromBillingGroup
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [RemoveThingFromBillingGroup] -> ShowS
$cshowList :: [RemoveThingFromBillingGroup] -> ShowS
show :: RemoveThingFromBillingGroup -> String
$cshow :: RemoveThingFromBillingGroup -> String
showsPrec :: Int -> RemoveThingFromBillingGroup -> ShowS
$cshowsPrec :: Int -> RemoveThingFromBillingGroup -> ShowS
Prelude.Show, (forall x.
RemoveThingFromBillingGroup -> Rep RemoveThingFromBillingGroup x)
-> (forall x.
Rep RemoveThingFromBillingGroup x -> RemoveThingFromBillingGroup)
-> Generic RemoveThingFromBillingGroup
forall x.
Rep RemoveThingFromBillingGroup x -> RemoveThingFromBillingGroup
forall x.
RemoveThingFromBillingGroup -> Rep RemoveThingFromBillingGroup x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep RemoveThingFromBillingGroup x -> RemoveThingFromBillingGroup
$cfrom :: forall x.
RemoveThingFromBillingGroup -> Rep RemoveThingFromBillingGroup x
Prelude.Generic)
newRemoveThingFromBillingGroup ::
RemoveThingFromBillingGroup
newRemoveThingFromBillingGroup :: RemoveThingFromBillingGroup
newRemoveThingFromBillingGroup =
RemoveThingFromBillingGroup' :: Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> RemoveThingFromBillingGroup
RemoveThingFromBillingGroup'
{ $sel:thingArn:RemoveThingFromBillingGroup' :: Maybe Text
thingArn =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:billingGroupArn:RemoveThingFromBillingGroup' :: Maybe Text
billingGroupArn = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:thingName:RemoveThingFromBillingGroup' :: Maybe Text
thingName = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:billingGroupName:RemoveThingFromBillingGroup' :: Maybe Text
billingGroupName = Maybe Text
forall a. Maybe a
Prelude.Nothing
}
removeThingFromBillingGroup_thingArn :: Lens.Lens' RemoveThingFromBillingGroup (Prelude.Maybe Prelude.Text)
removeThingFromBillingGroup_thingArn :: (Maybe Text -> f (Maybe Text))
-> RemoveThingFromBillingGroup -> f RemoveThingFromBillingGroup
removeThingFromBillingGroup_thingArn = (RemoveThingFromBillingGroup -> Maybe Text)
-> (RemoveThingFromBillingGroup
-> Maybe Text -> RemoveThingFromBillingGroup)
-> Lens
RemoveThingFromBillingGroup
RemoveThingFromBillingGroup
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RemoveThingFromBillingGroup' {Maybe Text
thingArn :: Maybe Text
$sel:thingArn:RemoveThingFromBillingGroup' :: RemoveThingFromBillingGroup -> Maybe Text
thingArn} -> Maybe Text
thingArn) (\s :: RemoveThingFromBillingGroup
s@RemoveThingFromBillingGroup' {} Maybe Text
a -> RemoveThingFromBillingGroup
s {$sel:thingArn:RemoveThingFromBillingGroup' :: Maybe Text
thingArn = Maybe Text
a} :: RemoveThingFromBillingGroup)
removeThingFromBillingGroup_billingGroupArn :: Lens.Lens' RemoveThingFromBillingGroup (Prelude.Maybe Prelude.Text)
removeThingFromBillingGroup_billingGroupArn :: (Maybe Text -> f (Maybe Text))
-> RemoveThingFromBillingGroup -> f RemoveThingFromBillingGroup
removeThingFromBillingGroup_billingGroupArn = (RemoveThingFromBillingGroup -> Maybe Text)
-> (RemoveThingFromBillingGroup
-> Maybe Text -> RemoveThingFromBillingGroup)
-> Lens
RemoveThingFromBillingGroup
RemoveThingFromBillingGroup
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RemoveThingFromBillingGroup' {Maybe Text
billingGroupArn :: Maybe Text
$sel:billingGroupArn:RemoveThingFromBillingGroup' :: RemoveThingFromBillingGroup -> Maybe Text
billingGroupArn} -> Maybe Text
billingGroupArn) (\s :: RemoveThingFromBillingGroup
s@RemoveThingFromBillingGroup' {} Maybe Text
a -> RemoveThingFromBillingGroup
s {$sel:billingGroupArn:RemoveThingFromBillingGroup' :: Maybe Text
billingGroupArn = Maybe Text
a} :: RemoveThingFromBillingGroup)
removeThingFromBillingGroup_thingName :: Lens.Lens' RemoveThingFromBillingGroup (Prelude.Maybe Prelude.Text)
removeThingFromBillingGroup_thingName :: (Maybe Text -> f (Maybe Text))
-> RemoveThingFromBillingGroup -> f RemoveThingFromBillingGroup
removeThingFromBillingGroup_thingName = (RemoveThingFromBillingGroup -> Maybe Text)
-> (RemoveThingFromBillingGroup
-> Maybe Text -> RemoveThingFromBillingGroup)
-> Lens
RemoveThingFromBillingGroup
RemoveThingFromBillingGroup
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RemoveThingFromBillingGroup' {Maybe Text
thingName :: Maybe Text
$sel:thingName:RemoveThingFromBillingGroup' :: RemoveThingFromBillingGroup -> Maybe Text
thingName} -> Maybe Text
thingName) (\s :: RemoveThingFromBillingGroup
s@RemoveThingFromBillingGroup' {} Maybe Text
a -> RemoveThingFromBillingGroup
s {$sel:thingName:RemoveThingFromBillingGroup' :: Maybe Text
thingName = Maybe Text
a} :: RemoveThingFromBillingGroup)
removeThingFromBillingGroup_billingGroupName :: Lens.Lens' RemoveThingFromBillingGroup (Prelude.Maybe Prelude.Text)
removeThingFromBillingGroup_billingGroupName :: (Maybe Text -> f (Maybe Text))
-> RemoveThingFromBillingGroup -> f RemoveThingFromBillingGroup
removeThingFromBillingGroup_billingGroupName = (RemoveThingFromBillingGroup -> Maybe Text)
-> (RemoveThingFromBillingGroup
-> Maybe Text -> RemoveThingFromBillingGroup)
-> Lens
RemoveThingFromBillingGroup
RemoveThingFromBillingGroup
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RemoveThingFromBillingGroup' {Maybe Text
billingGroupName :: Maybe Text
$sel:billingGroupName:RemoveThingFromBillingGroup' :: RemoveThingFromBillingGroup -> Maybe Text
billingGroupName} -> Maybe Text
billingGroupName) (\s :: RemoveThingFromBillingGroup
s@RemoveThingFromBillingGroup' {} Maybe Text
a -> RemoveThingFromBillingGroup
s {$sel:billingGroupName:RemoveThingFromBillingGroup' :: Maybe Text
billingGroupName = Maybe Text
a} :: RemoveThingFromBillingGroup)
instance Core.AWSRequest RemoveThingFromBillingGroup where
type
AWSResponse RemoveThingFromBillingGroup =
RemoveThingFromBillingGroupResponse
request :: RemoveThingFromBillingGroup -> Request RemoveThingFromBillingGroup
request = Service
-> RemoveThingFromBillingGroup
-> Request RemoveThingFromBillingGroup
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.putJSON Service
defaultService
response :: Logger
-> Service
-> Proxy RemoveThingFromBillingGroup
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse RemoveThingFromBillingGroup)))
response =
(Int
-> ResponseHeaders
-> ()
-> Either String (AWSResponse RemoveThingFromBillingGroup))
-> Logger
-> Service
-> Proxy RemoveThingFromBillingGroup
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse RemoveThingFromBillingGroup)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> () -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveEmpty
( \Int
s ResponseHeaders
h ()
x ->
Int -> RemoveThingFromBillingGroupResponse
RemoveThingFromBillingGroupResponse'
(Int -> RemoveThingFromBillingGroupResponse)
-> Either String Int
-> Either String RemoveThingFromBillingGroupResponse
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Int -> Either String Int
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (Int -> Int
forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
)
instance Prelude.Hashable RemoveThingFromBillingGroup
instance Prelude.NFData RemoveThingFromBillingGroup
instance Core.ToHeaders RemoveThingFromBillingGroup where
toHeaders :: RemoveThingFromBillingGroup -> ResponseHeaders
toHeaders = ResponseHeaders -> RemoveThingFromBillingGroup -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const ResponseHeaders
forall a. Monoid a => a
Prelude.mempty
instance Core.ToJSON RemoveThingFromBillingGroup where
toJSON :: RemoveThingFromBillingGroup -> Value
toJSON RemoveThingFromBillingGroup' {Maybe Text
billingGroupName :: Maybe Text
thingName :: Maybe Text
billingGroupArn :: Maybe Text
thingArn :: Maybe Text
$sel:billingGroupName:RemoveThingFromBillingGroup' :: RemoveThingFromBillingGroup -> Maybe Text
$sel:thingName:RemoveThingFromBillingGroup' :: RemoveThingFromBillingGroup -> Maybe Text
$sel:billingGroupArn:RemoveThingFromBillingGroup' :: RemoveThingFromBillingGroup -> Maybe Text
$sel:thingArn:RemoveThingFromBillingGroup' :: RemoveThingFromBillingGroup -> Maybe Text
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"thingArn" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
thingArn,
(Text
"billingGroupArn" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=)
(Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
billingGroupArn,
(Text
"thingName" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
thingName,
(Text
"billingGroupName" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=)
(Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
billingGroupName
]
)
instance Core.ToPath RemoveThingFromBillingGroup where
toPath :: RemoveThingFromBillingGroup -> ByteString
toPath =
ByteString -> RemoveThingFromBillingGroup -> ByteString
forall a b. a -> b -> a
Prelude.const
ByteString
"/billing-groups/removeThingFromBillingGroup"
instance Core.ToQuery RemoveThingFromBillingGroup where
toQuery :: RemoveThingFromBillingGroup -> QueryString
toQuery = QueryString -> RemoveThingFromBillingGroup -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data RemoveThingFromBillingGroupResponse = RemoveThingFromBillingGroupResponse'
{
RemoveThingFromBillingGroupResponse -> Int
httpStatus :: Prelude.Int
}
deriving (RemoveThingFromBillingGroupResponse
-> RemoveThingFromBillingGroupResponse -> Bool
(RemoveThingFromBillingGroupResponse
-> RemoveThingFromBillingGroupResponse -> Bool)
-> (RemoveThingFromBillingGroupResponse
-> RemoveThingFromBillingGroupResponse -> Bool)
-> Eq RemoveThingFromBillingGroupResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: RemoveThingFromBillingGroupResponse
-> RemoveThingFromBillingGroupResponse -> Bool
$c/= :: RemoveThingFromBillingGroupResponse
-> RemoveThingFromBillingGroupResponse -> Bool
== :: RemoveThingFromBillingGroupResponse
-> RemoveThingFromBillingGroupResponse -> Bool
$c== :: RemoveThingFromBillingGroupResponse
-> RemoveThingFromBillingGroupResponse -> Bool
Prelude.Eq, ReadPrec [RemoveThingFromBillingGroupResponse]
ReadPrec RemoveThingFromBillingGroupResponse
Int -> ReadS RemoveThingFromBillingGroupResponse
ReadS [RemoveThingFromBillingGroupResponse]
(Int -> ReadS RemoveThingFromBillingGroupResponse)
-> ReadS [RemoveThingFromBillingGroupResponse]
-> ReadPrec RemoveThingFromBillingGroupResponse
-> ReadPrec [RemoveThingFromBillingGroupResponse]
-> Read RemoveThingFromBillingGroupResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [RemoveThingFromBillingGroupResponse]
$creadListPrec :: ReadPrec [RemoveThingFromBillingGroupResponse]
readPrec :: ReadPrec RemoveThingFromBillingGroupResponse
$creadPrec :: ReadPrec RemoveThingFromBillingGroupResponse
readList :: ReadS [RemoveThingFromBillingGroupResponse]
$creadList :: ReadS [RemoveThingFromBillingGroupResponse]
readsPrec :: Int -> ReadS RemoveThingFromBillingGroupResponse
$creadsPrec :: Int -> ReadS RemoveThingFromBillingGroupResponse
Prelude.Read, Int -> RemoveThingFromBillingGroupResponse -> ShowS
[RemoveThingFromBillingGroupResponse] -> ShowS
RemoveThingFromBillingGroupResponse -> String
(Int -> RemoveThingFromBillingGroupResponse -> ShowS)
-> (RemoveThingFromBillingGroupResponse -> String)
-> ([RemoveThingFromBillingGroupResponse] -> ShowS)
-> Show RemoveThingFromBillingGroupResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [RemoveThingFromBillingGroupResponse] -> ShowS
$cshowList :: [RemoveThingFromBillingGroupResponse] -> ShowS
show :: RemoveThingFromBillingGroupResponse -> String
$cshow :: RemoveThingFromBillingGroupResponse -> String
showsPrec :: Int -> RemoveThingFromBillingGroupResponse -> ShowS
$cshowsPrec :: Int -> RemoveThingFromBillingGroupResponse -> ShowS
Prelude.Show, (forall x.
RemoveThingFromBillingGroupResponse
-> Rep RemoveThingFromBillingGroupResponse x)
-> (forall x.
Rep RemoveThingFromBillingGroupResponse x
-> RemoveThingFromBillingGroupResponse)
-> Generic RemoveThingFromBillingGroupResponse
forall x.
Rep RemoveThingFromBillingGroupResponse x
-> RemoveThingFromBillingGroupResponse
forall x.
RemoveThingFromBillingGroupResponse
-> Rep RemoveThingFromBillingGroupResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep RemoveThingFromBillingGroupResponse x
-> RemoveThingFromBillingGroupResponse
$cfrom :: forall x.
RemoveThingFromBillingGroupResponse
-> Rep RemoveThingFromBillingGroupResponse x
Prelude.Generic)
newRemoveThingFromBillingGroupResponse ::
Prelude.Int ->
RemoveThingFromBillingGroupResponse
newRemoveThingFromBillingGroupResponse :: Int -> RemoveThingFromBillingGroupResponse
newRemoveThingFromBillingGroupResponse Int
pHttpStatus_ =
RemoveThingFromBillingGroupResponse' :: Int -> RemoveThingFromBillingGroupResponse
RemoveThingFromBillingGroupResponse'
{ $sel:httpStatus:RemoveThingFromBillingGroupResponse' :: Int
httpStatus =
Int
pHttpStatus_
}
removeThingFromBillingGroupResponse_httpStatus :: Lens.Lens' RemoveThingFromBillingGroupResponse Prelude.Int
removeThingFromBillingGroupResponse_httpStatus :: (Int -> f Int)
-> RemoveThingFromBillingGroupResponse
-> f RemoveThingFromBillingGroupResponse
removeThingFromBillingGroupResponse_httpStatus = (RemoveThingFromBillingGroupResponse -> Int)
-> (RemoveThingFromBillingGroupResponse
-> Int -> RemoveThingFromBillingGroupResponse)
-> Lens
RemoveThingFromBillingGroupResponse
RemoveThingFromBillingGroupResponse
Int
Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RemoveThingFromBillingGroupResponse' {Int
httpStatus :: Int
$sel:httpStatus:RemoveThingFromBillingGroupResponse' :: RemoveThingFromBillingGroupResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: RemoveThingFromBillingGroupResponse
s@RemoveThingFromBillingGroupResponse' {} Int
a -> RemoveThingFromBillingGroupResponse
s {$sel:httpStatus:RemoveThingFromBillingGroupResponse' :: Int
httpStatus = Int
a} :: RemoveThingFromBillingGroupResponse)
instance
Prelude.NFData
RemoveThingFromBillingGroupResponse