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.
Files changed (205) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +32 -0
  3. data/Gemfile.lock +240 -0
  4. data/bin/doctl +39 -0
  5. data/doctl.gemspec +34 -0
  6. data/lib/dldinternet/doctl/account/command.rb +39 -0
  7. data/lib/dldinternet/doctl/account/mixins/no_commands.rb +12 -0
  8. data/lib/dldinternet/doctl/api/account.rb +2 -0
  9. data/lib/dldinternet/doctl/api/account/get.rb +18 -0
  10. data/lib/dldinternet/doctl/api/account/ratelimit.rb +22 -0
  11. data/lib/dldinternet/doctl/api/auth.rb +1 -0
  12. data/lib/dldinternet/doctl/api/auth/get.rb +16 -0
  13. data/lib/dldinternet/doctl/api/auth/mixins/get/getnameservers.rb +17 -0
  14. data/lib/dldinternet/doctl/api/base.rb +120 -0
  15. data/lib/dldinternet/doctl/api/compute.rb +1 -0
  16. data/lib/dldinternet/doctl/api/compute/domain.rb +6 -0
  17. data/lib/dldinternet/doctl/api/compute/domain/create.rb +29 -0
  18. data/lib/dldinternet/doctl/api/compute/domain/delete.rb +28 -0
  19. data/lib/dldinternet/doctl/api/compute/domain/get.rb +20 -0
  20. data/lib/dldinternet/doctl/api/compute/domain/list.rb +24 -0
  21. data/lib/dldinternet/doctl/api/compute/domain/records.rb +4 -0
  22. data/lib/dldinternet/doctl/api/compute/domain/records/create.rb +30 -0
  23. data/lib/dldinternet/doctl/api/compute/domain/records/delete.rb +30 -0
  24. data/lib/dldinternet/doctl/api/compute/domain/records/list.rb +33 -0
  25. data/lib/dldinternet/doctl/api/compute/domain/records/update.rb +30 -0
  26. data/lib/dldinternet/doctl/auth/command.rb +19 -0
  27. data/lib/dldinternet/doctl/auth/init/command.rb +18 -0
  28. data/lib/dldinternet/doctl/auth/init/mixins/no_commands.rb +16 -0
  29. data/lib/dldinternet/doctl/auth/mixins/no_commands.rb +12 -0
  30. data/lib/dldinternet/doctl/compute/action/command.rb +30 -0
  31. data/lib/dldinternet/doctl/compute/action/get/command.rb +20 -0
  32. data/lib/dldinternet/doctl/compute/action/get/mixins/no_commands.rb +18 -0
  33. data/lib/dldinternet/doctl/compute/action/list/command.rb +20 -0
  34. data/lib/dldinternet/doctl/compute/action/list/mixins/no_commands.rb +18 -0
  35. data/lib/dldinternet/doctl/compute/action/mixins/no_commands.rb +16 -0
  36. data/lib/dldinternet/doctl/compute/action/wait/command.rb +20 -0
  37. data/lib/dldinternet/doctl/compute/action/wait/mixins/no_commands.rb +18 -0
  38. data/lib/dldinternet/doctl/compute/command.rb +81 -0
  39. data/lib/dldinternet/doctl/compute/domain/command.rb +105 -0
  40. data/lib/dldinternet/doctl/compute/domain/mixins/no_commands.rb +16 -0
  41. data/lib/dldinternet/doctl/compute/domain/records/command.rb +89 -0
  42. data/lib/dldinternet/doctl/compute/domain/records/mixins/no_commands.rb +62 -0
  43. data/lib/dldinternet/doctl/compute/droplet-action/change-kernel/command.rb +20 -0
  44. data/lib/dldinternet/doctl/compute/droplet-action/change-kernel/mixins/no_commands.rb +18 -0
  45. data/lib/dldinternet/doctl/compute/droplet-action/command.rb +86 -0
  46. data/lib/dldinternet/doctl/compute/droplet-action/disable-backups/command.rb +20 -0
  47. data/lib/dldinternet/doctl/compute/droplet-action/disable-backups/mixins/no_commands.rb +18 -0
  48. data/lib/dldinternet/doctl/compute/droplet-action/enable-ipv6/command.rb +20 -0
  49. data/lib/dldinternet/doctl/compute/droplet-action/enable-ipv6/mixins/no_commands.rb +18 -0
  50. data/lib/dldinternet/doctl/compute/droplet-action/enable-private-networking/command.rb +20 -0
  51. data/lib/dldinternet/doctl/compute/droplet-action/enable-private-networking/mixins/no_commands.rb +18 -0
  52. data/lib/dldinternet/doctl/compute/droplet-action/get/command.rb +20 -0
  53. data/lib/dldinternet/doctl/compute/droplet-action/get/mixins/no_commands.rb +18 -0
  54. data/lib/dldinternet/doctl/compute/droplet-action/mixins/no_commands.rb +16 -0
  55. data/lib/dldinternet/doctl/compute/droplet-action/password-reset/command.rb +20 -0
  56. data/lib/dldinternet/doctl/compute/droplet-action/password-reset/mixins/no_commands.rb +18 -0
  57. data/lib/dldinternet/doctl/compute/droplet-action/power-cycle/command.rb +20 -0
  58. data/lib/dldinternet/doctl/compute/droplet-action/power-cycle/mixins/no_commands.rb +18 -0
  59. data/lib/dldinternet/doctl/compute/droplet-action/power-off/command.rb +20 -0
  60. data/lib/dldinternet/doctl/compute/droplet-action/power-off/mixins/no_commands.rb +18 -0
  61. data/lib/dldinternet/doctl/compute/droplet-action/power-on/command.rb +20 -0
  62. data/lib/dldinternet/doctl/compute/droplet-action/power-on/mixins/no_commands.rb +18 -0
  63. data/lib/dldinternet/doctl/compute/droplet-action/reboot/command.rb +20 -0
  64. data/lib/dldinternet/doctl/compute/droplet-action/reboot/mixins/no_commands.rb +18 -0
  65. data/lib/dldinternet/doctl/compute/droplet-action/rebuild/command.rb +20 -0
  66. data/lib/dldinternet/doctl/compute/droplet-action/rebuild/mixins/no_commands.rb +18 -0
  67. data/lib/dldinternet/doctl/compute/droplet-action/rename/command.rb +20 -0
  68. data/lib/dldinternet/doctl/compute/droplet-action/rename/mixins/no_commands.rb +18 -0
  69. data/lib/dldinternet/doctl/compute/droplet-action/resize/command.rb +20 -0
  70. data/lib/dldinternet/doctl/compute/droplet-action/resize/mixins/no_commands.rb +18 -0
  71. data/lib/dldinternet/doctl/compute/droplet-action/restore/command.rb +20 -0
  72. data/lib/dldinternet/doctl/compute/droplet-action/restore/mixins/no_commands.rb +18 -0
  73. data/lib/dldinternet/doctl/compute/droplet-action/shutdown/command.rb +20 -0
  74. data/lib/dldinternet/doctl/compute/droplet-action/shutdown/mixins/no_commands.rb +18 -0
  75. data/lib/dldinternet/doctl/compute/droplet-action/snapshot/command.rb +20 -0
  76. data/lib/dldinternet/doctl/compute/droplet-action/snapshot/mixins/no_commands.rb +18 -0
  77. data/lib/dldinternet/doctl/compute/droplet-action/upgrade/command.rb +20 -0
  78. data/lib/dldinternet/doctl/compute/droplet-action/upgrade/mixins/no_commands.rb +18 -0
  79. data/lib/dldinternet/doctl/compute/droplet/actions/command.rb +20 -0
  80. data/lib/dldinternet/doctl/compute/droplet/actions/mixins/no_commands.rb +18 -0
  81. data/lib/dldinternet/doctl/compute/droplet/backups/command.rb +20 -0
  82. data/lib/dldinternet/doctl/compute/droplet/backups/mixins/no_commands.rb +18 -0
  83. data/lib/dldinternet/doctl/compute/droplet/command.rb +62 -0
  84. data/lib/dldinternet/doctl/compute/droplet/create/command.rb +20 -0
  85. data/lib/dldinternet/doctl/compute/droplet/create/mixins/no_commands.rb +18 -0
  86. data/lib/dldinternet/doctl/compute/droplet/delete/command.rb +20 -0
  87. data/lib/dldinternet/doctl/compute/droplet/delete/mixins/no_commands.rb +18 -0
  88. data/lib/dldinternet/doctl/compute/droplet/get/command.rb +20 -0
  89. data/lib/dldinternet/doctl/compute/droplet/get/mixins/no_commands.rb +18 -0
  90. data/lib/dldinternet/doctl/compute/droplet/kernels/command.rb +20 -0
  91. data/lib/dldinternet/doctl/compute/droplet/kernels/mixins/no_commands.rb +18 -0
  92. data/lib/dldinternet/doctl/compute/droplet/list/command.rb +20 -0
  93. data/lib/dldinternet/doctl/compute/droplet/list/mixins/no_commands.rb +18 -0
  94. data/lib/dldinternet/doctl/compute/droplet/mixins/no_commands.rb +16 -0
  95. data/lib/dldinternet/doctl/compute/droplet/neighbors/command.rb +20 -0
  96. data/lib/dldinternet/doctl/compute/droplet/neighbors/mixins/no_commands.rb +18 -0
  97. data/lib/dldinternet/doctl/compute/droplet/snapshots/command.rb +20 -0
  98. data/lib/dldinternet/doctl/compute/droplet/snapshots/mixins/no_commands.rb +18 -0
  99. data/lib/dldinternet/doctl/compute/droplet/tag/command.rb +20 -0
  100. data/lib/dldinternet/doctl/compute/droplet/tag/mixins/no_commands.rb +18 -0
  101. data/lib/dldinternet/doctl/compute/droplet/untag/command.rb +20 -0
  102. data/lib/dldinternet/doctl/compute/droplet/untag/mixins/no_commands.rb +18 -0
  103. data/lib/dldinternet/doctl/compute/floating-ip-action/assign/command.rb +20 -0
  104. data/lib/dldinternet/doctl/compute/floating-ip-action/assign/mixins/no_commands.rb +18 -0
  105. data/lib/dldinternet/doctl/compute/floating-ip-action/command.rb +30 -0
  106. data/lib/dldinternet/doctl/compute/floating-ip-action/get/command.rb +20 -0
  107. data/lib/dldinternet/doctl/compute/floating-ip-action/get/mixins/no_commands.rb +18 -0
  108. data/lib/dldinternet/doctl/compute/floating-ip-action/mixins/no_commands.rb +16 -0
  109. data/lib/dldinternet/doctl/compute/floating-ip-action/unassign/command.rb +20 -0
  110. data/lib/dldinternet/doctl/compute/floating-ip-action/unassign/mixins/no_commands.rb +18 -0
  111. data/lib/dldinternet/doctl/compute/floating-ip/command.rb +34 -0
  112. data/lib/dldinternet/doctl/compute/floating-ip/create/command.rb +20 -0
  113. data/lib/dldinternet/doctl/compute/floating-ip/create/mixins/no_commands.rb +18 -0
  114. data/lib/dldinternet/doctl/compute/floating-ip/delete/command.rb +20 -0
  115. data/lib/dldinternet/doctl/compute/floating-ip/delete/mixins/no_commands.rb +18 -0
  116. data/lib/dldinternet/doctl/compute/floating-ip/get/command.rb +20 -0
  117. data/lib/dldinternet/doctl/compute/floating-ip/get/mixins/no_commands.rb +18 -0
  118. data/lib/dldinternet/doctl/compute/floating-ip/list/command.rb +20 -0
  119. data/lib/dldinternet/doctl/compute/floating-ip/list/mixins/no_commands.rb +18 -0
  120. data/lib/dldinternet/doctl/compute/floating-ip/mixins/no_commands.rb +16 -0
  121. data/lib/dldinternet/doctl/compute/image-action/command.rb +26 -0
  122. data/lib/dldinternet/doctl/compute/image-action/get/command.rb +20 -0
  123. data/lib/dldinternet/doctl/compute/image-action/get/mixins/no_commands.rb +18 -0
  124. data/lib/dldinternet/doctl/compute/image-action/mixins/no_commands.rb +16 -0
  125. data/lib/dldinternet/doctl/compute/image-action/transfer/command.rb +20 -0
  126. data/lib/dldinternet/doctl/compute/image-action/transfer/mixins/no_commands.rb +18 -0
  127. data/lib/dldinternet/doctl/compute/image/command.rb +46 -0
  128. data/lib/dldinternet/doctl/compute/image/delete/command.rb +20 -0
  129. data/lib/dldinternet/doctl/compute/image/delete/mixins/no_commands.rb +18 -0
  130. data/lib/dldinternet/doctl/compute/image/get/command.rb +20 -0
  131. data/lib/dldinternet/doctl/compute/image/get/mixins/no_commands.rb +18 -0
  132. data/lib/dldinternet/doctl/compute/image/list-application/command.rb +20 -0
  133. data/lib/dldinternet/doctl/compute/image/list-application/mixins/no_commands.rb +18 -0
  134. data/lib/dldinternet/doctl/compute/image/list-distribution/command.rb +20 -0
  135. data/lib/dldinternet/doctl/compute/image/list-distribution/mixins/no_commands.rb +18 -0
  136. data/lib/dldinternet/doctl/compute/image/list-user/command.rb +20 -0
  137. data/lib/dldinternet/doctl/compute/image/list-user/mixins/no_commands.rb +18 -0
  138. data/lib/dldinternet/doctl/compute/image/list/command.rb +20 -0
  139. data/lib/dldinternet/doctl/compute/image/list/mixins/no_commands.rb +18 -0
  140. data/lib/dldinternet/doctl/compute/image/mixins/no_commands.rb +16 -0
  141. data/lib/dldinternet/doctl/compute/image/update/command.rb +20 -0
  142. data/lib/dldinternet/doctl/compute/image/update/mixins/no_commands.rb +18 -0
  143. data/lib/dldinternet/doctl/compute/mixins/no_commands.rb +12 -0
  144. data/lib/dldinternet/doctl/compute/plugin/command.rb +26 -0
  145. data/lib/dldinternet/doctl/compute/plugin/list/command.rb +20 -0
  146. data/lib/dldinternet/doctl/compute/plugin/list/mixins/no_commands.rb +18 -0
  147. data/lib/dldinternet/doctl/compute/plugin/mixins/no_commands.rb +16 -0
  148. data/lib/dldinternet/doctl/compute/plugin/run/command.rb +20 -0
  149. data/lib/dldinternet/doctl/compute/plugin/run/mixins/no_commands.rb +18 -0
  150. data/lib/dldinternet/doctl/compute/region/command.rb +22 -0
  151. data/lib/dldinternet/doctl/compute/region/list/command.rb +20 -0
  152. data/lib/dldinternet/doctl/compute/region/list/mixins/no_commands.rb +18 -0
  153. data/lib/dldinternet/doctl/compute/region/mixins/no_commands.rb +16 -0
  154. data/lib/dldinternet/doctl/compute/size/command.rb +22 -0
  155. data/lib/dldinternet/doctl/compute/size/list/command.rb +20 -0
  156. data/lib/dldinternet/doctl/compute/size/list/mixins/no_commands.rb +18 -0
  157. data/lib/dldinternet/doctl/compute/size/mixins/no_commands.rb +16 -0
  158. data/lib/dldinternet/doctl/compute/ssh-key/command.rb +42 -0
  159. data/lib/dldinternet/doctl/compute/ssh-key/create/command.rb +20 -0
  160. data/lib/dldinternet/doctl/compute/ssh-key/create/mixins/no_commands.rb +18 -0
  161. data/lib/dldinternet/doctl/compute/ssh-key/delete/command.rb +20 -0
  162. data/lib/dldinternet/doctl/compute/ssh-key/delete/mixins/no_commands.rb +18 -0
  163. data/lib/dldinternet/doctl/compute/ssh-key/get/command.rb +20 -0
  164. data/lib/dldinternet/doctl/compute/ssh-key/get/mixins/no_commands.rb +18 -0
  165. data/lib/dldinternet/doctl/compute/ssh-key/import/command.rb +20 -0
  166. data/lib/dldinternet/doctl/compute/ssh-key/import/mixins/no_commands.rb +18 -0
  167. data/lib/dldinternet/doctl/compute/ssh-key/list/command.rb +20 -0
  168. data/lib/dldinternet/doctl/compute/ssh-key/list/mixins/no_commands.rb +18 -0
  169. data/lib/dldinternet/doctl/compute/ssh-key/mixins/no_commands.rb +16 -0
  170. data/lib/dldinternet/doctl/compute/ssh-key/update/command.rb +20 -0
  171. data/lib/dldinternet/doctl/compute/ssh-key/update/mixins/no_commands.rb +18 -0
  172. data/lib/dldinternet/doctl/compute/ssh/command.rb +18 -0
  173. data/lib/dldinternet/doctl/compute/ssh/mixins/no_commands.rb +16 -0
  174. data/lib/dldinternet/doctl/compute/tag/command.rb +38 -0
  175. data/lib/dldinternet/doctl/compute/tag/create/command.rb +20 -0
  176. data/lib/dldinternet/doctl/compute/tag/create/mixins/no_commands.rb +18 -0
  177. data/lib/dldinternet/doctl/compute/tag/delete/command.rb +20 -0
  178. data/lib/dldinternet/doctl/compute/tag/delete/mixins/no_commands.rb +18 -0
  179. data/lib/dldinternet/doctl/compute/tag/get/command.rb +20 -0
  180. data/lib/dldinternet/doctl/compute/tag/get/mixins/no_commands.rb +18 -0
  181. data/lib/dldinternet/doctl/compute/tag/list/command.rb +20 -0
  182. data/lib/dldinternet/doctl/compute/tag/list/mixins/no_commands.rb +18 -0
  183. data/lib/dldinternet/doctl/compute/tag/mixins/no_commands.rb +16 -0
  184. data/lib/dldinternet/doctl/compute/tag/update/command.rb +20 -0
  185. data/lib/dldinternet/doctl/compute/tag/update/mixins/no_commands.rb +18 -0
  186. data/lib/dldinternet/doctl/compute/volume-action/attach/command.rb +20 -0
  187. data/lib/dldinternet/doctl/compute/volume-action/attach/mixins/no_commands.rb +18 -0
  188. data/lib/dldinternet/doctl/compute/volume-action/command.rb +26 -0
  189. data/lib/dldinternet/doctl/compute/volume-action/detach/command.rb +20 -0
  190. data/lib/dldinternet/doctl/compute/volume-action/detach/mixins/no_commands.rb +18 -0
  191. data/lib/dldinternet/doctl/compute/volume-action/mixins/no_commands.rb +16 -0
  192. data/lib/dldinternet/doctl/compute/volume/command.rb +34 -0
  193. data/lib/dldinternet/doctl/compute/volume/create/command.rb +20 -0
  194. data/lib/dldinternet/doctl/compute/volume/create/mixins/no_commands.rb +18 -0
  195. data/lib/dldinternet/doctl/compute/volume/delete/command.rb +20 -0
  196. data/lib/dldinternet/doctl/compute/volume/delete/mixins/no_commands.rb +18 -0
  197. data/lib/dldinternet/doctl/compute/volume/get/command.rb +20 -0
  198. data/lib/dldinternet/doctl/compute/volume/get/mixins/no_commands.rb +18 -0
  199. data/lib/dldinternet/doctl/compute/volume/list/command.rb +20 -0
  200. data/lib/dldinternet/doctl/compute/volume/list/mixins/no_commands.rb +18 -0
  201. data/lib/dldinternet/doctl/compute/volume/mixins/no_commands.rb +16 -0
  202. data/lib/dldinternet/doctl/main.rb +35 -0
  203. data/lib/dldinternet/doctl/mixins/no_commands.rb +8 -0
  204. data/lib/dldinternet/doctl/version.rb +5 -0
  205. 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 VolumeAction
