module Stratosphere.PCAConnectorAD.Template.PrivateKeyFlagsV4Property (
PrivateKeyFlagsV4Property(..), mkPrivateKeyFlagsV4Property
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data PrivateKeyFlagsV4Property
=
PrivateKeyFlagsV4Property {PrivateKeyFlagsV4Property -> ()
haddock_workaround_ :: (),
PrivateKeyFlagsV4Property -> Value Text
clientVersion :: (Value Prelude.Text),
PrivateKeyFlagsV4Property -> Maybe (Value Bool)
exportableKey :: (Prelude.Maybe (Value Prelude.Bool)),
PrivateKeyFlagsV4Property -> Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: (Prelude.Maybe (Value Prelude.Bool)),
PrivateKeyFlagsV4Property -> Maybe (Value Bool)
requireSameKeyRenewal :: (Prelude.Maybe (Value Prelude.Bool)),
PrivateKeyFlagsV4Property -> Maybe (Value Bool)
strongKeyProtectionRequired :: (Prelude.Maybe (Value Prelude.Bool)),
PrivateKeyFlagsV4Property -> Maybe (Value Bool)
useLegacyProvider :: (Prelude.Maybe (Value Prelude.Bool))}
deriving stock (PrivateKeyFlagsV4Property -> PrivateKeyFlagsV4Property -> Bool
(PrivateKeyFlagsV4Property -> PrivateKeyFlagsV4Property -> Bool)
-> (PrivateKeyFlagsV4Property -> PrivateKeyFlagsV4Property -> Bool)
-> Eq PrivateKeyFlagsV4Property
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: PrivateKeyFlagsV4Property -> PrivateKeyFlagsV4Property -> Bool
== :: PrivateKeyFlagsV4Property -> PrivateKeyFlagsV4Property -> Bool
$c/= :: PrivateKeyFlagsV4Property -> PrivateKeyFlagsV4Property -> Bool
/= :: PrivateKeyFlagsV4Property -> PrivateKeyFlagsV4Property -> Bool
Prelude.Eq, Int -> PrivateKeyFlagsV4Property -> ShowS
[PrivateKeyFlagsV4Property] -> ShowS
PrivateKeyFlagsV4Property -> String
(Int -> PrivateKeyFlagsV4Property -> ShowS)
-> (PrivateKeyFlagsV4Property -> String)
-> ([PrivateKeyFlagsV4Property] -> ShowS)
-> Show PrivateKeyFlagsV4Property
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> PrivateKeyFlagsV4Property -> ShowS
showsPrec :: Int -> PrivateKeyFlagsV4Property -> ShowS
$cshow :: PrivateKeyFlagsV4Property -> String
show :: PrivateKeyFlagsV4Property -> String
$cshowList :: [PrivateKeyFlagsV4Property] -> ShowS
showList :: [PrivateKeyFlagsV4Property] -> ShowS
Prelude.Show)
mkPrivateKeyFlagsV4Property ::
Value Prelude.Text -> PrivateKeyFlagsV4Property
mkPrivateKeyFlagsV4Property :: Value Text -> PrivateKeyFlagsV4Property
mkPrivateKeyFlagsV4Property Value Text
clientVersion
= PrivateKeyFlagsV4Property
{haddock_workaround_ :: ()
haddock_workaround_ = (), clientVersion :: Value Text
clientVersion = Value Text
clientVersion,
exportableKey :: Maybe (Value Bool)
exportableKey = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
requireAlternateSignatureAlgorithm = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
requireSameKeyRenewal :: Maybe (Value Bool)
requireSameKeyRenewal = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
strongKeyProtectionRequired :: Maybe (Value Bool)
strongKeyProtectionRequired = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
useLegacyProvider :: Maybe (Value Bool)
useLegacyProvider = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties PrivateKeyFlagsV4Property where
toResourceProperties :: PrivateKeyFlagsV4Property -> ResourceProperties
toResourceProperties PrivateKeyFlagsV4Property {Maybe (Value Bool)
()
Value Text
haddock_workaround_ :: PrivateKeyFlagsV4Property -> ()
clientVersion :: PrivateKeyFlagsV4Property -> Value Text
exportableKey :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
requireSameKeyRenewal :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
strongKeyProtectionRequired :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
useLegacyProvider :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
haddock_workaround_ :: ()
clientVersion :: Value Text
exportableKey :: Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
requireSameKeyRenewal :: Maybe (Value Bool)
strongKeyProtectionRequired :: Maybe (Value Bool)
useLegacyProvider :: Maybe (Value Bool)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::PCAConnectorAD::Template.PrivateKeyFlagsV4",
supportsTags :: Bool
supportsTags = Bool
Prelude.False,
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
"ClientVersion" 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
clientVersion]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ExportableKey" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
exportableKey,
Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RequireAlternateSignatureAlgorithm"
(Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
requireAlternateSignatureAlgorithm,
Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RequireSameKeyRenewal"
(Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
requireSameKeyRenewal,
Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"StrongKeyProtectionRequired"
(Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
strongKeyProtectionRequired,
Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"UseLegacyProvider" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
useLegacyProvider]))}
instance JSON.ToJSON PrivateKeyFlagsV4Property where
toJSON :: PrivateKeyFlagsV4Property -> Value
toJSON PrivateKeyFlagsV4Property {Maybe (Value Bool)
()
Value Text
haddock_workaround_ :: PrivateKeyFlagsV4Property -> ()
clientVersion :: PrivateKeyFlagsV4Property -> Value Text
exportableKey :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
requireSameKeyRenewal :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
strongKeyProtectionRequired :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
useLegacyProvider :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
haddock_workaround_ :: ()
clientVersion :: Value Text
exportableKey :: Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
requireSameKeyRenewal :: Maybe (Value Bool)
strongKeyProtectionRequired :: Maybe (Value Bool)
useLegacyProvider :: Maybe (Value Bool)
..}
= [(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
"ClientVersion" 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
clientVersion]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ExportableKey" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
exportableKey,
Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RequireAlternateSignatureAlgorithm"
(Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
requireAlternateSignatureAlgorithm,
Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RequireSameKeyRenewal"
(Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
requireSameKeyRenewal,
Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"StrongKeyProtectionRequired"
(Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
strongKeyProtectionRequired,
Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"UseLegacyProvider" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
useLegacyProvider])))
instance Property "ClientVersion" PrivateKeyFlagsV4Property where
type PropertyType "ClientVersion" PrivateKeyFlagsV4Property = Value Prelude.Text
set :: PropertyType "ClientVersion" PrivateKeyFlagsV4Property
-> PrivateKeyFlagsV4Property -> PrivateKeyFlagsV4Property
set PropertyType "ClientVersion" PrivateKeyFlagsV4Property
newValue PrivateKeyFlagsV4Property {Maybe (Value Bool)
()
Value Text
haddock_workaround_ :: PrivateKeyFlagsV4Property -> ()
clientVersion :: PrivateKeyFlagsV4Property -> Value Text
exportableKey :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
requireSameKeyRenewal :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
strongKeyProtectionRequired :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
useLegacyProvider :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
haddock_workaround_ :: ()
clientVersion :: Value Text
exportableKey :: Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
requireSameKeyRenewal :: Maybe (Value Bool)
strongKeyProtectionRequired :: Maybe (Value Bool)
useLegacyProvider :: Maybe (Value Bool)
..}
= PrivateKeyFlagsV4Property {clientVersion :: Value Text
clientVersion = PropertyType "ClientVersion" PrivateKeyFlagsV4Property
Value Text
newValue, Maybe (Value Bool)
()
haddock_workaround_ :: ()
exportableKey :: Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
requireSameKeyRenewal :: Maybe (Value Bool)
strongKeyProtectionRequired :: Maybe (Value Bool)
useLegacyProvider :: Maybe (Value Bool)
haddock_workaround_ :: ()
exportableKey :: Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
requireSameKeyRenewal :: Maybe (Value Bool)
strongKeyProtectionRequired :: Maybe (Value Bool)
useLegacyProvider :: Maybe (Value Bool)
..}
instance Property "ExportableKey" PrivateKeyFlagsV4Property where
type PropertyType "ExportableKey" PrivateKeyFlagsV4Property = Value Prelude.Bool
set :: PropertyType "ExportableKey" PrivateKeyFlagsV4Property
-> PrivateKeyFlagsV4Property -> PrivateKeyFlagsV4Property
set PropertyType "ExportableKey" PrivateKeyFlagsV4Property
newValue PrivateKeyFlagsV4Property {Maybe (Value Bool)
()
Value Text
haddock_workaround_ :: PrivateKeyFlagsV4Property -> ()
clientVersion :: PrivateKeyFlagsV4Property -> Value Text
exportableKey :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
requireSameKeyRenewal :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
strongKeyProtectionRequired :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
useLegacyProvider :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
haddock_workaround_ :: ()
clientVersion :: Value Text
exportableKey :: Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
requireSameKeyRenewal :: Maybe (Value Bool)
strongKeyProtectionRequired :: Maybe (Value Bool)
useLegacyProvider :: Maybe (Value Bool)
..}
= PrivateKeyFlagsV4Property
{exportableKey :: Maybe (Value Bool)
exportableKey = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ExportableKey" PrivateKeyFlagsV4Property
Value Bool
newValue, Maybe (Value Bool)
()
Value Text
haddock_workaround_ :: ()
clientVersion :: Value Text
requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
requireSameKeyRenewal :: Maybe (Value Bool)
strongKeyProtectionRequired :: Maybe (Value Bool)
useLegacyProvider :: Maybe (Value Bool)
haddock_workaround_ :: ()
clientVersion :: Value Text
requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
requireSameKeyRenewal :: Maybe (Value Bool)
strongKeyProtectionRequired :: Maybe (Value Bool)
useLegacyProvider :: Maybe (Value Bool)
..}
instance Property "RequireAlternateSignatureAlgorithm" PrivateKeyFlagsV4Property where
type PropertyType "RequireAlternateSignatureAlgorithm" PrivateKeyFlagsV4Property = Value Prelude.Bool
set :: PropertyType
"RequireAlternateSignatureAlgorithm" PrivateKeyFlagsV4Property
-> PrivateKeyFlagsV4Property -> PrivateKeyFlagsV4Property
set PropertyType
"RequireAlternateSignatureAlgorithm" PrivateKeyFlagsV4Property
newValue PrivateKeyFlagsV4Property {Maybe (Value Bool)
()
Value Text
haddock_workaround_ :: PrivateKeyFlagsV4Property -> ()
clientVersion :: PrivateKeyFlagsV4Property -> Value Text
exportableKey :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
requireSameKeyRenewal :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
strongKeyProtectionRequired :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
useLegacyProvider :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
haddock_workaround_ :: ()
clientVersion :: Value Text
exportableKey :: Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
requireSameKeyRenewal :: Maybe (Value Bool)
strongKeyProtectionRequired :: Maybe (Value Bool)
useLegacyProvider :: Maybe (Value Bool)
..}
= PrivateKeyFlagsV4Property
{requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
requireAlternateSignatureAlgorithm = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"RequireAlternateSignatureAlgorithm" PrivateKeyFlagsV4Property
Value Bool
newValue, Maybe (Value Bool)
()
Value Text
haddock_workaround_ :: ()
clientVersion :: Value Text
exportableKey :: Maybe (Value Bool)
requireSameKeyRenewal :: Maybe (Value Bool)
strongKeyProtectionRequired :: Maybe (Value Bool)
useLegacyProvider :: Maybe (Value Bool)
haddock_workaround_ :: ()
clientVersion :: Value Text
exportableKey :: Maybe (Value Bool)
requireSameKeyRenewal :: Maybe (Value Bool)
strongKeyProtectionRequired :: Maybe (Value Bool)
useLegacyProvider :: Maybe (Value Bool)
..}
instance Property "RequireSameKeyRenewal" PrivateKeyFlagsV4Property where
type PropertyType "RequireSameKeyRenewal" PrivateKeyFlagsV4Property = Value Prelude.Bool
set :: PropertyType "RequireSameKeyRenewal" PrivateKeyFlagsV4Property
-> PrivateKeyFlagsV4Property -> PrivateKeyFlagsV4Property
set PropertyType "RequireSameKeyRenewal" PrivateKeyFlagsV4Property
newValue PrivateKeyFlagsV4Property {Maybe (Value Bool)
()
Value Text
haddock_workaround_ :: PrivateKeyFlagsV4Property -> ()
clientVersion :: PrivateKeyFlagsV4Property -> Value Text
exportableKey :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
requireSameKeyRenewal :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
strongKeyProtectionRequired :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
useLegacyProvider :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
haddock_workaround_ :: ()
clientVersion :: Value Text
exportableKey :: Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
requireSameKeyRenewal :: Maybe (Value Bool)
strongKeyProtectionRequired :: Maybe (Value Bool)
useLegacyProvider :: Maybe (Value Bool)
..}
= PrivateKeyFlagsV4Property
{requireSameKeyRenewal :: Maybe (Value Bool)
requireSameKeyRenewal = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "RequireSameKeyRenewal" PrivateKeyFlagsV4Property
Value Bool
newValue, Maybe (Value Bool)
()
Value Text
haddock_workaround_ :: ()
clientVersion :: Value Text
exportableKey :: Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
strongKeyProtectionRequired :: Maybe (Value Bool)
useLegacyProvider :: Maybe (Value Bool)
haddock_workaround_ :: ()
clientVersion :: Value Text
exportableKey :: Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
strongKeyProtectionRequired :: Maybe (Value Bool)
useLegacyProvider :: Maybe (Value Bool)
..}
instance Property "StrongKeyProtectionRequired" PrivateKeyFlagsV4Property where
type PropertyType "StrongKeyProtectionRequired" PrivateKeyFlagsV4Property = Value Prelude.Bool
set :: PropertyType
"StrongKeyProtectionRequired" PrivateKeyFlagsV4Property
-> PrivateKeyFlagsV4Property -> PrivateKeyFlagsV4Property
set PropertyType
"StrongKeyProtectionRequired" PrivateKeyFlagsV4Property
newValue PrivateKeyFlagsV4Property {Maybe (Value Bool)
()
Value Text
haddock_workaround_ :: PrivateKeyFlagsV4Property -> ()
clientVersion :: PrivateKeyFlagsV4Property -> Value Text
exportableKey :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
requireSameKeyRenewal :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
strongKeyProtectionRequired :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
useLegacyProvider :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
haddock_workaround_ :: ()
clientVersion :: Value Text
exportableKey :: Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
requireSameKeyRenewal :: Maybe (Value Bool)
strongKeyProtectionRequired :: Maybe (Value Bool)
useLegacyProvider :: Maybe (Value Bool)
..}
= PrivateKeyFlagsV4Property
{strongKeyProtectionRequired :: Maybe (Value Bool)
strongKeyProtectionRequired = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"StrongKeyProtectionRequired" PrivateKeyFlagsV4Property
Value Bool
newValue, Maybe (Value Bool)
()
Value Text
haddock_workaround_ :: ()
clientVersion :: Value Text
exportableKey :: Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
requireSameKeyRenewal :: Maybe (Value Bool)
useLegacyProvider :: Maybe (Value Bool)
haddock_workaround_ :: ()
clientVersion :: Value Text
exportableKey :: Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
requireSameKeyRenewal :: Maybe (Value Bool)
useLegacyProvider :: Maybe (Value Bool)
..}
instance Property "UseLegacyProvider" PrivateKeyFlagsV4Property where
type PropertyType "UseLegacyProvider" PrivateKeyFlagsV4Property = Value Prelude.Bool
set :: PropertyType "UseLegacyProvider" PrivateKeyFlagsV4Property
-> PrivateKeyFlagsV4Property -> PrivateKeyFlagsV4Property
set PropertyType "UseLegacyProvider" PrivateKeyFlagsV4Property
newValue PrivateKeyFlagsV4Property {Maybe (Value Bool)
()
Value Text
haddock_workaround_ :: PrivateKeyFlagsV4Property -> ()
clientVersion :: PrivateKeyFlagsV4Property -> Value Text
exportableKey :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
requireSameKeyRenewal :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
strongKeyProtectionRequired :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
useLegacyProvider :: PrivateKeyFlagsV4Property -> Maybe (Value Bool)
haddock_workaround_ :: ()
clientVersion :: Value Text
exportableKey :: Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
requireSameKeyRenewal :: Maybe (Value Bool)
strongKeyProtectionRequired :: Maybe (Value Bool)
useLegacyProvider :: Maybe (Value Bool)
..}
= PrivateKeyFlagsV4Property
{useLegacyProvider :: Maybe (Value Bool)
useLegacyProvider = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "UseLegacyProvider" PrivateKeyFlagsV4Property
Value Bool
newValue, Maybe (Value Bool)
()
Value Text
haddock_workaround_ :: ()
clientVersion :: Value Text
exportableKey :: Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
requireSameKeyRenewal :: Maybe (Value Bool)
strongKeyProtectionRequired :: Maybe (Value Bool)
haddock_workaround_ :: ()
clientVersion :: Value Text
exportableKey :: Maybe (Value Bool)
requireAlternateSignatureAlgorithm :: Maybe (Value Bool)
requireSameKeyRenewal :: Maybe (Value Bool)
strongKeyProtectionRequired :: Maybe (Value Bool)
..}