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,20 @@
|
|
|
1
|
+
require 'dldinternet/doctl/api/compute'
|
|
2
|
+
|
|
3
|
+
module DLDInternet
|
|
4
|
+
module DOctl
|
|
5
|
+
module Compute
|
|
6
|
+
module ImageAction
|
|
7
|
+
module Get
|
|
8
|
+
class Command < DLDInternet::Thor::Command
|
|
9
|
+
no_commands do
|
|
10
|
+
|
|
11
|
+
require 'dldinternet/doctl/compute/image-action/get/mixins/no_commands'
|
|
12
|
+
include DLDInternet::DOctl::Compute::ImageAction::Get::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 ImageAction
|
|
5
|
+
module Get
|
|
6
|
+
module MixIns
|
|
7
|
+
module NoCommands
|
|
8
|
+
|
|
9
|
+
require 'dldinternet/doctl/compute/image-action/mixins/no_commands'
|
|
10
|
+
include DLDInternet::DOctl::Compute::ImageAction::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 ImageAction
|
|
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 ImageAction
|
|
7
|
+
module Transfer
|
|
8
|
+
class Command < DLDInternet::Thor::Command
|
|
9
|
+
no_commands do
|
|
10
|
+
|
|
11
|
+
require 'dldinternet/doctl/compute/image-action/transfer/mixins/no_commands'
|
|
12
|
+
include DLDInternet::DOctl::Compute::ImageAction::Transfer::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 ImageAction
|
|
5
|
+
module Transfer
|
|
6
|
+
module MixIns
|
|
7
|
+
module NoCommands
|
|
8
|
+
|
|
9
|
+
require 'dldinternet/doctl/compute/image-action/mixins/no_commands'
|
|
10
|
+
include DLDInternet::DOctl::Compute::ImageAction::MixIns::NoCommands
|
|
11
|
+
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
require 'dldinternet/doctl/api/compute'
|
|
2
|
+
require 'dldinternet/doctl/compute/image/list/command'
|
|
3
|
+
require 'dldinternet/doctl/compute/image/list-distribution/command'
|
|
4
|
+
require 'dldinternet/doctl/compute/image/list-application/command'
|
|
5
|
+
require 'dldinternet/doctl/compute/image/list-user/command'
|
|
6
|
+
require 'dldinternet/doctl/compute/image/get/command'
|
|
7
|
+
require 'dldinternet/doctl/compute/image/update/command'
|
|
8
|
+
require 'dldinternet/doctl/compute/image/delete/command'
|
|
9
|
+
|
|
10
|
+
module DLDInternet
|
|
11
|
+
module DOctl
|
|
12
|
+
module Compute
|
|
13
|
+
module Image
|
|
14
|
+
class Command < DLDInternet::Thor::Command
|
|
15
|
+
no_commands do
|
|
16
|
+
|
|
17
|
+
require 'dldinternet/doctl/compute/image/mixins/no_commands'
|
|
18
|
+
include DLDInternet::DOctl::Compute::Image::MixIns::NoCommands
|
|
19
|
+
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
desc 'list SUBCOMMAND ... ARGS', 'list images'
|
|
23
|
+
subcommand 'list', ::DLDInternet::DOctl::Compute::Image::List::Command
|
|
24
|
+
|
|
25
|
+
desc 'list-distribution SUBCOMMAND ... ARGS', 'list distribution images'
|
|
26
|
+
subcommand 'list-distribution', ::DLDInternet::DOctl::Compute::Image::ListDistribution::Command
|
|
27
|
+
|
|
28
|
+
desc 'list-application SUBCOMMAND ... ARGS', 'list application images'
|
|
29
|
+
subcommand 'list-application', ::DLDInternet::DOctl::Compute::Image::ListApplication::Command
|
|
30
|
+
|
|
31
|
+
desc 'list-user SUBCOMMAND ... ARGS', 'list user images'
|
|
32
|
+
subcommand 'list-user', ::DLDInternet::DOctl::Compute::Image::ListUser::Command
|
|
33
|
+
|
|
34
|
+
desc 'get SUBCOMMAND ... ARGS', 'Get image'
|
|
35
|
+
subcommand 'get', ::DLDInternet::DOctl::Compute::Image::Get::Command
|
|
36
|
+
|
|
37
|
+
desc 'update SUBCOMMAND ... ARGS', 'Update image'
|
|
38
|
+
subcommand 'update', ::DLDInternet::DOctl::Compute::Image::Update::Command
|
|
39
|
+
|
|
40
|
+
desc 'delete SUBCOMMAND ... ARGS', 'Delete image'
|
|
41
|
+
subcommand 'delete', ::DLDInternet::DOctl::Compute::Image::Delete::Command
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
end
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
require 'dldinternet/doctl/api/compute'
|
|
2
|
+
|
|
3
|
+
module DLDInternet
|
|
4
|
+
module DOctl
|
|
5
|
+
module Compute
|
|
6
|
+
module Image
|
|
7
|
+
module Delete
|
|
8
|
+
class Command < DLDInternet::Thor::Command
|
|
9
|
+
no_commands do
|
|
10
|
+
|
|
11
|
+
require 'dldinternet/doctl/compute/image/delete/mixins/no_commands'
|
|
12
|
+
include DLDInternet::DOctl::Compute::Image::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 Image
|
|
5
|
+
module Delete
|
|
6
|
+
module MixIns
|
|
7
|
+
module NoCommands
|
|
8
|
+
|
|
9
|
+
require 'dldinternet/doctl/compute/image/mixins/no_commands'
|
|
10
|
+
include DLDInternet::DOctl::Compute::Image::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 Image
|
|
7
|
+
module Get
|
|
8
|
+
class Command < DLDInternet::Thor::Command
|
|
9
|
+
no_commands do
|
|
10
|
+
|
|
11
|
+
require 'dldinternet/doctl/compute/image/get/mixins/no_commands'
|
|
12
|
+
include DLDInternet::DOctl::Compute::Image::Get::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 Image
|
|
5
|
+
module Get
|
|
6
|
+
module MixIns
|
|
7
|
+
module NoCommands
|
|
8
|
+
|
|
9
|
+
require 'dldinternet/doctl/compute/image/mixins/no_commands'
|
|
10
|
+
include DLDInternet::DOctl::Compute::Image::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 Image
|
|
7
|
+
module ListApplication
|
|
8
|
+
class Command < DLDInternet::Thor::Command
|
|
9
|
+
no_commands do
|
|
10
|
+
|
|
11
|
+
require 'dldinternet/doctl/compute/image/list-application/mixins/no_commands'
|
|
12
|
+
include DLDInternet::DOctl::Compute::Image::ListApplication::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 Image
|
|
5
|
+
module ListApplication
|
|
6
|
+
module MixIns
|
|
7
|
+
module NoCommands
|
|
8
|
+
|
|
9
|
+
require 'dldinternet/doctl/compute/image/mixins/no_commands'
|
|
10
|
+
include DLDInternet::DOctl::Compute::Image::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 Image
|
|
7
|
+
module ListDistribution
|
|
8
|
+
class Command < DLDInternet::Thor::Command
|
|
9
|
+
no_commands do
|
|
10
|
+
|
|
11
|
+
require 'dldinternet/doctl/compute/image/list-distribution/mixins/no_commands'
|
|
12
|
+
include DLDInternet::DOctl::Compute::Image::ListDistribution::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 Image
|
|
5
|
+
module ListDistribution
|
|
6
|
+
module MixIns
|
|
7
|
+
module NoCommands
|
|
8
|
+
|
|
9
|
+
require 'dldinternet/doctl/compute/image/mixins/no_commands'
|
|
10
|
+
include DLDInternet::DOctl::Compute::Image::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 Image
|
|
7
|
+
module ListUser
|
|
8
|
+
class Command < DLDInternet::Thor::Command
|
|
9
|
+
no_commands do
|
|
10
|
+
|
|
11
|
+
require 'dldinternet/doctl/compute/image/list-user/mixins/no_commands'
|
|
12
|
+
include DLDInternet::DOctl::Compute::Image::ListUser::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 Image
|
|
5
|
+
module ListUser
|
|
6
|
+
module MixIns
|
|
7
|
+
module NoCommands
|
|
8
|
+
|
|
9
|
+
require 'dldinternet/doctl/compute/image/mixins/no_commands'
|
|
10
|
+
include DLDInternet::DOctl::Compute::Image::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 Image
|
|
7
|
+
module List
|
|
8
|
+
class Command < DLDInternet::Thor::Command
|
|
9
|
+
no_commands do
|
|
10
|
+
|
|
11
|
+
require 'dldinternet/doctl/compute/image/list/mixins/no_commands'
|
|
12
|
+
include DLDInternet::DOctl::Compute::Image::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 Image
|
|
5
|
+
module List
|
|
6
|
+
module MixIns
|
|
7
|
+
module NoCommands
|
|
8
|
+
|
|
9
|
+
require 'dldinternet/doctl/compute/image/mixins/no_commands'
|
|
10
|
+
include DLDInternet::DOctl::Compute::Image::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 Image
|
|
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 Image
|
|
7
|
+
module Update
|
|
8
|
+
class Command < DLDInternet::Thor::Command
|
|
9
|
+
no_commands do
|
|
10
|
+
|
|
11
|
+
require 'dldinternet/doctl/compute/image/update/mixins/no_commands'
|
|
12
|
+
include DLDInternet::DOctl::Compute::Image::Update::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 Image
|
|
5
|
+
module Update
|
|
6
|
+
module MixIns
|
|
7
|
+
module NoCommands
|
|
8
|
+
|
|
9
|
+
require 'dldinternet/doctl/compute/image/mixins/no_commands'
|
|
10
|
+
include DLDInternet::DOctl::Compute::Image::MixIns::NoCommands
|
|
11
|
+
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|