Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell98 |
Cloudy.Cli
Synopsis
- parseCliOpts :: IO CliCmd
- data CliCmd
- data ScalewayCliOpts
- data AwsCliOpts
- data ListCliOpts = ListCliOpts
- data SshCliOpts = SshCliOpts {}
- data CopyFileCliOpts = CopyFileCliOpts {}
- data DestroyCliOpts = DestroyCliOpts {}
- data CopyFileDirection
- data Recursive
Documentation
parseCliOpts :: IO CliCmd Source #
data ScalewayCliOpts Source #
Constructors
ScalewayCreate ScalewayCreateCliOpts | |
ScalewayListInstanceTypes ScalewayListInstanceTypesCliOpts | |
ScalewayListImages ScalewayListImagesCliOpts |
Instances
Show ScalewayCliOpts Source # | |
Defined in Cloudy.Cli.Scaleway Methods showsPrec :: Int -> ScalewayCliOpts -> ShowS # show :: ScalewayCliOpts -> String # showList :: [ScalewayCliOpts] -> ShowS # |
data AwsCliOpts Source #
Instances
Show AwsCliOpts Source # | |
Defined in Cloudy.Cli.Aws Methods showsPrec :: Int -> AwsCliOpts -> ShowS # show :: AwsCliOpts -> String # showList :: [AwsCliOpts] -> ShowS # |
data ListCliOpts Source #
Constructors
ListCliOpts |
Instances
Show ListCliOpts Source # | |
Defined in Cloudy.Cli Methods showsPrec :: Int -> ListCliOpts -> ShowS # show :: ListCliOpts -> String # showList :: [ListCliOpts] -> ShowS # |
data SshCliOpts Source #
Constructors
SshCliOpts | |
Instances
Show SshCliOpts Source # | |
Defined in Cloudy.Cli Methods showsPrec :: Int -> SshCliOpts -> ShowS # show :: SshCliOpts -> String # showList :: [SshCliOpts] -> ShowS # |
data CopyFileCliOpts Source #
Constructors
CopyFileCliOpts | |
Fields
|
Instances
Show CopyFileCliOpts Source # | |
Defined in Cloudy.Cli Methods showsPrec :: Int -> CopyFileCliOpts -> ShowS # show :: CopyFileCliOpts -> String # showList :: [CopyFileCliOpts] -> ShowS # |
data DestroyCliOpts Source #
Constructors
DestroyCliOpts | |
Instances
Show DestroyCliOpts Source # | |
Defined in Cloudy.Cli Methods showsPrec :: Int -> DestroyCliOpts -> ShowS # show :: DestroyCliOpts -> String # showList :: [DestroyCliOpts] -> ShowS # |
data CopyFileDirection Source #
Which direction to copy files in the copy-file
command
Constructors
FromInstanceToLocal | |
ToInstanceFromLocal |
Instances
Show CopyFileDirection Source # | |
Defined in Cloudy.Cli Methods showsPrec :: Int -> CopyFileDirection -> ShowS # show :: CopyFileDirection -> String # showList :: [CopyFileDirection] -> ShowS # |
Whether or not to recursively copy files from directories in the
copy-file
command.
Constructors
Recursive | |
NoRecursive |