module Stratosphere.OpsWorks.App (
module Exports, App(..), mkApp
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.OpsWorks.App.DataSourceProperty as Exports
import {-# SOURCE #-} Stratosphere.OpsWorks.App.EnvironmentVariableProperty as Exports
import {-# SOURCE #-} Stratosphere.OpsWorks.App.SourceProperty as Exports
import {-# SOURCE #-} Stratosphere.OpsWorks.App.SslConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data App
=
App {App -> ()
haddock_workaround_ :: (),
App -> Maybe SourceProperty
appSource :: (Prelude.Maybe SourceProperty),
App -> Maybe (Map Text (Value Text))
attributes :: (Prelude.Maybe (Prelude.Map Prelude.Text (Value Prelude.Text))),
App -> Maybe [DataSourceProperty]
dataSources :: (Prelude.Maybe [DataSourceProperty]),
App -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
App -> Maybe (ValueList Text)
domains :: (Prelude.Maybe (ValueList Prelude.Text)),
App -> Maybe (Value Bool)
enableSsl :: (Prelude.Maybe (Value Prelude.Bool)),
App -> Maybe [EnvironmentVariableProperty]
environment :: (Prelude.Maybe [EnvironmentVariableProperty]),
App -> Value Text
name :: (Value Prelude.Text),
App -> Maybe (Value Text)
shortname :: (Prelude.Maybe (Value Prelude.Text)),
App -> Maybe SslConfigurationProperty
sslConfiguration :: (Prelude.Maybe SslConfigurationProperty),
App -> Value Text
stackId :: (Value Prelude.Text),
App -> Value Text
type' :: (Value Prelude.Text)}
deriving stock (App -> App -> Bool
(App -> App -> Bool) -> (App -> App -> Bool) -> Eq App
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: App -> App -> Bool
== :: App -> App -> Bool
$c/= :: App -> App -> Bool
/= :: App -> App -> Bool
Prelude.Eq, Int -> App -> ShowS
[App] -> ShowS
App -> String
(Int -> App -> ShowS)
-> (App -> String) -> ([App] -> ShowS) -> Show App
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> App -> ShowS
showsPrec :: Int -> App -> ShowS
$cshow :: App -> String
show :: App -> String
$cshowList :: [App] -> ShowS
showList :: [App] -> ShowS
Prelude.Show)
mkApp ::
Value Prelude.Text
-> Value Prelude.Text -> Value Prelude.Text -> App
mkApp :: Value Text -> Value Text -> Value Text -> App
mkApp Value Text
name Value Text
stackId Value Text
type'
= App
{haddock_workaround_ :: ()
haddock_workaround_ = (), name :: Value Text
name = Value Text
name, stackId :: Value Text
stackId = Value Text
stackId,
type' :: Value Text
type' = Value Text
type', appSource :: Maybe SourceProperty
appSource = Maybe SourceProperty
forall a. Maybe a
Prelude.Nothing,
attributes :: Maybe (Map Text (Value Text))
attributes = Maybe (Map Text (Value Text))
forall a. Maybe a
Prelude.Nothing, dataSources :: Maybe [DataSourceProperty]
dataSources = Maybe [DataSourceProperty]
forall a. Maybe a
Prelude.Nothing,
description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, domains :: Maybe (ValueList Text)
domains = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing,
enableSsl :: Maybe (Value Bool)
enableSsl = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing, environment :: Maybe [EnvironmentVariableProperty]
environment = Maybe [EnvironmentVariableProperty]
forall a. Maybe a
Prelude.Nothing,
shortname :: Maybe (Value Text)
shortname = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, sslConfiguration :: Maybe SslConfigurationProperty
sslConfiguration = Maybe SslConfigurationProperty
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties App where
toResourceProperties :: App -> ResourceProperties
toResourceProperties App {Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: App -> ()
appSource :: App -> Maybe SourceProperty
attributes :: App -> Maybe (Map Text (Value Text))
dataSources :: App -> Maybe [DataSourceProperty]
description :: App -> Maybe (Value Text)
domains :: App -> Maybe (ValueList Text)
enableSsl :: App -> Maybe (Value Bool)
environment :: App -> Maybe [EnvironmentVariableProperty]
name :: App -> Value Text
shortname :: App -> Maybe (Value Text)
sslConfiguration :: App -> Maybe SslConfigurationProperty
stackId :: App -> Value Text
type' :: App -> Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::OpsWorks::App", 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
"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
"StackId" 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
stackId,
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 -> SourceProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AppSource" (SourceProperty -> (Key, Value))
-> Maybe SourceProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe SourceProperty
appSource,
Key -> Map Text (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
"Attributes" (Map Text (Value Text) -> (Key, Value))
-> Maybe (Map Text (Value Text)) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Map Text (Value Text))
attributes,
Key -> [DataSourceProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DataSources" ([DataSourceProperty] -> (Key, Value))
-> Maybe [DataSourceProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [DataSourceProperty]
dataSources,
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 -> ValueList 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
"Domains" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
domains,
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
"EnableSsl" (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)
enableSsl,
Key -> [EnvironmentVariableProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Environment" ([EnvironmentVariableProperty] -> (Key, Value))
-> Maybe [EnvironmentVariableProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [EnvironmentVariableProperty]
environment,
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
"Shortname" (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)
shortname,
Key -> SslConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SslConfiguration" (SslConfigurationProperty -> (Key, Value))
-> Maybe SslConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe SslConfigurationProperty
sslConfiguration]))}
instance JSON.ToJSON App where
toJSON :: App -> Value
toJSON App {Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: App -> ()
appSource :: App -> Maybe SourceProperty
attributes :: App -> Maybe (Map Text (Value Text))
dataSources :: App -> Maybe [DataSourceProperty]
description :: App -> Maybe (Value Text)
domains :: App -> Maybe (ValueList Text)
enableSsl :: App -> Maybe (Value Bool)
environment :: App -> Maybe [EnvironmentVariableProperty]
name :: App -> Value Text
shortname :: App -> Maybe (Value Text)
sslConfiguration :: App -> Maybe SslConfigurationProperty
stackId :: App -> Value Text
type' :: App -> Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
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
"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
"StackId" 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
stackId,
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 -> SourceProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AppSource" (SourceProperty -> (Key, Value))
-> Maybe SourceProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe SourceProperty
appSource,
Key -> Map Text (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
"Attributes" (Map Text (Value Text) -> (Key, Value))
-> Maybe (Map Text (Value Text)) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Map Text (Value Text))
attributes,
Key -> [DataSourceProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DataSources" ([DataSourceProperty] -> (Key, Value))
-> Maybe [DataSourceProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [DataSourceProperty]
dataSources,
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 -> ValueList 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
"Domains" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
domains,
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
"EnableSsl" (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)
enableSsl,
Key -> [EnvironmentVariableProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Environment" ([EnvironmentVariableProperty] -> (Key, Value))
-> Maybe [EnvironmentVariableProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [EnvironmentVariableProperty]
environment,
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
"Shortname" (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)
shortname,
Key -> SslConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SslConfiguration" (SslConfigurationProperty -> (Key, Value))
-> Maybe SslConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe SslConfigurationProperty
sslConfiguration])))
instance Property "AppSource" App where
type PropertyType "AppSource" App = SourceProperty
set :: PropertyType "AppSource" App -> App -> App
set PropertyType "AppSource" App
newValue App {Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: App -> ()
appSource :: App -> Maybe SourceProperty
attributes :: App -> Maybe (Map Text (Value Text))
dataSources :: App -> Maybe [DataSourceProperty]
description :: App -> Maybe (Value Text)
domains :: App -> Maybe (ValueList Text)
enableSsl :: App -> Maybe (Value Bool)
environment :: App -> Maybe [EnvironmentVariableProperty]
name :: App -> Value Text
shortname :: App -> Maybe (Value Text)
sslConfiguration :: App -> Maybe SslConfigurationProperty
stackId :: App -> Value Text
type' :: App -> Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..} = App {appSource :: Maybe SourceProperty
appSource = SourceProperty -> Maybe SourceProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AppSource" App
SourceProperty
newValue, Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
haddock_workaround_ :: ()
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..}
instance Property "Attributes" App where
type PropertyType "Attributes" App = Prelude.Map Prelude.Text (Value Prelude.Text)
set :: PropertyType "Attributes" App -> App -> App
set PropertyType "Attributes" App
newValue App {Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: App -> ()
appSource :: App -> Maybe SourceProperty
attributes :: App -> Maybe (Map Text (Value Text))
dataSources :: App -> Maybe [DataSourceProperty]
description :: App -> Maybe (Value Text)
domains :: App -> Maybe (ValueList Text)
enableSsl :: App -> Maybe (Value Bool)
environment :: App -> Maybe [EnvironmentVariableProperty]
name :: App -> Value Text
shortname :: App -> Maybe (Value Text)
sslConfiguration :: App -> Maybe SslConfigurationProperty
stackId :: App -> Value Text
type' :: App -> Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..}
= App {attributes :: Maybe (Map Text (Value Text))
attributes = Map Text (Value Text) -> Maybe (Map Text (Value Text))
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure Map Text (Value Text)
PropertyType "Attributes" App
newValue, Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..}
instance Property "DataSources" App where
type PropertyType "DataSources" App = [DataSourceProperty]
set :: PropertyType "DataSources" App -> App -> App
set PropertyType "DataSources" App
newValue App {Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: App -> ()
appSource :: App -> Maybe SourceProperty
attributes :: App -> Maybe (Map Text (Value Text))
dataSources :: App -> Maybe [DataSourceProperty]
description :: App -> Maybe (Value Text)
domains :: App -> Maybe (ValueList Text)
enableSsl :: App -> Maybe (Value Bool)
environment :: App -> Maybe [EnvironmentVariableProperty]
name :: App -> Value Text
shortname :: App -> Maybe (Value Text)
sslConfiguration :: App -> Maybe SslConfigurationProperty
stackId :: App -> Value Text
type' :: App -> Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..}
= App {dataSources :: Maybe [DataSourceProperty]
dataSources = [DataSourceProperty] -> Maybe [DataSourceProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [DataSourceProperty]
PropertyType "DataSources" App
newValue, Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..}
instance Property "Description" App where
type PropertyType "Description" App = Value Prelude.Text
set :: PropertyType "Description" App -> App -> App
set PropertyType "Description" App
newValue App {Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: App -> ()
appSource :: App -> Maybe SourceProperty
attributes :: App -> Maybe (Map Text (Value Text))
dataSources :: App -> Maybe [DataSourceProperty]
description :: App -> Maybe (Value Text)
domains :: App -> Maybe (ValueList Text)
enableSsl :: App -> Maybe (Value Bool)
environment :: App -> Maybe [EnvironmentVariableProperty]
name :: App -> Value Text
shortname :: App -> Maybe (Value Text)
sslConfiguration :: App -> Maybe SslConfigurationProperty
stackId :: App -> Value Text
type' :: App -> Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..}
= App {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" App
Value Text
newValue, Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..}
instance Property "Domains" App where
type PropertyType "Domains" App = ValueList Prelude.Text
set :: PropertyType "Domains" App -> App -> App
set PropertyType "Domains" App
newValue App {Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: App -> ()
appSource :: App -> Maybe SourceProperty
attributes :: App -> Maybe (Map Text (Value Text))
dataSources :: App -> Maybe [DataSourceProperty]
description :: App -> Maybe (Value Text)
domains :: App -> Maybe (ValueList Text)
enableSsl :: App -> Maybe (Value Bool)
environment :: App -> Maybe [EnvironmentVariableProperty]
name :: App -> Value Text
shortname :: App -> Maybe (Value Text)
sslConfiguration :: App -> Maybe SslConfigurationProperty
stackId :: App -> Value Text
type' :: App -> Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..} = App {domains :: Maybe (ValueList Text)
domains = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Domains" App
ValueList Text
newValue, Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..}
instance Property "EnableSsl" App where
type PropertyType "EnableSsl" App = Value Prelude.Bool
set :: PropertyType "EnableSsl" App -> App -> App
set PropertyType "EnableSsl" App
newValue App {Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: App -> ()
appSource :: App -> Maybe SourceProperty
attributes :: App -> Maybe (Map Text (Value Text))
dataSources :: App -> Maybe [DataSourceProperty]
description :: App -> Maybe (Value Text)
domains :: App -> Maybe (ValueList Text)
enableSsl :: App -> Maybe (Value Bool)
environment :: App -> Maybe [EnvironmentVariableProperty]
name :: App -> Value Text
shortname :: App -> Maybe (Value Text)
sslConfiguration :: App -> Maybe SslConfigurationProperty
stackId :: App -> Value Text
type' :: App -> Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..} = App {enableSsl :: Maybe (Value Bool)
enableSsl = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "EnableSsl" App
Value Bool
newValue, Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..}
instance Property "Environment" App where
type PropertyType "Environment" App = [EnvironmentVariableProperty]
set :: PropertyType "Environment" App -> App -> App
set PropertyType "Environment" App
newValue App {Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: App -> ()
appSource :: App -> Maybe SourceProperty
attributes :: App -> Maybe (Map Text (Value Text))
dataSources :: App -> Maybe [DataSourceProperty]
description :: App -> Maybe (Value Text)
domains :: App -> Maybe (ValueList Text)
enableSsl :: App -> Maybe (Value Bool)
environment :: App -> Maybe [EnvironmentVariableProperty]
name :: App -> Value Text
shortname :: App -> Maybe (Value Text)
sslConfiguration :: App -> Maybe SslConfigurationProperty
stackId :: App -> Value Text
type' :: App -> Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..}
= App {environment :: Maybe [EnvironmentVariableProperty]
environment = [EnvironmentVariableProperty]
-> Maybe [EnvironmentVariableProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [EnvironmentVariableProperty]
PropertyType "Environment" App
newValue, Maybe [DataSourceProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..}
instance Property "Name" App where
type PropertyType "Name" App = Value Prelude.Text
set :: PropertyType "Name" App -> App -> App
set PropertyType "Name" App
newValue App {Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: App -> ()
appSource :: App -> Maybe SourceProperty
attributes :: App -> Maybe (Map Text (Value Text))
dataSources :: App -> Maybe [DataSourceProperty]
description :: App -> Maybe (Value Text)
domains :: App -> Maybe (ValueList Text)
enableSsl :: App -> Maybe (Value Bool)
environment :: App -> Maybe [EnvironmentVariableProperty]
name :: App -> Value Text
shortname :: App -> Maybe (Value Text)
sslConfiguration :: App -> Maybe SslConfigurationProperty
stackId :: App -> Value Text
type' :: App -> Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..} = App {name :: Value Text
name = PropertyType "Name" App
Value Text
newValue, Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..}
instance Property "Shortname" App where
type PropertyType "Shortname" App = Value Prelude.Text
set :: PropertyType "Shortname" App -> App -> App
set PropertyType "Shortname" App
newValue App {Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: App -> ()
appSource :: App -> Maybe SourceProperty
attributes :: App -> Maybe (Map Text (Value Text))
dataSources :: App -> Maybe [DataSourceProperty]
description :: App -> Maybe (Value Text)
domains :: App -> Maybe (ValueList Text)
enableSsl :: App -> Maybe (Value Bool)
environment :: App -> Maybe [EnvironmentVariableProperty]
name :: App -> Value Text
shortname :: App -> Maybe (Value Text)
sslConfiguration :: App -> Maybe SslConfigurationProperty
stackId :: App -> Value Text
type' :: App -> Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..} = App {shortname :: Maybe (Value Text)
shortname = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Shortname" App
Value Text
newValue, Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..}
instance Property "SslConfiguration" App where
type PropertyType "SslConfiguration" App = SslConfigurationProperty
set :: PropertyType "SslConfiguration" App -> App -> App
set PropertyType "SslConfiguration" App
newValue App {Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: App -> ()
appSource :: App -> Maybe SourceProperty
attributes :: App -> Maybe (Map Text (Value Text))
dataSources :: App -> Maybe [DataSourceProperty]
description :: App -> Maybe (Value Text)
domains :: App -> Maybe (ValueList Text)
enableSsl :: App -> Maybe (Value Bool)
environment :: App -> Maybe [EnvironmentVariableProperty]
name :: App -> Value Text
shortname :: App -> Maybe (Value Text)
sslConfiguration :: App -> Maybe SslConfigurationProperty
stackId :: App -> Value Text
type' :: App -> Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..}
= App {sslConfiguration :: Maybe SslConfigurationProperty
sslConfiguration = SslConfigurationProperty -> Maybe SslConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SslConfiguration" App
SslConfigurationProperty
newValue, Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
()
Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
stackId :: Value Text
type' :: Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
stackId :: Value Text
type' :: Value Text
..}
instance Property "StackId" App where
type PropertyType "StackId" App = Value Prelude.Text
set :: PropertyType "StackId" App -> App -> App
set PropertyType "StackId" App
newValue App {Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: App -> ()
appSource :: App -> Maybe SourceProperty
attributes :: App -> Maybe (Map Text (Value Text))
dataSources :: App -> Maybe [DataSourceProperty]
description :: App -> Maybe (Value Text)
domains :: App -> Maybe (ValueList Text)
enableSsl :: App -> Maybe (Value Bool)
environment :: App -> Maybe [EnvironmentVariableProperty]
name :: App -> Value Text
shortname :: App -> Maybe (Value Text)
sslConfiguration :: App -> Maybe SslConfigurationProperty
stackId :: App -> Value Text
type' :: App -> Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..} = App {stackId :: Value Text
stackId = PropertyType "StackId" App
Value Text
newValue, Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
type' :: Value Text
..}
instance Property "Type" App where
type PropertyType "Type" App = Value Prelude.Text
set :: PropertyType "Type" App -> App -> App
set PropertyType "Type" App
newValue App {Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: App -> ()
appSource :: App -> Maybe SourceProperty
attributes :: App -> Maybe (Map Text (Value Text))
dataSources :: App -> Maybe [DataSourceProperty]
description :: App -> Maybe (Value Text)
domains :: App -> Maybe (ValueList Text)
enableSsl :: App -> Maybe (Value Bool)
environment :: App -> Maybe [EnvironmentVariableProperty]
name :: App -> Value Text
shortname :: App -> Maybe (Value Text)
sslConfiguration :: App -> Maybe SslConfigurationProperty
stackId :: App -> Value Text
type' :: App -> Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
type' :: Value Text
..} = App {type' :: Value Text
type' = PropertyType "Type" App
Value Text
newValue, Maybe [DataSourceProperty]
Maybe [EnvironmentVariableProperty]
Maybe (Map Text (Value Text))
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe SourceProperty
Maybe SslConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
haddock_workaround_ :: ()
appSource :: Maybe SourceProperty
attributes :: Maybe (Map Text (Value Text))
dataSources :: Maybe [DataSourceProperty]
description :: Maybe (Value Text)
domains :: Maybe (ValueList Text)
enableSsl :: Maybe (Value Bool)
environment :: Maybe [EnvironmentVariableProperty]
name :: Value Text
shortname :: Maybe (Value Text)
sslConfiguration :: Maybe SslConfigurationProperty
stackId :: Value Text
..}