module Stratosphere.RoboMaker.SimulationApplication (
        module Exports, SimulationApplication(..), mkSimulationApplication
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.RoboMaker.SimulationApplication.RenderingEngineProperty as Exports
import {-# SOURCE #-} Stratosphere.RoboMaker.SimulationApplication.RobotSoftwareSuiteProperty as Exports
import {-# SOURCE #-} Stratosphere.RoboMaker.SimulationApplication.SimulationSoftwareSuiteProperty as Exports
import {-# SOURCE #-} Stratosphere.RoboMaker.SimulationApplication.SourceConfigProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data SimulationApplication
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html>
    SimulationApplication {SimulationApplication -> ()
haddock_workaround_ :: (),
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-currentrevisionid>
                           SimulationApplication -> Maybe (Value Text)
currentRevisionId :: (Prelude.Maybe (Value Prelude.Text)),
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-environment>
                           SimulationApplication -> Maybe (Value Text)
environment :: (Prelude.Maybe (Value Prelude.Text)),
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-name>
                           SimulationApplication -> Maybe (Value Text)
name :: (Prelude.Maybe (Value Prelude.Text)),
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-renderingengine>
                           SimulationApplication -> Maybe RenderingEngineProperty
renderingEngine :: (Prelude.Maybe RenderingEngineProperty),
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-robotsoftwaresuite>
                           SimulationApplication -> RobotSoftwareSuiteProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty,
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-simulationsoftwaresuite>
                           SimulationApplication -> SimulationSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty,
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-sources>
                           SimulationApplication -> Maybe [SourceConfigProperty]
sources :: (Prelude.Maybe [SourceConfigProperty]),
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#cfn-robomaker-simulationapplication-tags>
                           SimulationApplication -> Maybe (Map Text (Value Text))
tags :: (Prelude.Maybe (Prelude.Map Prelude.Text (Value Prelude.Text)))}
  deriving stock (SimulationApplication -> SimulationApplication -> Bool
(SimulationApplication -> SimulationApplication -> Bool)
-> (SimulationApplication -> SimulationApplication -> Bool)
-> Eq SimulationApplication
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: SimulationApplication -> SimulationApplication -> Bool
== :: SimulationApplication -> SimulationApplication -> Bool
$c/= :: SimulationApplication -> SimulationApplication -> Bool
/= :: SimulationApplication -> SimulationApplication -> Bool
Prelude.Eq, Int -> SimulationApplication -> ShowS
[SimulationApplication] -> ShowS
SimulationApplication -> String
(Int -> SimulationApplication -> ShowS)
-> (SimulationApplication -> String)
-> ([SimulationApplication] -> ShowS)
-> Show SimulationApplication
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> SimulationApplication -> ShowS
showsPrec :: Int -> SimulationApplication -> ShowS
$cshow :: SimulationApplication -> String
show :: SimulationApplication -> String
$cshowList :: [SimulationApplication] -> ShowS
showList :: [SimulationApplication] -> ShowS
Prelude.Show)
mkSimulationApplication ::
  RobotSoftwareSuiteProperty
  -> SimulationSoftwareSuiteProperty -> SimulationApplication
mkSimulationApplication :: RobotSoftwareSuiteProperty
-> SimulationSoftwareSuiteProperty -> SimulationApplication
mkSimulationApplication RobotSoftwareSuiteProperty
robotSoftwareSuite SimulationSoftwareSuiteProperty
simulationSoftwareSuite
  = SimulationApplication
      {haddock_workaround_ :: ()
haddock_workaround_ = (), robotSoftwareSuite :: RobotSoftwareSuiteProperty
robotSoftwareSuite = RobotSoftwareSuiteProperty
robotSoftwareSuite,
       simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
simulationSoftwareSuite = SimulationSoftwareSuiteProperty
simulationSoftwareSuite,
       currentRevisionId :: Maybe (Value Text)
currentRevisionId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, environment :: Maybe (Value Text)
environment = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       name :: Maybe (Value Text)
name = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, renderingEngine :: Maybe RenderingEngineProperty
renderingEngine = Maybe RenderingEngineProperty
forall a. Maybe a
Prelude.Nothing,
       sources :: Maybe [SourceConfigProperty]
sources = Maybe [SourceConfigProperty]
forall a. Maybe a
Prelude.Nothing, tags :: Maybe (Map Text (Value Text))
tags = Maybe (Map Text (Value Text))
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties SimulationApplication where
  toResourceProperties :: SimulationApplication -> ResourceProperties
toResourceProperties SimulationApplication {Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RenderingEngineProperty
()
RobotSoftwareSuiteProperty
SimulationSoftwareSuiteProperty
haddock_workaround_ :: SimulationApplication -> ()
currentRevisionId :: SimulationApplication -> Maybe (Value Text)
environment :: SimulationApplication -> Maybe (Value Text)
name :: SimulationApplication -> Maybe (Value Text)
renderingEngine :: SimulationApplication -> Maybe RenderingEngineProperty
robotSoftwareSuite :: SimulationApplication -> RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationApplication -> SimulationSoftwareSuiteProperty
sources :: SimulationApplication -> Maybe [SourceConfigProperty]
tags :: SimulationApplication -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::RoboMaker::SimulationApplication",
         supportsTags :: Bool
supportsTags = Bool
Prelude.True,
         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
"RobotSoftwareSuite" Key -> RobotSoftwareSuiteProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= RobotSoftwareSuiteProperty
robotSoftwareSuite,
                            Key
"SimulationSoftwareSuite" Key -> SimulationSoftwareSuiteProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= SimulationSoftwareSuiteProperty
simulationSoftwareSuite]
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [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
"CurrentRevisionId" (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)
currentRevisionId,
                               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
"Environment" (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)
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
"Name" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
name,
                               Key -> RenderingEngineProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RenderingEngine" (RenderingEngineProperty -> (Key, Value))
-> Maybe RenderingEngineProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RenderingEngineProperty
renderingEngine,
                               Key -> [SourceConfigProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Sources" ([SourceConfigProperty] -> (Key, Value))
-> Maybe [SourceConfigProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [SourceConfigProperty]
sources,
                               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
"Tags" (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))
tags]))}
instance JSON.ToJSON SimulationApplication where
  toJSON :: SimulationApplication -> Value
toJSON SimulationApplication {Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RenderingEngineProperty
()
RobotSoftwareSuiteProperty
SimulationSoftwareSuiteProperty
haddock_workaround_ :: SimulationApplication -> ()
currentRevisionId :: SimulationApplication -> Maybe (Value Text)
environment :: SimulationApplication -> Maybe (Value Text)
name :: SimulationApplication -> Maybe (Value Text)
renderingEngine :: SimulationApplication -> Maybe RenderingEngineProperty
robotSoftwareSuite :: SimulationApplication -> RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationApplication -> SimulationSoftwareSuiteProperty
sources :: SimulationApplication -> Maybe [SourceConfigProperty]
tags :: SimulationApplication -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (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
"RobotSoftwareSuite" Key -> RobotSoftwareSuiteProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= RobotSoftwareSuiteProperty
robotSoftwareSuite,
               Key
"SimulationSoftwareSuite" Key -> SimulationSoftwareSuiteProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= SimulationSoftwareSuiteProperty
simulationSoftwareSuite]
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [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
"CurrentRevisionId" (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)
currentRevisionId,
                  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
"Environment" (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)
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
"Name" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
name,
                  Key -> RenderingEngineProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RenderingEngine" (RenderingEngineProperty -> (Key, Value))
-> Maybe RenderingEngineProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RenderingEngineProperty
renderingEngine,
                  Key -> [SourceConfigProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Sources" ([SourceConfigProperty] -> (Key, Value))
-> Maybe [SourceConfigProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [SourceConfigProperty]
sources,
                  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
"Tags" (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))
tags])))
instance Property "CurrentRevisionId" SimulationApplication where
  type PropertyType "CurrentRevisionId" SimulationApplication = Value Prelude.Text
  set :: PropertyType "CurrentRevisionId" SimulationApplication
-> SimulationApplication -> SimulationApplication
set PropertyType "CurrentRevisionId" SimulationApplication
newValue SimulationApplication {Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RenderingEngineProperty
()
RobotSoftwareSuiteProperty
SimulationSoftwareSuiteProperty
haddock_workaround_ :: SimulationApplication -> ()
currentRevisionId :: SimulationApplication -> Maybe (Value Text)
environment :: SimulationApplication -> Maybe (Value Text)
name :: SimulationApplication -> Maybe (Value Text)
renderingEngine :: SimulationApplication -> Maybe RenderingEngineProperty
robotSoftwareSuite :: SimulationApplication -> RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationApplication -> SimulationSoftwareSuiteProperty
sources :: SimulationApplication -> Maybe [SourceConfigProperty]
tags :: SimulationApplication -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
    = SimulationApplication
        {currentRevisionId :: Maybe (Value Text)
currentRevisionId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CurrentRevisionId" SimulationApplication
Value Text
newValue, Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RenderingEngineProperty
()
RobotSoftwareSuiteProperty
SimulationSoftwareSuiteProperty
haddock_workaround_ :: ()
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
instance Property "Environment" SimulationApplication where
  type PropertyType "Environment" SimulationApplication = Value Prelude.Text
  set :: PropertyType "Environment" SimulationApplication
-> SimulationApplication -> SimulationApplication
set PropertyType "Environment" SimulationApplication
newValue SimulationApplication {Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RenderingEngineProperty
()
RobotSoftwareSuiteProperty
SimulationSoftwareSuiteProperty
haddock_workaround_ :: SimulationApplication -> ()
currentRevisionId :: SimulationApplication -> Maybe (Value Text)
environment :: SimulationApplication -> Maybe (Value Text)
name :: SimulationApplication -> Maybe (Value Text)
renderingEngine :: SimulationApplication -> Maybe RenderingEngineProperty
robotSoftwareSuite :: SimulationApplication -> RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationApplication -> SimulationSoftwareSuiteProperty
sources :: SimulationApplication -> Maybe [SourceConfigProperty]
tags :: SimulationApplication -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
    = SimulationApplication {environment :: Maybe (Value Text)
environment = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Environment" SimulationApplication
Value Text
newValue, Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RenderingEngineProperty
()
RobotSoftwareSuiteProperty
SimulationSoftwareSuiteProperty
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
instance Property "Name" SimulationApplication where
  type PropertyType "Name" SimulationApplication = Value Prelude.Text
  set :: PropertyType "Name" SimulationApplication
-> SimulationApplication -> SimulationApplication
set PropertyType "Name" SimulationApplication
newValue SimulationApplication {Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RenderingEngineProperty
()
RobotSoftwareSuiteProperty
SimulationSoftwareSuiteProperty
haddock_workaround_ :: SimulationApplication -> ()
currentRevisionId :: SimulationApplication -> Maybe (Value Text)
environment :: SimulationApplication -> Maybe (Value Text)
name :: SimulationApplication -> Maybe (Value Text)
renderingEngine :: SimulationApplication -> Maybe RenderingEngineProperty
robotSoftwareSuite :: SimulationApplication -> RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationApplication -> SimulationSoftwareSuiteProperty
sources :: SimulationApplication -> Maybe [SourceConfigProperty]
tags :: SimulationApplication -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
    = SimulationApplication {name :: Maybe (Value Text)
name = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Name" SimulationApplication
Value Text
newValue, Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RenderingEngineProperty
()
RobotSoftwareSuiteProperty
SimulationSoftwareSuiteProperty
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
instance Property "RenderingEngine" SimulationApplication where
  type PropertyType "RenderingEngine" SimulationApplication = RenderingEngineProperty
  set :: PropertyType "RenderingEngine" SimulationApplication
-> SimulationApplication -> SimulationApplication
set PropertyType "RenderingEngine" SimulationApplication
newValue SimulationApplication {Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RenderingEngineProperty
()
RobotSoftwareSuiteProperty
SimulationSoftwareSuiteProperty
haddock_workaround_ :: SimulationApplication -> ()
currentRevisionId :: SimulationApplication -> Maybe (Value Text)
environment :: SimulationApplication -> Maybe (Value Text)
name :: SimulationApplication -> Maybe (Value Text)
renderingEngine :: SimulationApplication -> Maybe RenderingEngineProperty
robotSoftwareSuite :: SimulationApplication -> RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationApplication -> SimulationSoftwareSuiteProperty
sources :: SimulationApplication -> Maybe [SourceConfigProperty]
tags :: SimulationApplication -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
    = SimulationApplication
        {renderingEngine :: Maybe RenderingEngineProperty
renderingEngine = RenderingEngineProperty -> Maybe RenderingEngineProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "RenderingEngine" SimulationApplication
RenderingEngineProperty
newValue, Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
RobotSoftwareSuiteProperty
SimulationSoftwareSuiteProperty
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
instance Property "RobotSoftwareSuite" SimulationApplication where
  type PropertyType "RobotSoftwareSuite" SimulationApplication = RobotSoftwareSuiteProperty
  set :: PropertyType "RobotSoftwareSuite" SimulationApplication
-> SimulationApplication -> SimulationApplication
set PropertyType "RobotSoftwareSuite" SimulationApplication
newValue SimulationApplication {Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RenderingEngineProperty
()
RobotSoftwareSuiteProperty
SimulationSoftwareSuiteProperty
haddock_workaround_ :: SimulationApplication -> ()
currentRevisionId :: SimulationApplication -> Maybe (Value Text)
environment :: SimulationApplication -> Maybe (Value Text)
name :: SimulationApplication -> Maybe (Value Text)
renderingEngine :: SimulationApplication -> Maybe RenderingEngineProperty
robotSoftwareSuite :: SimulationApplication -> RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationApplication -> SimulationSoftwareSuiteProperty
sources :: SimulationApplication -> Maybe [SourceConfigProperty]
tags :: SimulationApplication -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
    = SimulationApplication {robotSoftwareSuite :: RobotSoftwareSuiteProperty
robotSoftwareSuite = PropertyType "RobotSoftwareSuite" SimulationApplication
RobotSoftwareSuiteProperty
newValue, Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RenderingEngineProperty
()
SimulationSoftwareSuiteProperty
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
instance Property "SimulationSoftwareSuite" SimulationApplication where
  type PropertyType "SimulationSoftwareSuite" SimulationApplication = SimulationSoftwareSuiteProperty
  set :: PropertyType "SimulationSoftwareSuite" SimulationApplication
-> SimulationApplication -> SimulationApplication
set PropertyType "SimulationSoftwareSuite" SimulationApplication
newValue SimulationApplication {Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RenderingEngineProperty
()
RobotSoftwareSuiteProperty
SimulationSoftwareSuiteProperty
haddock_workaround_ :: SimulationApplication -> ()
currentRevisionId :: SimulationApplication -> Maybe (Value Text)
environment :: SimulationApplication -> Maybe (Value Text)
name :: SimulationApplication -> Maybe (Value Text)
renderingEngine :: SimulationApplication -> Maybe RenderingEngineProperty
robotSoftwareSuite :: SimulationApplication -> RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationApplication -> SimulationSoftwareSuiteProperty
sources :: SimulationApplication -> Maybe [SourceConfigProperty]
tags :: SimulationApplication -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
    = SimulationApplication {simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
simulationSoftwareSuite = PropertyType "SimulationSoftwareSuite" SimulationApplication
SimulationSoftwareSuiteProperty
newValue, Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RenderingEngineProperty
()
RobotSoftwareSuiteProperty
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
instance Property "Sources" SimulationApplication where
  type PropertyType "Sources" SimulationApplication = [SourceConfigProperty]
  set :: PropertyType "Sources" SimulationApplication
-> SimulationApplication -> SimulationApplication
set PropertyType "Sources" SimulationApplication
newValue SimulationApplication {Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RenderingEngineProperty
()
RobotSoftwareSuiteProperty
SimulationSoftwareSuiteProperty
haddock_workaround_ :: SimulationApplication -> ()
currentRevisionId :: SimulationApplication -> Maybe (Value Text)
environment :: SimulationApplication -> Maybe (Value Text)
name :: SimulationApplication -> Maybe (Value Text)
renderingEngine :: SimulationApplication -> Maybe RenderingEngineProperty
robotSoftwareSuite :: SimulationApplication -> RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationApplication -> SimulationSoftwareSuiteProperty
sources :: SimulationApplication -> Maybe [SourceConfigProperty]
tags :: SimulationApplication -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
    = SimulationApplication {sources :: Maybe [SourceConfigProperty]
sources = [SourceConfigProperty] -> Maybe [SourceConfigProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [SourceConfigProperty]
PropertyType "Sources" SimulationApplication
newValue, Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RenderingEngineProperty
()
RobotSoftwareSuiteProperty
SimulationSoftwareSuiteProperty
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
tags :: Maybe (Map Text (Value Text))
..}
instance Property "Tags" SimulationApplication where
  type PropertyType "Tags" SimulationApplication = Prelude.Map Prelude.Text (Value Prelude.Text)
  set :: PropertyType "Tags" SimulationApplication
-> SimulationApplication -> SimulationApplication
set PropertyType "Tags" SimulationApplication
newValue SimulationApplication {Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RenderingEngineProperty
()
RobotSoftwareSuiteProperty
SimulationSoftwareSuiteProperty
haddock_workaround_ :: SimulationApplication -> ()
currentRevisionId :: SimulationApplication -> Maybe (Value Text)
environment :: SimulationApplication -> Maybe (Value Text)
name :: SimulationApplication -> Maybe (Value Text)
renderingEngine :: SimulationApplication -> Maybe RenderingEngineProperty
robotSoftwareSuite :: SimulationApplication -> RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationApplication -> SimulationSoftwareSuiteProperty
sources :: SimulationApplication -> Maybe [SourceConfigProperty]
tags :: SimulationApplication -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
    = SimulationApplication {tags :: Maybe (Map Text (Value Text))
tags = 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 "Tags" SimulationApplication
newValue, Maybe [SourceConfigProperty]
Maybe (Value Text)
Maybe RenderingEngineProperty
()
RobotSoftwareSuiteProperty
SimulationSoftwareSuiteProperty
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
renderingEngine :: Maybe RenderingEngineProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty
simulationSoftwareSuite :: SimulationSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
..}