doctl 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +32 -0
- data/Gemfile.lock +240 -0
- data/bin/doctl +39 -0
- data/doctl.gemspec +34 -0
- data/lib/dldinternet/doctl/account/command.rb +39 -0
- data/lib/dldinternet/doctl/account/mixins/no_commands.rb +12 -0
- data/lib/dldinternet/doctl/api/account.rb +2 -0
- data/lib/dldinternet/doctl/api/account/get.rb +18 -0
- data/lib/dldinternet/doctl/api/account/ratelimit.rb +22 -0
- data/lib/dldinternet/doctl/api/auth.rb +1 -0
- data/lib/dldinternet/doctl/api/auth/get.rb +16 -0
- data/lib/dldinternet/doctl/api/auth/mixins/get/getnameservers.rb +17 -0
- data/lib/dldinternet/doctl/api/base.rb +120 -0
- data/lib/dldinternet/doctl/api/compute.rb +1 -0
- data/lib/dldinternet/doctl/api/compute/domain.rb +6 -0
- data/lib/dldinternet/doctl/api/compute/domain/create.rb +29 -0
- data/lib/dldinternet/doctl/api/compute/domain/delete.rb +28 -0
- data/lib/dldinternet/doctl/api/compute/domain/get.rb +20 -0
- data/lib/dldinternet/doctl/api/compute/domain/list.rb +24 -0
- data/lib/dldinternet/doctl/api/compute/domain/records.rb +4 -0
- data/lib/dldinternet/doctl/api/compute/domain/records/create.rb +30 -0
- data/lib/dldinternet/doctl/api/compute/domain/records/delete.rb +30 -0
- data/lib/dldinternet/doctl/api/compute/domain/records/list.rb +33 -0
- data/lib/dldinternet/doctl/api/compute/domain/records/update.rb +30 -0
- data/lib/dldinternet/doctl/auth/command.rb +19 -0
- data/lib/dldinternet/doctl/auth/init/command.rb +18 -0
- data/lib/dldinternet/doctl/auth/init/mixins/no_commands.rb +16 -0
- data/lib/dldinternet/doctl/auth/mixins/no_commands.rb +12 -0
- data/lib/dldinternet/doctl/compute/action/command.rb +30 -0
- data/lib/dldinternet/doctl/compute/action/get/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/action/get/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/action/list/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/action/list/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/action/mixins/no_commands.rb +16 -0
- data/lib/dldinternet/doctl/compute/action/wait/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/action/wait/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/command.rb +81 -0
- data/lib/dldinternet/doctl/compute/domain/command.rb +105 -0
- data/lib/dldinternet/doctl/compute/domain/mixins/no_commands.rb +16 -0
- data/lib/dldinternet/doctl/compute/domain/records/command.rb +89 -0
- data/lib/dldinternet/doctl/compute/domain/records/mixins/no_commands.rb +62 -0
- data/lib/dldinternet/doctl/compute/droplet-action/change-kernel/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet-action/change-kernel/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet-action/command.rb +86 -0
- data/lib/dldinternet/doctl/compute/droplet-action/disable-backups/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet-action/disable-backups/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet-action/enable-ipv6/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet-action/enable-ipv6/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet-action/enable-private-networking/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet-action/enable-private-networking/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet-action/get/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet-action/get/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet-action/mixins/no_commands.rb +16 -0
- data/lib/dldinternet/doctl/compute/droplet-action/password-reset/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet-action/password-reset/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet-action/power-cycle/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet-action/power-cycle/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet-action/power-off/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet-action/power-off/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet-action/power-on/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet-action/power-on/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet-action/reboot/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet-action/reboot/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet-action/rebuild/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet-action/rebuild/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet-action/rename/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet-action/rename/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet-action/resize/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet-action/resize/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet-action/restore/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet-action/restore/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet-action/shutdown/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet-action/shutdown/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet-action/snapshot/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet-action/snapshot/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet-action/upgrade/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet-action/upgrade/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet/actions/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet/actions/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet/backups/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet/backups/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet/command.rb +62 -0
- data/lib/dldinternet/doctl/compute/droplet/create/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet/create/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet/delete/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet/delete/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet/get/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet/get/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet/kernels/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet/kernels/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet/list/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet/list/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet/mixins/no_commands.rb +16 -0
- data/lib/dldinternet/doctl/compute/droplet/neighbors/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet/neighbors/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet/snapshots/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet/snapshots/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet/tag/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet/tag/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/droplet/untag/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/droplet/untag/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/floating-ip-action/assign/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/floating-ip-action/assign/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/floating-ip-action/command.rb +30 -0
- data/lib/dldinternet/doctl/compute/floating-ip-action/get/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/floating-ip-action/get/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/floating-ip-action/mixins/no_commands.rb +16 -0
- data/lib/dldinternet/doctl/compute/floating-ip-action/unassign/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/floating-ip-action/unassign/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/floating-ip/command.rb +34 -0
- data/lib/dldinternet/doctl/compute/floating-ip/create/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/floating-ip/create/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/floating-ip/delete/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/floating-ip/delete/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/floating-ip/get/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/floating-ip/get/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/floating-ip/list/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/floating-ip/list/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/floating-ip/mixins/no_commands.rb +16 -0
- data/lib/dldinternet/doctl/compute/image-action/command.rb +26 -0
- data/lib/dldinternet/doctl/compute/image-action/get/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/image-action/get/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/image-action/mixins/no_commands.rb +16 -0
- data/lib/dldinternet/doctl/compute/image-action/transfer/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/image-action/transfer/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/image/command.rb +46 -0
- data/lib/dldinternet/doctl/compute/image/delete/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/image/delete/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/image/get/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/image/get/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/image/list-application/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/image/list-application/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/image/list-distribution/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/image/list-distribution/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/image/list-user/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/image/list-user/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/image/list/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/image/list/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/image/mixins/no_commands.rb +16 -0
- data/lib/dldinternet/doctl/compute/image/update/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/image/update/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/mixins/no_commands.rb +12 -0
- data/lib/dldinternet/doctl/compute/plugin/command.rb +26 -0
- data/lib/dldinternet/doctl/compute/plugin/list/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/plugin/list/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/plugin/mixins/no_commands.rb +16 -0
- data/lib/dldinternet/doctl/compute/plugin/run/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/plugin/run/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/region/command.rb +22 -0
- data/lib/dldinternet/doctl/compute/region/list/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/region/list/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/region/mixins/no_commands.rb +16 -0
- data/lib/dldinternet/doctl/compute/size/command.rb +22 -0
- data/lib/dldinternet/doctl/compute/size/list/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/size/list/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/size/mixins/no_commands.rb +16 -0
- data/lib/dldinternet/doctl/compute/ssh-key/command.rb +42 -0
- data/lib/dldinternet/doctl/compute/ssh-key/create/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/ssh-key/create/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/ssh-key/delete/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/ssh-key/delete/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/ssh-key/get/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/ssh-key/get/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/ssh-key/import/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/ssh-key/import/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/ssh-key/list/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/ssh-key/list/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/ssh-key/mixins/no_commands.rb +16 -0
- data/lib/dldinternet/doctl/compute/ssh-key/update/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/ssh-key/update/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/ssh/command.rb +18 -0
- data/lib/dldinternet/doctl/compute/ssh/mixins/no_commands.rb +16 -0
- data/lib/dldinternet/doctl/compute/tag/command.rb +38 -0
- data/lib/dldinternet/doctl/compute/tag/create/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/tag/create/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/tag/delete/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/tag/delete/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/tag/get/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/tag/get/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/tag/list/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/tag/list/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/tag/mixins/no_commands.rb +16 -0
- data/lib/dldinternet/doctl/compute/tag/update/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/tag/update/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/volume-action/attach/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/volume-action/attach/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/volume-action/command.rb +26 -0
- data/lib/dldinternet/doctl/compute/volume-action/detach/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/volume-action/detach/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/volume-action/mixins/no_commands.rb +16 -0
- data/lib/dldinternet/doctl/compute/volume/command.rb +34 -0
- data/lib/dldinternet/doctl/compute/volume/create/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/volume/create/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/volume/delete/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/volume/delete/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/volume/get/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/volume/get/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/volume/list/command.rb +20 -0
- data/lib/dldinternet/doctl/compute/volume/list/mixins/no_commands.rb +18 -0
- data/lib/dldinternet/doctl/compute/volume/mixins/no_commands.rb +16 -0
- data/lib/dldinternet/doctl/main.rb +35 -0
- data/lib/dldinternet/doctl/mixins/no_commands.rb +8 -0
- data/lib/dldinternet/doctl/version.rb +5 -0
- metadata +421 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
require 'dldinternet/doctl/api/compute'
|
|
2
|
+
require 'dldinternet/doctl/compute/plugin/list/command'
|
|
3
|
+
require 'dldinternet/doctl/compute/plugin/run/command'
|
|
4
|
+
|
|
5
|
+
module DLDInternet
|
|
6
|
+
module DOctl
|
|
7
|
+
module Compute
|
|
8
|
+
module Plugin
|
|
9
|
+
class Command < DLDInternet::Thor::Command
|
|
10
|
+
no_commands do
|
|
11
|
+
|
|
12
|
+
require 'dldinternet/doctl/compute/plugin/mixins/no_commands'
|
|
13
|
+
include DLDInternet::DOctl::Compute::Plugin::MixIns::NoCommands
|
|
14
|
+
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
desc 'list SUBCOMMAND ... ARGS', 'list plugins'
|
|
18
|
+
subcommand 'list', ::DLDInternet::DOctl::Compute::Plugin::List::Command
|
|
19
|
+
|
|
20
|
+
desc 'run SUBCOMMAND ... ARGS', 'run plugin'
|
|
21
|
+
subcommand 'runit', ::DLDInternet::DOctl::Compute::Plugin::Run::Command
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
require 'dldinternet/doctl/api/compute'
|
|
2
|
+
|
|
3
|
+
module DLDInternet
|
|
4
|
+
module DOctl
|
|
5
|
+
module Compute
|
|
6
|
+
module Plugin
|
|
7
|
+
module List
|
|
8
|
+
class Command < DLDInternet::Thor::Command
|
|
9
|
+
no_commands do
|
|
10
|
+
|
|
11
|
+
require 'dldinternet/doctl/compute/plugin/list/mixins/no_commands'
|
|
12
|
+
include DLDInternet::DOctl::Compute::Plugin::List::MixIns::NoCommands
|
|
13
|
+
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
end
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
module DLDInternet
|
|
2
|
+
module DOctl
|
|
3
|
+
module Compute
|
|
4
|
+
module Plugin
|
|
5
|
+
module List
|
|
6
|
+
module MixIns
|
|
7
|
+
module NoCommands
|
|
8
|
+
|
|
9
|
+
require 'dldinternet/doctl/compute/plugin/mixins/no_commands'
|
|
10
|
+
include DLDInternet::DOctl::Compute::Plugin::MixIns::NoCommands
|
|
11
|
+
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
module DLDInternet
|
|
2
|
+
module DOctl
|
|
3
|
+
module Compute
|
|
4
|
+
module Plugin
|
|
5
|
+
module MixIns
|
|
6
|
+
module NoCommands
|
|
7
|
+
|
|
8
|
+
require 'dldinternet/doctl/compute/mixins/no_commands'
|
|
9
|
+
include DLDInternet::DOctl::Compute::MixIns::NoCommands
|
|
10
|
+
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
require 'dldinternet/doctl/api/compute'
|
|
2
|
+
|
|
3
|
+
module DLDInternet
|
|
4
|
+
module DOctl
|
|
5
|
+
module Compute
|
|
6
|
+
module Plugin
|
|
7
|
+
module Run
|
|
8
|
+
class Command < DLDInternet::Thor::Command
|
|
9
|
+
no_commands do
|
|
10
|
+
|
|
11
|
+
require 'dldinternet/doctl/compute/plugin/run/mixins/no_commands'
|
|
12
|
+
include DLDInternet::DOctl::Compute::Plugin::Run::MixIns::NoCommands
|
|
13
|
+
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
end
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
module DLDInternet
|
|
2
|
+
module DOctl
|
|
3
|
+
module Compute
|
|
4
|
+
module Plugin
|
|
5
|
+
module Run
|
|
6
|
+
module MixIns
|
|
7
|
+
module NoCommands
|
|
8
|
+
|
|
9
|
+
require 'dldinternet/doctl/compute/plugin/mixins/no_commands'
|
|
10
|
+
include DLDInternet::DOctl::Compute::Plugin::MixIns::NoCommands
|
|
11
|
+
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
require 'dldinternet/doctl/api/compute'
|
|
2
|
+
require 'dldinternet/doctl/compute/region/list/command'
|
|
3
|
+
|
|
4
|
+
module DLDInternet
|
|
5
|
+
module DOctl
|
|
6
|
+
module Compute
|
|
7
|
+
module Region
|
|
8
|
+
class Command < DLDInternet::Thor::Command
|
|
9
|
+
no_commands do
|
|
10
|
+
|
|
11
|
+
require 'dldinternet/doctl/compute/region/mixins/no_commands'
|
|
12
|
+
include DLDInternet::DOctl::Compute::Region::MixIns::NoCommands
|
|
13
|
+
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
desc 'list SUBCOMMAND ... ARGS', 'list regions'
|
|
17
|
+
subcommand 'list', ::DLDInternet::DOctl::Compute::Region::List::Command
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
require 'dldinternet/doctl/api/compute'
|
|
2
|
+
|
|
3
|
+
module DLDInternet
|
|
4
|
+
module DOctl
|
|
5
|
+
module Compute
|
|
6
|
+
module Region
|
|
7
|
+
module List
|
|
8
|
+
class Command < DLDInternet::Thor::Command
|
|
9
|
+
no_commands do
|
|
10
|
+
|
|
11
|
+
require 'dldinternet/doctl/compute/region/list/mixins/no_commands'
|
|
12
|
+
include DLDInternet::DOctl::Compute::Region::List::MixIns::NoCommands
|
|
13
|
+
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
end
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
module DLDInternet
|
|
2
|
+
module DOctl
|
|
3
|
+
module Compute
|
|
4
|
+
module Region
|
|
5
|
+
module List
|
|
6
|
+
module MixIns
|
|
7
|
+
module NoCommands
|
|
8
|
+
|
|
9
|
+
require 'dldinternet/doctl/compute/region/mixins/no_commands'
|
|
10
|
+
include DLDInternet::DOctl::Compute::Region::MixIns::NoCommands
|
|
11
|
+
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
module DLDInternet
|
|
2
|
+
module DOctl
|
|
3
|
+
module Compute
|
|
4
|
+
module Region
|
|
5
|
+
module MixIns
|
|
6
|
+
module NoCommands
|
|
7
|
+
|
|
8
|
+
require 'dldinternet/doctl/compute/mixins/no_commands'
|
|
9
|
+
include DLDInternet::DOctl::Compute::MixIns::NoCommands
|
|
10
|
+
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
require 'dldinternet/doctl/api/compute'
|
|
2
|
+
require 'dldinternet/doctl/compute/size/list/command'
|
|
3
|
+
|
|
4
|
+
module DLDInternet
|
|
5
|
+
module DOctl
|
|
6
|
+
module Compute
|
|
7
|
+
module Size
|
|
8
|
+
class Command < DLDInternet::Thor::Command
|
|
9
|
+
no_commands do
|
|
10
|
+
|
|
11
|
+
require 'dldinternet/doctl/compute/size/mixins/no_commands'
|
|
12
|
+
include DLDInternet::DOctl::Compute::Size::MixIns::NoCommands
|
|
13
|
+
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
desc 'list SUBCOMMAND ... ARGS', 'list sizes'
|
|
17
|
+
subcommand 'list', ::DLDInternet::DOctl::Compute::Size::List::Command
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
require 'dldinternet/doctl/api/compute'
|
|
2
|
+
|
|
3
|
+
module DLDInternet
|
|
4
|
+
module DOctl
|
|
5
|
+
module Compute
|
|
6
|
+
module Size
|
|
7
|
+
module List
|
|
8
|
+
class Command < DLDInternet::Thor::Command
|
|
9
|
+
no_commands do
|
|
10
|
+
|
|
11
|
+
require 'dldinternet/doctl/compute/size/list/mixins/no_commands'
|
|
12
|
+
include DLDInternet::DOctl::Compute::Size::List::MixIns::NoCommands
|
|
13
|
+
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
end
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
module DLDInternet
|
|
2
|
+
module DOctl
|
|
3
|
+
module Compute
|
|
4
|
+
module Size
|
|
5
|
+
module List
|
|
6
|
+
module MixIns
|
|
7
|
+
module NoCommands
|
|
8
|
+
|
|
9
|
+
require 'dldinternet/doctl/compute/size/mixins/no_commands'
|
|
10
|
+
include DLDInternet::DOctl::Compute::Size::MixIns::NoCommands
|
|
11
|
+
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
module DLDInternet
|
|
2
|
+
module DOctl
|
|
3
|
+
module Compute
|
|
4
|
+
module Size
|
|
5
|
+
module MixIns
|
|
6
|
+
module NoCommands
|
|
7
|
+
|
|
8
|
+
require 'dldinternet/doctl/compute/mixins/no_commands'
|
|
9
|
+
include DLDInternet::DOctl::Compute::MixIns::NoCommands
|
|
10
|
+
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
require 'dldinternet/doctl/api/compute'
|
|
2
|
+
require 'dldinternet/doctl/compute/ssh-key/list/command'
|
|
3
|
+
require 'dldinternet/doctl/compute/ssh-key/get/command'
|
|
4
|
+
require 'dldinternet/doctl/compute/ssh-key/create/command'
|
|
5
|
+
require 'dldinternet/doctl/compute/ssh-key/import/command'
|
|
6
|
+
require 'dldinternet/doctl/compute/ssh-key/delete/command'
|
|
7
|
+
require 'dldinternet/doctl/compute/ssh-key/update/command'
|
|
8
|
+
|
|
9
|
+
module DLDInternet
|
|
10
|
+
module DOctl
|
|
11
|
+
module Compute
|
|
12
|
+
module SshKey
|
|
13
|
+
class Command < DLDInternet::Thor::Command
|
|
14
|
+
no_commands do
|
|
15
|
+
|
|
16
|
+
require 'dldinternet/doctl/compute/ssh-key/mixins/no_commands'
|
|
17
|
+
include DLDInternet::DOctl::Compute::SshKey::MixIns::NoCommands
|
|
18
|
+
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
desc 'list SUBCOMMAND ... ARGS', 'list ssh keys'
|
|
22
|
+
subcommand 'list', ::DLDInternet::DOctl::Compute::SshKey::List::Command
|
|
23
|
+
|
|
24
|
+
desc 'get SUBCOMMAND ... ARGS', 'get ssh key'
|
|
25
|
+
subcommand 'get', ::DLDInternet::DOctl::Compute::SshKey::Get::Command
|
|
26
|
+
|
|
27
|
+
desc 'create SUBCOMMAND ... ARGS', 'create ssh key'
|
|
28
|
+
subcommand 'create', ::DLDInternet::DOctl::Compute::SshKey::Create::Command
|
|
29
|
+
|
|
30
|
+
desc 'import SUBCOMMAND ... ARGS', 'import ssh key'
|
|
31
|
+
subcommand 'import', ::DLDInternet::DOctl::Compute::SshKey::Import::Command
|
|
32
|
+
|
|
33
|
+
desc 'delete SUBCOMMAND ... ARGS', 'delete ssh key'
|
|
34
|
+
subcommand 'delete', ::DLDInternet::DOctl::Compute::SshKey::Delete::Command
|
|
35
|
+
|
|
36
|
+
desc 'update SUBCOMMAND ... ARGS', 'update ssh key'
|
|
37
|
+
subcommand 'update', ::DLDInternet::DOctl::Compute::SshKey::Update::Command
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
end
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
require 'dldinternet/doctl/api/compute'
|
|
2
|
+
|
|
3
|
+
module DLDInternet
|
|
4
|
+
module DOctl
|
|
5
|
+
module Compute
|
|
6
|
+
module SshKey
|
|
7
|
+
module Create
|
|
8
|
+
class Command < DLDInternet::Thor::Command
|
|
9
|
+
no_commands do
|
|
10
|
+
|
|
11
|
+
require 'dldinternet/doctl/compute/ssh-key/create/mixins/no_commands'
|
|
12
|
+
include DLDInternet::DOctl::Compute::SshKey::Create::MixIns::NoCommands
|
|
13
|
+
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
end
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
module DLDInternet
|
|
2
|
+
module DOctl
|
|
3
|
+
module Compute
|
|
4
|
+
module SshKey
|
|
5
|
+
module Create
|
|
6
|
+
module MixIns
|
|
7
|
+
module NoCommands
|
|
8
|
+
|
|
9
|
+
require 'dldinternet/doctl/compute/ssh-key/mixins/no_commands'
|
|
10
|
+
include DLDInternet::DOctl::Compute::SshKey::MixIns::NoCommands
|
|
11
|
+
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
require 'dldinternet/doctl/api/compute'
|
|
2
|
+
|
|
3
|
+
module DLDInternet
|
|
4
|
+
module DOctl
|
|
5
|
+
module Compute
|
|
6
|
+
module SshKey
|
|
7
|
+
module Delete
|
|
8
|
+
class Command < DLDInternet::Thor::Command
|
|
9
|
+
no_commands do
|
|
10
|
+
|
|
11
|
+
require 'dldinternet/doctl/compute/ssh-key/delete/mixins/no_commands'
|
|
12
|
+
include DLDInternet::DOctl::Compute::SshKey::Delete::MixIns::NoCommands
|
|
13
|
+
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
end
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
module DLDInternet
|
|
2
|
+
module DOctl
|
|
3
|
+
module Compute
|
|
4
|
+
module SshKey
|
|
5
|
+
module Delete
|
|
6
|
+
module MixIns
|
|
7
|
+
module NoCommands
|
|
8
|
+
|
|
9
|
+
require 'dldinternet/doctl/compute/ssh-key/mixins/no_commands'
|
|
10
|
+
include DLDInternet::DOctl::Compute::SshKey::MixIns::NoCommands
|
|
11
|
+
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
require 'dldinternet/doctl/api/compute'
|
|
2
|
+
|
|
3
|
+
module DLDInternet
|
|
4
|
+
module DOctl
|
|
5
|
+
module Compute
|
|
6
|
+
module SshKey
|
|
7
|
+
module Get
|
|
8
|
+
class Command < DLDInternet::Thor::Command
|
|
9
|
+
no_commands do
|
|
10
|
+
|
|
11
|
+
require 'dldinternet/doctl/compute/ssh-key/get/mixins/no_commands'
|
|
12
|
+
include DLDInternet::DOctl::Compute::SshKey::Get::MixIns::NoCommands
|
|
13
|
+
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
end
|