module Stratosphere.ApiGateway.Stage.MethodSettingProperty (
MethodSettingProperty(..), mkMethodSettingProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data MethodSettingProperty
=
MethodSettingProperty {MethodSettingProperty -> ()
haddock_workaround_ :: (),
MethodSettingProperty -> Maybe (Value Bool)
cacheDataEncrypted :: (Prelude.Maybe (Value Prelude.Bool)),
MethodSettingProperty -> Maybe (Value Integer)
cacheTtlInSeconds :: (Prelude.Maybe (Value Prelude.Integer)),
MethodSettingProperty -> Maybe (Value Bool)
cachingEnabled :: (Prelude.Maybe (Value Prelude.Bool)),
MethodSettingProperty -> Maybe (Value Bool)
dataTraceEnabled :: (Prelude.Maybe (Value Prelude.Bool)),
MethodSettingProperty -> Maybe (Value Text)
httpMethod :: (Prelude.Maybe (Value Prelude.Text)),
MethodSettingProperty -> Maybe (Value Text)
loggingLevel :: (Prelude.Maybe (Value Prelude.Text)),
MethodSettingProperty -> Maybe (Value Bool)
metricsEnabled :: (Prelude.Maybe (Value Prelude.Bool)),
MethodSettingProperty -> Maybe (Value Text)
resourcePath :: (Prelude.Maybe (Value Prelude.Text)),
MethodSettingProperty -> Maybe (Value Integer)
throttlingBurstLimit :: (Prelude.Maybe (Value Prelude.Integer)),
MethodSettingProperty -> Maybe (Value Double)
throttlingRateLimit :: (Prelude.Maybe (Value Prelude.Double))}
deriving stock (MethodSettingProperty -> MethodSettingProperty -> Bool
(MethodSettingProperty -> MethodSettingProperty -> Bool)
-> (MethodSettingProperty -> MethodSettingProperty -> Bool)
-> Eq MethodSettingProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: MethodSettingProperty -> MethodSettingProperty -> Bool
== :: MethodSettingProperty -> MethodSettingProperty -> Bool
$c/= :: MethodSettingProperty -> MethodSettingProperty -> Bool
/= :: MethodSettingProperty -> MethodSettingProperty -> Bool
Prelude.Eq, Int -> MethodSettingProperty -> ShowS
[MethodSettingProperty] -> ShowS
MethodSettingProperty -> String
(Int -> MethodSettingProperty -> ShowS)
-> (MethodSettingProperty -> String)
-> ([MethodSettingProperty] -> ShowS)
-> Show MethodSettingProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> MethodSettingProperty -> ShowS
showsPrec :: Int -> MethodSettingProperty -> ShowS
$cshow :: MethodSettingProperty -> String
show :: MethodSettingProperty -> String
$cshowList :: [MethodSettingProperty] -> ShowS
showList :: [MethodSettingProperty] -> ShowS
Prelude.Show)
mkMethodSettingProperty :: MethodSettingProperty
mkMethodSettingProperty :: MethodSettingProperty
mkMethodSettingProperty
= MethodSettingProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), cacheDataEncrypted :: Maybe (Value Bool)
cacheDataEncrypted = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
cacheTtlInSeconds :: Maybe (Value Integer)
cacheTtlInSeconds = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
cachingEnabled :: Maybe (Value Bool)
cachingEnabled = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
dataTraceEnabled :: Maybe (Value Bool)
dataTraceEnabled = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing, httpMethod :: Maybe (Value Text)
httpMethod = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
loggingLevel :: Maybe (Value Text)
loggingLevel = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, metricsEnabled :: Maybe (Value Bool)
metricsEnabled = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
resourcePath :: Maybe (Value Text)
resourcePath = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
throttlingBurstLimit :: Maybe (Value Integer)
throttlingBurstLimit = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
throttlingRateLimit :: Maybe (Value Double)
throttlingRateLimit = Maybe (Value Double)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties MethodSettingProperty where
toResourceProperties :: MethodSettingProperty -> ResourceProperties
toResourceProperties MethodSettingProperty {Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: MethodSettingProperty -> ()
cacheDataEncrypted :: MethodSettingProperty -> Maybe (Value Bool)
cacheTtlInSeconds :: MethodSettingProperty -> Maybe (Value Integer)
cachingEnabled :: MethodSettingProperty -> Maybe (Value Bool)
dataTraceEnabled :: MethodSettingProperty -> Maybe (Value Bool)
httpMethod :: MethodSettingProperty -> Maybe (Value Text)
loggingLevel :: MethodSettingProperty -> Maybe (Value Text)
metricsEnabled :: MethodSettingProperty -> Maybe (Value Bool)
resourcePath :: MethodSettingProperty -> Maybe (Value Text)
throttlingBurstLimit :: MethodSettingProperty -> Maybe (Value Integer)
throttlingRateLimit :: MethodSettingProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::ApiGateway::Stage.MethodSetting",
supportsTags :: Bool
supportsTags = Bool
Prelude.False,
properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
([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
"CacheDataEncrypted" (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)
cacheDataEncrypted,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CacheTtlInSeconds" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
cacheTtlInSeconds,
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
"CachingEnabled" (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)
cachingEnabled,
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
"DataTraceEnabled" (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)
dataTraceEnabled,
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
"HttpMethod" (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)
httpMethod,
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
"LoggingLevel" (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)
loggingLevel,
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
"MetricsEnabled" (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)
metricsEnabled,
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
"ResourcePath" (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)
resourcePath,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ThrottlingBurstLimit" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
throttlingBurstLimit,
Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ThrottlingRateLimit" (Value Double -> (Key, Value))
-> Maybe (Value Double) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Double)
throttlingRateLimit])}
instance JSON.ToJSON MethodSettingProperty where
toJSON :: MethodSettingProperty -> Value
toJSON MethodSettingProperty {Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: MethodSettingProperty -> ()
cacheDataEncrypted :: MethodSettingProperty -> Maybe (Value Bool)
cacheTtlInSeconds :: MethodSettingProperty -> Maybe (Value Integer)
cachingEnabled :: MethodSettingProperty -> Maybe (Value Bool)
dataTraceEnabled :: MethodSettingProperty -> Maybe (Value Bool)
httpMethod :: MethodSettingProperty -> Maybe (Value Text)
loggingLevel :: MethodSettingProperty -> Maybe (Value Text)
metricsEnabled :: MethodSettingProperty -> Maybe (Value Bool)
resourcePath :: MethodSettingProperty -> Maybe (Value Text)
throttlingBurstLimit :: MethodSettingProperty -> Maybe (Value Integer)
throttlingRateLimit :: MethodSettingProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
= [(Key, Value)] -> Value
JSON.object
([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
([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
"CacheDataEncrypted" (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)
cacheDataEncrypted,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CacheTtlInSeconds" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
cacheTtlInSeconds,
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
"CachingEnabled" (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)
cachingEnabled,
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
"DataTraceEnabled" (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)
dataTraceEnabled,
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
"HttpMethod" (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)
httpMethod,
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
"LoggingLevel" (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)
loggingLevel,
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
"MetricsEnabled" (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)
metricsEnabled,
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
"ResourcePath" (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)
resourcePath,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ThrottlingBurstLimit" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
throttlingBurstLimit,
Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ThrottlingRateLimit" (Value Double -> (Key, Value))
-> Maybe (Value Double) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Double)
throttlingRateLimit]))
instance Property "CacheDataEncrypted" MethodSettingProperty where
type PropertyType "CacheDataEncrypted" MethodSettingProperty = Value Prelude.Bool
set :: PropertyType "CacheDataEncrypted" MethodSettingProperty
-> MethodSettingProperty -> MethodSettingProperty
set PropertyType "CacheDataEncrypted" MethodSettingProperty
newValue MethodSettingProperty {Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: MethodSettingProperty -> ()
cacheDataEncrypted :: MethodSettingProperty -> Maybe (Value Bool)
cacheTtlInSeconds :: MethodSettingProperty -> Maybe (Value Integer)
cachingEnabled :: MethodSettingProperty -> Maybe (Value Bool)
dataTraceEnabled :: MethodSettingProperty -> Maybe (Value Bool)
httpMethod :: MethodSettingProperty -> Maybe (Value Text)
loggingLevel :: MethodSettingProperty -> Maybe (Value Text)
metricsEnabled :: MethodSettingProperty -> Maybe (Value Bool)
resourcePath :: MethodSettingProperty -> Maybe (Value Text)
throttlingBurstLimit :: MethodSettingProperty -> Maybe (Value Integer)
throttlingRateLimit :: MethodSettingProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
= MethodSettingProperty
{cacheDataEncrypted :: Maybe (Value Bool)
cacheDataEncrypted = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CacheDataEncrypted" MethodSettingProperty
Value Bool
newValue, Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
haddock_workaround_ :: ()
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
instance Property "CacheTtlInSeconds" MethodSettingProperty where
type PropertyType "CacheTtlInSeconds" MethodSettingProperty = Value Prelude.Integer
set :: PropertyType "CacheTtlInSeconds" MethodSettingProperty
-> MethodSettingProperty -> MethodSettingProperty
set PropertyType "CacheTtlInSeconds" MethodSettingProperty
newValue MethodSettingProperty {Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: MethodSettingProperty -> ()
cacheDataEncrypted :: MethodSettingProperty -> Maybe (Value Bool)
cacheTtlInSeconds :: MethodSettingProperty -> Maybe (Value Integer)
cachingEnabled :: MethodSettingProperty -> Maybe (Value Bool)
dataTraceEnabled :: MethodSettingProperty -> Maybe (Value Bool)
httpMethod :: MethodSettingProperty -> Maybe (Value Text)
loggingLevel :: MethodSettingProperty -> Maybe (Value Text)
metricsEnabled :: MethodSettingProperty -> Maybe (Value Bool)
resourcePath :: MethodSettingProperty -> Maybe (Value Text)
throttlingBurstLimit :: MethodSettingProperty -> Maybe (Value Integer)
throttlingRateLimit :: MethodSettingProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
= MethodSettingProperty
{cacheTtlInSeconds :: Maybe (Value Integer)
cacheTtlInSeconds = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CacheTtlInSeconds" MethodSettingProperty
Value Integer
newValue, Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
instance Property "CachingEnabled" MethodSettingProperty where
type PropertyType "CachingEnabled" MethodSettingProperty = Value Prelude.Bool
set :: PropertyType "CachingEnabled" MethodSettingProperty
-> MethodSettingProperty -> MethodSettingProperty
set PropertyType "CachingEnabled" MethodSettingProperty
newValue MethodSettingProperty {Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: MethodSettingProperty -> ()
cacheDataEncrypted :: MethodSettingProperty -> Maybe (Value Bool)
cacheTtlInSeconds :: MethodSettingProperty -> Maybe (Value Integer)
cachingEnabled :: MethodSettingProperty -> Maybe (Value Bool)
dataTraceEnabled :: MethodSettingProperty -> Maybe (Value Bool)
httpMethod :: MethodSettingProperty -> Maybe (Value Text)
loggingLevel :: MethodSettingProperty -> Maybe (Value Text)
metricsEnabled :: MethodSettingProperty -> Maybe (Value Bool)
resourcePath :: MethodSettingProperty -> Maybe (Value Text)
throttlingBurstLimit :: MethodSettingProperty -> Maybe (Value Integer)
throttlingRateLimit :: MethodSettingProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
= MethodSettingProperty
{cachingEnabled :: Maybe (Value Bool)
cachingEnabled = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CachingEnabled" MethodSettingProperty
Value Bool
newValue, Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
instance Property "DataTraceEnabled" MethodSettingProperty where
type PropertyType "DataTraceEnabled" MethodSettingProperty = Value Prelude.Bool
set :: PropertyType "DataTraceEnabled" MethodSettingProperty
-> MethodSettingProperty -> MethodSettingProperty
set PropertyType "DataTraceEnabled" MethodSettingProperty
newValue MethodSettingProperty {Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: MethodSettingProperty -> ()
cacheDataEncrypted :: MethodSettingProperty -> Maybe (Value Bool)
cacheTtlInSeconds :: MethodSettingProperty -> Maybe (Value Integer)
cachingEnabled :: MethodSettingProperty -> Maybe (Value Bool)
dataTraceEnabled :: MethodSettingProperty -> Maybe (Value Bool)
httpMethod :: MethodSettingProperty -> Maybe (Value Text)
loggingLevel :: MethodSettingProperty -> Maybe (Value Text)
metricsEnabled :: MethodSettingProperty -> Maybe (Value Bool)
resourcePath :: MethodSettingProperty -> Maybe (Value Text)
throttlingBurstLimit :: MethodSettingProperty -> Maybe (Value Integer)
throttlingRateLimit :: MethodSettingProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
= MethodSettingProperty
{dataTraceEnabled :: Maybe (Value Bool)
dataTraceEnabled = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DataTraceEnabled" MethodSettingProperty
Value Bool
newValue, Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
instance Property "HttpMethod" MethodSettingProperty where
type PropertyType "HttpMethod" MethodSettingProperty = Value Prelude.Text
set :: PropertyType "HttpMethod" MethodSettingProperty
-> MethodSettingProperty -> MethodSettingProperty
set PropertyType "HttpMethod" MethodSettingProperty
newValue MethodSettingProperty {Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: MethodSettingProperty -> ()
cacheDataEncrypted :: MethodSettingProperty -> Maybe (Value Bool)
cacheTtlInSeconds :: MethodSettingProperty -> Maybe (Value Integer)
cachingEnabled :: MethodSettingProperty -> Maybe (Value Bool)
dataTraceEnabled :: MethodSettingProperty -> Maybe (Value Bool)
httpMethod :: MethodSettingProperty -> Maybe (Value Text)
loggingLevel :: MethodSettingProperty -> Maybe (Value Text)
metricsEnabled :: MethodSettingProperty -> Maybe (Value Bool)
resourcePath :: MethodSettingProperty -> Maybe (Value Text)
throttlingBurstLimit :: MethodSettingProperty -> Maybe (Value Integer)
throttlingRateLimit :: MethodSettingProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
= MethodSettingProperty {httpMethod :: Maybe (Value Text)
httpMethod = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "HttpMethod" MethodSettingProperty
Value Text
newValue, Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
instance Property "LoggingLevel" MethodSettingProperty where
type PropertyType "LoggingLevel" MethodSettingProperty = Value Prelude.Text
set :: PropertyType "LoggingLevel" MethodSettingProperty
-> MethodSettingProperty -> MethodSettingProperty
set PropertyType "LoggingLevel" MethodSettingProperty
newValue MethodSettingProperty {Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: MethodSettingProperty -> ()
cacheDataEncrypted :: MethodSettingProperty -> Maybe (Value Bool)
cacheTtlInSeconds :: MethodSettingProperty -> Maybe (Value Integer)
cachingEnabled :: MethodSettingProperty -> Maybe (Value Bool)
dataTraceEnabled :: MethodSettingProperty -> Maybe (Value Bool)
httpMethod :: MethodSettingProperty -> Maybe (Value Text)
loggingLevel :: MethodSettingProperty -> Maybe (Value Text)
metricsEnabled :: MethodSettingProperty -> Maybe (Value Bool)
resourcePath :: MethodSettingProperty -> Maybe (Value Text)
throttlingBurstLimit :: MethodSettingProperty -> Maybe (Value Integer)
throttlingRateLimit :: MethodSettingProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
= MethodSettingProperty {loggingLevel :: Maybe (Value Text)
loggingLevel = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "LoggingLevel" MethodSettingProperty
Value Text
newValue, Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
instance Property "MetricsEnabled" MethodSettingProperty where
type PropertyType "MetricsEnabled" MethodSettingProperty = Value Prelude.Bool
set :: PropertyType "MetricsEnabled" MethodSettingProperty
-> MethodSettingProperty -> MethodSettingProperty
set PropertyType "MetricsEnabled" MethodSettingProperty
newValue MethodSettingProperty {Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: MethodSettingProperty -> ()
cacheDataEncrypted :: MethodSettingProperty -> Maybe (Value Bool)
cacheTtlInSeconds :: MethodSettingProperty -> Maybe (Value Integer)
cachingEnabled :: MethodSettingProperty -> Maybe (Value Bool)
dataTraceEnabled :: MethodSettingProperty -> Maybe (Value Bool)
httpMethod :: MethodSettingProperty -> Maybe (Value Text)
loggingLevel :: MethodSettingProperty -> Maybe (Value Text)
metricsEnabled :: MethodSettingProperty -> Maybe (Value Bool)
resourcePath :: MethodSettingProperty -> Maybe (Value Text)
throttlingBurstLimit :: MethodSettingProperty -> Maybe (Value Integer)
throttlingRateLimit :: MethodSettingProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
= MethodSettingProperty
{metricsEnabled :: Maybe (Value Bool)
metricsEnabled = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "MetricsEnabled" MethodSettingProperty
Value Bool
newValue, Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
instance Property "ResourcePath" MethodSettingProperty where
type PropertyType "ResourcePath" MethodSettingProperty = Value Prelude.Text
set :: PropertyType "ResourcePath" MethodSettingProperty
-> MethodSettingProperty -> MethodSettingProperty
set PropertyType "ResourcePath" MethodSettingProperty
newValue MethodSettingProperty {Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: MethodSettingProperty -> ()
cacheDataEncrypted :: MethodSettingProperty -> Maybe (Value Bool)
cacheTtlInSeconds :: MethodSettingProperty -> Maybe (Value Integer)
cachingEnabled :: MethodSettingProperty -> Maybe (Value Bool)
dataTraceEnabled :: MethodSettingProperty -> Maybe (Value Bool)
httpMethod :: MethodSettingProperty -> Maybe (Value Text)
loggingLevel :: MethodSettingProperty -> Maybe (Value Text)
metricsEnabled :: MethodSettingProperty -> Maybe (Value Bool)
resourcePath :: MethodSettingProperty -> Maybe (Value Text)
throttlingBurstLimit :: MethodSettingProperty -> Maybe (Value Integer)
throttlingRateLimit :: MethodSettingProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
= MethodSettingProperty {resourcePath :: Maybe (Value Text)
resourcePath = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ResourcePath" MethodSettingProperty
Value Text
newValue, Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
instance Property "ThrottlingBurstLimit" MethodSettingProperty where
type PropertyType "ThrottlingBurstLimit" MethodSettingProperty = Value Prelude.Integer
set :: PropertyType "ThrottlingBurstLimit" MethodSettingProperty
-> MethodSettingProperty -> MethodSettingProperty
set PropertyType "ThrottlingBurstLimit" MethodSettingProperty
newValue MethodSettingProperty {Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: MethodSettingProperty -> ()
cacheDataEncrypted :: MethodSettingProperty -> Maybe (Value Bool)
cacheTtlInSeconds :: MethodSettingProperty -> Maybe (Value Integer)
cachingEnabled :: MethodSettingProperty -> Maybe (Value Bool)
dataTraceEnabled :: MethodSettingProperty -> Maybe (Value Bool)
httpMethod :: MethodSettingProperty -> Maybe (Value Text)
loggingLevel :: MethodSettingProperty -> Maybe (Value Text)
metricsEnabled :: MethodSettingProperty -> Maybe (Value Bool)
resourcePath :: MethodSettingProperty -> Maybe (Value Text)
throttlingBurstLimit :: MethodSettingProperty -> Maybe (Value Integer)
throttlingRateLimit :: MethodSettingProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
= MethodSettingProperty
{throttlingBurstLimit :: Maybe (Value Integer)
throttlingBurstLimit = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ThrottlingBurstLimit" MethodSettingProperty
Value Integer
newValue, Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingRateLimit :: Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingRateLimit :: Maybe (Value Double)
..}
instance Property "ThrottlingRateLimit" MethodSettingProperty where
type PropertyType "ThrottlingRateLimit" MethodSettingProperty = Value Prelude.Double
set :: PropertyType "ThrottlingRateLimit" MethodSettingProperty
-> MethodSettingProperty -> MethodSettingProperty
set PropertyType "ThrottlingRateLimit" MethodSettingProperty
newValue MethodSettingProperty {Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: MethodSettingProperty -> ()
cacheDataEncrypted :: MethodSettingProperty -> Maybe (Value Bool)
cacheTtlInSeconds :: MethodSettingProperty -> Maybe (Value Integer)
cachingEnabled :: MethodSettingProperty -> Maybe (Value Bool)
dataTraceEnabled :: MethodSettingProperty -> Maybe (Value Bool)
httpMethod :: MethodSettingProperty -> Maybe (Value Text)
loggingLevel :: MethodSettingProperty -> Maybe (Value Text)
metricsEnabled :: MethodSettingProperty -> Maybe (Value Bool)
resourcePath :: MethodSettingProperty -> Maybe (Value Text)
throttlingBurstLimit :: MethodSettingProperty -> Maybe (Value Integer)
throttlingRateLimit :: MethodSettingProperty -> Maybe (Value Double)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
throttlingRateLimit :: Maybe (Value Double)
..}
= MethodSettingProperty
{throttlingRateLimit :: Maybe (Value Double)
throttlingRateLimit = Value Double -> Maybe (Value Double)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ThrottlingRateLimit" MethodSettingProperty
Value Double
newValue, Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
haddock_workaround_ :: ()
cacheDataEncrypted :: Maybe (Value Bool)
cacheTtlInSeconds :: Maybe (Value Integer)
cachingEnabled :: Maybe (Value Bool)
dataTraceEnabled :: Maybe (Value Bool)
httpMethod :: Maybe (Value Text)
loggingLevel :: Maybe (Value Text)
metricsEnabled :: Maybe (Value Bool)
resourcePath :: Maybe (Value Text)
throttlingBurstLimit :: Maybe (Value Integer)
..}