module Stratosphere.Omics.Workflow (
module Exports, Workflow(..), mkWorkflow
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.Omics.Workflow.ContainerRegistryMapProperty as Exports
import {-# SOURCE #-} Stratosphere.Omics.Workflow.DefinitionRepositoryProperty as Exports
import {-# SOURCE #-} Stratosphere.Omics.Workflow.WorkflowParameterProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data Workflow
=
Workflow {Workflow -> ()
haddock_workaround_ :: (),
Workflow -> Maybe (Value Text)
accelerators :: (Prelude.Maybe (Value Prelude.Text)),
Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMap :: (Prelude.Maybe ContainerRegistryMapProperty),
Workflow -> Maybe (Value Text)
containerRegistryMapUri :: (Prelude.Maybe (Value Prelude.Text)),
Workflow -> Maybe DefinitionRepositoryProperty
definitionRepository :: (Prelude.Maybe DefinitionRepositoryProperty),
Workflow -> Maybe (Value Text)
definitionUri :: (Prelude.Maybe (Value Prelude.Text)),
Workflow -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
Workflow -> Maybe (Value Text)
engine :: (Prelude.Maybe (Value Prelude.Text)),
Workflow -> Maybe (Value Text)
main :: (Prelude.Maybe (Value Prelude.Text)),
Workflow -> Maybe (Value Text)
name :: (Prelude.Maybe (Value Prelude.Text)),
Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplate :: (Prelude.Maybe (Prelude.Map Prelude.Text WorkflowParameterProperty)),
Workflow -> Maybe (Value Text)
parameterTemplatePath :: (Prelude.Maybe (Value Prelude.Text)),
Workflow -> Maybe (Value Double)
storageCapacity :: (Prelude.Maybe (Value Prelude.Double)),
Workflow -> Maybe (Value Text)
storageType :: (Prelude.Maybe (Value Prelude.Text)),
Workflow -> Maybe (Map Text (Value Text))
tags :: (Prelude.Maybe (Prelude.Map Prelude.Text (Value Prelude.Text))),
Workflow -> Maybe (Value Text)
workflowBucketOwnerId :: (Prelude.Maybe (Value Prelude.Text)),
Workflow -> Maybe (Value Text)
readmeMarkdown :: (Prelude.Maybe (Value Prelude.Text)),
Workflow -> Maybe (Value Text)
readmePath :: (Prelude.Maybe (Value Prelude.Text)),
Workflow -> Maybe (Value Text)
readmeUri :: (Prelude.Maybe (Value Prelude.Text))}
deriving stock (Workflow -> Workflow -> Bool
(Workflow -> Workflow -> Bool)
-> (Workflow -> Workflow -> Bool) -> Eq Workflow
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: Workflow -> Workflow -> Bool
== :: Workflow -> Workflow -> Bool
$c/= :: Workflow -> Workflow -> Bool
/= :: Workflow -> Workflow -> Bool
Prelude.Eq, Int -> Workflow -> ShowS
[Workflow] -> ShowS
Workflow -> String
(Int -> Workflow -> ShowS)
-> (Workflow -> String) -> ([Workflow] -> ShowS) -> Show Workflow
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> Workflow -> ShowS
showsPrec :: Int -> Workflow -> ShowS
$cshow :: Workflow -> String
show :: Workflow -> String
$cshowList :: [Workflow] -> ShowS
showList :: [Workflow] -> ShowS
Prelude.Show)
mkWorkflow :: Workflow
mkWorkflow :: Workflow
mkWorkflow
= Workflow
{haddock_workaround_ :: ()
haddock_workaround_ = (), accelerators :: Maybe (Value Text)
accelerators = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMap = Maybe ContainerRegistryMapProperty
forall a. Maybe a
Prelude.Nothing,
containerRegistryMapUri :: Maybe (Value Text)
containerRegistryMapUri = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionRepository = Maybe DefinitionRepositoryProperty
forall a. Maybe a
Prelude.Nothing,
definitionUri :: Maybe (Value Text)
definitionUri = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
engine :: Maybe (Value Text)
engine = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, main :: Maybe (Value Text)
main = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
name :: Maybe (Value Text)
name = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplate = Maybe (Map Text WorkflowParameterProperty)
forall a. Maybe a
Prelude.Nothing,
parameterTemplatePath :: Maybe (Value Text)
parameterTemplatePath = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
storageCapacity :: Maybe (Value Double)
storageCapacity = Maybe (Value Double)
forall a. Maybe a
Prelude.Nothing, storageType :: Maybe (Value Text)
storageType = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
tags :: Maybe (Map Text (Value Text))
tags = Maybe (Map Text (Value Text))
forall a. Maybe a
Prelude.Nothing, workflowBucketOwnerId :: Maybe (Value Text)
workflowBucketOwnerId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
readmeMarkdown :: Maybe (Value Text)
readmeMarkdown = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, readmePath :: Maybe (Value Text)
readmePath = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
readmeUri :: Maybe (Value Text)
readmeUri = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties Workflow where
toResourceProperties :: Workflow -> ResourceProperties
toResourceProperties Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::Omics::Workflow", supportsTags :: Bool
supportsTags = Bool
Prelude.True,
properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
([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
"Accelerators" (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)
accelerators,
Key -> ContainerRegistryMapProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ContainerRegistryMap" (ContainerRegistryMapProperty -> (Key, Value))
-> Maybe ContainerRegistryMapProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ContainerRegistryMapProperty
containerRegistryMap,
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
"ContainerRegistryMapUri"
(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)
containerRegistryMapUri,
Key -> DefinitionRepositoryProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DefinitionRepository" (DefinitionRepositoryProperty -> (Key, Value))
-> Maybe DefinitionRepositoryProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe DefinitionRepositoryProperty
definitionRepository,
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
"DefinitionUri" (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)
definitionUri,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Description" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
description,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Engine" (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)
engine,
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
"Main" (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)
main,
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 -> Map Text WorkflowParameterProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ParameterTemplate" (Map Text WorkflowParameterProperty -> (Key, Value))
-> Maybe (Map Text WorkflowParameterProperty) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Map Text WorkflowParameterProperty)
parameterTemplate,
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
"ParameterTemplatePath"
(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)
parameterTemplatePath,
Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"StorageCapacity" (Value Double -> (Key, Value))
-> Maybe (Value Double) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Double)
storageCapacity,
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
"StorageType" (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)
storageType,
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,
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
"WorkflowBucketOwnerId"
(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)
workflowBucketOwnerId,
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
"readmeMarkdown" (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)
readmeMarkdown,
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
"readmePath" (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)
readmePath,
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
"readmeUri" (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)
readmeUri])}
instance JSON.ToJSON Workflow where
toJSON :: Workflow -> Value
toJSON Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= [(Key, Value)] -> Value
JSON.object
([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
([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
"Accelerators" (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)
accelerators,
Key -> ContainerRegistryMapProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ContainerRegistryMap" (ContainerRegistryMapProperty -> (Key, Value))
-> Maybe ContainerRegistryMapProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ContainerRegistryMapProperty
containerRegistryMap,
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
"ContainerRegistryMapUri"
(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)
containerRegistryMapUri,
Key -> DefinitionRepositoryProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DefinitionRepository" (DefinitionRepositoryProperty -> (Key, Value))
-> Maybe DefinitionRepositoryProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe DefinitionRepositoryProperty
definitionRepository,
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
"DefinitionUri" (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)
definitionUri,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Description" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
description,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Engine" (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)
engine,
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
"Main" (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)
main,
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 -> Map Text WorkflowParameterProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ParameterTemplate" (Map Text WorkflowParameterProperty -> (Key, Value))
-> Maybe (Map Text WorkflowParameterProperty) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Map Text WorkflowParameterProperty)
parameterTemplate,
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
"ParameterTemplatePath"
(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)
parameterTemplatePath,
Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"StorageCapacity" (Value Double -> (Key, Value))
-> Maybe (Value Double) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Double)
storageCapacity,
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
"StorageType" (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)
storageType,
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,
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
"WorkflowBucketOwnerId"
(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)
workflowBucketOwnerId,
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
"readmeMarkdown" (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)
readmeMarkdown,
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
"readmePath" (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)
readmePath,
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
"readmeUri" (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)
readmeUri]))
instance Property "Accelerators" Workflow where
type PropertyType "Accelerators" Workflow = Value Prelude.Text
set :: PropertyType "Accelerators" Workflow -> Workflow -> Workflow
set PropertyType "Accelerators" Workflow
newValue Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= Workflow {accelerators :: Maybe (Value Text)
accelerators = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Accelerators" Workflow
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: ()
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
haddock_workaround_ :: ()
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
instance Property "ContainerRegistryMap" Workflow where
type PropertyType "ContainerRegistryMap" Workflow = ContainerRegistryMapProperty
set :: PropertyType "ContainerRegistryMap" Workflow
-> Workflow -> Workflow
set PropertyType "ContainerRegistryMap" Workflow
newValue Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= Workflow {containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMap = ContainerRegistryMapProperty -> Maybe ContainerRegistryMapProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ContainerRegistryMap" Workflow
ContainerRegistryMapProperty
newValue, Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
instance Property "ContainerRegistryMapUri" Workflow where
type PropertyType "ContainerRegistryMapUri" Workflow = Value Prelude.Text
set :: PropertyType "ContainerRegistryMapUri" Workflow
-> Workflow -> Workflow
set PropertyType "ContainerRegistryMapUri" Workflow
newValue Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= Workflow {containerRegistryMapUri :: Maybe (Value Text)
containerRegistryMapUri = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ContainerRegistryMapUri" Workflow
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
instance Property "DefinitionRepository" Workflow where
type PropertyType "DefinitionRepository" Workflow = DefinitionRepositoryProperty
set :: PropertyType "DefinitionRepository" Workflow
-> Workflow -> Workflow
set PropertyType "DefinitionRepository" Workflow
newValue Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= Workflow {definitionRepository :: Maybe DefinitionRepositoryProperty
definitionRepository = DefinitionRepositoryProperty -> Maybe DefinitionRepositoryProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DefinitionRepository" Workflow
DefinitionRepositoryProperty
newValue, Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
()
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
instance Property "DefinitionUri" Workflow where
type PropertyType "DefinitionUri" Workflow = Value Prelude.Text
set :: PropertyType "DefinitionUri" Workflow -> Workflow -> Workflow
set PropertyType "DefinitionUri" Workflow
newValue Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= Workflow {definitionUri :: Maybe (Value Text)
definitionUri = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DefinitionUri" Workflow
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
instance Property "Description" Workflow where
type PropertyType "Description" Workflow = Value Prelude.Text
set :: PropertyType "Description" Workflow -> Workflow -> Workflow
set PropertyType "Description" Workflow
newValue Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= Workflow {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" Workflow
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
instance Property "Engine" Workflow where
type PropertyType "Engine" Workflow = Value Prelude.Text
set :: PropertyType "Engine" Workflow -> Workflow -> Workflow
set PropertyType "Engine" Workflow
newValue Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= Workflow {engine :: Maybe (Value Text)
engine = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Engine" Workflow
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
instance Property "Main" Workflow where
type PropertyType "Main" Workflow = Value Prelude.Text
set :: PropertyType "Main" Workflow -> Workflow -> Workflow
set PropertyType "Main" Workflow
newValue Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= Workflow {main :: Maybe (Value Text)
main = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Main" Workflow
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
instance Property "Name" Workflow where
type PropertyType "Name" Workflow = Value Prelude.Text
set :: PropertyType "Name" Workflow -> Workflow -> Workflow
set PropertyType "Name" Workflow
newValue Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= Workflow {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" Workflow
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
instance Property "ParameterTemplate" Workflow where
type PropertyType "ParameterTemplate" Workflow = Prelude.Map Prelude.Text WorkflowParameterProperty
set :: PropertyType "ParameterTemplate" Workflow -> Workflow -> Workflow
set PropertyType "ParameterTemplate" Workflow
newValue Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= Workflow {parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplate = Map Text WorkflowParameterProperty
-> Maybe (Map Text WorkflowParameterProperty)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure Map Text WorkflowParameterProperty
PropertyType "ParameterTemplate" Workflow
newValue, Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
instance Property "ParameterTemplatePath" Workflow where
type PropertyType "ParameterTemplatePath" Workflow = Value Prelude.Text
set :: PropertyType "ParameterTemplatePath" Workflow
-> Workflow -> Workflow
set PropertyType "ParameterTemplatePath" Workflow
newValue Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= Workflow {parameterTemplatePath :: Maybe (Value Text)
parameterTemplatePath = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ParameterTemplatePath" Workflow
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
instance Property "StorageCapacity" Workflow where
type PropertyType "StorageCapacity" Workflow = Value Prelude.Double
set :: PropertyType "StorageCapacity" Workflow -> Workflow -> Workflow
set PropertyType "StorageCapacity" Workflow
newValue Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= Workflow {storageCapacity :: Maybe (Value Double)
storageCapacity = Value Double -> Maybe (Value Double)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "StorageCapacity" Workflow
Value Double
newValue, Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
instance Property "StorageType" Workflow where
type PropertyType "StorageType" Workflow = Value Prelude.Text
set :: PropertyType "StorageType" Workflow -> Workflow -> Workflow
set PropertyType "StorageType" Workflow
newValue Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= Workflow {storageType :: Maybe (Value Text)
storageType = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "StorageType" Workflow
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
instance Property "Tags" Workflow where
type PropertyType "Tags" Workflow = Prelude.Map Prelude.Text (Value Prelude.Text)
set :: PropertyType "Tags" Workflow -> Workflow -> Workflow
set PropertyType "Tags" Workflow
newValue Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= Workflow {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" Workflow
newValue, Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
instance Property "WorkflowBucketOwnerId" Workflow where
type PropertyType "WorkflowBucketOwnerId" Workflow = Value Prelude.Text
set :: PropertyType "WorkflowBucketOwnerId" Workflow
-> Workflow -> Workflow
set PropertyType "WorkflowBucketOwnerId" Workflow
newValue Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= Workflow {workflowBucketOwnerId :: Maybe (Value Text)
workflowBucketOwnerId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "WorkflowBucketOwnerId" Workflow
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
instance Property "readmeMarkdown" Workflow where
type PropertyType "readmeMarkdown" Workflow = Value Prelude.Text
set :: PropertyType "readmeMarkdown" Workflow -> Workflow -> Workflow
set PropertyType "readmeMarkdown" Workflow
newValue Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= Workflow {readmeMarkdown :: Maybe (Value Text)
readmeMarkdown = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "readmeMarkdown" Workflow
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
instance Property "readmePath" Workflow where
type PropertyType "readmePath" Workflow = Value Prelude.Text
set :: PropertyType "readmePath" Workflow -> Workflow -> Workflow
set PropertyType "readmePath" Workflow
newValue Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= Workflow {readmePath :: Maybe (Value Text)
readmePath = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "readmePath" Workflow
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
instance Property "readmeUri" Workflow where
type PropertyType "readmeUri" Workflow = Value Prelude.Text
set :: PropertyType "readmeUri" Workflow -> Workflow -> Workflow
set PropertyType "readmeUri" Workflow
newValue Workflow {Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: Workflow -> ()
accelerators :: Workflow -> Maybe (Value Text)
containerRegistryMap :: Workflow -> Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Workflow -> Maybe (Value Text)
definitionRepository :: Workflow -> Maybe DefinitionRepositoryProperty
definitionUri :: Workflow -> Maybe (Value Text)
description :: Workflow -> Maybe (Value Text)
engine :: Workflow -> Maybe (Value Text)
main :: Workflow -> Maybe (Value Text)
name :: Workflow -> Maybe (Value Text)
parameterTemplate :: Workflow -> Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Workflow -> Maybe (Value Text)
storageCapacity :: Workflow -> Maybe (Value Double)
storageType :: Workflow -> Maybe (Value Text)
tags :: Workflow -> Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Workflow -> Maybe (Value Text)
readmeMarkdown :: Workflow -> Maybe (Value Text)
readmePath :: Workflow -> Maybe (Value Text)
readmeUri :: Workflow -> Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
readmeUri :: Maybe (Value Text)
..}
= Workflow {readmeUri :: Maybe (Value Text)
readmeUri = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "readmeUri" Workflow
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (Map Text WorkflowParameterProperty)
Maybe (Value Double)
Maybe (Value Text)
Maybe ContainerRegistryMapProperty
Maybe DefinitionRepositoryProperty
()
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
haddock_workaround_ :: ()
accelerators :: Maybe (Value Text)
containerRegistryMap :: Maybe ContainerRegistryMapProperty
containerRegistryMapUri :: Maybe (Value Text)
definitionRepository :: Maybe DefinitionRepositoryProperty
definitionUri :: Maybe (Value Text)
description :: Maybe (Value Text)
engine :: Maybe (Value Text)
main :: Maybe (Value Text)
name :: Maybe (Value Text)
parameterTemplate :: Maybe (Map Text WorkflowParameterProperty)
parameterTemplatePath :: Maybe (Value Text)
storageCapacity :: Maybe (Value Double)
storageType :: Maybe (Value Text)
tags :: Maybe (Map Text (Value Text))
workflowBucketOwnerId :: Maybe (Value Text)
readmeMarkdown :: Maybe (Value Text)
readmePath :: Maybe (Value Text)
..}