{-# 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 #-}
module Amazonka.MQ.Types.LdapServerMetadataInput where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
data LdapServerMetadataInput = LdapServerMetadataInput'
{
LdapServerMetadataInput -> Maybe Text
userRoleName :: Prelude.Maybe Prelude.Text,
LdapServerMetadataInput -> Maybe Bool
userSearchSubtree :: Prelude.Maybe Prelude.Bool,
LdapServerMetadataInput -> Maybe Bool
roleSearchSubtree :: Prelude.Maybe Prelude.Bool,
LdapServerMetadataInput -> Maybe Text
roleName :: Prelude.Maybe Prelude.Text,
LdapServerMetadataInput -> [Text]
hosts :: [Prelude.Text],
LdapServerMetadataInput -> Text
userSearchMatching :: Prelude.Text,
LdapServerMetadataInput -> Text
userBase :: Prelude.Text,
LdapServerMetadataInput -> Text
roleSearchMatching :: Prelude.Text,
LdapServerMetadataInput -> Text
serviceAccountUsername :: Prelude.Text,
LdapServerMetadataInput -> Text
roleBase :: Prelude.Text,
LdapServerMetadataInput -> Text
serviceAccountPassword :: Prelude.Text
}
deriving (LdapServerMetadataInput -> LdapServerMetadataInput -> Bool
(LdapServerMetadataInput -> LdapServerMetadataInput -> Bool)
-> (LdapServerMetadataInput -> LdapServerMetadataInput -> Bool)
-> Eq LdapServerMetadataInput
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: LdapServerMetadataInput -> LdapServerMetadataInput -> Bool
$c/= :: LdapServerMetadataInput -> LdapServerMetadataInput -> Bool
== :: LdapServerMetadataInput -> LdapServerMetadataInput -> Bool
$c== :: LdapServerMetadataInput -> LdapServerMetadataInput -> Bool
Prelude.Eq, ReadPrec [LdapServerMetadataInput]
ReadPrec LdapServerMetadataInput
Int -> ReadS LdapServerMetadataInput
ReadS [LdapServerMetadataInput]
(Int -> ReadS LdapServerMetadataInput)
-> ReadS [LdapServerMetadataInput]
-> ReadPrec LdapServerMetadataInput
-> ReadPrec [LdapServerMetadataInput]
-> Read LdapServerMetadataInput
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [LdapServerMetadataInput]
$creadListPrec :: ReadPrec [LdapServerMetadataInput]
readPrec :: ReadPrec LdapServerMetadataInput
$creadPrec :: ReadPrec LdapServerMetadataInput
readList :: ReadS [LdapServerMetadataInput]
$creadList :: ReadS [LdapServerMetadataInput]
readsPrec :: Int -> ReadS LdapServerMetadataInput
$creadsPrec :: Int -> ReadS LdapServerMetadataInput
Prelude.Read, Int -> LdapServerMetadataInput -> ShowS
[LdapServerMetadataInput] -> ShowS
LdapServerMetadataInput -> String
(Int -> LdapServerMetadataInput -> ShowS)
-> (LdapServerMetadataInput -> String)
-> ([LdapServerMetadataInput] -> ShowS)
-> Show LdapServerMetadataInput
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [LdapServerMetadataInput] -> ShowS
$cshowList :: [LdapServerMetadataInput] -> ShowS
show :: LdapServerMetadataInput -> String
$cshow :: LdapServerMetadataInput -> String
showsPrec :: Int -> LdapServerMetadataInput -> ShowS
$cshowsPrec :: Int -> LdapServerMetadataInput -> ShowS
Prelude.Show, (forall x.
LdapServerMetadataInput -> Rep LdapServerMetadataInput x)
-> (forall x.
Rep LdapServerMetadataInput x -> LdapServerMetadataInput)
-> Generic LdapServerMetadataInput
forall x. Rep LdapServerMetadataInput x -> LdapServerMetadataInput
forall x. LdapServerMetadataInput -> Rep LdapServerMetadataInput x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep LdapServerMetadataInput x -> LdapServerMetadataInput
$cfrom :: forall x. LdapServerMetadataInput -> Rep LdapServerMetadataInput x
Prelude.Generic)
newLdapServerMetadataInput ::
Prelude.Text ->
Prelude.Text ->
Prelude.Text ->
Prelude.Text ->
Prelude.Text ->
Prelude.Text ->
LdapServerMetadataInput
newLdapServerMetadataInput :: Text
-> Text -> Text -> Text -> Text -> Text -> LdapServerMetadataInput
newLdapServerMetadataInput
Text
pUserSearchMatching_
Text
pUserBase_
Text
pRoleSearchMatching_
Text
pServiceAccountUsername_
Text
pRoleBase_
Text
pServiceAccountPassword_ =
LdapServerMetadataInput' :: Maybe Text
-> Maybe Bool
-> Maybe Bool
-> Maybe Text
-> [Text]
-> Text
-> Text
-> Text
-> Text
-> Text
-> Text
-> LdapServerMetadataInput
LdapServerMetadataInput'
{ $sel:userRoleName:LdapServerMetadataInput' :: Maybe Text
userRoleName =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:userSearchSubtree:LdapServerMetadataInput' :: Maybe Bool
userSearchSubtree = Maybe Bool
forall a. Maybe a
Prelude.Nothing,
$sel:roleSearchSubtree:LdapServerMetadataInput' :: Maybe Bool
roleSearchSubtree = Maybe Bool
forall a. Maybe a
Prelude.Nothing,
$sel:roleName:LdapServerMetadataInput' :: Maybe Text
roleName = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:hosts:LdapServerMetadataInput' :: [Text]
hosts = [Text]
forall a. Monoid a => a
Prelude.mempty,
$sel:userSearchMatching:LdapServerMetadataInput' :: Text
userSearchMatching = Text
pUserSearchMatching_,
$sel:userBase:LdapServerMetadataInput' :: Text
userBase = Text
pUserBase_,
$sel:roleSearchMatching:LdapServerMetadataInput' :: Text
roleSearchMatching = Text
pRoleSearchMatching_,
$sel:serviceAccountUsername:LdapServerMetadataInput' :: Text
serviceAccountUsername = Text
pServiceAccountUsername_,
$sel:roleBase:LdapServerMetadataInput' :: Text
roleBase = Text
pRoleBase_,
$sel:serviceAccountPassword:LdapServerMetadataInput' :: Text
serviceAccountPassword = Text
pServiceAccountPassword_
}
ldapServerMetadataInput_userRoleName :: Lens.Lens' LdapServerMetadataInput (Prelude.Maybe Prelude.Text)
ldapServerMetadataInput_userRoleName :: (Maybe Text -> f (Maybe Text))
-> LdapServerMetadataInput -> f LdapServerMetadataInput
ldapServerMetadataInput_userRoleName = (LdapServerMetadataInput -> Maybe Text)
-> (LdapServerMetadataInput
-> Maybe Text -> LdapServerMetadataInput)
-> Lens
LdapServerMetadataInput
LdapServerMetadataInput
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LdapServerMetadataInput' {Maybe Text
userRoleName :: Maybe Text
$sel:userRoleName:LdapServerMetadataInput' :: LdapServerMetadataInput -> Maybe Text
userRoleName} -> Maybe Text
userRoleName) (\s :: LdapServerMetadataInput
s@LdapServerMetadataInput' {} Maybe Text
a -> LdapServerMetadataInput
s {$sel:userRoleName:LdapServerMetadataInput' :: Maybe Text
userRoleName = Maybe Text
a} :: LdapServerMetadataInput)
ldapServerMetadataInput_userSearchSubtree :: Lens.Lens' LdapServerMetadataInput (Prelude.Maybe Prelude.Bool)
ldapServerMetadataInput_userSearchSubtree :: (Maybe Bool -> f (Maybe Bool))
-> LdapServerMetadataInput -> f LdapServerMetadataInput
ldapServerMetadataInput_userSearchSubtree = (LdapServerMetadataInput -> Maybe Bool)
-> (LdapServerMetadataInput
-> Maybe Bool -> LdapServerMetadataInput)
-> Lens
LdapServerMetadataInput
LdapServerMetadataInput
(Maybe Bool)
(Maybe Bool)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LdapServerMetadataInput' {Maybe Bool
userSearchSubtree :: Maybe Bool
$sel:userSearchSubtree:LdapServerMetadataInput' :: LdapServerMetadataInput -> Maybe Bool
userSearchSubtree} -> Maybe Bool
userSearchSubtree) (\s :: LdapServerMetadataInput
s@LdapServerMetadataInput' {} Maybe Bool
a -> LdapServerMetadataInput
s {$sel:userSearchSubtree:LdapServerMetadataInput' :: Maybe Bool
userSearchSubtree = Maybe Bool
a} :: LdapServerMetadataInput)
ldapServerMetadataInput_roleSearchSubtree :: Lens.Lens' LdapServerMetadataInput (Prelude.Maybe Prelude.Bool)
ldapServerMetadataInput_roleSearchSubtree :: (Maybe Bool -> f (Maybe Bool))
-> LdapServerMetadataInput -> f LdapServerMetadataInput
ldapServerMetadataInput_roleSearchSubtree = (LdapServerMetadataInput -> Maybe Bool)
-> (LdapServerMetadataInput
-> Maybe Bool -> LdapServerMetadataInput)
-> Lens
LdapServerMetadataInput
LdapServerMetadataInput
(Maybe Bool)
(Maybe Bool)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LdapServerMetadataInput' {Maybe Bool
roleSearchSubtree :: Maybe Bool
$sel:roleSearchSubtree:LdapServerMetadataInput' :: LdapServerMetadataInput -> Maybe Bool
roleSearchSubtree} -> Maybe Bool
roleSearchSubtree) (\s :: LdapServerMetadataInput
s@LdapServerMetadataInput' {} Maybe Bool
a -> LdapServerMetadataInput
s {$sel:roleSearchSubtree:LdapServerMetadataInput' :: Maybe Bool
roleSearchSubtree = Maybe Bool
a} :: LdapServerMetadataInput)
ldapServerMetadataInput_roleName :: Lens.Lens' LdapServerMetadataInput (Prelude.Maybe Prelude.Text)
ldapServerMetadataInput_roleName :: (Maybe Text -> f (Maybe Text))
-> LdapServerMetadataInput -> f LdapServerMetadataInput
ldapServerMetadataInput_roleName = (LdapServerMetadataInput -> Maybe Text)
-> (LdapServerMetadataInput
-> Maybe Text -> LdapServerMetadataInput)
-> Lens
LdapServerMetadataInput
LdapServerMetadataInput
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LdapServerMetadataInput' {Maybe Text
roleName :: Maybe Text
$sel:roleName:LdapServerMetadataInput' :: LdapServerMetadataInput -> Maybe Text
roleName} -> Maybe Text
roleName) (\s :: LdapServerMetadataInput
s@LdapServerMetadataInput' {} Maybe Text
a -> LdapServerMetadataInput
s {$sel:roleName:LdapServerMetadataInput' :: Maybe Text
roleName = Maybe Text
a} :: LdapServerMetadataInput)
ldapServerMetadataInput_hosts :: Lens.Lens' LdapServerMetadataInput [Prelude.Text]
ldapServerMetadataInput_hosts :: ([Text] -> f [Text])
-> LdapServerMetadataInput -> f LdapServerMetadataInput
ldapServerMetadataInput_hosts = (LdapServerMetadataInput -> [Text])
-> (LdapServerMetadataInput -> [Text] -> LdapServerMetadataInput)
-> Lens
LdapServerMetadataInput LdapServerMetadataInput [Text] [Text]
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LdapServerMetadataInput' {[Text]
hosts :: [Text]
$sel:hosts:LdapServerMetadataInput' :: LdapServerMetadataInput -> [Text]
hosts} -> [Text]
hosts) (\s :: LdapServerMetadataInput
s@LdapServerMetadataInput' {} [Text]
a -> LdapServerMetadataInput
s {$sel:hosts:LdapServerMetadataInput' :: [Text]
hosts = [Text]
a} :: LdapServerMetadataInput) (([Text] -> f [Text])
-> LdapServerMetadataInput -> f LdapServerMetadataInput)
-> (([Text] -> f [Text]) -> [Text] -> f [Text])
-> ([Text] -> f [Text])
-> LdapServerMetadataInput
-> f LdapServerMetadataInput
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. ([Text] -> f [Text]) -> [Text] -> f [Text]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
ldapServerMetadataInput_userSearchMatching :: Lens.Lens' LdapServerMetadataInput Prelude.Text
ldapServerMetadataInput_userSearchMatching :: (Text -> f Text)
-> LdapServerMetadataInput -> f LdapServerMetadataInput
ldapServerMetadataInput_userSearchMatching = (LdapServerMetadataInput -> Text)
-> (LdapServerMetadataInput -> Text -> LdapServerMetadataInput)
-> Lens LdapServerMetadataInput LdapServerMetadataInput Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LdapServerMetadataInput' {Text
userSearchMatching :: Text
$sel:userSearchMatching:LdapServerMetadataInput' :: LdapServerMetadataInput -> Text
userSearchMatching} -> Text
userSearchMatching) (\s :: LdapServerMetadataInput
s@LdapServerMetadataInput' {} Text
a -> LdapServerMetadataInput
s {$sel:userSearchMatching:LdapServerMetadataInput' :: Text
userSearchMatching = Text
a} :: LdapServerMetadataInput)
ldapServerMetadataInput_userBase :: Lens.Lens' LdapServerMetadataInput Prelude.Text
ldapServerMetadataInput_userBase :: (Text -> f Text)
-> LdapServerMetadataInput -> f LdapServerMetadataInput
ldapServerMetadataInput_userBase = (LdapServerMetadataInput -> Text)
-> (LdapServerMetadataInput -> Text -> LdapServerMetadataInput)
-> Lens LdapServerMetadataInput LdapServerMetadataInput Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LdapServerMetadataInput' {Text
userBase :: Text
$sel:userBase:LdapServerMetadataInput' :: LdapServerMetadataInput -> Text
userBase} -> Text
userBase) (\s :: LdapServerMetadataInput
s@LdapServerMetadataInput' {} Text
a -> LdapServerMetadataInput
s {$sel:userBase:LdapServerMetadataInput' :: Text
userBase = Text
a} :: LdapServerMetadataInput)
ldapServerMetadataInput_roleSearchMatching :: Lens.Lens' LdapServerMetadataInput Prelude.Text
ldapServerMetadataInput_roleSearchMatching :: (Text -> f Text)
-> LdapServerMetadataInput -> f LdapServerMetadataInput
ldapServerMetadataInput_roleSearchMatching = (LdapServerMetadataInput -> Text)
-> (LdapServerMetadataInput -> Text -> LdapServerMetadataInput)
-> Lens LdapServerMetadataInput LdapServerMetadataInput Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LdapServerMetadataInput' {Text
roleSearchMatching :: Text
$sel:roleSearchMatching:LdapServerMetadataInput' :: LdapServerMetadataInput -> Text
roleSearchMatching} -> Text
roleSearchMatching) (\s :: LdapServerMetadataInput
s@LdapServerMetadataInput' {} Text
a -> LdapServerMetadataInput
s {$sel:roleSearchMatching:LdapServerMetadataInput' :: Text
roleSearchMatching = Text
a} :: LdapServerMetadataInput)
ldapServerMetadataInput_serviceAccountUsername :: Lens.Lens' LdapServerMetadataInput Prelude.Text
ldapServerMetadataInput_serviceAccountUsername :: (Text -> f Text)
-> LdapServerMetadataInput -> f LdapServerMetadataInput
ldapServerMetadataInput_serviceAccountUsername = (LdapServerMetadataInput -> Text)
-> (LdapServerMetadataInput -> Text -> LdapServerMetadataInput)
-> Lens LdapServerMetadataInput LdapServerMetadataInput Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LdapServerMetadataInput' {Text
serviceAccountUsername :: Text
$sel:serviceAccountUsername:LdapServerMetadataInput' :: LdapServerMetadataInput -> Text
serviceAccountUsername} -> Text
serviceAccountUsername) (\s :: LdapServerMetadataInput
s@LdapServerMetadataInput' {} Text
a -> LdapServerMetadataInput
s {$sel:serviceAccountUsername:LdapServerMetadataInput' :: Text
serviceAccountUsername = Text
a} :: LdapServerMetadataInput)
ldapServerMetadataInput_roleBase :: Lens.Lens' LdapServerMetadataInput Prelude.Text
ldapServerMetadataInput_roleBase :: (Text -> f Text)
-> LdapServerMetadataInput -> f LdapServerMetadataInput
ldapServerMetadataInput_roleBase = (LdapServerMetadataInput -> Text)
-> (LdapServerMetadataInput -> Text -> LdapServerMetadataInput)
-> Lens LdapServerMetadataInput LdapServerMetadataInput Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LdapServerMetadataInput' {Text
roleBase :: Text
$sel:roleBase:LdapServerMetadataInput' :: LdapServerMetadataInput -> Text
roleBase} -> Text
roleBase) (\s :: LdapServerMetadataInput
s@LdapServerMetadataInput' {} Text
a -> LdapServerMetadataInput
s {$sel:roleBase:LdapServerMetadataInput' :: Text
roleBase = Text
a} :: LdapServerMetadataInput)
ldapServerMetadataInput_serviceAccountPassword :: Lens.Lens' LdapServerMetadataInput Prelude.Text
ldapServerMetadataInput_serviceAccountPassword :: (Text -> f Text)
-> LdapServerMetadataInput -> f LdapServerMetadataInput
ldapServerMetadataInput_serviceAccountPassword = (LdapServerMetadataInput -> Text)
-> (LdapServerMetadataInput -> Text -> LdapServerMetadataInput)
-> Lens LdapServerMetadataInput LdapServerMetadataInput Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LdapServerMetadataInput' {Text
serviceAccountPassword :: Text
$sel:serviceAccountPassword:LdapServerMetadataInput' :: LdapServerMetadataInput -> Text
serviceAccountPassword} -> Text
serviceAccountPassword) (\s :: LdapServerMetadataInput
s@LdapServerMetadataInput' {} Text
a -> LdapServerMetadataInput
s {$sel:serviceAccountPassword:LdapServerMetadataInput' :: Text
serviceAccountPassword = Text
a} :: LdapServerMetadataInput)
instance Prelude.Hashable LdapServerMetadataInput
instance Prelude.NFData LdapServerMetadataInput
instance Core.ToJSON LdapServerMetadataInput where
toJSON :: LdapServerMetadataInput -> Value
toJSON LdapServerMetadataInput' {[Text]
Maybe Bool
Maybe Text
Text
serviceAccountPassword :: Text
roleBase :: Text
serviceAccountUsername :: Text
roleSearchMatching :: Text
userBase :: Text
userSearchMatching :: Text
hosts :: [Text]
roleName :: Maybe Text
roleSearchSubtree :: Maybe Bool
userSearchSubtree :: Maybe Bool
userRoleName :: Maybe Text
$sel:serviceAccountPassword:LdapServerMetadataInput' :: LdapServerMetadataInput -> Text
$sel:roleBase:LdapServerMetadataInput' :: LdapServerMetadataInput -> Text
$sel:serviceAccountUsername:LdapServerMetadataInput' :: LdapServerMetadataInput -> Text
$sel:roleSearchMatching:LdapServerMetadataInput' :: LdapServerMetadataInput -> Text
$sel:userBase:LdapServerMetadataInput' :: LdapServerMetadataInput -> Text
$sel:userSearchMatching:LdapServerMetadataInput' :: LdapServerMetadataInput -> Text
$sel:hosts:LdapServerMetadataInput' :: LdapServerMetadataInput -> [Text]
$sel:roleName:LdapServerMetadataInput' :: LdapServerMetadataInput -> Maybe Text
$sel:roleSearchSubtree:LdapServerMetadataInput' :: LdapServerMetadataInput -> Maybe Bool
$sel:userSearchSubtree:LdapServerMetadataInput' :: LdapServerMetadataInput -> Maybe Bool
$sel:userRoleName:LdapServerMetadataInput' :: LdapServerMetadataInput -> Maybe Text
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"userRoleName" 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
userRoleName,
(Text
"userSearchSubtree" Text -> Bool -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=)
(Bool -> Pair) -> Maybe Bool -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Bool
userSearchSubtree,
(Text
"roleSearchSubtree" Text -> Bool -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=)
(Bool -> Pair) -> Maybe Bool -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Bool
roleSearchSubtree,
(Text
"roleName" 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
roleName,
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"hosts" Text -> [Text] -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= [Text]
hosts),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
(Text
"userSearchMatching" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
userSearchMatching),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"userBase" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
userBase),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
(Text
"roleSearchMatching" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
roleSearchMatching),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
( Text
"serviceAccountUsername"
Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
serviceAccountUsername
),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"roleBase" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
roleBase),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
( Text
"serviceAccountPassword"
Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
serviceAccountPassword
)
]
)