blob: 80b3caf7ed1a2b126a2a527833d338b593d2869a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
using CommandLine;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Web;
namespace Tango.DataStore.CLI
{
public class OptionsBase
{
[Option(longName: "email", HelpText = "Email address", Required = true)]
public String Email { get; set; }
[Option(longName: "password", HelpText = "Password")]
public String Password { get; set; }
[Option(longName: "env", HelpText = "Environment")]
public DeploymentSlot Environment { get; set; }
}
[Verb("get", HelpText = "Get a data store item.")]
public class GetOptions : OptionsBase
{
[Option(longName: "sn", HelpText = "Machine serial number")]
public String MachineSerialNumber { get; set; }
[Option(longName: "collection", HelpText = "Collection name")]
public String Collection { get; set; }
[Option(longName: "key", HelpText = "Item key")]
public String Key { get; set; }
}
[Verb("put", HelpText = "Get a data store item.")]
public class PutOptions : OptionsBase
{
[Option(longName: "sn", HelpText = "Machine serial number")]
public String MachineSerialNumber { get; set; }
[Option(longName: "collection", HelpText = "Collection name")]
public String Collection { get; set; }
[Option(longName: "key", HelpText = "Item key")]
public String Key { get; set; }
[Option(longName: "value", HelpText = "Item value")]
public String Value { get; set; }
}
}
|