module Stratosphere.FSx.StorageVirtualMachine (
module Exports, StorageVirtualMachine(..), mkStorageVirtualMachine
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.FSx.StorageVirtualMachine.ActiveDirectoryConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data StorageVirtualMachine
=
StorageVirtualMachine {StorageVirtualMachine -> ()
haddock_workaround_ :: (),
StorageVirtualMachine -> Maybe ActiveDirectoryConfigurationProperty
activeDirectoryConfiguration :: (Prelude.Maybe ActiveDirectoryConfigurationProperty),
StorageVirtualMachine -> Value Text
fileSystemId :: (Value Prelude.Text),
StorageVirtualMachine -> Value Text
name :: (Value Prelude.Text),
StorageVirtualMachine -> Maybe (Value Text)
rootVolumeSecurityStyle :: (Prelude.Maybe (Value Prelude.Text)),
StorageVirtualMachine -> Maybe (Value Text)
svmAdminPassword :: (Prelude.Maybe (Value Prelude.Text)),
StorageVirtualMachine -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag])}
deriving stock (StorageVirtualMachine -> StorageVirtualMachine -> Bool
(StorageVirtualMachine -> StorageVirtualMachine -> Bool)
-> (StorageVirtualMachine -> StorageVirtualMachine -> Bool)
-> Eq StorageVirtualMachine
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: StorageVirtualMachine -> StorageVirtualMachine -> Bool
== :: StorageVirtualMachine -> StorageVirtualMachine -> Bool
$c/= :: StorageVirtualMachine -> StorageVirtualMachine -> Bool
/= :: StorageVirtualMachine -> StorageVirtualMachine -> Bool
Prelude.Eq, Int -> StorageVirtualMachine -> ShowS
[StorageVirtualMachine] -> ShowS
StorageVirtualMachine -> String
(Int -> StorageVirtualMachine -> ShowS)
-> (StorageVirtualMachine -> String)
-> ([StorageVirtualMachine] -> ShowS)
-> Show StorageVirtualMachine
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> StorageVirtualMachine -> ShowS
showsPrec :: Int -> StorageVirtualMachine -> ShowS
$cshow :: StorageVirtualMachine -> String
show :: StorageVirtualMachine -> String
$cshowList :: [StorageVirtualMachine] -> ShowS
showList :: [StorageVirtualMachine] -> ShowS
Prelude.Show)
mkStorageVirtualMachine ::
Value Prelude.Text -> Value Prelude.Text -> StorageVirtualMachine
mkStorageVirtualMachine :: Value Text -> Value Text -> StorageVirtualMachine
mkStorageVirtualMachine Value Text
fileSystemId Value Text
name
= StorageVirtualMachine
{haddock_workaround_ :: ()
haddock_workaround_ = (), fileSystemId :: Value Text
fileSystemId = Value Text
fileSystemId,
name :: Value Text
name = Value Text
name, activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
activeDirectoryConfiguration = Maybe ActiveDirectoryConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
rootVolumeSecurityStyle :: Maybe (Value Text)
rootVolumeSecurityStyle = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
svmAdminPassword :: Maybe (Value Text)
svmAdminPassword = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties StorageVirtualMachine where
toResourceProperties :: StorageVirtualMachine -> ResourceProperties
toResourceProperties StorageVirtualMachine {Maybe [Tag]
Maybe (Value Text)
Maybe ActiveDirectoryConfigurationProperty
()
Value Text
haddock_workaround_ :: StorageVirtualMachine -> ()
activeDirectoryConfiguration :: StorageVirtualMachine -> Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: StorageVirtualMachine -> Value Text
name :: StorageVirtualMachine -> Value Text
rootVolumeSecurityStyle :: StorageVirtualMachine -> Maybe (Value Text)
svmAdminPassword :: StorageVirtualMachine -> Maybe (Value Text)
tags :: StorageVirtualMachine -> Maybe [Tag]
haddock_workaround_ :: ()
activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: Value Text
name :: Value Text
rootVolumeSecurityStyle :: Maybe (Value Text)
svmAdminPassword :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::FSx::StorageVirtualMachine",
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
"FileSystemId" 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
fileSystemId, 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]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> ActiveDirectoryConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ActiveDirectoryConfiguration"
(ActiveDirectoryConfigurationProperty -> (Key, Value))
-> Maybe ActiveDirectoryConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ActiveDirectoryConfigurationProperty
activeDirectoryConfiguration,
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
"RootVolumeSecurityStyle"
(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)
rootVolumeSecurityStyle,
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
"SvmAdminPassword" (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)
svmAdminPassword,
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 StorageVirtualMachine where
toJSON :: StorageVirtualMachine -> Value
toJSON StorageVirtualMachine {Maybe [Tag]
Maybe (Value Text)
Maybe ActiveDirectoryConfigurationProperty
()
Value Text
haddock_workaround_ :: StorageVirtualMachine -> ()
activeDirectoryConfiguration :: StorageVirtualMachine -> Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: StorageVirtualMachine -> Value Text
name :: StorageVirtualMachine -> Value Text
rootVolumeSecurityStyle :: StorageVirtualMachine -> Maybe (Value Text)
svmAdminPassword :: StorageVirtualMachine -> Maybe (Value Text)
tags :: StorageVirtualMachine -> Maybe [Tag]
haddock_workaround_ :: ()
activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: Value Text
name :: Value Text
rootVolumeSecurityStyle :: Maybe (Value Text)
svmAdminPassword :: Maybe (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
"FileSystemId" 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
fileSystemId, 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]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> ActiveDirectoryConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ActiveDirectoryConfiguration"
(ActiveDirectoryConfigurationProperty -> (Key, Value))
-> Maybe ActiveDirectoryConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ActiveDirectoryConfigurationProperty
activeDirectoryConfiguration,
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
"RootVolumeSecurityStyle"
(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)
rootVolumeSecurityStyle,
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
"SvmAdminPassword" (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)
svmAdminPassword,
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 "ActiveDirectoryConfiguration" StorageVirtualMachine where
type PropertyType "ActiveDirectoryConfiguration" StorageVirtualMachine = ActiveDirectoryConfigurationProperty
set :: PropertyType "ActiveDirectoryConfiguration" StorageVirtualMachine
-> StorageVirtualMachine -> StorageVirtualMachine
set PropertyType "ActiveDirectoryConfiguration" StorageVirtualMachine
newValue StorageVirtualMachine {Maybe [Tag]
Maybe (Value Text)
Maybe ActiveDirectoryConfigurationProperty
()
Value Text
haddock_workaround_ :: StorageVirtualMachine -> ()
activeDirectoryConfiguration :: StorageVirtualMachine -> Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: StorageVirtualMachine -> Value Text
name :: StorageVirtualMachine -> Value Text
rootVolumeSecurityStyle :: StorageVirtualMachine -> Maybe (Value Text)
svmAdminPassword :: StorageVirtualMachine -> Maybe (Value Text)
tags :: StorageVirtualMachine -> Maybe [Tag]
haddock_workaround_ :: ()
activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: Value Text
name :: Value Text
rootVolumeSecurityStyle :: Maybe (Value Text)
svmAdminPassword :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= StorageVirtualMachine
{activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
activeDirectoryConfiguration = ActiveDirectoryConfigurationProperty
-> Maybe ActiveDirectoryConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ActiveDirectoryConfiguration" StorageVirtualMachine
ActiveDirectoryConfigurationProperty
newValue, Maybe [Tag]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
fileSystemId :: Value Text
name :: Value Text
rootVolumeSecurityStyle :: Maybe (Value Text)
svmAdminPassword :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
fileSystemId :: Value Text
name :: Value Text
rootVolumeSecurityStyle :: Maybe (Value Text)
svmAdminPassword :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "FileSystemId" StorageVirtualMachine where
type PropertyType "FileSystemId" StorageVirtualMachine = Value Prelude.Text
set :: PropertyType "FileSystemId" StorageVirtualMachine
-> StorageVirtualMachine -> StorageVirtualMachine
set PropertyType "FileSystemId" StorageVirtualMachine
newValue StorageVirtualMachine {Maybe [Tag]
Maybe (Value Text)
Maybe ActiveDirectoryConfigurationProperty
()
Value Text
haddock_workaround_ :: StorageVirtualMachine -> ()
activeDirectoryConfiguration :: StorageVirtualMachine -> Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: StorageVirtualMachine -> Value Text
name :: StorageVirtualMachine -> Value Text
rootVolumeSecurityStyle :: StorageVirtualMachine -> Maybe (Value Text)
svmAdminPassword :: StorageVirtualMachine -> Maybe (Value Text)
tags :: StorageVirtualMachine -> Maybe [Tag]
haddock_workaround_ :: ()
activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: Value Text
name :: Value Text
rootVolumeSecurityStyle :: Maybe (Value Text)
svmAdminPassword :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= StorageVirtualMachine {fileSystemId :: Value Text
fileSystemId = PropertyType "FileSystemId" StorageVirtualMachine
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe ActiveDirectoryConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
name :: Value Text
rootVolumeSecurityStyle :: Maybe (Value Text)
svmAdminPassword :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
name :: Value Text
rootVolumeSecurityStyle :: Maybe (Value Text)
svmAdminPassword :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "Name" StorageVirtualMachine where
type PropertyType "Name" StorageVirtualMachine = Value Prelude.Text
set :: PropertyType "Name" StorageVirtualMachine
-> StorageVirtualMachine -> StorageVirtualMachine
set PropertyType "Name" StorageVirtualMachine
newValue StorageVirtualMachine {Maybe [Tag]
Maybe (Value Text)
Maybe ActiveDirectoryConfigurationProperty
()
Value Text
haddock_workaround_ :: StorageVirtualMachine -> ()
activeDirectoryConfiguration :: StorageVirtualMachine -> Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: StorageVirtualMachine -> Value Text
name :: StorageVirtualMachine -> Value Text
rootVolumeSecurityStyle :: StorageVirtualMachine -> Maybe (Value Text)
svmAdminPassword :: StorageVirtualMachine -> Maybe (Value Text)
tags :: StorageVirtualMachine -> Maybe [Tag]
haddock_workaround_ :: ()
activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: Value Text
name :: Value Text
rootVolumeSecurityStyle :: Maybe (Value Text)
svmAdminPassword :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= StorageVirtualMachine {name :: Value Text
name = PropertyType "Name" StorageVirtualMachine
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe ActiveDirectoryConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: Value Text
rootVolumeSecurityStyle :: Maybe (Value Text)
svmAdminPassword :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: Value Text
rootVolumeSecurityStyle :: Maybe (Value Text)
svmAdminPassword :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "RootVolumeSecurityStyle" StorageVirtualMachine where
type PropertyType "RootVolumeSecurityStyle" StorageVirtualMachine = Value Prelude.Text
set :: PropertyType "RootVolumeSecurityStyle" StorageVirtualMachine
-> StorageVirtualMachine -> StorageVirtualMachine
set PropertyType "RootVolumeSecurityStyle" StorageVirtualMachine
newValue StorageVirtualMachine {Maybe [Tag]
Maybe (Value Text)
Maybe ActiveDirectoryConfigurationProperty
()
Value Text
haddock_workaround_ :: StorageVirtualMachine -> ()
activeDirectoryConfiguration :: StorageVirtualMachine -> Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: StorageVirtualMachine -> Value Text
name :: StorageVirtualMachine -> Value Text
rootVolumeSecurityStyle :: StorageVirtualMachine -> Maybe (Value Text)
svmAdminPassword :: StorageVirtualMachine -> Maybe (Value Text)
tags :: StorageVirtualMachine -> Maybe [Tag]
haddock_workaround_ :: ()
activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: Value Text
name :: Value Text
rootVolumeSecurityStyle :: Maybe (Value Text)
svmAdminPassword :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= StorageVirtualMachine
{rootVolumeSecurityStyle :: Maybe (Value Text)
rootVolumeSecurityStyle = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "RootVolumeSecurityStyle" StorageVirtualMachine
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe ActiveDirectoryConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: Value Text
name :: Value Text
svmAdminPassword :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: Value Text
name :: Value Text
svmAdminPassword :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "SvmAdminPassword" StorageVirtualMachine where
type PropertyType "SvmAdminPassword" StorageVirtualMachine = Value Prelude.Text
set :: PropertyType "SvmAdminPassword" StorageVirtualMachine
-> StorageVirtualMachine -> StorageVirtualMachine
set PropertyType "SvmAdminPassword" StorageVirtualMachine
newValue StorageVirtualMachine {Maybe [Tag]
Maybe (Value Text)
Maybe ActiveDirectoryConfigurationProperty
()
Value Text
haddock_workaround_ :: StorageVirtualMachine -> ()
activeDirectoryConfiguration :: StorageVirtualMachine -> Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: StorageVirtualMachine -> Value Text
name :: StorageVirtualMachine -> Value Text
rootVolumeSecurityStyle :: StorageVirtualMachine -> Maybe (Value Text)
svmAdminPassword :: StorageVirtualMachine -> Maybe (Value Text)
tags :: StorageVirtualMachine -> Maybe [Tag]
haddock_workaround_ :: ()
activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: Value Text
name :: Value Text
rootVolumeSecurityStyle :: Maybe (Value Text)
svmAdminPassword :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= StorageVirtualMachine
{svmAdminPassword :: Maybe (Value Text)
svmAdminPassword = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SvmAdminPassword" StorageVirtualMachine
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe ActiveDirectoryConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: Value Text
name :: Value Text
rootVolumeSecurityStyle :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: Value Text
name :: Value Text
rootVolumeSecurityStyle :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "Tags" StorageVirtualMachine where
type PropertyType "Tags" StorageVirtualMachine = [Tag]
set :: PropertyType "Tags" StorageVirtualMachine
-> StorageVirtualMachine -> StorageVirtualMachine
set PropertyType "Tags" StorageVirtualMachine
newValue StorageVirtualMachine {Maybe [Tag]
Maybe (Value Text)
Maybe ActiveDirectoryConfigurationProperty
()
Value Text
haddock_workaround_ :: StorageVirtualMachine -> ()
activeDirectoryConfiguration :: StorageVirtualMachine -> Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: StorageVirtualMachine -> Value Text
name :: StorageVirtualMachine -> Value Text
rootVolumeSecurityStyle :: StorageVirtualMachine -> Maybe (Value Text)
svmAdminPassword :: StorageVirtualMachine -> Maybe (Value Text)
tags :: StorageVirtualMachine -> Maybe [Tag]
haddock_workaround_ :: ()
activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: Value Text
name :: Value Text
rootVolumeSecurityStyle :: Maybe (Value Text)
svmAdminPassword :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= StorageVirtualMachine {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" StorageVirtualMachine
newValue, Maybe (Value Text)
Maybe ActiveDirectoryConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: Value Text
name :: Value Text
rootVolumeSecurityStyle :: Maybe (Value Text)
svmAdminPassword :: Maybe (Value Text)
haddock_workaround_ :: ()
activeDirectoryConfiguration :: Maybe ActiveDirectoryConfigurationProperty
fileSystemId :: Value Text
name :: Value Text
rootVolumeSecurityStyle :: Maybe (Value Text)
svmAdminPassword :: Maybe (Value Text)
..}