module Stratosphere.DataZone.DataSource (
        module Exports, DataSource(..), mkDataSource
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.DataZone.DataSource.DataSourceConfigurationInputProperty as Exports
import {-# SOURCE #-} Stratosphere.DataZone.DataSource.FormInputProperty as Exports
import {-# SOURCE #-} Stratosphere.DataZone.DataSource.RecommendationConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.DataZone.DataSource.ScheduleConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data DataSource
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html>
    DataSource {DataSource -> ()
haddock_workaround_ :: (),
                -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html#cfn-datazone-datasource-assetformsinput>
                DataSource -> Maybe [FormInputProperty]
assetFormsInput :: (Prelude.Maybe [FormInputProperty]),
                -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html#cfn-datazone-datasource-configuration>
                DataSource -> Maybe DataSourceConfigurationInputProperty
configuration :: (Prelude.Maybe DataSourceConfigurationInputProperty),
                -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html#cfn-datazone-datasource-connectionidentifier>
                DataSource -> Maybe (Value Text)
connectionIdentifier :: (Prelude.Maybe (Value Prelude.Text)),
                -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html#cfn-datazone-datasource-description>
                DataSource -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
                -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html#cfn-datazone-datasource-domainidentifier>
                DataSource -> Value Text
domainIdentifier :: (Value Prelude.Text),
                -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html#cfn-datazone-datasource-enablesetting>
                DataSource -> Maybe (Value Text)
enableSetting :: (Prelude.Maybe (Value Prelude.Text)),
                -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html#cfn-datazone-datasource-environmentidentifier>
                DataSource -> Maybe (Value Text)
environmentIdentifier :: (Prelude.Maybe (Value Prelude.Text)),
                -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html#cfn-datazone-datasource-name>
                DataSource -> Value Text
name :: (Value Prelude.Text),
                -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html#cfn-datazone-datasource-projectidentifier>
                DataSource -> Value Text
projectIdentifier :: (Value Prelude.Text),
                -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html#cfn-datazone-datasource-publishonimport>
                DataSource -> Maybe (Value Bool)
publishOnImport :: (Prelude.Maybe (Value Prelude.Bool)),
                -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html#cfn-datazone-datasource-recommendation>
                DataSource -> Maybe RecommendationConfigurationProperty
recommendation :: (Prelude.Maybe RecommendationConfigurationProperty),
                -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html#cfn-datazone-datasource-schedule>
                DataSource -> Maybe ScheduleConfigurationProperty
schedule :: (Prelude.Maybe ScheduleConfigurationProperty),
                -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html#cfn-datazone-datasource-type>
                DataSource -> Value Text
type' :: (Value Prelude.Text)}
  deriving stock (DataSource -> DataSource -> Bool
(DataSource -> DataSource -> Bool)
-> (DataSource -> DataSource -> Bool) -> Eq DataSource
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: DataSource -> DataSource -> Bool
== :: DataSource -> DataSource -> Bool
$c/= :: DataSource -> DataSource -> Bool
/= :: DataSource -> DataSource -> Bool
Prelude.Eq, Int -> DataSource -> ShowS
[DataSource] -> ShowS
DataSource -> String
(Int -> DataSource -> ShowS)
-> (DataSource -> String)
-> ([DataSource] -> ShowS)
-> Show DataSource
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> DataSource -> ShowS
showsPrec :: Int -> DataSource -> ShowS
$cshow :: DataSource -> String
show :: DataSource -> String
$cshowList :: [DataSource] -> ShowS
showList :: [DataSource] -> ShowS
Prelude.Show)
mkDataSource ::
  Value Prelude.Text
  -> Value Prelude.Text
     -> Value Prelude.Text -> Value Prelude.Text -> DataSource
mkDataSource :: Value Text -> Value Text -> Value Text -> Value Text -> DataSource
mkDataSource Value Text
domainIdentifier Value Text
name Value Text
projectIdentifier Value Text
type'
  = DataSource
      {haddock_workaround_ :: ()
haddock_workaround_ = (), domainIdentifier :: Value Text
domainIdentifier = Value Text
domainIdentifier,
       name :: Value Text
name = Value Text
name, projectIdentifier :: Value Text
projectIdentifier = Value Text
projectIdentifier, type' :: Value Text
type' = Value Text
type',
       assetFormsInput :: Maybe [FormInputProperty]
assetFormsInput = Maybe [FormInputProperty]
forall a. Maybe a
Prelude.Nothing, configuration :: Maybe DataSourceConfigurationInputProperty
configuration = Maybe DataSourceConfigurationInputProperty
forall a. Maybe a
Prelude.Nothing,
       connectionIdentifier :: Maybe (Value Text)
connectionIdentifier = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, enableSetting :: Maybe (Value Text)
enableSetting = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       environmentIdentifier :: Maybe (Value Text)
environmentIdentifier = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       publishOnImport :: Maybe (Value Bool)
publishOnImport = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
       recommendation :: Maybe RecommendationConfigurationProperty
recommendation = Maybe RecommendationConfigurationProperty
forall a. Maybe a
Prelude.Nothing, schedule :: Maybe ScheduleConfigurationProperty
schedule = Maybe ScheduleConfigurationProperty
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties DataSource where
  toResourceProperties :: DataSource -> ResourceProperties
toResourceProperties DataSource {Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: DataSource -> ()
assetFormsInput :: DataSource -> Maybe [FormInputProperty]
configuration :: DataSource -> Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: DataSource -> Maybe (Value Text)
description :: DataSource -> Maybe (Value Text)
domainIdentifier :: DataSource -> Value Text
enableSetting :: DataSource -> Maybe (Value Text)
environmentIdentifier :: DataSource -> Maybe (Value Text)
name :: DataSource -> Value Text
projectIdentifier :: DataSource -> Value Text
publishOnImport :: DataSource -> Maybe (Value Bool)
recommendation :: DataSource -> Maybe RecommendationConfigurationProperty
schedule :: DataSource -> Maybe ScheduleConfigurationProperty
type' :: DataSource -> Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::DataZone::DataSource",
         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
"DomainIdentifier" 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
domainIdentifier, Key
"Name" 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
name,
                            Key
"ProjectIdentifier" 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
projectIdentifier,
                            Key
"Type" 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
type']
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [Key -> [FormInputProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AssetFormsInput" ([FormInputProperty] -> (Key, Value))
-> Maybe [FormInputProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [FormInputProperty]
assetFormsInput,
                               Key -> DataSourceConfigurationInputProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Configuration" (DataSourceConfigurationInputProperty -> (Key, Value))
-> Maybe DataSourceConfigurationInputProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe DataSourceConfigurationInputProperty
configuration,
                               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
"ConnectionIdentifier" (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)
connectionIdentifier,
                               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
"Description" (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)
description,
                               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
"EnableSetting" (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)
enableSetting,
                               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
"EnvironmentIdentifier"
                                 (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)
environmentIdentifier,
                               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
"PublishOnImport" (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)
publishOnImport,
                               Key -> RecommendationConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Recommendation" (RecommendationConfigurationProperty -> (Key, Value))
-> Maybe RecommendationConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RecommendationConfigurationProperty
recommendation,
                               Key -> ScheduleConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Schedule" (ScheduleConfigurationProperty -> (Key, Value))
-> Maybe ScheduleConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ScheduleConfigurationProperty
schedule]))}
instance JSON.ToJSON DataSource where
  toJSON :: DataSource -> Value
toJSON DataSource {Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: DataSource -> ()
assetFormsInput :: DataSource -> Maybe [FormInputProperty]
configuration :: DataSource -> Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: DataSource -> Maybe (Value Text)
description :: DataSource -> Maybe (Value Text)
domainIdentifier :: DataSource -> Value Text
enableSetting :: DataSource -> Maybe (Value Text)
environmentIdentifier :: DataSource -> Maybe (Value Text)
name :: DataSource -> Value Text
projectIdentifier :: DataSource -> Value Text
publishOnImport :: DataSource -> Maybe (Value Bool)
recommendation :: DataSource -> Maybe RecommendationConfigurationProperty
schedule :: DataSource -> Maybe ScheduleConfigurationProperty
type' :: DataSource -> Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
    = [(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
"DomainIdentifier" 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
domainIdentifier, Key
"Name" 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
name,
               Key
"ProjectIdentifier" 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
projectIdentifier,
               Key
"Type" 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
type']
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [Key -> [FormInputProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AssetFormsInput" ([FormInputProperty] -> (Key, Value))
-> Maybe [FormInputProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [FormInputProperty]
assetFormsInput,
                  Key -> DataSourceConfigurationInputProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Configuration" (DataSourceConfigurationInputProperty -> (Key, Value))
-> Maybe DataSourceConfigurationInputProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe DataSourceConfigurationInputProperty
configuration,
                  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
"ConnectionIdentifier" (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)
connectionIdentifier,
                  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
"Description" (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)
description,
                  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
"EnableSetting" (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)
enableSetting,
                  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
"EnvironmentIdentifier"
                    (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)
environmentIdentifier,
                  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
"PublishOnImport" (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)
publishOnImport,
                  Key -> RecommendationConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Recommendation" (RecommendationConfigurationProperty -> (Key, Value))
-> Maybe RecommendationConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RecommendationConfigurationProperty
recommendation,
                  Key -> ScheduleConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Schedule" (ScheduleConfigurationProperty -> (Key, Value))
-> Maybe ScheduleConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ScheduleConfigurationProperty
schedule])))
instance Property "AssetFormsInput" DataSource where
  type PropertyType "AssetFormsInput" DataSource = [FormInputProperty]
  set :: PropertyType "AssetFormsInput" DataSource
-> DataSource -> DataSource
set PropertyType "AssetFormsInput" DataSource
newValue DataSource {Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: DataSource -> ()
assetFormsInput :: DataSource -> Maybe [FormInputProperty]
configuration :: DataSource -> Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: DataSource -> Maybe (Value Text)
description :: DataSource -> Maybe (Value Text)
domainIdentifier :: DataSource -> Value Text
enableSetting :: DataSource -> Maybe (Value Text)
environmentIdentifier :: DataSource -> Maybe (Value Text)
name :: DataSource -> Value Text
projectIdentifier :: DataSource -> Value Text
publishOnImport :: DataSource -> Maybe (Value Bool)
recommendation :: DataSource -> Maybe RecommendationConfigurationProperty
schedule :: DataSource -> Maybe ScheduleConfigurationProperty
type' :: DataSource -> Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
    = DataSource {assetFormsInput :: Maybe [FormInputProperty]
assetFormsInput = [FormInputProperty] -> Maybe [FormInputProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [FormInputProperty]
PropertyType "AssetFormsInput" DataSource
newValue, Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
instance Property "Configuration" DataSource where
  type PropertyType "Configuration" DataSource = DataSourceConfigurationInputProperty
  set :: PropertyType "Configuration" DataSource -> DataSource -> DataSource
set PropertyType "Configuration" DataSource
newValue DataSource {Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: DataSource -> ()
assetFormsInput :: DataSource -> Maybe [FormInputProperty]
configuration :: DataSource -> Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: DataSource -> Maybe (Value Text)
description :: DataSource -> Maybe (Value Text)
domainIdentifier :: DataSource -> Value Text
enableSetting :: DataSource -> Maybe (Value Text)
environmentIdentifier :: DataSource -> Maybe (Value Text)
name :: DataSource -> Value Text
projectIdentifier :: DataSource -> Value Text
publishOnImport :: DataSource -> Maybe (Value Bool)
recommendation :: DataSource -> Maybe RecommendationConfigurationProperty
schedule :: DataSource -> Maybe ScheduleConfigurationProperty
type' :: DataSource -> Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
    = DataSource {configuration :: Maybe DataSourceConfigurationInputProperty
configuration = DataSourceConfigurationInputProperty
-> Maybe DataSourceConfigurationInputProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Configuration" DataSource
DataSourceConfigurationInputProperty
newValue, Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
instance Property "ConnectionIdentifier" DataSource where
  type PropertyType "ConnectionIdentifier" DataSource = Value Prelude.Text
  set :: PropertyType "ConnectionIdentifier" DataSource
-> DataSource -> DataSource
set PropertyType "ConnectionIdentifier" DataSource
newValue DataSource {Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: DataSource -> ()
assetFormsInput :: DataSource -> Maybe [FormInputProperty]
configuration :: DataSource -> Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: DataSource -> Maybe (Value Text)
description :: DataSource -> Maybe (Value Text)
domainIdentifier :: DataSource -> Value Text
enableSetting :: DataSource -> Maybe (Value Text)
environmentIdentifier :: DataSource -> Maybe (Value Text)
name :: DataSource -> Value Text
projectIdentifier :: DataSource -> Value Text
publishOnImport :: DataSource -> Maybe (Value Bool)
recommendation :: DataSource -> Maybe RecommendationConfigurationProperty
schedule :: DataSource -> Maybe ScheduleConfigurationProperty
type' :: DataSource -> Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
    = DataSource {connectionIdentifier :: Maybe (Value Text)
connectionIdentifier = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ConnectionIdentifier" DataSource
Value Text
newValue, Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
instance Property "Description" DataSource where
  type PropertyType "Description" DataSource = Value Prelude.Text
  set :: PropertyType "Description" DataSource -> DataSource -> DataSource
set PropertyType "Description" DataSource
newValue DataSource {Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: DataSource -> ()
assetFormsInput :: DataSource -> Maybe [FormInputProperty]
configuration :: DataSource -> Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: DataSource -> Maybe (Value Text)
description :: DataSource -> Maybe (Value Text)
domainIdentifier :: DataSource -> Value Text
enableSetting :: DataSource -> Maybe (Value Text)
environmentIdentifier :: DataSource -> Maybe (Value Text)
name :: DataSource -> Value Text
projectIdentifier :: DataSource -> Value Text
publishOnImport :: DataSource -> Maybe (Value Bool)
recommendation :: DataSource -> Maybe RecommendationConfigurationProperty
schedule :: DataSource -> Maybe ScheduleConfigurationProperty
type' :: DataSource -> Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
    = DataSource {description :: Maybe (Value Text)
description = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Description" DataSource
Value Text
newValue, Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
instance Property "DomainIdentifier" DataSource where
  type PropertyType "DomainIdentifier" DataSource = Value Prelude.Text
  set :: PropertyType "DomainIdentifier" DataSource
-> DataSource -> DataSource
set PropertyType "DomainIdentifier" DataSource
newValue DataSource {Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: DataSource -> ()
assetFormsInput :: DataSource -> Maybe [FormInputProperty]
configuration :: DataSource -> Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: DataSource -> Maybe (Value Text)
description :: DataSource -> Maybe (Value Text)
domainIdentifier :: DataSource -> Value Text
enableSetting :: DataSource -> Maybe (Value Text)
environmentIdentifier :: DataSource -> Maybe (Value Text)
name :: DataSource -> Value Text
projectIdentifier :: DataSource -> Value Text
publishOnImport :: DataSource -> Maybe (Value Bool)
recommendation :: DataSource -> Maybe RecommendationConfigurationProperty
schedule :: DataSource -> Maybe ScheduleConfigurationProperty
type' :: DataSource -> Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
    = DataSource {domainIdentifier :: Value Text
domainIdentifier = PropertyType "DomainIdentifier" DataSource
Value Text
newValue, Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
instance Property "EnableSetting" DataSource where
  type PropertyType "EnableSetting" DataSource = Value Prelude.Text
  set :: PropertyType "EnableSetting" DataSource -> DataSource -> DataSource
set PropertyType "EnableSetting" DataSource
newValue DataSource {Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: DataSource -> ()
assetFormsInput :: DataSource -> Maybe [FormInputProperty]
configuration :: DataSource -> Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: DataSource -> Maybe (Value Text)
description :: DataSource -> Maybe (Value Text)
domainIdentifier :: DataSource -> Value Text
enableSetting :: DataSource -> Maybe (Value Text)
environmentIdentifier :: DataSource -> Maybe (Value Text)
name :: DataSource -> Value Text
projectIdentifier :: DataSource -> Value Text
publishOnImport :: DataSource -> Maybe (Value Bool)
recommendation :: DataSource -> Maybe RecommendationConfigurationProperty
schedule :: DataSource -> Maybe ScheduleConfigurationProperty
type' :: DataSource -> Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
    = DataSource {enableSetting :: Maybe (Value Text)
enableSetting = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "EnableSetting" DataSource
Value Text
newValue, Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
instance Property "EnvironmentIdentifier" DataSource where
  type PropertyType "EnvironmentIdentifier" DataSource = Value Prelude.Text
  set :: PropertyType "EnvironmentIdentifier" DataSource
-> DataSource -> DataSource
set PropertyType "EnvironmentIdentifier" DataSource
newValue DataSource {Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: DataSource -> ()
assetFormsInput :: DataSource -> Maybe [FormInputProperty]
configuration :: DataSource -> Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: DataSource -> Maybe (Value Text)
description :: DataSource -> Maybe (Value Text)
domainIdentifier :: DataSource -> Value Text
enableSetting :: DataSource -> Maybe (Value Text)
environmentIdentifier :: DataSource -> Maybe (Value Text)
name :: DataSource -> Value Text
projectIdentifier :: DataSource -> Value Text
publishOnImport :: DataSource -> Maybe (Value Bool)
recommendation :: DataSource -> Maybe RecommendationConfigurationProperty
schedule :: DataSource -> Maybe ScheduleConfigurationProperty
type' :: DataSource -> Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
    = DataSource {environmentIdentifier :: Maybe (Value Text)
environmentIdentifier = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "EnvironmentIdentifier" DataSource
Value Text
newValue, Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
instance Property "Name" DataSource where
  type PropertyType "Name" DataSource = Value Prelude.Text
  set :: PropertyType "Name" DataSource -> DataSource -> DataSource
set PropertyType "Name" DataSource
newValue DataSource {Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: DataSource -> ()
assetFormsInput :: DataSource -> Maybe [FormInputProperty]
configuration :: DataSource -> Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: DataSource -> Maybe (Value Text)
description :: DataSource -> Maybe (Value Text)
domainIdentifier :: DataSource -> Value Text
enableSetting :: DataSource -> Maybe (Value Text)
environmentIdentifier :: DataSource -> Maybe (Value Text)
name :: DataSource -> Value Text
projectIdentifier :: DataSource -> Value Text
publishOnImport :: DataSource -> Maybe (Value Bool)
recommendation :: DataSource -> Maybe RecommendationConfigurationProperty
schedule :: DataSource -> Maybe ScheduleConfigurationProperty
type' :: DataSource -> Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..} = DataSource {name :: Value Text
name = PropertyType "Name" DataSource
Value Text
newValue, Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
instance Property "ProjectIdentifier" DataSource where
  type PropertyType "ProjectIdentifier" DataSource = Value Prelude.Text
  set :: PropertyType "ProjectIdentifier" DataSource
-> DataSource -> DataSource
set PropertyType "ProjectIdentifier" DataSource
newValue DataSource {Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: DataSource -> ()
assetFormsInput :: DataSource -> Maybe [FormInputProperty]
configuration :: DataSource -> Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: DataSource -> Maybe (Value Text)
description :: DataSource -> Maybe (Value Text)
domainIdentifier :: DataSource -> Value Text
enableSetting :: DataSource -> Maybe (Value Text)
environmentIdentifier :: DataSource -> Maybe (Value Text)
name :: DataSource -> Value Text
projectIdentifier :: DataSource -> Value Text
publishOnImport :: DataSource -> Maybe (Value Bool)
recommendation :: DataSource -> Maybe RecommendationConfigurationProperty
schedule :: DataSource -> Maybe ScheduleConfigurationProperty
type' :: DataSource -> Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
    = DataSource {projectIdentifier :: Value Text
projectIdentifier = PropertyType "ProjectIdentifier" DataSource
Value Text
newValue, Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
instance Property "PublishOnImport" DataSource where
  type PropertyType "PublishOnImport" DataSource = Value Prelude.Bool
  set :: PropertyType "PublishOnImport" DataSource
-> DataSource -> DataSource
set PropertyType "PublishOnImport" DataSource
newValue DataSource {Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: DataSource -> ()
assetFormsInput :: DataSource -> Maybe [FormInputProperty]
configuration :: DataSource -> Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: DataSource -> Maybe (Value Text)
description :: DataSource -> Maybe (Value Text)
domainIdentifier :: DataSource -> Value Text
enableSetting :: DataSource -> Maybe (Value Text)
environmentIdentifier :: DataSource -> Maybe (Value Text)
name :: DataSource -> Value Text
projectIdentifier :: DataSource -> Value Text
publishOnImport :: DataSource -> Maybe (Value Bool)
recommendation :: DataSource -> Maybe RecommendationConfigurationProperty
schedule :: DataSource -> Maybe ScheduleConfigurationProperty
type' :: DataSource -> Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
    = DataSource {publishOnImport :: Maybe (Value Bool)
publishOnImport = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PublishOnImport" DataSource
Value Bool
newValue, Maybe [FormInputProperty]
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
instance Property "Recommendation" DataSource where
  type PropertyType "Recommendation" DataSource = RecommendationConfigurationProperty
  set :: PropertyType "Recommendation" DataSource
-> DataSource -> DataSource
set PropertyType "Recommendation" DataSource
newValue DataSource {Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: DataSource -> ()
assetFormsInput :: DataSource -> Maybe [FormInputProperty]
configuration :: DataSource -> Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: DataSource -> Maybe (Value Text)
description :: DataSource -> Maybe (Value Text)
domainIdentifier :: DataSource -> Value Text
enableSetting :: DataSource -> Maybe (Value Text)
environmentIdentifier :: DataSource -> Maybe (Value Text)
name :: DataSource -> Value Text
projectIdentifier :: DataSource -> Value Text
publishOnImport :: DataSource -> Maybe (Value Bool)
recommendation :: DataSource -> Maybe RecommendationConfigurationProperty
schedule :: DataSource -> Maybe ScheduleConfigurationProperty
type' :: DataSource -> Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
    = DataSource {recommendation :: Maybe RecommendationConfigurationProperty
recommendation = RecommendationConfigurationProperty
-> Maybe RecommendationConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Recommendation" DataSource
RecommendationConfigurationProperty
newValue, Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
instance Property "Schedule" DataSource where
  type PropertyType "Schedule" DataSource = ScheduleConfigurationProperty
  set :: PropertyType "Schedule" DataSource -> DataSource -> DataSource
set PropertyType "Schedule" DataSource
newValue DataSource {Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: DataSource -> ()
assetFormsInput :: DataSource -> Maybe [FormInputProperty]
configuration :: DataSource -> Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: DataSource -> Maybe (Value Text)
description :: DataSource -> Maybe (Value Text)
domainIdentifier :: DataSource -> Value Text
enableSetting :: DataSource -> Maybe (Value Text)
environmentIdentifier :: DataSource -> Maybe (Value Text)
name :: DataSource -> Value Text
projectIdentifier :: DataSource -> Value Text
publishOnImport :: DataSource -> Maybe (Value Bool)
recommendation :: DataSource -> Maybe RecommendationConfigurationProperty
schedule :: DataSource -> Maybe ScheduleConfigurationProperty
type' :: DataSource -> Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..}
    = DataSource {schedule :: Maybe ScheduleConfigurationProperty
schedule = ScheduleConfigurationProperty
-> Maybe ScheduleConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Schedule" DataSource
ScheduleConfigurationProperty
newValue, Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
()
Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
type' :: Value Text
..}
instance Property "Type" DataSource where
  type PropertyType "Type" DataSource = Value Prelude.Text
  set :: PropertyType "Type" DataSource -> DataSource -> DataSource
set PropertyType "Type" DataSource
newValue DataSource {Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: DataSource -> ()
assetFormsInput :: DataSource -> Maybe [FormInputProperty]
configuration :: DataSource -> Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: DataSource -> Maybe (Value Text)
description :: DataSource -> Maybe (Value Text)
domainIdentifier :: DataSource -> Value Text
enableSetting :: DataSource -> Maybe (Value Text)
environmentIdentifier :: DataSource -> Maybe (Value Text)
name :: DataSource -> Value Text
projectIdentifier :: DataSource -> Value Text
publishOnImport :: DataSource -> Maybe (Value Bool)
recommendation :: DataSource -> Maybe RecommendationConfigurationProperty
schedule :: DataSource -> Maybe ScheduleConfigurationProperty
type' :: DataSource -> Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
type' :: Value Text
..} = DataSource {type' :: Value Text
type' = PropertyType "Type" DataSource
Value Text
newValue, Maybe [FormInputProperty]
Maybe (Value Bool)
Maybe (Value Text)
Maybe RecommendationConfigurationProperty
Maybe DataSourceConfigurationInputProperty
Maybe ScheduleConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
haddock_workaround_ :: ()
assetFormsInput :: Maybe [FormInputProperty]
configuration :: Maybe DataSourceConfigurationInputProperty
connectionIdentifier :: Maybe (Value Text)
description :: Maybe (Value Text)
domainIdentifier :: Value Text
enableSetting :: Maybe (Value Text)
environmentIdentifier :: Maybe (Value Text)
name :: Value Text
projectIdentifier :: Value Text
publishOnImport :: Maybe (Value Bool)
recommendation :: Maybe RecommendationConfigurationProperty
schedule :: Maybe ScheduleConfigurationProperty
..}