@@ -9,23 +9,26 @@ namespace CLARiNET
9
9
{
10
10
public class Options
11
11
{
12
- [ Value ( index : 0 , MetaName = "CLAR File " , Required = false , HelpText = "Full path and file name for the CLAR " ) ]
13
- public string ClarFile { get ; set ; }
12
+ [ Value ( index : 0 , MetaName = "Command " , Required = false , HelpText = "CLARiNET Commands: \n \n CLAR_UPLOAD \n DRIVE_UPLOAD \n DRIVE_TRASH " ) ]
13
+ public string Command { get ; set ; }
14
14
15
- [ Value ( index : 1 , MetaName = "Collection " , Required = false , HelpText = "Cloud Collection name" ) ]
16
- public string CollectionName { get ; set ; }
15
+ [ Value ( index : 1 , MetaName = "File or Directory " , Required = false , HelpText = "Path or Path and file name" ) ]
16
+ public string Path { get ; set ; }
17
17
18
- [ Value ( index : 2 , MetaName = "Environment Number" , Required = false , HelpText = "Number associated with a Workday environment (list all with -e parameter)" ) ]
18
+ [ Value ( index : 2 , MetaName = "Parameters" , Required = false , HelpText = "Parameters for the command (For CLAR_UPLOAD, enter the Cloud Collection)" ) ]
19
+ public string Parameters { get ; set ; }
20
+
21
+ [ Value ( index : 3 , MetaName = "Environment Number" , Required = false , HelpText = "Number associated with a Workday environment (list all with -w parameter)" ) ]
19
22
public string EnvNum { get ; set ; }
20
23
21
- [ Value ( index : 3 , MetaName = "Tenant" , Required = false , HelpText = "Workday Tenant" ) ]
24
+ [ Value ( index : 4 , MetaName = "Tenant" , Required = false , HelpText = "Workday Tenant" ) ]
22
25
public string Tenant { get ; set ; }
23
26
24
- [ Value ( index : 4 , MetaName = "Username" , Required = false , HelpText = "Username" ) ]
27
+ [ Value ( index : 5 , MetaName = "Username" , Required = false , HelpText = "Username" ) ]
25
28
public string Username { get ; set ; }
26
29
27
- [ Value ( index : 5 , MetaName = "Password" , Required = false , HelpText = "Password (must be encrypted using the -e option)" ) ]
28
- public string Password { get ; set ; }
30
+ [ Value ( index : 6 , MetaName = "Password" , Required = false , HelpText = "Password (must be encrypted using the -e option)" ) ]
31
+ public string Password { get ; set ; }
29
32
30
33
[ Option ( 'e' , "encrypt" , Required = false ,
31
34
HelpText =
0 commit comments