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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# File 'lib/dnsimple/cli.rb', line 26
def commands
{
'info' => DNSimple::Commands::DescribeUser,
'check' => DNSimple::Commands::CheckDomain,
'create' => DNSimple::Commands::CreateDomain,
'register' => DNSimple::Commands::RegisterDomain,
'transfer' => DNSimple::Commands::TransferDomain,
'describe' => DNSimple::Commands::DescribeDomain,
'list' => DNSimple::Commands::ListDomains,
'delete' => DNSimple::Commands::DeleteDomain,
'clear' => DNSimple::Commands::ClearDomain,
'apply' => DNSimple::Commands::ApplyTemplate,
'record:describe' => DNSimple::Commands::DescribeRecord,
'record:create' => DNSimple::Commands::CreateRecord,
'record:list' => DNSimple::Commands::ListRecords,
'record:update' => DNSimple::Commands::UpdateRecord,
'record:delete' => DNSimple::Commands::DeleteRecord,
'template:create' => DNSimple::Commands::CreateTemplate,
'template:list' => DNSimple::Commands::ListTemplates,
'template:delete' => DNSimple::Commands::DeleteTemplate,
'template:list_records' => DNSimple::Commands::ListTemplateRecords,
'template:add_record' => DNSimple::Commands::AddTemplateRecord,
'template:delete_record' => DNSimple::Commands::DeleteTemplateRecord,
'contact:create' => DNSimple::Commands::CreateContact,
'contact:list' => DNSimple::Commands::ListContacts,
'contact:describe' => DNSimple::Commands::DescribeContact,
'contact:update' => DNSimple::Commands::UpdateContact,
'contact:delete' => DNSimple::Commands::DeleteContact,
'extended-attributes:list' => DNSimple::Commands::ListExtendedAttributes,
'service:list' => DNSimple::Commands::ListServices,
'service:describe' => DNSimple::Commands::DescribeService,
'service:applied' => DNSimple::Commands::ListAppliedServices,
'service:available' => DNSimple::Commands::ListAvailableServices,
'service:add' => DNSimple::Commands::AddService,
'service:remove' => DNSimple::Commands::RemoveService,
'certificate:list' => DNSimple::Commands::ListCertificates,
'certificate:describe' => DNSimple::Commands::DescribeCertificate,
'certificate:purchase' => DNSimple::Commands::PurchaseCertificate,
'certificate:submit' => DNSimple::Commands::SubmitCertificate
}
end
|