7
+ module Attach
8
+ class Command < DLDInternet::Thor::Command
9
+ no_commands do
10
+
11
+ require 'dldinternet/doctl/compute/volume-action/attach/mixins/no_commands'
12
+ include DLDInternet::DOctl::Compute::VolumeAction::Attach::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 VolumeAction
5
+ module Attach
6
+ module MixIns
7
+ module NoCommands
8
+
9
+ require 'dldinternet/doctl/compute/volume-action/mixins/no_commands'
10
+ include DLDInternet::DOctl::Compute::VolumeAction::MixIns::NoCommands
11
+
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,26 @@
1
+ require 'dldinternet/doctl/api/compute'
2
+ require 'dldinternet/doctl/compute/volume-action/attach/command'
3
+ require 'dldinternet/doctl/compute/volume-action/detach/command'
4
+
5
+ module DLDInternet
6
+ module DOctl
7
+ module Compute
8
+ module VolumeAction
9
+ class Command < DLDInternet::Thor::Command
10
+ no_commands do
11
+
12
+ require 'dldinternet/doctl/compute/volume-action/mixins/no_commands'
13
+ include DLDInternet::DOctl::Compute::VolumeAction::MixIns::NoCommands
14
+
15
+ end
16
+
17
+ desc 'attach SUBCOMMAND ... ARGS', 'attach a volume'
18
+ subcommand 'attach', ::DLDInternet::DOctl::Compute::VolumeAction::Attach::Command
19
+
20
+ desc 'detach SUBCOMMAND ... ARGS', 'detach a volume'
21
+ subcommand 'detach', ::DLDInternet::DOctl::Compute::VolumeAction::Detach::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 VolumeAction
7
+ module Detach
8
+ class Command < DLDInternet::Thor::Command
9
+ no_commands do
10
+
11
+ require 'dldinternet/doctl/compute/volume-action/detach/mixins/no_commands'
12
+ include DLDInternet::DOctl::Compute::VolumeAction::Detach::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 VolumeAction
5
+ module Detach
6
+ module MixIns
7
+ module NoCommands
8
+
9
+ require 'dldinternet/doctl/compute/volume-action/mixins/no_commands'
10
+ include DLDInternet::DOctl::Compute::VolumeAction::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 VolumeAction
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,34 @@
1
+ require 'dldinternet/doctl/api/compute'
2
+ require 'dldinternet/doctl/compute/volume/list/command'
3
+ require 'dldinternet/doctl/compute/volume/create/command'
4
+ require 'dldinternet/doctl/compute/volume/delete/command'
5
+ require 'dldinternet/doctl/compute/volume/get/command'
6
+
7
+ module DLDInternet
8
+ module DOctl
9
+ module Compute
10
+ module Volume
11
+ class Command < DLDInternet::Thor::Command
12
+ no_commands do
13
+
14
+ require 'dldinternet/doctl/compute/volume/mixins/no_commands'
15
+ include DLDInternet::DOctl::Compute::Volume::MixIns::NoCommands
16
+
17
+ end
18
+
19
+ desc 'list SUBCOMMAND ... ARGS', 'list volume'
20
+ subcommand 'list', ::DLDInternet::DOctl::Compute::Volume::List::Command
21
+
22
+ desc 'create SUBCOMMAND ... ARGS', 'create a volume'
23
+ subcommand 'create', ::DLDInternet::DOctl::Compute::Volume::Create::Command
24
+
25
+ desc 'delete SUBCOMMAND ... ARGS', 'delete a volume'
26
+ subcommand 'delete', ::DLDInternet::DOctl::Compute::Volume::Delete::Command
27
+
28
+ desc 'get SUBCOMMAND ... ARGS', 'get a volume'
29
+ subcommand 'get', ::DLDInternet::DOctl::Compute::Volume::Get::Command
30
+ end
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,20 @@
1
+ require 'dldinternet/doctl/api/compute'
2
+
3
+ module DLDInternet
4
+ module DOctl
5
+ module Compute
6
+ module Volume
7
+ module Create
8
+ class Command < DLDInternet::Thor::Command
9
+ no_commands do
10
+
11
+ require 'dldinternet/doctl/compute/volume/create/mixins/no_commands'
12
+ include DLDInternet::DOctl::Compute::Volume::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 Volume
5
+ module Create
6
+ module MixIns
7
+ module NoCommands
8
+
9
+ require 'dldinternet/doctl/compute/volume/mixins/no_commands'
10
+ include DLDInternet::DOctl::Compute::Volume::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 Volume
7
+ module Delete
8
+ class Command < DLDInternet::Thor::Command
9
+ no_commands do
10
+
11
+ require 'dldinternet/doctl/compute/volume/delete/mixins/no_commands'
12
+ include DLDInternet::DOctl::Compute::Volume::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 Volume
5
+ module Delete
6
+ module MixIns
7
+ module NoCommands
8
+
9
+ require 'dldinternet/doctl/compute/volume/mixins/no_commands'
10
+ include DLDInternet::DOctl::Compute::Volume::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 Volume
7
+ module Get
8
+ class Command < DLDInternet::Thor::Command
9
+ no_commands do
10
+
11
+ require 'dldinternet/doctl/compute/volume/get/mixins/no_commands'
12
+ include DLDInternet::DOctl::Compute::Volume::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 Volume
5
+ module Get
6
+ module MixIns
7
+ module NoCommands
8
+
9
+ require 'dldinternet/doctl/compute/volume/mixins/no_commands'
10
+ include DLDInternet::DOctl::Compute::Volume::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 Volume
7
+ module List
8
+ class Command < DLDInternet::Thor::Command
9
+ no_commands do
10
+
11
+ require 'dldinternet/doctl/compute/volume/list/mixins/no_commands'
12
+ include DLDInternet::DOctl::Compute::Volume::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 Volume
5
+ module List
6
+ module MixIns
7
+ module NoCommands
8
+
9
+ require 'dldinternet/doctl/compute/volume/mixins/no_commands'
10
+ include DLDInternet::DOctl::Compute::Volume::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 Volume
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,35 @@
1
+ require 'dldinternet/thor/command'
2
+ require 'dldinternet/doctl/version'
3
+ require 'dldinternet/doctl/account/command'
4
+ require 'dldinternet/doctl/auth/command'
5
+ require 'dldinternet/doctl/compute/command'
6
+
7
+ module DLDInternet
8
+ module DOctl
9
+ class Main < DLDInternet::Thor::Command
10
+ class_option :verbose, type: :boolean
11
+ class_option :debug, type: :boolean
12
+ class_option :trace, type: :boolean
13
+ class_option :log_level, type: :string, banner: 'Log level ([:trace, :debug, :info, :step, :warn, :error, :fatal, :todo])'
14
+ class_option :output, type: :string, default: :text, aliases: ['--format']
15
+ class_option :access_token, type: :string
16
+ class_option :config, type: :string, default: '~/.config/doctl/config.yaml'
17
+
18
+ desc 'account SUBCOMMAND ... ARGS', 'do domains'
19
+ subcommand 'account', ::DLDInternet::DOctl::Account::Command
20
+
21
+ desc 'auth SUBCOMMAND ... ARGS', 'do domains'
22
+ subcommand 'auth', ::DLDInternet::DOctl::Auth::Command
23
+
24
+ desc 'compute SUBCOMMAND ... ARGS', 'do domains'
25
+ subcommand 'compute', ::DLDInternet::DOctl::Compute::Command
26
+
27
+ desc 'version', 'Version'
28
+ def version()
29
+ command_pre
30
+ command_out "#{self.class.namespace}(ruby) version #{::DLDInternet::DOctl::VERSION}"
31
+ 0
32
+ end
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,8 @@
1
+ module DLDInternet
2
+ module DOctl
3
+ module MixIns
4
+ module NoCommands
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,5 @@
1
+ module DLDInternet
2
+ module DOctl
3
+ VERSION = '0.4.2'
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,421 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: doctl
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.4.2
5
+ platform: ruby
6
+ authors:
7
+ - Christo De Lange
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-03-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: hashie
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: nokogiri
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: paint-shortcuts
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: droplet_kit
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0.3'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0.3'
69
+ - !ruby/object:Gem::Dependency
70
+ name: thor
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: 0.19.4
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: 0.19.4
83
+ - !ruby/object:Gem::Dependency
84
+ name: awesome_print
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">"
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">"
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: dldinternet-mixlib-logging
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: 0.7.0
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: 0.7.0
111
+ - !ruby/object:Gem::Dependency
112
+ name: dldinternet-mixlib-thor
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: 0.2.0
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: 0.2.0
125
+ - !ruby/object:Gem::Dependency
126
+ name: command_line_reporter
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '3.3'
132
+ - - ">="
133
+ - !ruby/object:Gem::Version
134
+ version: 3.3.6
135
+ type: :runtime
136
+ prerelease: false
137
+ version_requirements: !ruby/object:Gem::Requirement
138
+ requirements:
139
+ - - "~>"
140
+ - !ruby/object:Gem::Version
141
+ version: '3.3'
142
+ - - ">="
143
+ - !ruby/object:Gem::Version
144
+ version: 3.3.6
145
+ - !ruby/object:Gem::Dependency
146
+ name: bundler
147
+ requirement: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - "~>"
150
+ - !ruby/object:Gem::Version
151
+ version: '1.0'
152
+ type: :development
153
+ prerelease: false
154
+ version_requirements: !ruby/object:Gem::Requirement
155
+ requirements:
156
+ - - "~>"
157
+ - !ruby/object:Gem::Version
158
+ version: '1.0'
159
+ - !ruby/object:Gem::Dependency
160
+ name: rake
161
+ requirement: !ruby/object:Gem::Requirement
162
+ requirements:
163
+ - - "~>"
164
+ - !ruby/object:Gem::Version
165
+ version: '0.8'
166
+ type: :development
167
+ prerelease: false
168
+ version_requirements: !ruby/object:Gem::Requirement
169
+ requirements:
170
+ - - "~>"
171
+ - !ruby/object:Gem::Version
172
+ version: '0.8'
173
+ - !ruby/object:Gem::Dependency
174
+ name: rubygems-tasks
175
+ requirement: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - "~>"
178
+ - !ruby/object:Gem::Version
179
+ version: '0.2'
180
+ type: :development
181
+ prerelease: false
182
+ version_requirements: !ruby/object:Gem::Requirement
183
+ requirements:
184
+ - - "~>"
185
+ - !ruby/object:Gem::Version
186
+ version: '0.2'
187
+ description: DLDInternet DOctl tools
188
+ email: rubygems@dldinternet.com
189
+ executables:
190
+ - doctl
191
+ extensions: []
192
+ extra_rdoc_files: []
193
+ files:
194
+ - Gemfile
195
+ - Gemfile.lock
196
+ - bin/doctl
197
+ - doctl.gemspec
198
+ - lib/dldinternet/doctl/account/command.rb
199
+ - lib/dldinternet/doctl/account/mixins/no_commands.rb
200
+ - lib/dldinternet/doctl/api/account.rb
201
+ - lib/dldinternet/doctl/api/account/get.rb
202
+ - lib/dldinternet/doctl/api/account/ratelimit.rb
203
+ - lib/dldinternet/doctl/api/auth.rb
204
+ - lib/dldinternet/doctl/api/auth/get.rb
205
+ - lib/dldinternet/doctl/api/auth/mixins/get/getnameservers.rb
206
+ - lib/dldinternet/doctl/api/base.rb
207
+ - lib/dldinternet/doctl/api/compute.rb
208
+ - lib/dldinternet/doctl/api/compute/domain.rb
209
+ - lib/dldinternet/doctl/api/compute/domain/create.rb
210
+ - lib/dldinternet/doctl/api/compute/domain/delete.rb
211
+ - lib/dldinternet/doctl/api/compute/domain/get.rb
212
+ - lib/dldinternet/doctl/api/compute/domain/list.rb
213
+ - lib/dldinternet/doctl/api/compute/domain/records.rb
214
+ - lib/dldinternet/doctl/api/compute/domain/records/create.rb
215
+ - lib/dldinternet/doctl/api/compute/domain/records/delete.rb
216
+ - lib/dldinternet/doctl/api/compute/domain/records/list.rb
217
+ - lib/dldinternet/doctl/api/compute/domain/records/update.rb
218
+ - lib/dldinternet/doctl/auth/command.rb
219
+ - lib/dldinternet/doctl/auth/init/command.rb
220
+ - lib/dldinternet/doctl/auth/init/mixins/no_commands.rb
221
+ - lib/dldinternet/doctl/auth/mixins/no_commands.rb
222
+ - lib/dldinternet/doctl/compute/action/command.rb
223
+ - lib/dldinternet/doctl/compute/action/get/command.rb
224
+ - lib/dldinternet/doctl/compute/action/get/mixins/no_commands.rb
225
+ - lib/dldinternet/doctl/compute/action/list/command.rb
226
+ - lib/dldinternet/doctl/compute/action/list/mixins/no_commands.rb
227
+ - lib/dldinternet/doctl/compute/action/mixins/no_commands.rb
228
+ - lib/dldinternet/doctl/compute/action/wait/command.rb
229
+ - lib/dldinternet/doctl/compute/action/wait/mixins/no_commands.rb
230
+ - lib/dldinternet/doctl/compute/command.rb
231
+ - lib/dldinternet/doctl/compute/domain/command.rb
232
+ - lib/dldinternet/doctl/compute/domain/mixins/no_commands.rb
233
+ - lib/dldinternet/doctl/compute/domain/records/command.rb
234
+ - lib/dldinternet/doctl/compute/domain/records/mixins/no_commands.rb
235
+ - lib/dldinternet/doctl/compute/droplet-action/change-kernel/command.rb
236
+ - lib/dldinternet/doctl/compute/droplet-action/change-kernel/mixins/no_commands.rb
237
+ - lib/dldinternet/doctl/compute/droplet-action/command.rb
238
+ - lib/dldinternet/doctl/compute/droplet-action/disable-backups/command.rb
239
+ - lib/dldinternet/doctl/compute/droplet-action/disable-backups/mixins/no_commands.rb
240
+ - lib/dldinternet/doctl/compute/droplet-action/enable-ipv6/command.rb
241
+ - lib/dldinternet/doctl/compute/droplet-action/enable-ipv6/mixins/no_commands.rb
242
+ - lib/dldinternet/doctl/compute/droplet-action/enable-private-networking/command.rb
243
+ - lib/dldinternet/doctl/compute/droplet-action/enable-private-networking/mixins/no_commands.rb
244
+ - lib/dldinternet/doctl/compute/droplet-action/get/command.rb
245
+ - lib/dldinternet/doctl/compute/droplet-action/get/mixins/no_commands.rb
246
+ - lib/dldinternet/doctl/compute/droplet-action/mixins/no_commands.rb
247
+ - lib/dldinternet/doctl/compute/droplet-action/password-reset/command.rb
248
+ - lib/dldinternet/doctl/compute/droplet-action/password-reset/mixins/no_commands.rb
249
+ - lib/dldinternet/doctl/compute/droplet-action/power-cycle/command.rb
250
+ - lib/dldinternet/doctl/compute/droplet-action/power-cycle/mixins/no_commands.rb
251
+ - lib/dldinternet/doctl/compute/droplet-action/power-off/command.rb
252
+ - lib/dldinternet/doctl/compute/droplet-action/power-off/mixins/no_commands.rb
253
+ - lib/dldinternet/doctl/compute/droplet-action/power-on/command.rb
254
+ - lib/dldinternet/doctl/compute/droplet-action/power-on/mixins/no_commands.rb
255
+ - lib/dldinternet/doctl/compute/droplet-action/reboot/command.rb
256
+ - lib/dldinternet/doctl/compute/droplet-action/reboot/mixins/no_commands.rb
257
+ - lib/dldinternet/doctl/compute/droplet-action/rebuild/command.rb
258
+ - lib/dldinternet/doctl/compute/droplet-action/rebuild/mixins/no_commands.rb
259
+ - lib/dldinternet/doctl/compute/droplet-action/rename/command.rb
260
+ - lib/dldinternet/doctl/compute/droplet-action/rename/mixins/no_commands.rb
261
+ - lib/dldinternet/doctl/compute/droplet-action/resize/command.rb
262
+ - lib/dldinternet/doctl/compute/droplet-action/resize/mixins/no_commands.rb
263
+ - lib/dldinternet/doctl/compute/droplet-action/restore/command.rb
264
+ - lib/dldinternet/doctl/compute/droplet-action/restore/mixins/no_commands.rb
265
+ - lib/dldinternet/doctl/compute/droplet-action/shutdown/command.rb
266
+ - lib/dldinternet/doctl/compute/droplet-action/shutdown/mixins/no_commands.rb
267
+ - lib/dldinternet/doctl/compute/droplet-action/snapshot/command.rb
268
+ - lib/dldinternet/doctl/compute/droplet-action/snapshot/mixins/no_commands.rb
269
+ - lib/dldinternet/doctl/compute/droplet-action/upgrade/command.rb
270
+ - lib/dldinternet/doctl/compute/droplet-action/upgrade/mixins/no_commands.rb
271
+ - lib/dldinternet/doctl/compute/droplet/actions/command.rb
272
+ - lib/dldinternet/doctl/compute/droplet/actions/mixins/no_commands.rb
273
+ - lib/dldinternet/doctl/compute/droplet/backups/command.rb
274
+ - lib/dldinternet/doctl/compute/droplet/backups/mixins/no_commands.rb
275
+ - lib/dldinternet/doctl/compute/droplet/command.rb
276
+ - lib/dldinternet/doctl/compute/droplet/create/command.rb
277
+ - lib/dldinternet/doctl/compute/droplet/create/mixins/no_commands.rb
278
+ - lib/dldinternet/doctl/compute/droplet/delete/command.rb
279
+ - lib/dldinternet/doctl/compute/droplet/delete/mixins/no_commands.rb
280
+ - lib/dldinternet/doctl/compute/droplet/get/command.rb
281
+ - lib/dldinternet/doctl/compute/droplet/get/mixins/no_commands.rb
282
+ - lib/dldinternet/doctl/compute/droplet/kernels/command.rb
283
+ - lib/dldinternet/doctl/compute/droplet/kernels/mixins/no_commands.rb
284
+ - lib/dldinternet/doctl/compute/droplet/list/command.rb
285
+ - lib/dldinternet/doctl/compute/droplet/list/mixins/no_commands.rb
286
+ - lib/dldinternet/doctl/compute/droplet/mixins/no_commands.rb
287
+ - lib/dldinternet/doctl/compute/droplet/neighbors/command.rb
288
+ - lib/dldinternet/doctl/compute/droplet/neighbors/mixins/no_commands.rb
289
+ - lib/dldinternet/doctl/compute/droplet/snapshots/command.rb
290
+ - lib/dldinternet/doctl/compute/droplet/snapshots/mixins/no_commands.rb
291
+ - lib/dldinternet/doctl/compute/droplet/tag/command.rb
292
+ - lib/dldinternet/doctl/compute/droplet/tag/mixins/no_commands.rb
293
+ - lib/dldinternet/doctl/compute/droplet/untag/command.rb
294
+ - lib/dldinternet/doctl/compute/droplet/untag/mixins/no_commands.rb
295
+ - lib/dldinternet/doctl/compute/floating-ip-action/assign/command.rb
296
+ - lib/dldinternet/doctl/compute/floating-ip-action/assign/mixins/no_commands.rb
297
+ - lib/dldinternet/doctl/compute/floating-ip-action/command.rb
298
+ - lib/dldinternet/doctl/compute/floating-ip-action/get/command.rb
299
+ - lib/dldinternet/doctl/compute/floating-ip-action/get/mixins/no_commands.rb
300
+ - lib/dldinternet/doctl/compute/floating-ip-action/mixins/no_commands.rb
301
+ - lib/dldinternet/doctl/compute/floating-ip-action/unassign/command.rb
302
+ - lib/dldinternet/doctl/compute/floating-ip-action/unassign/mixins/no_commands.rb
303
+ - lib/dldinternet/doctl/compute/floating-ip/command.rb
304
+ - lib/dldinternet/doctl/compute/floating-ip/create/command.rb
305
+ - lib/dldinternet/doctl/compute/floating-ip/create/mixins/no_commands.rb
306
+ - lib/dldinternet/doctl/compute/floating-ip/delete/command.rb
307
+ - lib/dldinternet/doctl/compute/floating-ip/delete/mixins/no_commands.rb
308
+ - lib/dldinternet/doctl/compute/floating-ip/get/command.rb
309
+ - lib/dldinternet/doctl/compute/floating-ip/get/mixins/no_commands.rb
310
+ - lib/dldinternet/doctl/compute/floating-ip/list/command.rb
311
+ - lib/dldinternet/doctl/compute/floating-ip/list/mixins/no_commands.rb
312
+ - lib/dldinternet/doctl/compute/floating-ip/mixins/no_commands.rb
313
+ - lib/dldinternet/doctl/compute/image-action/command.rb
314
+ - lib/dldinternet/doctl/compute/image-action/get/command.rb
315
+ - lib/dldinternet/doctl/compute/image-action/get/mixins/no_commands.rb
316
+ - lib/dldinternet/doctl/compute/image-action/mixins/no_commands.rb
317
+ - lib/dldinternet/doctl/compute/image-action/transfer/command.rb
318
+ - lib/dldinternet/doctl/compute/image-action/transfer/mixins/no_commands.rb
319
+ - lib/dldinternet/doctl/compute/image/command.rb
320
+ - lib/dldinternet/doctl/compute/image/delete/command.rb
321
+ - lib/dldinternet/doctl/compute/image/delete/mixins/no_commands.rb
322
+ - lib/dldinternet/doctl/compute/image/get/command.rb
323
+ - lib/dldinternet/doctl/compute/image/get/mixins/no_commands.rb
324
+ - lib/dldinternet/doctl/compute/image/list-application/command.rb
325
+ - lib/dldinternet/doctl/compute/image/list-application/mixins/no_commands.rb
326
+ - lib/dldinternet/doctl/compute/image/list-distribution/command.rb
327
+ - lib/dldinternet/doctl/compute/image/list-distribution/mixins/no_commands.rb
328
+ - lib/dldinternet/doctl/compute/image/list-user/command.rb
329
+ - lib/dldinternet/doctl/compute/image/list-user/mixins/no_commands.rb
330
+ - lib/dldinternet/doctl/compute/image/list/command.rb
331
+ - lib/dldinternet/doctl/compute/image/list/mixins/no_commands.rb
332
+ - lib/dldinternet/doctl/compute/image/mixins/no_commands.rb
333
+ - lib/dldinternet/doctl/compute/image/update/command.rb
334
+ - lib/dldinternet/doctl/compute/image/update/mixins/no_commands.rb
335
+ - lib/dldinternet/doctl/compute/mixins/no_commands.rb
336
+ - lib/dldinternet/doctl/compute/plugin/command.rb
337
+ - lib/dldinternet/doctl/compute/plugin/list/command.rb
338
+ - lib/dldinternet/doctl/compute/plugin/list/mixins/no_commands.rb
339
+ - lib/dldinternet/doctl/compute/plugin/mixins/no_commands.rb
340
+ - lib/dldinternet/doctl/compute/plugin/run/command.rb
341
+ - lib/dldinternet/doctl/compute/plugin/run/mixins/no_commands.rb
342
+ - lib/dldinternet/doctl/compute/region/command.rb
343
+ - lib/dldinternet/doctl/compute/region/list/command.rb
344
+ - lib/dldinternet/doctl/compute/region/list/mixins/no_commands.rb
345
+ - lib/dldinternet/doctl/compute/region/mixins/no_commands.rb
346
+ - lib/dldinternet/doctl/compute/size/command.rb
347
+ - lib/dldinternet/doctl/compute/size/list/command.rb
348
+ - lib/dldinternet/doctl/compute/size/list/mixins/no_commands.rb
349
+ - lib/dldinternet/doctl/compute/size/mixins/no_commands.rb
350
+ - lib/dldinternet/doctl/compute/ssh-key/command.rb
351
+ - lib/dldinternet/doctl/compute/ssh-key/create/command.rb
352
+ - lib/dldinternet/doctl/compute/ssh-key/create/mixins/no_commands.rb
353
+ - lib/dldinternet/doctl/compute/ssh-key/delete/command.rb
354
+ - lib/dldinternet/doctl/compute/ssh-key/delete/mixins/no_commands.rb
355
+ - lib/dldinternet/doctl/compute/ssh-key/get/command.rb
356
+ - lib/dldinternet/doctl/compute/ssh-key/get/mixins/no_commands.rb
357
+ - lib/dldinternet/doctl/compute/ssh-key/import/command.rb
358
+ - lib/dldinternet/doctl/compute/ssh-key/import/mixins/no_commands.rb
359
+ - lib/dldinternet/doctl/compute/ssh-key/list/command.rb
360
+ - lib/dldinternet/doctl/compute/ssh-key/list/mixins/no_commands.rb
361
+ - lib/dldinternet/doctl/compute/ssh-key/mixins/no_commands.rb
362
+ - lib/dldinternet/doctl/compute/ssh-key/update/command.rb
363
+ - lib/dldinternet/doctl/compute/ssh-key/update/mixins/no_commands.rb
364
+ - lib/dldinternet/doctl/compute/ssh/command.rb
365
+ - lib/dldinternet/doctl/compute/ssh/mixins/no_commands.rb
366
+ - lib/dldinternet/doctl/compute/tag/command.rb
367
+ - lib/dldinternet/doctl/compute/tag/create/command.rb
368
+ - lib/dldinternet/doctl/compute/tag/create/mixins/no_commands.rb
369
+ - lib/dldinternet/doctl/compute/tag/delete/command.rb
370
+ - lib/dldinternet/doctl/compute/tag/delete/mixins/no_commands.rb
371
+ - lib/dldinternet/doctl/compute/tag/get/command.rb
372
+ - lib/dldinternet/doctl/compute/tag/get/mixins/no_commands.rb
373
+ - lib/dldinternet/doctl/compute/tag/list/command.rb
374
+ - lib/dldinternet/doctl/compute/tag/list/mixins/no_commands.rb
375
+ - lib/dldinternet/doctl/compute/tag/mixins/no_commands.rb
376
+ - lib/dldinternet/doctl/compute/tag/update/command.rb
377
+ - lib/dldinternet/doctl/compute/tag/update/mixins/no_commands.rb
378
+ - lib/dldinternet/doctl/compute/volume-action/attach/command.rb
379
+ - lib/dldinternet/doctl/compute/volume-action/attach/mixins/no_commands.rb
380
+ - lib/dldinternet/doctl/compute/volume-action/command.rb
381
+ - lib/dldinternet/doctl/compute/volume-action/detach/command.rb
382
+ - lib/dldinternet/doctl/compute/volume-action/detach/mixins/no_commands.rb
383
+ - lib/dldinternet/doctl/compute/volume-action/mixins/no_commands.rb
384
+ - lib/dldinternet/doctl/compute/volume/command.rb
385
+ - lib/dldinternet/doctl/compute/volume/create/command.rb
386
+ - lib/dldinternet/doctl/compute/volume/create/mixins/no_commands.rb
387
+ - lib/dldinternet/doctl/compute/volume/delete/command.rb
388
+ - lib/dldinternet/doctl/compute/volume/delete/mixins/no_commands.rb
389
+ - lib/dldinternet/doctl/compute/volume/get/command.rb
390
+ - lib/dldinternet/doctl/compute/volume/get/mixins/no_commands.rb
391
+ - lib/dldinternet/doctl/compute/volume/list/command.rb
392
+ - lib/dldinternet/doctl/compute/volume/list/mixins/no_commands.rb
393
+ - lib/dldinternet/doctl/compute/volume/mixins/no_commands.rb
394
+ - lib/dldinternet/doctl/main.rb
395
+ - lib/dldinternet/doctl/mixins/no_commands.rb
396
+ - lib/dldinternet/doctl/version.rb
397
+ homepage: https://rubygems.org/gems/doctl
398
+ licenses:
399
+ - Apachev2
400
+ metadata: {}
401
+ post_install_message:
402
+ rdoc_options: []
403
+ require_paths:
404
+ - lib
405
+ required_ruby_version: !ruby/object:Gem::Requirement
406
+ requirements:
407
+ - - ">="
408
+ - !ruby/object:Gem::Version
409
+ version: '0'
410
+ required_rubygems_version: !ruby/object:Gem::Requirement
411
+ requirements:
412
+ - - ">="
413
+ - !ruby/object:Gem::Version
414
+ version: '0'
415
+ requirements: []
416
+ rubyforge_project:
417
+ rubygems_version: 2.6.10
418
+ signing_key:
419
+ specification_version: 4
420
+ summary: DLDInternet DOctl tools
421
+ test_files: []