module Stratosphere.QuickSight.Analysis.ForecastComputationProperty (
module Exports, ForecastComputationProperty(..),
mkForecastComputationProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.DimensionFieldProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.MeasureFieldProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data ForecastComputationProperty
=
ForecastComputationProperty {ForecastComputationProperty -> ()
haddock_workaround_ :: (),
ForecastComputationProperty -> Value Text
computationId :: (Value Prelude.Text),
ForecastComputationProperty -> Maybe (Value Double)
customSeasonalityValue :: (Prelude.Maybe (Value Prelude.Double)),
ForecastComputationProperty -> Maybe (Value Double)
lowerBoundary :: (Prelude.Maybe (Value Prelude.Double)),
ForecastComputationProperty -> Maybe (Value Text)
name :: (Prelude.Maybe (Value Prelude.Text)),
ForecastComputationProperty -> Maybe (Value Double)
periodsBackward :: (Prelude.Maybe (Value Prelude.Double)),
ForecastComputationProperty -> Maybe (Value Double)
periodsForward :: (Prelude.Maybe (Value Prelude.Double)),
ForecastComputationProperty -> Maybe (Value Double)
predictionInterval :: (Prelude.Maybe (Value Prelude.Double)),
ForecastComputationProperty -> Maybe (Value Text)
seasonality :: (Prelude.Maybe (Value Prelude.Text)),
ForecastComputationProperty -> Maybe DimensionFieldProperty
time :: (Prelude.Maybe DimensionFieldProperty),
ForecastComputationProperty -> Maybe (Value Double)
upperBoundary :: (Prelude.Maybe (Value Prelude.Double)),
ForecastComputationProperty -> Maybe MeasureFieldProperty
value :: (Prelude.Maybe MeasureFieldProperty)}
deriving stock (ForecastComputationProperty -> ForecastComputationProperty -> Bool
(ForecastComputationProperty
-> ForecastComputationProperty -> Bool)
-> (ForecastComputationProperty
-> ForecastComputationProperty -> Bool)
-> Eq ForecastComputationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: ForecastComputationProperty -> ForecastComputationProperty -> Bool
== :: ForecastComputationProperty -> ForecastComputationProperty -> Bool
$c/= :: ForecastComputationProperty -> ForecastComputationProperty -> Bool
/= :: ForecastComputationProperty -> ForecastComputationProperty -> Bool
Prelude.Eq, Int -> ForecastComputationProperty -> ShowS
[ForecastComputationProperty] -> ShowS
ForecastComputationProperty -> String
(Int -> ForecastComputationProperty -> ShowS)
-> (ForecastComputationProperty -> String)
-> ([ForecastComputationProperty] -> ShowS)
-> Show ForecastComputationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> ForecastComputationProperty -> ShowS
showsPrec :: Int -> ForecastComputationProperty -> ShowS
$cshow :: ForecastComputationProperty -> String
show :: ForecastComputationProperty -> String
$cshowList :: [ForecastComputationProperty] -> ShowS
showList :: [ForecastComputationProperty] -> ShowS
Prelude.Show)
mkForecastComputationProperty ::
Value Prelude.Text -> ForecastComputationProperty
mkForecastComputationProperty :: Value Text -> ForecastComputationProperty
mkForecastComputationProperty Value Text
computationId
= ForecastComputationProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), computationId :: Value Text
computationId = Value Text
computationId,
customSeasonalityValue :: Maybe (Value Double)
customSeasonalityValue = Maybe (Value Double)
forall a. Maybe a
Prelude.Nothing,
lowerBoundary :: Maybe (Value Double)
lowerBoundary = Maybe (Value Double)
forall a. Maybe a
Prelude.Nothing, name :: Maybe (Value Text)
name = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
periodsBackward :: Maybe (Value Double)
periodsBackward = Maybe (Value Double)
forall a. Maybe a
Prelude.Nothing,
periodsForward :: Maybe (Value Double)
periodsForward = Maybe (Value Double)
forall a. Maybe a
Prelude.Nothing,
predictionInterval :: Maybe (Value Double)
predictionInterval = Maybe (Value Double)
forall a. Maybe a
Prelude.Nothing,
seasonality :: Maybe (Value Text)
seasonality = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, time :: Maybe DimensionFieldProperty
time = Maybe DimensionFieldProperty
forall a. Maybe a
Prelude.Nothing,
upperBoundary :: Maybe (Value Double)
upperBoundary = Maybe (Value Double)
forall a. Maybe a
Prelude.Nothing, value :: Maybe MeasureFieldProperty
value = Maybe MeasureFieldProperty
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties ForecastComputationProperty where
toResourceProperties :: ForecastComputationProperty -> ResourceProperties
toResourceProperties ForecastComputationProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ForecastComputationProperty -> ()
computationId :: ForecastComputationProperty -> Value Text
customSeasonalityValue :: ForecastComputationProperty -> Maybe (Value Double)
lowerBoundary :: ForecastComputationProperty -> Maybe (Value Double)
name :: ForecastComputationProperty -> Maybe (Value Text)
periodsBackward :: ForecastComputationProperty -> Maybe (Value Double)
periodsForward :: ForecastComputationProperty -> Maybe (Value Double)
predictionInterval :: ForecastComputationProperty -> Maybe (Value Double)
seasonality :: ForecastComputationProperty -> Maybe (Value Text)
time :: ForecastComputationProperty -> Maybe DimensionFieldProperty
upperBoundary :: ForecastComputationProperty -> Maybe (Value Double)
value :: ForecastComputationProperty -> Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::QuickSight::Analysis.ForecastComputation",
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
"ComputationId" 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
computationId]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[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
"CustomSeasonalityValue"
(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)
customSeasonalityValue,
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
"LowerBoundary" (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)
lowerBoundary,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Name" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
name,
Key -> 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
"PeriodsBackward" (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)
periodsBackward,
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
"PeriodsForward" (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)
periodsForward,
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
"PredictionInterval" (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)
predictionInterval,
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
"Seasonality" (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)
seasonality,
Key -> DimensionFieldProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Time" (DimensionFieldProperty -> (Key, Value))
-> Maybe DimensionFieldProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe DimensionFieldProperty
time,
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
"UpperBoundary" (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)
upperBoundary,
Key -> MeasureFieldProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Value" (MeasureFieldProperty -> (Key, Value))
-> Maybe MeasureFieldProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe MeasureFieldProperty
value]))}
instance JSON.ToJSON ForecastComputationProperty where
toJSON :: ForecastComputationProperty -> Value
toJSON ForecastComputationProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ForecastComputationProperty -> ()
computationId :: ForecastComputationProperty -> Value Text
customSeasonalityValue :: ForecastComputationProperty -> Maybe (Value Double)
lowerBoundary :: ForecastComputationProperty -> Maybe (Value Double)
name :: ForecastComputationProperty -> Maybe (Value Text)
periodsBackward :: ForecastComputationProperty -> Maybe (Value Double)
periodsForward :: ForecastComputationProperty -> Maybe (Value Double)
predictionInterval :: ForecastComputationProperty -> Maybe (Value Double)
seasonality :: ForecastComputationProperty -> Maybe (Value Text)
time :: ForecastComputationProperty -> Maybe DimensionFieldProperty
upperBoundary :: ForecastComputationProperty -> Maybe (Value Double)
value :: ForecastComputationProperty -> Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
= [(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
"ComputationId" 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
computationId]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[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
"CustomSeasonalityValue"
(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)
customSeasonalityValue,
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
"LowerBoundary" (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)
lowerBoundary,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Name" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
name,
Key -> 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
"PeriodsBackward" (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)
periodsBackward,
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
"PeriodsForward" (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)
periodsForward,
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
"PredictionInterval" (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)
predictionInterval,
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
"Seasonality" (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)
seasonality,
Key -> DimensionFieldProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Time" (DimensionFieldProperty -> (Key, Value))
-> Maybe DimensionFieldProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe DimensionFieldProperty
time,
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
"UpperBoundary" (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)
upperBoundary,
Key -> MeasureFieldProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Value" (MeasureFieldProperty -> (Key, Value))
-> Maybe MeasureFieldProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe MeasureFieldProperty
value])))
instance Property "ComputationId" ForecastComputationProperty where
type PropertyType "ComputationId" ForecastComputationProperty = Value Prelude.Text
set :: PropertyType "ComputationId" ForecastComputationProperty
-> ForecastComputationProperty -> ForecastComputationProperty
set PropertyType "ComputationId" ForecastComputationProperty
newValue ForecastComputationProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ForecastComputationProperty -> ()
computationId :: ForecastComputationProperty -> Value Text
customSeasonalityValue :: ForecastComputationProperty -> Maybe (Value Double)
lowerBoundary :: ForecastComputationProperty -> Maybe (Value Double)
name :: ForecastComputationProperty -> Maybe (Value Text)
periodsBackward :: ForecastComputationProperty -> Maybe (Value Double)
periodsForward :: ForecastComputationProperty -> Maybe (Value Double)
predictionInterval :: ForecastComputationProperty -> Maybe (Value Double)
seasonality :: ForecastComputationProperty -> Maybe (Value Text)
time :: ForecastComputationProperty -> Maybe DimensionFieldProperty
upperBoundary :: ForecastComputationProperty -> Maybe (Value Double)
value :: ForecastComputationProperty -> Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
= ForecastComputationProperty {computationId :: Value Text
computationId = PropertyType "ComputationId" ForecastComputationProperty
Value Text
newValue, Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
haddock_workaround_ :: ()
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
haddock_workaround_ :: ()
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
instance Property "CustomSeasonalityValue" ForecastComputationProperty where
type PropertyType "CustomSeasonalityValue" ForecastComputationProperty = Value Prelude.Double
set :: PropertyType "CustomSeasonalityValue" ForecastComputationProperty
-> ForecastComputationProperty -> ForecastComputationProperty
set PropertyType "CustomSeasonalityValue" ForecastComputationProperty
newValue ForecastComputationProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ForecastComputationProperty -> ()
computationId :: ForecastComputationProperty -> Value Text
customSeasonalityValue :: ForecastComputationProperty -> Maybe (Value Double)
lowerBoundary :: ForecastComputationProperty -> Maybe (Value Double)
name :: ForecastComputationProperty -> Maybe (Value Text)
periodsBackward :: ForecastComputationProperty -> Maybe (Value Double)
periodsForward :: ForecastComputationProperty -> Maybe (Value Double)
predictionInterval :: ForecastComputationProperty -> Maybe (Value Double)
seasonality :: ForecastComputationProperty -> Maybe (Value Text)
time :: ForecastComputationProperty -> Maybe DimensionFieldProperty
upperBoundary :: ForecastComputationProperty -> Maybe (Value Double)
value :: ForecastComputationProperty -> Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
= ForecastComputationProperty
{customSeasonalityValue :: Maybe (Value Double)
customSeasonalityValue = Value Double -> Maybe (Value Double)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CustomSeasonalityValue" ForecastComputationProperty
Value Double
newValue, Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ()
computationId :: Value Text
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
instance Property "LowerBoundary" ForecastComputationProperty where
type PropertyType "LowerBoundary" ForecastComputationProperty = Value Prelude.Double
set :: PropertyType "LowerBoundary" ForecastComputationProperty
-> ForecastComputationProperty -> ForecastComputationProperty
set PropertyType "LowerBoundary" ForecastComputationProperty
newValue ForecastComputationProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ForecastComputationProperty -> ()
computationId :: ForecastComputationProperty -> Value Text
customSeasonalityValue :: ForecastComputationProperty -> Maybe (Value Double)
lowerBoundary :: ForecastComputationProperty -> Maybe (Value Double)
name :: ForecastComputationProperty -> Maybe (Value Text)
periodsBackward :: ForecastComputationProperty -> Maybe (Value Double)
periodsForward :: ForecastComputationProperty -> Maybe (Value Double)
predictionInterval :: ForecastComputationProperty -> Maybe (Value Double)
seasonality :: ForecastComputationProperty -> Maybe (Value Text)
time :: ForecastComputationProperty -> Maybe DimensionFieldProperty
upperBoundary :: ForecastComputationProperty -> Maybe (Value Double)
value :: ForecastComputationProperty -> Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
= ForecastComputationProperty
{lowerBoundary :: Maybe (Value Double)
lowerBoundary = Value Double -> Maybe (Value Double)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "LowerBoundary" ForecastComputationProperty
Value Double
newValue, Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
instance Property "Name" ForecastComputationProperty where
type PropertyType "Name" ForecastComputationProperty = Value Prelude.Text
set :: PropertyType "Name" ForecastComputationProperty
-> ForecastComputationProperty -> ForecastComputationProperty
set PropertyType "Name" ForecastComputationProperty
newValue ForecastComputationProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ForecastComputationProperty -> ()
computationId :: ForecastComputationProperty -> Value Text
customSeasonalityValue :: ForecastComputationProperty -> Maybe (Value Double)
lowerBoundary :: ForecastComputationProperty -> Maybe (Value Double)
name :: ForecastComputationProperty -> Maybe (Value Text)
periodsBackward :: ForecastComputationProperty -> Maybe (Value Double)
periodsForward :: ForecastComputationProperty -> Maybe (Value Double)
predictionInterval :: ForecastComputationProperty -> Maybe (Value Double)
seasonality :: ForecastComputationProperty -> Maybe (Value Text)
time :: ForecastComputationProperty -> Maybe DimensionFieldProperty
upperBoundary :: ForecastComputationProperty -> Maybe (Value Double)
value :: ForecastComputationProperty -> Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
= ForecastComputationProperty {name :: Maybe (Value Text)
name = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Name" ForecastComputationProperty
Value Text
newValue, Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
instance Property "PeriodsBackward" ForecastComputationProperty where
type PropertyType "PeriodsBackward" ForecastComputationProperty = Value Prelude.Double
set :: PropertyType "PeriodsBackward" ForecastComputationProperty
-> ForecastComputationProperty -> ForecastComputationProperty
set PropertyType "PeriodsBackward" ForecastComputationProperty
newValue ForecastComputationProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ForecastComputationProperty -> ()
computationId :: ForecastComputationProperty -> Value Text
customSeasonalityValue :: ForecastComputationProperty -> Maybe (Value Double)
lowerBoundary :: ForecastComputationProperty -> Maybe (Value Double)
name :: ForecastComputationProperty -> Maybe (Value Text)
periodsBackward :: ForecastComputationProperty -> Maybe (Value Double)
periodsForward :: ForecastComputationProperty -> Maybe (Value Double)
predictionInterval :: ForecastComputationProperty -> Maybe (Value Double)
seasonality :: ForecastComputationProperty -> Maybe (Value Text)
time :: ForecastComputationProperty -> Maybe DimensionFieldProperty
upperBoundary :: ForecastComputationProperty -> Maybe (Value Double)
value :: ForecastComputationProperty -> Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
= ForecastComputationProperty
{periodsBackward :: Maybe (Value Double)
periodsBackward = Value Double -> Maybe (Value Double)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PeriodsBackward" ForecastComputationProperty
Value Double
newValue, Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
instance Property "PeriodsForward" ForecastComputationProperty where
type PropertyType "PeriodsForward" ForecastComputationProperty = Value Prelude.Double
set :: PropertyType "PeriodsForward" ForecastComputationProperty
-> ForecastComputationProperty -> ForecastComputationProperty
set PropertyType "PeriodsForward" ForecastComputationProperty
newValue ForecastComputationProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ForecastComputationProperty -> ()
computationId :: ForecastComputationProperty -> Value Text
customSeasonalityValue :: ForecastComputationProperty -> Maybe (Value Double)
lowerBoundary :: ForecastComputationProperty -> Maybe (Value Double)
name :: ForecastComputationProperty -> Maybe (Value Text)
periodsBackward :: ForecastComputationProperty -> Maybe (Value Double)
periodsForward :: ForecastComputationProperty -> Maybe (Value Double)
predictionInterval :: ForecastComputationProperty -> Maybe (Value Double)
seasonality :: ForecastComputationProperty -> Maybe (Value Text)
time :: ForecastComputationProperty -> Maybe DimensionFieldProperty
upperBoundary :: ForecastComputationProperty -> Maybe (Value Double)
value :: ForecastComputationProperty -> Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
= ForecastComputationProperty
{periodsForward :: Maybe (Value Double)
periodsForward = Value Double -> Maybe (Value Double)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PeriodsForward" ForecastComputationProperty
Value Double
newValue, Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
instance Property "PredictionInterval" ForecastComputationProperty where
type PropertyType "PredictionInterval" ForecastComputationProperty = Value Prelude.Double
set :: PropertyType "PredictionInterval" ForecastComputationProperty
-> ForecastComputationProperty -> ForecastComputationProperty
set PropertyType "PredictionInterval" ForecastComputationProperty
newValue ForecastComputationProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ForecastComputationProperty -> ()
computationId :: ForecastComputationProperty -> Value Text
customSeasonalityValue :: ForecastComputationProperty -> Maybe (Value Double)
lowerBoundary :: ForecastComputationProperty -> Maybe (Value Double)
name :: ForecastComputationProperty -> Maybe (Value Text)
periodsBackward :: ForecastComputationProperty -> Maybe (Value Double)
periodsForward :: ForecastComputationProperty -> Maybe (Value Double)
predictionInterval :: ForecastComputationProperty -> Maybe (Value Double)
seasonality :: ForecastComputationProperty -> Maybe (Value Text)
time :: ForecastComputationProperty -> Maybe DimensionFieldProperty
upperBoundary :: ForecastComputationProperty -> Maybe (Value Double)
value :: ForecastComputationProperty -> Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
= ForecastComputationProperty
{predictionInterval :: Maybe (Value Double)
predictionInterval = Value Double -> Maybe (Value Double)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PredictionInterval" ForecastComputationProperty
Value Double
newValue, Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
instance Property "Seasonality" ForecastComputationProperty where
type PropertyType "Seasonality" ForecastComputationProperty = Value Prelude.Text
set :: PropertyType "Seasonality" ForecastComputationProperty
-> ForecastComputationProperty -> ForecastComputationProperty
set PropertyType "Seasonality" ForecastComputationProperty
newValue ForecastComputationProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ForecastComputationProperty -> ()
computationId :: ForecastComputationProperty -> Value Text
customSeasonalityValue :: ForecastComputationProperty -> Maybe (Value Double)
lowerBoundary :: ForecastComputationProperty -> Maybe (Value Double)
name :: ForecastComputationProperty -> Maybe (Value Text)
periodsBackward :: ForecastComputationProperty -> Maybe (Value Double)
periodsForward :: ForecastComputationProperty -> Maybe (Value Double)
predictionInterval :: ForecastComputationProperty -> Maybe (Value Double)
seasonality :: ForecastComputationProperty -> Maybe (Value Text)
time :: ForecastComputationProperty -> Maybe DimensionFieldProperty
upperBoundary :: ForecastComputationProperty -> Maybe (Value Double)
value :: ForecastComputationProperty -> Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
= ForecastComputationProperty
{seasonality :: Maybe (Value Text)
seasonality = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Seasonality" ForecastComputationProperty
Value Text
newValue, Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
instance Property "Time" ForecastComputationProperty where
type PropertyType "Time" ForecastComputationProperty = DimensionFieldProperty
set :: PropertyType "Time" ForecastComputationProperty
-> ForecastComputationProperty -> ForecastComputationProperty
set PropertyType "Time" ForecastComputationProperty
newValue ForecastComputationProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ForecastComputationProperty -> ()
computationId :: ForecastComputationProperty -> Value Text
customSeasonalityValue :: ForecastComputationProperty -> Maybe (Value Double)
lowerBoundary :: ForecastComputationProperty -> Maybe (Value Double)
name :: ForecastComputationProperty -> Maybe (Value Text)
periodsBackward :: ForecastComputationProperty -> Maybe (Value Double)
periodsForward :: ForecastComputationProperty -> Maybe (Value Double)
predictionInterval :: ForecastComputationProperty -> Maybe (Value Double)
seasonality :: ForecastComputationProperty -> Maybe (Value Text)
time :: ForecastComputationProperty -> Maybe DimensionFieldProperty
upperBoundary :: ForecastComputationProperty -> Maybe (Value Double)
value :: ForecastComputationProperty -> Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
= ForecastComputationProperty {time :: Maybe DimensionFieldProperty
time = DimensionFieldProperty -> Maybe DimensionFieldProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Time" ForecastComputationProperty
DimensionFieldProperty
newValue, Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
()
Value Text
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
instance Property "UpperBoundary" ForecastComputationProperty where
type PropertyType "UpperBoundary" ForecastComputationProperty = Value Prelude.Double
set :: PropertyType "UpperBoundary" ForecastComputationProperty
-> ForecastComputationProperty -> ForecastComputationProperty
set PropertyType "UpperBoundary" ForecastComputationProperty
newValue ForecastComputationProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ForecastComputationProperty -> ()
computationId :: ForecastComputationProperty -> Value Text
customSeasonalityValue :: ForecastComputationProperty -> Maybe (Value Double)
lowerBoundary :: ForecastComputationProperty -> Maybe (Value Double)
name :: ForecastComputationProperty -> Maybe (Value Text)
periodsBackward :: ForecastComputationProperty -> Maybe (Value Double)
periodsForward :: ForecastComputationProperty -> Maybe (Value Double)
predictionInterval :: ForecastComputationProperty -> Maybe (Value Double)
seasonality :: ForecastComputationProperty -> Maybe (Value Text)
time :: ForecastComputationProperty -> Maybe DimensionFieldProperty
upperBoundary :: ForecastComputationProperty -> Maybe (Value Double)
value :: ForecastComputationProperty -> Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
= ForecastComputationProperty
{upperBoundary :: Maybe (Value Double)
upperBoundary = Value Double -> Maybe (Value Double)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "UpperBoundary" ForecastComputationProperty
Value Double
newValue, Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
value :: Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
value :: Maybe MeasureFieldProperty
..}
instance Property "Value" ForecastComputationProperty where
type PropertyType "Value" ForecastComputationProperty = MeasureFieldProperty
set :: PropertyType "Value" ForecastComputationProperty
-> ForecastComputationProperty -> ForecastComputationProperty
set PropertyType "Value" ForecastComputationProperty
newValue ForecastComputationProperty {Maybe (Value Double)
Maybe (Value Text)
Maybe MeasureFieldProperty
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ForecastComputationProperty -> ()
computationId :: ForecastComputationProperty -> Value Text
customSeasonalityValue :: ForecastComputationProperty -> Maybe (Value Double)
lowerBoundary :: ForecastComputationProperty -> Maybe (Value Double)
name :: ForecastComputationProperty -> Maybe (Value Text)
periodsBackward :: ForecastComputationProperty -> Maybe (Value Double)
periodsForward :: ForecastComputationProperty -> Maybe (Value Double)
predictionInterval :: ForecastComputationProperty -> Maybe (Value Double)
seasonality :: ForecastComputationProperty -> Maybe (Value Text)
time :: ForecastComputationProperty -> Maybe DimensionFieldProperty
upperBoundary :: ForecastComputationProperty -> Maybe (Value Double)
value :: ForecastComputationProperty -> Maybe MeasureFieldProperty
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
value :: Maybe MeasureFieldProperty
..}
= ForecastComputationProperty {value :: Maybe MeasureFieldProperty
value = MeasureFieldProperty -> Maybe MeasureFieldProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Value" ForecastComputationProperty
MeasureFieldProperty
newValue, Maybe (Value Double)
Maybe (Value Text)
Maybe DimensionFieldProperty
()
Value Text
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
haddock_workaround_ :: ()
computationId :: Value Text
customSeasonalityValue :: Maybe (Value Double)
lowerBoundary :: Maybe (Value Double)
name :: Maybe (Value Text)
periodsBackward :: Maybe (Value Double)
periodsForward :: Maybe (Value Double)
predictionInterval :: Maybe (Value Double)
seasonality :: Maybe (Value Text)
time :: Maybe DimensionFieldProperty
upperBoundary :: Maybe (Value Double)
..}