module Stratosphere.RoboMaker.RobotApplication (
module Exports, RobotApplication(..), mkRobotApplication
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.RoboMaker.RobotApplication.RobotSoftwareSuiteProperty as Exports
import {-# SOURCE #-} Stratosphere.RoboMaker.RobotApplication.SourceConfigProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data RobotApplication
=
RobotApplication {RobotApplication -> ()
haddock_workaround_ :: (),
RobotApplication -> Maybe (Value Text)
currentRevisionId :: (Prelude.Maybe (Value Prelude.Text)),
RobotApplication -> Maybe (Value Text)
environment :: (Prelude.Maybe (Value Prelude.Text)),
RobotApplication -> Maybe (Value Text)
name :: (Prelude.Maybe (Value Prelude.Text)),
RobotApplication -> RobotSoftwareSuiteProperty
robotSoftwareSuite :: RobotSoftwareSuiteProperty,
RobotApplication -> Maybe [SourceConfigProperty]
sources :: (Prelude.Maybe [SourceConfigProperty]),
RobotApplication -> Maybe (Map Text (Value Text))
tags :: (Prelude.Maybe (Prelude.Map Prelude.Text (Value Prelude.Text)))}
deriving stock (RobotApplication -> RobotApplication -> Bool
(RobotApplication -> RobotApplication -> Bool)
-> (RobotApplication -> RobotApplication -> Bool)
-> Eq RobotApplication
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: RobotApplication -> RobotApplication -> Bool
== :: RobotApplication -> RobotApplication -> Bool
$c/= :: RobotApplication -> RobotApplication -> Bool
/= :: RobotApplication -> RobotApplication -> Bool
Prelude.Eq, Int -> RobotApplication -> ShowS
[RobotApplication] -> ShowS
RobotApplication -> String
(Int -> RobotApplication -> ShowS)
-> (RobotApplication -> String)
-> ([RobotApplication] -> ShowS)
-> Show RobotApplication
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> RobotApplication -> ShowS
showsPrec :: Int -> RobotApplication -> ShowS
$cshow :: RobotApplication -> String
show :: RobotApplication -> String
$cshowList :: [RobotApplication] -> ShowS
showList :: [RobotApplication] -> ShowS
Prelude.Show)
mkRobotApplication ::
RobotSoftwareSuiteProperty -> RobotApplication
mkRobotApplication :: RobotSoftwareSuiteProperty -> RobotApplication
mkRobotApplication RobotSoftwareSuiteProperty
robotSoftwareSuite
= RobotApplication
{haddock_workaround_ :: ()
haddock_workaround_ = (), robotSoftwareSuite :: RobotSoftwareSuiteProperty
robotSoftwareSuite = RobotSoftwareSuiteProperty
robotSoftwareSuite,
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, 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 RobotApplication where
toResourceProperties :: RobotApplication -> ResourceProperties
toResourceProperties RobotApplication {Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
RobotSoftwareSuiteProperty
haddock_workaround_ :: RobotApplication -> ()
currentRevisionId :: RobotApplication -> Maybe (Value Text)
environment :: RobotApplication -> Maybe (Value Text)
name :: RobotApplication -> Maybe (Value Text)
robotSoftwareSuite :: RobotApplication -> RobotSoftwareSuiteProperty
sources :: RobotApplication -> Maybe [SourceConfigProperty]
tags :: RobotApplication -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::RoboMaker::RobotApplication",
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]
([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 -> [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 RobotApplication where
toJSON :: RobotApplication -> Value
toJSON RobotApplication {Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
RobotSoftwareSuiteProperty
haddock_workaround_ :: RobotApplication -> ()
currentRevisionId :: RobotApplication -> Maybe (Value Text)
environment :: RobotApplication -> Maybe (Value Text)
name :: RobotApplication -> Maybe (Value Text)
robotSoftwareSuite :: RobotApplication -> RobotSoftwareSuiteProperty
sources :: RobotApplication -> Maybe [SourceConfigProperty]
tags :: RobotApplication -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
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]
([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 -> [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" RobotApplication where
type PropertyType "CurrentRevisionId" RobotApplication = Value Prelude.Text
set :: PropertyType "CurrentRevisionId" RobotApplication
-> RobotApplication -> RobotApplication
set PropertyType "CurrentRevisionId" RobotApplication
newValue RobotApplication {Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
RobotSoftwareSuiteProperty
haddock_workaround_ :: RobotApplication -> ()
currentRevisionId :: RobotApplication -> Maybe (Value Text)
environment :: RobotApplication -> Maybe (Value Text)
name :: RobotApplication -> Maybe (Value Text)
robotSoftwareSuite :: RobotApplication -> RobotSoftwareSuiteProperty
sources :: RobotApplication -> Maybe [SourceConfigProperty]
tags :: RobotApplication -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
= RobotApplication {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" RobotApplication
Value Text
newValue, Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
RobotSoftwareSuiteProperty
haddock_workaround_ :: ()
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
instance Property "Environment" RobotApplication where
type PropertyType "Environment" RobotApplication = Value Prelude.Text
set :: PropertyType "Environment" RobotApplication
-> RobotApplication -> RobotApplication
set PropertyType "Environment" RobotApplication
newValue RobotApplication {Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
RobotSoftwareSuiteProperty
haddock_workaround_ :: RobotApplication -> ()
currentRevisionId :: RobotApplication -> Maybe (Value Text)
environment :: RobotApplication -> Maybe (Value Text)
name :: RobotApplication -> Maybe (Value Text)
robotSoftwareSuite :: RobotApplication -> RobotSoftwareSuiteProperty
sources :: RobotApplication -> Maybe [SourceConfigProperty]
tags :: RobotApplication -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
= RobotApplication {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" RobotApplication
Value Text
newValue, Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
RobotSoftwareSuiteProperty
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
name :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
name :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
instance Property "Name" RobotApplication where
type PropertyType "Name" RobotApplication = Value Prelude.Text
set :: PropertyType "Name" RobotApplication
-> RobotApplication -> RobotApplication
set PropertyType "Name" RobotApplication
newValue RobotApplication {Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
RobotSoftwareSuiteProperty
haddock_workaround_ :: RobotApplication -> ()
currentRevisionId :: RobotApplication -> Maybe (Value Text)
environment :: RobotApplication -> Maybe (Value Text)
name :: RobotApplication -> Maybe (Value Text)
robotSoftwareSuite :: RobotApplication -> RobotSoftwareSuiteProperty
sources :: RobotApplication -> Maybe [SourceConfigProperty]
tags :: RobotApplication -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
= RobotApplication {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" RobotApplication
Value Text
newValue, Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
RobotSoftwareSuiteProperty
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
instance Property "RobotSoftwareSuite" RobotApplication where
type PropertyType "RobotSoftwareSuite" RobotApplication = RobotSoftwareSuiteProperty
set :: PropertyType "RobotSoftwareSuite" RobotApplication
-> RobotApplication -> RobotApplication
set PropertyType "RobotSoftwareSuite" RobotApplication
newValue RobotApplication {Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
RobotSoftwareSuiteProperty
haddock_workaround_ :: RobotApplication -> ()
currentRevisionId :: RobotApplication -> Maybe (Value Text)
environment :: RobotApplication -> Maybe (Value Text)
name :: RobotApplication -> Maybe (Value Text)
robotSoftwareSuite :: RobotApplication -> RobotSoftwareSuiteProperty
sources :: RobotApplication -> Maybe [SourceConfigProperty]
tags :: RobotApplication -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
= RobotApplication {robotSoftwareSuite :: RobotSoftwareSuiteProperty
robotSoftwareSuite = PropertyType "RobotSoftwareSuite" RobotApplication
RobotSoftwareSuiteProperty
newValue, Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
instance Property "Sources" RobotApplication where
type PropertyType "Sources" RobotApplication = [SourceConfigProperty]
set :: PropertyType "Sources" RobotApplication
-> RobotApplication -> RobotApplication
set PropertyType "Sources" RobotApplication
newValue RobotApplication {Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
RobotSoftwareSuiteProperty
haddock_workaround_ :: RobotApplication -> ()
currentRevisionId :: RobotApplication -> Maybe (Value Text)
environment :: RobotApplication -> Maybe (Value Text)
name :: RobotApplication -> Maybe (Value Text)
robotSoftwareSuite :: RobotApplication -> RobotSoftwareSuiteProperty
sources :: RobotApplication -> Maybe [SourceConfigProperty]
tags :: RobotApplication -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
= RobotApplication {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" RobotApplication
newValue, Maybe (Map Text (Value Text))
Maybe (Value Text)
()
RobotSoftwareSuiteProperty
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
tags :: Maybe (Map Text (Value Text))
..}
instance Property "Tags" RobotApplication where
type PropertyType "Tags" RobotApplication = Prelude.Map Prelude.Text (Value Prelude.Text)
set :: PropertyType "Tags" RobotApplication
-> RobotApplication -> RobotApplication
set PropertyType "Tags" RobotApplication
newValue RobotApplication {Maybe [SourceConfigProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
RobotSoftwareSuiteProperty
haddock_workaround_ :: RobotApplication -> ()
currentRevisionId :: RobotApplication -> Maybe (Value Text)
environment :: RobotApplication -> Maybe (Value Text)
name :: RobotApplication -> Maybe (Value Text)
robotSoftwareSuite :: RobotApplication -> RobotSoftwareSuiteProperty
sources :: RobotApplication -> Maybe [SourceConfigProperty]
tags :: RobotApplication -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
tags :: Maybe (Map Text (Value Text))
..}
= RobotApplication {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" RobotApplication
newValue, Maybe [SourceConfigProperty]
Maybe (Value Text)
()
RobotSoftwareSuiteProperty
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
haddock_workaround_ :: ()
currentRevisionId :: Maybe (Value Text)
environment :: Maybe (Value Text)
name :: Maybe (Value Text)
robotSoftwareSuite :: RobotSoftwareSuiteProperty
sources :: Maybe [SourceConfigProperty]
..}