module Stratosphere.CleanRooms.Collaboration (
module Exports, Collaboration(..), mkCollaboration
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.CleanRooms.Collaboration.DataEncryptionMetadataProperty as Exports
import {-# SOURCE #-} Stratosphere.CleanRooms.Collaboration.MLMemberAbilitiesProperty as Exports
import {-# SOURCE #-} Stratosphere.CleanRooms.Collaboration.MemberSpecificationProperty as Exports
import {-# SOURCE #-} Stratosphere.CleanRooms.Collaboration.PaymentConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data Collaboration
=
Collaboration {Collaboration -> ()
haddock_workaround_ :: (),
Collaboration -> Maybe (Value Text)
analyticsEngine :: (Prelude.Maybe (Value Prelude.Text)),
Collaboration -> Maybe (ValueList Text)
autoApprovedChangeTypes :: (Prelude.Maybe (ValueList Prelude.Text)),
Collaboration -> Value Text
creatorDisplayName :: (Value Prelude.Text),
Collaboration -> Maybe MLMemberAbilitiesProperty
creatorMLMemberAbilities :: (Prelude.Maybe MLMemberAbilitiesProperty),
Collaboration -> Maybe (ValueList Text)
creatorMemberAbilities :: (Prelude.Maybe (ValueList Prelude.Text)),
Collaboration -> Maybe PaymentConfigurationProperty
creatorPaymentConfiguration :: (Prelude.Maybe PaymentConfigurationProperty),
Collaboration -> Maybe DataEncryptionMetadataProperty
dataEncryptionMetadata :: (Prelude.Maybe DataEncryptionMetadataProperty),
Collaboration -> Value Text
description :: (Value Prelude.Text),
Collaboration -> Maybe (Value Text)
jobLogStatus :: (Prelude.Maybe (Value Prelude.Text)),
Collaboration -> Maybe [MemberSpecificationProperty]
members :: (Prelude.Maybe [MemberSpecificationProperty]),
Collaboration -> Value Text
name :: (Value Prelude.Text),
Collaboration -> Value Text
queryLogStatus :: (Value Prelude.Text),
Collaboration -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag])}
deriving stock (Collaboration -> Collaboration -> Bool
(Collaboration -> Collaboration -> Bool)
-> (Collaboration -> Collaboration -> Bool) -> Eq Collaboration
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: Collaboration -> Collaboration -> Bool
== :: Collaboration -> Collaboration -> Bool
$c/= :: Collaboration -> Collaboration -> Bool
/= :: Collaboration -> Collaboration -> Bool
Prelude.Eq, Int -> Collaboration -> ShowS
[Collaboration] -> ShowS
Collaboration -> String
(Int -> Collaboration -> ShowS)
-> (Collaboration -> String)
-> ([Collaboration] -> ShowS)
-> Show Collaboration
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> Collaboration -> ShowS
showsPrec :: Int -> Collaboration -> ShowS
$cshow :: Collaboration -> String
show :: Collaboration -> String
$cshowList :: [Collaboration] -> ShowS
showList :: [Collaboration] -> ShowS
Prelude.Show)
mkCollaboration ::
Value Prelude.Text
-> Value Prelude.Text
-> Value Prelude.Text -> Value Prelude.Text -> Collaboration
mkCollaboration :: Value Text
-> Value Text -> Value Text -> Value Text -> Collaboration
mkCollaboration Value Text
creatorDisplayName Value Text
description Value Text
name Value Text
queryLogStatus
= Collaboration
{haddock_workaround_ :: ()
haddock_workaround_ = (), creatorDisplayName :: Value Text
creatorDisplayName = Value Text
creatorDisplayName,
description :: Value Text
description = Value Text
description, name :: Value Text
name = Value Text
name,
queryLogStatus :: Value Text
queryLogStatus = Value Text
queryLogStatus, analyticsEngine :: Maybe (Value Text)
analyticsEngine = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
autoApprovedChangeTypes :: Maybe (ValueList Text)
autoApprovedChangeTypes = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing,
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMLMemberAbilities = Maybe MLMemberAbilitiesProperty
forall a. Maybe a
Prelude.Nothing,
creatorMemberAbilities :: Maybe (ValueList Text)
creatorMemberAbilities = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing,
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
creatorPaymentConfiguration = Maybe PaymentConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
dataEncryptionMetadata = Maybe DataEncryptionMetadataProperty
forall a. Maybe a
Prelude.Nothing,
jobLogStatus :: Maybe (Value Text)
jobLogStatus = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, members :: Maybe [MemberSpecificationProperty]
members = Maybe [MemberSpecificationProperty]
forall a. Maybe a
Prelude.Nothing,
tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties Collaboration where
toResourceProperties :: Collaboration -> ResourceProperties
toResourceProperties Collaboration {Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: Collaboration -> ()
analyticsEngine :: Collaboration -> Maybe (Value Text)
autoApprovedChangeTypes :: Collaboration -> Maybe (ValueList Text)
creatorDisplayName :: Collaboration -> Value Text
creatorMLMemberAbilities :: Collaboration -> Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Collaboration -> Maybe (ValueList Text)
creatorPaymentConfiguration :: Collaboration -> Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Collaboration -> Maybe DataEncryptionMetadataProperty
description :: Collaboration -> Value Text
jobLogStatus :: Collaboration -> Maybe (Value Text)
members :: Collaboration -> Maybe [MemberSpecificationProperty]
name :: Collaboration -> Value Text
queryLogStatus :: Collaboration -> Value Text
tags :: Collaboration -> Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::CleanRooms::Collaboration",
supportsTags :: Bool
supportsTags = Bool
Prelude.True,
properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
[Key
"CreatorDisplayName" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
creatorDisplayName,
Key
"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..= Value Text
description, Key
"Name" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
name,
Key
"QueryLogStatus" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
queryLogStatus]
([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
"AnalyticsEngine" (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)
analyticsEngine,
Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AutoApprovedChangeTypes"
(ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
autoApprovedChangeTypes,
Key -> MLMemberAbilitiesProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CreatorMLMemberAbilities"
(MLMemberAbilitiesProperty -> (Key, Value))
-> Maybe MLMemberAbilitiesProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe MLMemberAbilitiesProperty
creatorMLMemberAbilities,
Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CreatorMemberAbilities"
(ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
creatorMemberAbilities,
Key -> PaymentConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CreatorPaymentConfiguration"
(PaymentConfigurationProperty -> (Key, Value))
-> Maybe PaymentConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe PaymentConfigurationProperty
creatorPaymentConfiguration,
Key -> DataEncryptionMetadataProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DataEncryptionMetadata"
(DataEncryptionMetadataProperty -> (Key, Value))
-> Maybe DataEncryptionMetadataProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe DataEncryptionMetadataProperty
dataEncryptionMetadata,
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
"JobLogStatus" (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)
jobLogStatus,
Key -> [MemberSpecificationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Members" ([MemberSpecificationProperty] -> (Key, Value))
-> Maybe [MemberSpecificationProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [MemberSpecificationProperty]
members,
Key -> [Tag] -> (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" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags]))}
instance JSON.ToJSON Collaboration where
toJSON :: Collaboration -> Value
toJSON Collaboration {Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: Collaboration -> ()
analyticsEngine :: Collaboration -> Maybe (Value Text)
autoApprovedChangeTypes :: Collaboration -> Maybe (ValueList Text)
creatorDisplayName :: Collaboration -> Value Text
creatorMLMemberAbilities :: Collaboration -> Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Collaboration -> Maybe (ValueList Text)
creatorPaymentConfiguration :: Collaboration -> Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Collaboration -> Maybe DataEncryptionMetadataProperty
description :: Collaboration -> Value Text
jobLogStatus :: Collaboration -> Maybe (Value Text)
members :: Collaboration -> Maybe [MemberSpecificationProperty]
name :: Collaboration -> Value Text
queryLogStatus :: Collaboration -> Value Text
tags :: Collaboration -> Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
= [(Key, Value)] -> Value
JSON.object
([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
[Key
"CreatorDisplayName" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
creatorDisplayName,
Key
"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..= Value Text
description, Key
"Name" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
name,
Key
"QueryLogStatus" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
queryLogStatus]
([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
"AnalyticsEngine" (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)
analyticsEngine,
Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AutoApprovedChangeTypes"
(ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
autoApprovedChangeTypes,
Key -> MLMemberAbilitiesProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CreatorMLMemberAbilities"
(MLMemberAbilitiesProperty -> (Key, Value))
-> Maybe MLMemberAbilitiesProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe MLMemberAbilitiesProperty
creatorMLMemberAbilities,
Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CreatorMemberAbilities"
(ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
creatorMemberAbilities,
Key -> PaymentConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CreatorPaymentConfiguration"
(PaymentConfigurationProperty -> (Key, Value))
-> Maybe PaymentConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe PaymentConfigurationProperty
creatorPaymentConfiguration,
Key -> DataEncryptionMetadataProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DataEncryptionMetadata"
(DataEncryptionMetadataProperty -> (Key, Value))
-> Maybe DataEncryptionMetadataProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe DataEncryptionMetadataProperty
dataEncryptionMetadata,
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
"JobLogStatus" (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)
jobLogStatus,
Key -> [MemberSpecificationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Members" ([MemberSpecificationProperty] -> (Key, Value))
-> Maybe [MemberSpecificationProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [MemberSpecificationProperty]
members,
Key -> [Tag] -> (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" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags])))
instance Property "AnalyticsEngine" Collaboration where
type PropertyType "AnalyticsEngine" Collaboration = Value Prelude.Text
set :: PropertyType "AnalyticsEngine" Collaboration
-> Collaboration -> Collaboration
set PropertyType "AnalyticsEngine" Collaboration
newValue Collaboration {Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: Collaboration -> ()
analyticsEngine :: Collaboration -> Maybe (Value Text)
autoApprovedChangeTypes :: Collaboration -> Maybe (ValueList Text)
creatorDisplayName :: Collaboration -> Value Text
creatorMLMemberAbilities :: Collaboration -> Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Collaboration -> Maybe (ValueList Text)
creatorPaymentConfiguration :: Collaboration -> Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Collaboration -> Maybe DataEncryptionMetadataProperty
description :: Collaboration -> Value Text
jobLogStatus :: Collaboration -> Maybe (Value Text)
members :: Collaboration -> Maybe [MemberSpecificationProperty]
name :: Collaboration -> Value Text
queryLogStatus :: Collaboration -> Value Text
tags :: Collaboration -> Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
= Collaboration {analyticsEngine :: Maybe (Value Text)
analyticsEngine = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AnalyticsEngine" Collaboration
Value Text
newValue, Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
instance Property "AutoApprovedChangeTypes" Collaboration where
type PropertyType "AutoApprovedChangeTypes" Collaboration = ValueList Prelude.Text
set :: PropertyType "AutoApprovedChangeTypes" Collaboration
-> Collaboration -> Collaboration
set PropertyType "AutoApprovedChangeTypes" Collaboration
newValue Collaboration {Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: Collaboration -> ()
analyticsEngine :: Collaboration -> Maybe (Value Text)
autoApprovedChangeTypes :: Collaboration -> Maybe (ValueList Text)
creatorDisplayName :: Collaboration -> Value Text
creatorMLMemberAbilities :: Collaboration -> Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Collaboration -> Maybe (ValueList Text)
creatorPaymentConfiguration :: Collaboration -> Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Collaboration -> Maybe DataEncryptionMetadataProperty
description :: Collaboration -> Value Text
jobLogStatus :: Collaboration -> Maybe (Value Text)
members :: Collaboration -> Maybe [MemberSpecificationProperty]
name :: Collaboration -> Value Text
queryLogStatus :: Collaboration -> Value Text
tags :: Collaboration -> Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
= Collaboration
{autoApprovedChangeTypes :: Maybe (ValueList Text)
autoApprovedChangeTypes = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AutoApprovedChangeTypes" Collaboration
ValueList Text
newValue, Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
instance Property "CreatorDisplayName" Collaboration where
type PropertyType "CreatorDisplayName" Collaboration = Value Prelude.Text
set :: PropertyType "CreatorDisplayName" Collaboration
-> Collaboration -> Collaboration
set PropertyType "CreatorDisplayName" Collaboration
newValue Collaboration {Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: Collaboration -> ()
analyticsEngine :: Collaboration -> Maybe (Value Text)
autoApprovedChangeTypes :: Collaboration -> Maybe (ValueList Text)
creatorDisplayName :: Collaboration -> Value Text
creatorMLMemberAbilities :: Collaboration -> Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Collaboration -> Maybe (ValueList Text)
creatorPaymentConfiguration :: Collaboration -> Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Collaboration -> Maybe DataEncryptionMetadataProperty
description :: Collaboration -> Value Text
jobLogStatus :: Collaboration -> Maybe (Value Text)
members :: Collaboration -> Maybe [MemberSpecificationProperty]
name :: Collaboration -> Value Text
queryLogStatus :: Collaboration -> Value Text
tags :: Collaboration -> Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
= Collaboration {creatorDisplayName :: Value Text
creatorDisplayName = PropertyType "CreatorDisplayName" Collaboration
Value Text
newValue, Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
instance Property "CreatorMLMemberAbilities" Collaboration where
type PropertyType "CreatorMLMemberAbilities" Collaboration = MLMemberAbilitiesProperty
set :: PropertyType "CreatorMLMemberAbilities" Collaboration
-> Collaboration -> Collaboration
set PropertyType "CreatorMLMemberAbilities" Collaboration
newValue Collaboration {Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: Collaboration -> ()
analyticsEngine :: Collaboration -> Maybe (Value Text)
autoApprovedChangeTypes :: Collaboration -> Maybe (ValueList Text)
creatorDisplayName :: Collaboration -> Value Text
creatorMLMemberAbilities :: Collaboration -> Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Collaboration -> Maybe (ValueList Text)
creatorPaymentConfiguration :: Collaboration -> Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Collaboration -> Maybe DataEncryptionMetadataProperty
description :: Collaboration -> Value Text
jobLogStatus :: Collaboration -> Maybe (Value Text)
members :: Collaboration -> Maybe [MemberSpecificationProperty]
name :: Collaboration -> Value Text
queryLogStatus :: Collaboration -> Value Text
tags :: Collaboration -> Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
= Collaboration
{creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMLMemberAbilities = MLMemberAbilitiesProperty -> Maybe MLMemberAbilitiesProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CreatorMLMemberAbilities" Collaboration
MLMemberAbilitiesProperty
newValue, Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
instance Property "CreatorMemberAbilities" Collaboration where
type PropertyType "CreatorMemberAbilities" Collaboration = ValueList Prelude.Text
set :: PropertyType "CreatorMemberAbilities" Collaboration
-> Collaboration -> Collaboration
set PropertyType "CreatorMemberAbilities" Collaboration
newValue Collaboration {Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: Collaboration -> ()
analyticsEngine :: Collaboration -> Maybe (Value Text)
autoApprovedChangeTypes :: Collaboration -> Maybe (ValueList Text)
creatorDisplayName :: Collaboration -> Value Text
creatorMLMemberAbilities :: Collaboration -> Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Collaboration -> Maybe (ValueList Text)
creatorPaymentConfiguration :: Collaboration -> Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Collaboration -> Maybe DataEncryptionMetadataProperty
description :: Collaboration -> Value Text
jobLogStatus :: Collaboration -> Maybe (Value Text)
members :: Collaboration -> Maybe [MemberSpecificationProperty]
name :: Collaboration -> Value Text
queryLogStatus :: Collaboration -> Value Text
tags :: Collaboration -> Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
= Collaboration
{creatorMemberAbilities :: Maybe (ValueList Text)
creatorMemberAbilities = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CreatorMemberAbilities" Collaboration
ValueList Text
newValue, Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
instance Property "CreatorPaymentConfiguration" Collaboration where
type PropertyType "CreatorPaymentConfiguration" Collaboration = PaymentConfigurationProperty
set :: PropertyType "CreatorPaymentConfiguration" Collaboration
-> Collaboration -> Collaboration
set PropertyType "CreatorPaymentConfiguration" Collaboration
newValue Collaboration {Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: Collaboration -> ()
analyticsEngine :: Collaboration -> Maybe (Value Text)
autoApprovedChangeTypes :: Collaboration -> Maybe (ValueList Text)
creatorDisplayName :: Collaboration -> Value Text
creatorMLMemberAbilities :: Collaboration -> Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Collaboration -> Maybe (ValueList Text)
creatorPaymentConfiguration :: Collaboration -> Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Collaboration -> Maybe DataEncryptionMetadataProperty
description :: Collaboration -> Value Text
jobLogStatus :: Collaboration -> Maybe (Value Text)
members :: Collaboration -> Maybe [MemberSpecificationProperty]
name :: Collaboration -> Value Text
queryLogStatus :: Collaboration -> Value Text
tags :: Collaboration -> Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
= Collaboration
{creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
creatorPaymentConfiguration = PaymentConfigurationProperty -> Maybe PaymentConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CreatorPaymentConfiguration" Collaboration
PaymentConfigurationProperty
newValue, Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
()
Value Text
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
instance Property "DataEncryptionMetadata" Collaboration where
type PropertyType "DataEncryptionMetadata" Collaboration = DataEncryptionMetadataProperty
set :: PropertyType "DataEncryptionMetadata" Collaboration
-> Collaboration -> Collaboration
set PropertyType "DataEncryptionMetadata" Collaboration
newValue Collaboration {Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: Collaboration -> ()
analyticsEngine :: Collaboration -> Maybe (Value Text)
autoApprovedChangeTypes :: Collaboration -> Maybe (ValueList Text)
creatorDisplayName :: Collaboration -> Value Text
creatorMLMemberAbilities :: Collaboration -> Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Collaboration -> Maybe (ValueList Text)
creatorPaymentConfiguration :: Collaboration -> Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Collaboration -> Maybe DataEncryptionMetadataProperty
description :: Collaboration -> Value Text
jobLogStatus :: Collaboration -> Maybe (Value Text)
members :: Collaboration -> Maybe [MemberSpecificationProperty]
name :: Collaboration -> Value Text
queryLogStatus :: Collaboration -> Value Text
tags :: Collaboration -> Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
= Collaboration
{dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
dataEncryptionMetadata = DataEncryptionMetadataProperty
-> Maybe DataEncryptionMetadataProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DataEncryptionMetadata" Collaboration
DataEncryptionMetadataProperty
newValue, Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
instance Property "Description" Collaboration where
type PropertyType "Description" Collaboration = Value Prelude.Text
set :: PropertyType "Description" Collaboration
-> Collaboration -> Collaboration
set PropertyType "Description" Collaboration
newValue Collaboration {Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: Collaboration -> ()
analyticsEngine :: Collaboration -> Maybe (Value Text)
autoApprovedChangeTypes :: Collaboration -> Maybe (ValueList Text)
creatorDisplayName :: Collaboration -> Value Text
creatorMLMemberAbilities :: Collaboration -> Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Collaboration -> Maybe (ValueList Text)
creatorPaymentConfiguration :: Collaboration -> Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Collaboration -> Maybe DataEncryptionMetadataProperty
description :: Collaboration -> Value Text
jobLogStatus :: Collaboration -> Maybe (Value Text)
members :: Collaboration -> Maybe [MemberSpecificationProperty]
name :: Collaboration -> Value Text
queryLogStatus :: Collaboration -> Value Text
tags :: Collaboration -> Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
= Collaboration {description :: Value Text
description = PropertyType "Description" Collaboration
Value Text
newValue, Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
instance Property "JobLogStatus" Collaboration where
type PropertyType "JobLogStatus" Collaboration = Value Prelude.Text
set :: PropertyType "JobLogStatus" Collaboration
-> Collaboration -> Collaboration
set PropertyType "JobLogStatus" Collaboration
newValue Collaboration {Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: Collaboration -> ()
analyticsEngine :: Collaboration -> Maybe (Value Text)
autoApprovedChangeTypes :: Collaboration -> Maybe (ValueList Text)
creatorDisplayName :: Collaboration -> Value Text
creatorMLMemberAbilities :: Collaboration -> Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Collaboration -> Maybe (ValueList Text)
creatorPaymentConfiguration :: Collaboration -> Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Collaboration -> Maybe DataEncryptionMetadataProperty
description :: Collaboration -> Value Text
jobLogStatus :: Collaboration -> Maybe (Value Text)
members :: Collaboration -> Maybe [MemberSpecificationProperty]
name :: Collaboration -> Value Text
queryLogStatus :: Collaboration -> Value Text
tags :: Collaboration -> Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
= Collaboration {jobLogStatus :: Maybe (Value Text)
jobLogStatus = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "JobLogStatus" Collaboration
Value Text
newValue, Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
instance Property "Members" Collaboration where
type PropertyType "Members" Collaboration = [MemberSpecificationProperty]
set :: PropertyType "Members" Collaboration
-> Collaboration -> Collaboration
set PropertyType "Members" Collaboration
newValue Collaboration {Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: Collaboration -> ()
analyticsEngine :: Collaboration -> Maybe (Value Text)
autoApprovedChangeTypes :: Collaboration -> Maybe (ValueList Text)
creatorDisplayName :: Collaboration -> Value Text
creatorMLMemberAbilities :: Collaboration -> Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Collaboration -> Maybe (ValueList Text)
creatorPaymentConfiguration :: Collaboration -> Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Collaboration -> Maybe DataEncryptionMetadataProperty
description :: Collaboration -> Value Text
jobLogStatus :: Collaboration -> Maybe (Value Text)
members :: Collaboration -> Maybe [MemberSpecificationProperty]
name :: Collaboration -> Value Text
queryLogStatus :: Collaboration -> Value Text
tags :: Collaboration -> Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
= Collaboration {members :: Maybe [MemberSpecificationProperty]
members = [MemberSpecificationProperty]
-> Maybe [MemberSpecificationProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [MemberSpecificationProperty]
PropertyType "Members" Collaboration
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
instance Property "Name" Collaboration where
type PropertyType "Name" Collaboration = Value Prelude.Text
set :: PropertyType "Name" Collaboration -> Collaboration -> Collaboration
set PropertyType "Name" Collaboration
newValue Collaboration {Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: Collaboration -> ()
analyticsEngine :: Collaboration -> Maybe (Value Text)
autoApprovedChangeTypes :: Collaboration -> Maybe (ValueList Text)
creatorDisplayName :: Collaboration -> Value Text
creatorMLMemberAbilities :: Collaboration -> Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Collaboration -> Maybe (ValueList Text)
creatorPaymentConfiguration :: Collaboration -> Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Collaboration -> Maybe DataEncryptionMetadataProperty
description :: Collaboration -> Value Text
jobLogStatus :: Collaboration -> Maybe (Value Text)
members :: Collaboration -> Maybe [MemberSpecificationProperty]
name :: Collaboration -> Value Text
queryLogStatus :: Collaboration -> Value Text
tags :: Collaboration -> Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
= Collaboration {name :: Value Text
name = PropertyType "Name" Collaboration
Value Text
newValue, Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
queryLogStatus :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
instance Property "QueryLogStatus" Collaboration where
type PropertyType "QueryLogStatus" Collaboration = Value Prelude.Text
set :: PropertyType "QueryLogStatus" Collaboration
-> Collaboration -> Collaboration
set PropertyType "QueryLogStatus" Collaboration
newValue Collaboration {Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: Collaboration -> ()
analyticsEngine :: Collaboration -> Maybe (Value Text)
autoApprovedChangeTypes :: Collaboration -> Maybe (ValueList Text)
creatorDisplayName :: Collaboration -> Value Text
creatorMLMemberAbilities :: Collaboration -> Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Collaboration -> Maybe (ValueList Text)
creatorPaymentConfiguration :: Collaboration -> Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Collaboration -> Maybe DataEncryptionMetadataProperty
description :: Collaboration -> Value Text
jobLogStatus :: Collaboration -> Maybe (Value Text)
members :: Collaboration -> Maybe [MemberSpecificationProperty]
name :: Collaboration -> Value Text
queryLogStatus :: Collaboration -> Value Text
tags :: Collaboration -> Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
= Collaboration {queryLogStatus :: Value Text
queryLogStatus = PropertyType "QueryLogStatus" Collaboration
Value Text
newValue, Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
tags :: Maybe [Tag]
..}
instance Property "Tags" Collaboration where
type PropertyType "Tags" Collaboration = [Tag]
set :: PropertyType "Tags" Collaboration -> Collaboration -> Collaboration
set PropertyType "Tags" Collaboration
newValue Collaboration {Maybe [Tag]
Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: Collaboration -> ()
analyticsEngine :: Collaboration -> Maybe (Value Text)
autoApprovedChangeTypes :: Collaboration -> Maybe (ValueList Text)
creatorDisplayName :: Collaboration -> Value Text
creatorMLMemberAbilities :: Collaboration -> Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Collaboration -> Maybe (ValueList Text)
creatorPaymentConfiguration :: Collaboration -> Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Collaboration -> Maybe DataEncryptionMetadataProperty
description :: Collaboration -> Value Text
jobLogStatus :: Collaboration -> Maybe (Value Text)
members :: Collaboration -> Maybe [MemberSpecificationProperty]
name :: Collaboration -> Value Text
queryLogStatus :: Collaboration -> Value Text
tags :: Collaboration -> Maybe [Tag]
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
tags :: Maybe [Tag]
..}
= Collaboration {tags :: Maybe [Tag]
tags = [Tag] -> Maybe [Tag]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [Tag]
PropertyType "Tags" Collaboration
newValue, Maybe [MemberSpecificationProperty]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe DataEncryptionMetadataProperty
Maybe MLMemberAbilitiesProperty
Maybe PaymentConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
haddock_workaround_ :: ()
analyticsEngine :: Maybe (Value Text)
autoApprovedChangeTypes :: Maybe (ValueList Text)
creatorDisplayName :: Value Text
creatorMLMemberAbilities :: Maybe MLMemberAbilitiesProperty
creatorMemberAbilities :: Maybe (ValueList Text)
creatorPaymentConfiguration :: Maybe PaymentConfigurationProperty
dataEncryptionMetadata :: Maybe DataEncryptionMetadataProperty
description :: Value Text
jobLogStatus :: Maybe (Value Text)
members :: Maybe [MemberSpecificationProperty]
name :: Value Text
queryLogStatus :: Value Text
..}