ey-core 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (374) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +23 -0
  3. data/.ruby-version +1 -0
  4. data/.travis.yml +22 -0
  5. data/CHANGELOG.md +167 -0
  6. data/Gemfile +28 -0
  7. data/Guardfile +15 -0
  8. data/LICENSE.txt +19 -0
  9. data/README.md +82 -0
  10. data/Rakefile +15 -0
  11. data/bin/ey-core +4 -0
  12. data/ey-core.gemspec +28 -0
  13. data/lib/ey-core.rb +59 -0
  14. data/lib/ey-core/associations.rb +155 -0
  15. data/lib/ey-core/cli.rb +118 -0
  16. data/lib/ey-core/client.rb +402 -0
  17. data/lib/ey-core/client/mock.rb +288 -0
  18. data/lib/ey-core/client/real.rb +93 -0
  19. data/lib/ey-core/collection.rb +131 -0
  20. data/lib/ey-core/collections/account_cancellations.rb +6 -0
  21. data/lib/ey-core/collections/account_referrals.rb +10 -0
  22. data/lib/ey-core/collections/accounts.rb +8 -0
  23. data/lib/ey-core/collections/addons.rb +16 -0
  24. data/lib/ey-core/collections/addresses.rb +9 -0
  25. data/lib/ey-core/collections/alerts.rb +9 -0
  26. data/lib/ey-core/collections/application_archives.rb +9 -0
  27. data/lib/ey-core/collections/application_deployments.rb +9 -0
  28. data/lib/ey-core/collections/applications.rb +9 -0
  29. data/lib/ey-core/collections/backup_files.rb +9 -0
  30. data/lib/ey-core/collections/components.rb +9 -0
  31. data/lib/ey-core/collections/contacts.rb +9 -0
  32. data/lib/ey-core/collections/costs.rb +8 -0
  33. data/lib/ey-core/collections/database_plan_usages.rb +7 -0
  34. data/lib/ey-core/collections/database_server_revisions.rb +7 -0
  35. data/lib/ey-core/collections/database_server_snapshots.rb +17 -0
  36. data/lib/ey-core/collections/database_server_usages.rb +7 -0
  37. data/lib/ey-core/collections/database_servers.rb +9 -0
  38. data/lib/ey-core/collections/database_services.rb +9 -0
  39. data/lib/ey-core/collections/environment_plan_usages.rb +7 -0
  40. data/lib/ey-core/collections/environments.rb +15 -0
  41. data/lib/ey-core/collections/features.rb +9 -0
  42. data/lib/ey-core/collections/firewall_rules.rb +9 -0
  43. data/lib/ey-core/collections/firewalls.rb +9 -0
  44. data/lib/ey-core/collections/gems.rb +6 -0
  45. data/lib/ey-core/collections/keypair_deployments.rb +9 -0
  46. data/lib/ey-core/collections/keypairs.rb +9 -0
  47. data/lib/ey-core/collections/legacy_alerts.rb +9 -0
  48. data/lib/ey-core/collections/load_balancer_nodes.rb +9 -0
  49. data/lib/ey-core/collections/load_balancer_services.rb +9 -0
  50. data/lib/ey-core/collections/load_balancers.rb +16 -0
  51. data/lib/ey-core/collections/logical_databases.rb +16 -0
  52. data/lib/ey-core/collections/logs.rb +9 -0
  53. data/lib/ey-core/collections/memberships.rb +9 -0
  54. data/lib/ey-core/collections/messages.rb +9 -0
  55. data/lib/ey-core/collections/plan_usages.rb +7 -0
  56. data/lib/ey-core/collections/provider_locations.rb +13 -0
  57. data/lib/ey-core/collections/providers.rb +15 -0
  58. data/lib/ey-core/collections/requests.rb +10 -0
  59. data/lib/ey-core/collections/server_events.rb +9 -0
  60. data/lib/ey-core/collections/server_usages.rb +7 -0
  61. data/lib/ey-core/collections/servers.rb +9 -0
  62. data/lib/ey-core/collections/services.rb +14 -0
  63. data/lib/ey-core/collections/ssl_certificates.rb +9 -0
  64. data/lib/ey-core/collections/storage_users.rb +10 -0
  65. data/lib/ey-core/collections/storages.rb +9 -0
  66. data/lib/ey-core/collections/tasks.rb +9 -0
  67. data/lib/ey-core/collections/tokens.rb +8 -0
  68. data/lib/ey-core/collections/untracked_addresses.rb +4 -0
  69. data/lib/ey-core/collections/untracked_servers.rb +9 -0
  70. data/lib/ey-core/collections/users.rb +12 -0
  71. data/lib/ey-core/collections/volumes.rb +9 -0
  72. data/lib/ey-core/logger.rb +31 -0
  73. data/lib/ey-core/memory_cache.rb +17 -0
  74. data/lib/ey-core/mock/helper.rb +104 -0
  75. data/lib/ey-core/mock/params.rb +31 -0
  76. data/lib/ey-core/mock/resources.rb +92 -0
  77. data/lib/ey-core/mock/searching.rb +111 -0
  78. data/lib/ey-core/mock/util.rb +23 -0
  79. data/lib/ey-core/model.rb +39 -0
  80. data/lib/ey-core/models/account.rb +65 -0
  81. data/lib/ey-core/models/account_cancellation.rb +6 -0
  82. data/lib/ey-core/models/account_referral.rb +8 -0
  83. data/lib/ey-core/models/account_trial.rb +15 -0
  84. data/lib/ey-core/models/addon.rb +37 -0
  85. data/lib/ey-core/models/address.rb +57 -0
  86. data/lib/ey-core/models/alert.rb +94 -0
  87. data/lib/ey-core/models/application.rb +32 -0
  88. data/lib/ey-core/models/application_archive.rb +67 -0
  89. data/lib/ey-core/models/application_deployment.rb +18 -0
  90. data/lib/ey-core/models/backup_file.rb +52 -0
  91. data/lib/ey-core/models/billing.rb +27 -0
  92. data/lib/ey-core/models/component.rb +11 -0
  93. data/lib/ey-core/models/contact.rb +14 -0
  94. data/lib/ey-core/models/cost.rb +16 -0
  95. data/lib/ey-core/models/database_plan_usage.rb +10 -0
  96. data/lib/ey-core/models/database_server.rb +56 -0
  97. data/lib/ey-core/models/database_server_revision.rb +10 -0
  98. data/lib/ey-core/models/database_server_snapshot.rb +43 -0
  99. data/lib/ey-core/models/database_server_usage.rb +15 -0
  100. data/lib/ey-core/models/database_service.rb +52 -0
  101. data/lib/ey-core/models/environment.rb +143 -0
  102. data/lib/ey-core/models/environment_plan_usage.rb +10 -0
  103. data/lib/ey-core/models/feature.rb +33 -0
  104. data/lib/ey-core/models/firewall.rb +46 -0
  105. data/lib/ey-core/models/firewall_rule.rb +41 -0
  106. data/lib/ey-core/models/gem.rb +5 -0
  107. data/lib/ey-core/models/keypair.rb +38 -0
  108. data/lib/ey-core/models/keypair_deployment.rb +26 -0
  109. data/lib/ey-core/models/legacy_alert.rb +12 -0
  110. data/lib/ey-core/models/load_balancer.rb +43 -0
  111. data/lib/ey-core/models/load_balancer_node.rb +17 -0
  112. data/lib/ey-core/models/load_balancer_service.rb +22 -0
  113. data/lib/ey-core/models/log.rb +33 -0
  114. data/lib/ey-core/models/logical_database.rb +40 -0
  115. data/lib/ey-core/models/membership.rb +49 -0
  116. data/lib/ey-core/models/message.rb +27 -0
  117. data/lib/ey-core/models/plan_usage.rb +14 -0
  118. data/lib/ey-core/models/provider.rb +59 -0
  119. data/lib/ey-core/models/provider_location.rb +11 -0
  120. data/lib/ey-core/models/request.rb +93 -0
  121. data/lib/ey-core/models/server.rb +76 -0
  122. data/lib/ey-core/models/server_event.rb +11 -0
  123. data/lib/ey-core/models/server_usage.rb +15 -0
  124. data/lib/ey-core/models/service.rb +10 -0
  125. data/lib/ey-core/models/ssl_certificate.rb +44 -0
  126. data/lib/ey-core/models/storage.rb +38 -0
  127. data/lib/ey-core/models/storage_user.rb +44 -0
  128. data/lib/ey-core/models/support_trial.rb +10 -0
  129. data/lib/ey-core/models/task.rb +35 -0
  130. data/lib/ey-core/models/token.rb +20 -0
  131. data/lib/ey-core/models/untracked_address.rb +24 -0
  132. data/lib/ey-core/models/untracked_server.rb +45 -0
  133. data/lib/ey-core/models/user.rb +35 -0
  134. data/lib/ey-core/models/volume.rb +20 -0
  135. data/lib/ey-core/request.rb +21 -0
  136. data/lib/ey-core/request_failure.rb +11 -0
  137. data/lib/ey-core/requests/attach_address.rb +53 -0
  138. data/lib/ey-core/requests/authorized_channel.rb +22 -0
  139. data/lib/ey-core/requests/boot_environment.rb +131 -0
  140. data/lib/ey-core/requests/bootstrap_logical_database.rb +80 -0
  141. data/lib/ey-core/requests/cancel_account.rb +33 -0
  142. data/lib/ey-core/requests/create_account.rb +33 -0
  143. data/lib/ey-core/requests/create_addon.rb +35 -0
  144. data/lib/ey-core/requests/create_address.rb +53 -0
  145. data/lib/ey-core/requests/create_alert.rb +63 -0
  146. data/lib/ey-core/requests/create_application.rb +72 -0
  147. data/lib/ey-core/requests/create_application_archive.rb +44 -0
  148. data/lib/ey-core/requests/create_backup_file.rb +52 -0
  149. data/lib/ey-core/requests/create_database_server.rb +72 -0
  150. data/lib/ey-core/requests/create_database_service.rb +57 -0
  151. data/lib/ey-core/requests/create_database_service_snapshot.rb +69 -0
  152. data/lib/ey-core/requests/create_environment.rb +69 -0
  153. data/lib/ey-core/requests/create_firewall.rb +62 -0
  154. data/lib/ey-core/requests/create_firewall_rule.rb +60 -0
  155. data/lib/ey-core/requests/create_keypair.rb +42 -0
  156. data/lib/ey-core/requests/create_keypair_deployment.rb +36 -0
  157. data/lib/ey-core/requests/create_load_balancer.rb +62 -0
  158. data/lib/ey-core/requests/create_log.rb +53 -0
  159. data/lib/ey-core/requests/create_logical_database.rb +56 -0
  160. data/lib/ey-core/requests/create_membership.rb +47 -0
  161. data/lib/ey-core/requests/create_message.rb +35 -0
  162. data/lib/ey-core/requests/create_password_reset.rb +38 -0
  163. data/lib/ey-core/requests/create_provider.rb +90 -0
  164. data/lib/ey-core/requests/create_ssl_certificate.rb +83 -0
  165. data/lib/ey-core/requests/create_storage.rb +64 -0
  166. data/lib/ey-core/requests/create_storage_user.rb +64 -0
  167. data/lib/ey-core/requests/create_task.rb +55 -0
  168. data/lib/ey-core/requests/create_token.rb +24 -0
  169. data/lib/ey-core/requests/create_untracked_address.rb +48 -0
  170. data/lib/ey-core/requests/create_untracked_server.rb +39 -0
  171. data/lib/ey-core/requests/create_user.rb +43 -0
  172. data/lib/ey-core/requests/deploy_environment_application.rb +43 -0
  173. data/lib/ey-core/requests/deprovision_environment.rb +17 -0
  174. data/lib/ey-core/requests/destroy_addon.rb +24 -0
  175. data/lib/ey-core/requests/destroy_database_server.rb +41 -0
  176. data/lib/ey-core/requests/destroy_database_server_snapshot.rb +42 -0
  177. data/lib/ey-core/requests/destroy_database_service.rb +57 -0
  178. data/lib/ey-core/requests/destroy_environment.rb +43 -0
  179. data/lib/ey-core/requests/destroy_firewall.rb +41 -0
  180. data/lib/ey-core/requests/destroy_firewall_rule.rb +41 -0
  181. data/lib/ey-core/requests/destroy_load_balancer.rb +30 -0
  182. data/lib/ey-core/requests/destroy_logical_database.rb +41 -0
  183. data/lib/ey-core/requests/destroy_provider.rb +34 -0
  184. data/lib/ey-core/requests/destroy_server.rb +46 -0
  185. data/lib/ey-core/requests/destroy_ssl_certificate.rb +28 -0
  186. data/lib/ey-core/requests/destroy_storage.rb +33 -0
  187. data/lib/ey-core/requests/destroy_storage_user.rb +38 -0
  188. data/lib/ey-core/requests/destroy_user.rb +29 -0
  189. data/lib/ey-core/requests/detach_address.rb +48 -0
  190. data/lib/ey-core/requests/disable_feature.rb +30 -0
  191. data/lib/ey-core/requests/discover_database_server.rb +66 -0
  192. data/lib/ey-core/requests/discover_database_server_snapshots.rb +69 -0
  193. data/lib/ey-core/requests/discover_provider_location.rb +57 -0
  194. data/lib/ey-core/requests/download_file.rb +25 -0
  195. data/lib/ey-core/requests/enable_feature.rb +35 -0
  196. data/lib/ey-core/requests/get_account.rb +29 -0
  197. data/lib/ey-core/requests/get_account_cancellation.rb +21 -0
  198. data/lib/ey-core/requests/get_account_referrals.rb +28 -0
  199. data/lib/ey-core/requests/get_account_trial.rb +31 -0
  200. data/lib/ey-core/requests/get_accounts.rb +42 -0
  201. data/lib/ey-core/requests/get_addon.rb +25 -0
  202. data/lib/ey-core/requests/get_addons.rb +24 -0
  203. data/lib/ey-core/requests/get_address.rb +25 -0
  204. data/lib/ey-core/requests/get_addresses.rb +27 -0
  205. data/lib/ey-core/requests/get_alert.rb +21 -0
  206. data/lib/ey-core/requests/get_alerting_environments.rb +37 -0
  207. data/lib/ey-core/requests/get_alerts.rb +44 -0
  208. data/lib/ey-core/requests/get_api_token.rb +19 -0
  209. data/lib/ey-core/requests/get_application.rb +21 -0
  210. data/lib/ey-core/requests/get_application_archive.rb +32 -0
  211. data/lib/ey-core/requests/get_application_archives.rb +29 -0
  212. data/lib/ey-core/requests/get_application_deployment.rb +21 -0
  213. data/lib/ey-core/requests/get_application_deployments.rb +28 -0
  214. data/lib/ey-core/requests/get_applications.rb +28 -0
  215. data/lib/ey-core/requests/get_backup_file.rb +21 -0
  216. data/lib/ey-core/requests/get_backup_files.rb +28 -0
  217. data/lib/ey-core/requests/get_billing.rb +24 -0
  218. data/lib/ey-core/requests/get_component.rb +21 -0
  219. data/lib/ey-core/requests/get_components.rb +29 -0
  220. data/lib/ey-core/requests/get_contacts.rb +34 -0
  221. data/lib/ey-core/requests/get_costs.rb +25 -0
  222. data/lib/ey-core/requests/get_current_user.rb +19 -0
  223. data/lib/ey-core/requests/get_database_plan_usages.rb +24 -0
  224. data/lib/ey-core/requests/get_database_server.rb +21 -0
  225. data/lib/ey-core/requests/get_database_server_revisions.rb +27 -0
  226. data/lib/ey-core/requests/get_database_server_snapshot.rb +20 -0
  227. data/lib/ey-core/requests/get_database_server_snapshots.rb +39 -0
  228. data/lib/ey-core/requests/get_database_server_usages.rb +24 -0
  229. data/lib/ey-core/requests/get_database_servers.rb +30 -0
  230. data/lib/ey-core/requests/get_database_servers_firewalls.rb +30 -0
  231. data/lib/ey-core/requests/get_database_service.rb +20 -0
  232. data/lib/ey-core/requests/get_database_services.rb +55 -0
  233. data/lib/ey-core/requests/get_environment.rb +21 -0
  234. data/lib/ey-core/requests/get_environment_database_services.rb +21 -0
  235. data/lib/ey-core/requests/get_environment_logical_databases.rb +20 -0
  236. data/lib/ey-core/requests/get_environment_plan_usages.rb +24 -0
  237. data/lib/ey-core/requests/get_environments.rb +29 -0
  238. data/lib/ey-core/requests/get_feature.rb +21 -0
  239. data/lib/ey-core/requests/get_features.rb +28 -0
  240. data/lib/ey-core/requests/get_firewall.rb +21 -0
  241. data/lib/ey-core/requests/get_firewall_rule.rb +21 -0
  242. data/lib/ey-core/requests/get_firewall_rules.rb +29 -0
  243. data/lib/ey-core/requests/get_firewalls.rb +45 -0
  244. data/lib/ey-core/requests/get_gem.rb +24 -0
  245. data/lib/ey-core/requests/get_keypair.rb +21 -0
  246. data/lib/ey-core/requests/get_keypair_deployment.rb +21 -0
  247. data/lib/ey-core/requests/get_keypair_deployments.rb +29 -0
  248. data/lib/ey-core/requests/get_keypairs.rb +34 -0
  249. data/lib/ey-core/requests/get_legacy_alert.rb +21 -0
  250. data/lib/ey-core/requests/get_legacy_alerts.rb +29 -0
  251. data/lib/ey-core/requests/get_load_balancer.rb +21 -0
  252. data/lib/ey-core/requests/get_load_balancer_node.rb +21 -0
  253. data/lib/ey-core/requests/get_load_balancer_nodes.rb +30 -0
  254. data/lib/ey-core/requests/get_load_balancer_service.rb +21 -0
  255. data/lib/ey-core/requests/get_load_balancer_services.rb +30 -0
  256. data/lib/ey-core/requests/get_load_balancers.rb +29 -0
  257. data/lib/ey-core/requests/get_log.rb +21 -0
  258. data/lib/ey-core/requests/get_logical_database.rb +23 -0
  259. data/lib/ey-core/requests/get_logical_databases.rb +36 -0
  260. data/lib/ey-core/requests/get_logs.rb +37 -0
  261. data/lib/ey-core/requests/get_membership.rb +21 -0
  262. data/lib/ey-core/requests/get_memberships.rb +29 -0
  263. data/lib/ey-core/requests/get_message.rb +28 -0
  264. data/lib/ey-core/requests/get_messages.rb +27 -0
  265. data/lib/ey-core/requests/get_metadata.rb +22 -0
  266. data/lib/ey-core/requests/get_operational_contact.rb +21 -0
  267. data/lib/ey-core/requests/get_operational_contacts.rb +20 -0
  268. data/lib/ey-core/requests/get_plan_usages.rb +24 -0
  269. data/lib/ey-core/requests/get_possible_provider_locations.rb +19 -0
  270. data/lib/ey-core/requests/get_provider.rb +21 -0
  271. data/lib/ey-core/requests/get_provider_location.rb +29 -0
  272. data/lib/ey-core/requests/get_provider_locations.rb +28 -0
  273. data/lib/ey-core/requests/get_providers.rb +28 -0
  274. data/lib/ey-core/requests/get_request.rb +71 -0
  275. data/lib/ey-core/requests/get_requests.rb +29 -0
  276. data/lib/ey-core/requests/get_server.rb +34 -0
  277. data/lib/ey-core/requests/get_server_event.rb +20 -0
  278. data/lib/ey-core/requests/get_server_events.rb +28 -0
  279. data/lib/ey-core/requests/get_server_usages.rb +24 -0
  280. data/lib/ey-core/requests/get_servers.rb +25 -0
  281. data/lib/ey-core/requests/get_ssl_certificate.rb +23 -0
  282. data/lib/ey-core/requests/get_ssl_certificates.rb +28 -0
  283. data/lib/ey-core/requests/get_storage.rb +21 -0
  284. data/lib/ey-core/requests/get_storage_user.rb +21 -0
  285. data/lib/ey-core/requests/get_storage_users.rb +28 -0
  286. data/lib/ey-core/requests/get_storages.rb +28 -0
  287. data/lib/ey-core/requests/get_support_trial.rb +51 -0
  288. data/lib/ey-core/requests/get_task.rb +21 -0
  289. data/lib/ey-core/requests/get_tasks.rb +28 -0
  290. data/lib/ey-core/requests/get_untracked_server.rb +18 -0
  291. data/lib/ey-core/requests/get_untracked_servers.rb +24 -0
  292. data/lib/ey-core/requests/get_user.rb +21 -0
  293. data/lib/ey-core/requests/get_users.rb +42 -0
  294. data/lib/ey-core/requests/get_volume.rb +21 -0
  295. data/lib/ey-core/requests/get_volumes.rb +28 -0
  296. data/lib/ey-core/requests/reboot_server.rb +39 -0
  297. data/lib/ey-core/requests/request_callback.rb +26 -0
  298. data/lib/ey-core/requests/reset_password.rb +31 -0
  299. data/lib/ey-core/requests/run_cluster_application_action.rb +28 -0
  300. data/lib/ey-core/requests/run_environment_application_action.rb +29 -0
  301. data/lib/ey-core/requests/signup.rb +56 -0
  302. data/lib/ey-core/requests/update_addon.rb +28 -0
  303. data/lib/ey-core/requests/update_address.rb +29 -0
  304. data/lib/ey-core/requests/update_alert.rb +32 -0
  305. data/lib/ey-core/requests/update_application_archive.rb +23 -0
  306. data/lib/ey-core/requests/update_billing.rb +26 -0
  307. data/lib/ey-core/requests/update_connector.rb +32 -0
  308. data/lib/ey-core/requests/update_membership.rb +29 -0
  309. data/lib/ey-core/requests/update_server.rb +29 -0
  310. data/lib/ey-core/requests/update_ssl_certificate.rb +25 -0
  311. data/lib/ey-core/requests/update_untracked_server.rb +24 -0
  312. data/lib/ey-core/requests/upload_file.rb +44 -0
  313. data/lib/ey-core/response.rb +55 -0
  314. data/lib/ey-core/response_cache.rb +29 -0
  315. data/lib/ey-core/subscribable.rb +49 -0
  316. data/lib/ey-core/token_authentication.rb +13 -0
  317. data/lib/ey-core/version.rb +5 -0
  318. data/spec/account_trial_spec.rb +17 -0
  319. data/spec/accounts_referrals_spec.rb +20 -0
  320. data/spec/accounts_spec.rb +113 -0
  321. data/spec/addons_and_vars_spec.rb +62 -0
  322. data/spec/addresses_spec.rb +56 -0
  323. data/spec/alerts_spec.rb +148 -0
  324. data/spec/application_archives_spec.rb +39 -0
  325. data/spec/applications_spec.rb +65 -0
  326. data/spec/billing_spec.rb +31 -0
  327. data/spec/client_spec.rb +16 -0
  328. data/spec/collection_spec.rb +43 -0
  329. data/spec/costs_spec.rb +22 -0
  330. data/spec/database_plan_usage_spec.rb +39 -0
  331. data/spec/database_server_snapshots_spec.rb +41 -0
  332. data/spec/database_server_usage_spec.rb +49 -0
  333. data/spec/database_servers_spec.rb +61 -0
  334. data/spec/database_services_spec.rb +76 -0
  335. data/spec/environment_plan_usage_spec.rb +38 -0
  336. data/spec/environments_spec.rb +106 -0
  337. data/spec/features_spec.rb +79 -0
  338. data/spec/firewalls_spec.rb +84 -0
  339. data/spec/gems_spec.rb +11 -0
  340. data/spec/keypair_deployments_spec.rb +33 -0
  341. data/spec/keypairs_spec.rb +51 -0
  342. data/spec/legacy_alerts_spec.rb +44 -0
  343. data/spec/load_balancers_spec.rb +31 -0
  344. data/spec/logical_databases_spec.rb +38 -0
  345. data/spec/logs_spec.rb +44 -0
  346. data/spec/memberships_spec.rb +70 -0
  347. data/spec/messages_spec.rb +27 -0
  348. data/spec/metadata_spec.rb +11 -0
  349. data/spec/plan_usage_spec.rb +65 -0
  350. data/spec/provider_locations_spec.rb +64 -0
  351. data/spec/providers_spec.rb +105 -0
  352. data/spec/requests/upload_file_spec.rb +25 -0
  353. data/spec/requests_spec.rb +23 -0
  354. data/spec/reset_password_spec.rb +22 -0
  355. data/spec/server_events_spec.rb +31 -0
  356. data/spec/server_usage_spec.rb +70 -0
  357. data/spec/servers_spec.rb +55 -0
  358. data/spec/services_spec.rb +9 -0
  359. data/spec/signups_spec.rb +45 -0
  360. data/spec/spec_helper.rb +13 -0
  361. data/spec/ssl_certificates_spec.rb +94 -0
  362. data/spec/storages_spec.rb +57 -0
  363. data/spec/support/account_helper.rb +71 -0
  364. data/spec/support/alert_helper.rb +14 -0
  365. data/spec/support/client_helper.rb +38 -0
  366. data/spec/support/core.rb +23 -0
  367. data/spec/support/coverage.rb +43 -0
  368. data/spec/support/resource_helper.rb +190 -0
  369. data/spec/support/timecop.rb +8 -0
  370. data/spec/support_trial_spec.rb +33 -0
  371. data/spec/tokens_spec.rb +19 -0
  372. data/spec/untracked_servers_spec.rb +59 -0
  373. data/spec/users_spec.rb +82 -0
  374. metadata +574 -0
@@ -0,0 +1,8 @@
1
+ RSpec.configure do |config|
2
+ config.after(:each) { Timecop.return }
3
+ config.before(:each) do |example|
4
+ if time_scale = example.metadata[:scale]
5
+ Timecop.scale(time_scale)
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,33 @@
1
+ require 'spec_helper'
2
+
3
+ describe "account_trial" do
4
+ let!(:client) { create_client }
5
+
6
+ context "with an account", :mock_only do
7
+ let!(:account) { create_account(client: client) }
8
+
9
+ it "has no support trial" do
10
+ expect(account.support_trial).to be_nil
11
+ end
12
+
13
+ it "returns support_trial if it has one" do
14
+ Ey::Core::Client::Mock.support_trial_elibigle(client, account.id)
15
+ account.reload
16
+ trial = account.support_trial
17
+ expect(trial).to be
18
+ expect(trial.started_at).to be_nil
19
+ expect(trial.expires_at).to be_nil
20
+ expect(trial.account).to eq(account)
21
+ end
22
+
23
+ it "returns support_trial if it has one" do
24
+ Ey::Core::Client::Mock.support_trial_active(client, account.id)
25
+ account.reload
26
+ trial = account.support_trial
27
+ expect(trial).to be
28
+ expect(trial.started_at).to be
29
+ expect(trial.expires_at).to be
30
+ expect(trial.account).to eq(account)
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,19 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'tokens' do
4
+ context "with a hmac client" do
5
+ let!(:client) { create_client }
6
+
7
+ context "with a user" do
8
+ let!(:user) { client.users.create!(name: Faker::Name.name, email: Faker::Internet.email) }
9
+
10
+ it "should generate a token" do
11
+ token = client.tokens.create!(on_behalf_of: user)
12
+ expect(token.auth_id).not_to be_nil
13
+ end
14
+
15
+ # other endpoint: upgrade, which takes a limited token and upgrades to full_access.
16
+
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,59 @@
1
+ require 'spec_helper'
2
+
3
+ RSpec.describe Ey::Core::Client do
4
+ let!(:client) { create_client }
5
+ let!(:account) { create_account(client: client) }
6
+ let!(:provider) { create_provider(account: account) }
7
+
8
+ # @note private
9
+ it "creates an untracked server" do
10
+ provisioner_id = SecureRandom.uuid
11
+ location = "us-west-2b"
12
+ provisioned_id = "i-#{SecureRandom.hex(4)}"
13
+ state = "found"
14
+
15
+ untracked_server = provider.untracked_servers.create(
16
+ :provisioner_id => provisioner_id,
17
+ :location => location,
18
+ :provisioned_id => provisioned_id,
19
+ :state => state,
20
+ )
21
+
22
+ expect(untracked_server.provisioner_id).to eq(provisioner_id)
23
+ expect(untracked_server.provisioned_id).to eq(provisioned_id)
24
+ expect(untracked_server.location).to eq(location)
25
+ expect(untracked_server.provider).to eq(provider)
26
+ expect(untracked_server.state).to eq(state)
27
+
28
+ untracked_server.reload
29
+
30
+ expect(untracked_server.provisioner_id).to eq(provisioner_id)
31
+ expect(untracked_server.provisioned_id).to eq(provisioned_id)
32
+ expect(untracked_server.location).to eq(location)
33
+ expect(untracked_server.provider).to eq(provider)
34
+ expect(untracked_server.state).to eq(state)
35
+
36
+ untracked_server = client.untracked_servers.get!(untracked_server.identity)
37
+
38
+ expect(untracked_server.provisioner_id).to eq(provisioner_id)
39
+ expect(untracked_server.provisioned_id).to eq(provisioned_id)
40
+ expect(untracked_server.location).to eq(location)
41
+ expect(untracked_server.provider).to eq(provider)
42
+ expect(untracked_server.state).to eq(state)
43
+ end
44
+
45
+ context "with an untracked server" do
46
+ let!(:untracked_server) { create_untracked_server(provider: provider) }
47
+
48
+ it "should update server" do
49
+ expect {
50
+ untracked_server.update(state: "killed")
51
+ }.to change { untracked_server.reload.state }.to("killed")
52
+ end
53
+
54
+ it "lists untracked servers" do
55
+ expect(client.untracked_servers.all).to contain_exactly(untracked_server)
56
+ expect(provider.untracked_servers.all).to contain_exactly(untracked_server)
57
+ end
58
+ end
59
+ end
@@ -0,0 +1,82 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'users' do
4
+ context "without authentication" do
5
+ let(:client) { create_unauthenticated_client }
6
+
7
+ it "gets an api token", :mock_only do
8
+ username = ENV["EMAIL"] || "email"
9
+ password = ENV["PASSWORD"] || "password"
10
+ expect(client.get_api_token(username, password).body["api_token"]).not_to be_nil
11
+ end
12
+ end
13
+
14
+ context "when authenticated" do
15
+ let!(:client) { create_client }
16
+
17
+ it "should create a user" do
18
+ name = Faker::Name.name
19
+ email = Faker::Internet.email
20
+
21
+ user = client.users.create!(name: name, email: email)
22
+ user.name = name
23
+ user.email = email
24
+ expect(user.identity).not_to be_nil
25
+ expect(user.staff).to be_falsy
26
+ expect(user.password).to be_nil
27
+
28
+ expect(user.accounts).to be_empty
29
+
30
+ refetched = client.users.get(user.id)
31
+ expect(refetched.name).to eq name
32
+ expect(refetched.staff).to be_falsey
33
+
34
+ if Ey::Core::Client.mocking?
35
+ #Can't actually set users as staff in real core API, but apps that use core API may need to test behavior based on a user being staff
36
+ client.find(:users, user.id).merge!(:staff => true)
37
+ refetched_again = client.users.get(user.id)
38
+ expect(refetched_again.staff).to be true
39
+ end
40
+ end
41
+
42
+ context 'when email address is not available' do
43
+ it 'should raise an error' do
44
+ name = Faker::Name.name
45
+ email = Faker::Internet.email
46
+
47
+ client.users.create!(name: name, email: email)
48
+
49
+ expect {
50
+ client.users.create!(name: name, email: email)
51
+ }.to raise_exception(Ey::Core::Response::Unprocessable, /Email has already been taken/)
52
+ end
53
+ end
54
+
55
+ it "should get current user" do
56
+ expect(client.users.current).to be_a(Ey::Core::Client::User)
57
+
58
+ if Ey::Core::Client.mocking?
59
+ expect(client.users.current.id).to eq(client.current_user["id"])
60
+ end
61
+ end
62
+
63
+ it "should destroy a user" do
64
+ name = Faker::Name.name
65
+ email = Faker::Internet.email
66
+
67
+ user = create_client.users.create!(name: name, email: email)
68
+ user = client.users.get(user.identity)
69
+ expect(user.deleted_at).to be_nil
70
+
71
+ expect {
72
+ user.destroy
73
+ }.to change {client.users.all.size}.by(-1)
74
+
75
+ expect(user.reload.deleted_at).not_to be_nil
76
+
77
+ expect(client.users.all).not_to include(user)
78
+ expect(client.users.all(deleted: true)).to include(user)
79
+ expect(client.users.all(with_deleted: true)).to include(user)
80
+ end
81
+ end
82
+ end
metadata ADDED
@@ -0,0 +1,574 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ey-core
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Josh Lane
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-11-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: addressable
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.2'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.2'
27
+ - !ruby/object:Gem::Dependency
28
+ name: cistern
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.12'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.12'
41
+ - !ruby/object:Gem::Dependency
42
+ name: ey-hmac
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: sshkey
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.6'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.6'
69
+ - !ruby/object:Gem::Dependency
70
+ name: faraday
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '0.9'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '0.9'
83
+ - !ruby/object:Gem::Dependency
84
+ name: faraday_middleware
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '0.9'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '0.9'
97
+ - !ruby/object:Gem::Dependency
98
+ name: mime-types
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '2.99'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '2.99'
111
+ description: Engine Yard Core API Ruby Client
112
+ email:
113
+ - jlane@engineyard.com
114
+ - engineering@engineyard.com
115
+ executables:
116
+ - ey-core
117
+ extensions: []
118
+ extra_rdoc_files: []
119
+ files:
120
+ - ".gitignore"
121
+ - ".ruby-version"
122
+ - ".travis.yml"
123
+ - CHANGELOG.md
124
+ - Gemfile
125
+ - Guardfile
126
+ - LICENSE.txt
127
+ - README.md
128
+ - Rakefile
129
+ - bin/ey-core
130
+ - ey-core.gemspec
131
+ - lib/ey-core.rb
132
+ - lib/ey-core/associations.rb
133
+ - lib/ey-core/cli.rb
134
+ - lib/ey-core/client.rb
135
+ - lib/ey-core/client/mock.rb
136
+ - lib/ey-core/client/real.rb
137
+ - lib/ey-core/collection.rb
138
+ - lib/ey-core/collections/account_cancellations.rb
139
+ - lib/ey-core/collections/account_referrals.rb
140
+ - lib/ey-core/collections/accounts.rb
141
+ - lib/ey-core/collections/addons.rb
142
+ - lib/ey-core/collections/addresses.rb
143
+ - lib/ey-core/collections/alerts.rb
144
+ - lib/ey-core/collections/application_archives.rb
145
+ - lib/ey-core/collections/application_deployments.rb
146
+ - lib/ey-core/collections/applications.rb
147
+ - lib/ey-core/collections/backup_files.rb
148
+ - lib/ey-core/collections/components.rb
149
+ - lib/ey-core/collections/contacts.rb
150
+ - lib/ey-core/collections/costs.rb
151
+ - lib/ey-core/collections/database_plan_usages.rb
152
+ - lib/ey-core/collections/database_server_revisions.rb
153
+ - lib/ey-core/collections/database_server_snapshots.rb
154
+ - lib/ey-core/collections/database_server_usages.rb
155
+ - lib/ey-core/collections/database_servers.rb
156
+ - lib/ey-core/collections/database_services.rb
157
+ - lib/ey-core/collections/environment_plan_usages.rb
158
+ - lib/ey-core/collections/environments.rb
159
+ - lib/ey-core/collections/features.rb
160
+ - lib/ey-core/collections/firewall_rules.rb
161
+ - lib/ey-core/collections/firewalls.rb
162
+ - lib/ey-core/collections/gems.rb
163
+ - lib/ey-core/collections/keypair_deployments.rb
164
+ - lib/ey-core/collections/keypairs.rb
165
+ - lib/ey-core/collections/legacy_alerts.rb
166
+ - lib/ey-core/collections/load_balancer_nodes.rb
167
+ - lib/ey-core/collections/load_balancer_services.rb
168
+ - lib/ey-core/collections/load_balancers.rb
169
+ - lib/ey-core/collections/logical_databases.rb
170
+ - lib/ey-core/collections/logs.rb
171
+ - lib/ey-core/collections/memberships.rb
172
+ - lib/ey-core/collections/messages.rb
173
+ - lib/ey-core/collections/plan_usages.rb
174
+ - lib/ey-core/collections/provider_locations.rb
175
+ - lib/ey-core/collections/providers.rb
176
+ - lib/ey-core/collections/requests.rb
177
+ - lib/ey-core/collections/server_events.rb
178
+ - lib/ey-core/collections/server_usages.rb
179
+ - lib/ey-core/collections/servers.rb
180
+ - lib/ey-core/collections/services.rb
181
+ - lib/ey-core/collections/ssl_certificates.rb
182
+ - lib/ey-core/collections/storage_users.rb
183
+ - lib/ey-core/collections/storages.rb
184
+ - lib/ey-core/collections/tasks.rb
185
+ - lib/ey-core/collections/tokens.rb
186
+ - lib/ey-core/collections/untracked_addresses.rb
187
+ - lib/ey-core/collections/untracked_servers.rb
188
+ - lib/ey-core/collections/users.rb
189
+ - lib/ey-core/collections/volumes.rb
190
+ - lib/ey-core/logger.rb
191
+ - lib/ey-core/memory_cache.rb
192
+ - lib/ey-core/mock/helper.rb
193
+ - lib/ey-core/mock/params.rb
194
+ - lib/ey-core/mock/resources.rb
195
+ - lib/ey-core/mock/searching.rb
196
+ - lib/ey-core/mock/util.rb
197
+ - lib/ey-core/model.rb
198
+ - lib/ey-core/models/account.rb
199
+ - lib/ey-core/models/account_cancellation.rb
200
+ - lib/ey-core/models/account_referral.rb
201
+ - lib/ey-core/models/account_trial.rb
202
+ - lib/ey-core/models/addon.rb
203
+ - lib/ey-core/models/address.rb
204
+ - lib/ey-core/models/alert.rb
205
+ - lib/ey-core/models/application.rb
206
+ - lib/ey-core/models/application_archive.rb
207
+ - lib/ey-core/models/application_deployment.rb
208
+ - lib/ey-core/models/backup_file.rb
209
+ - lib/ey-core/models/billing.rb
210
+ - lib/ey-core/models/component.rb
211
+ - lib/ey-core/models/contact.rb
212
+ - lib/ey-core/models/cost.rb
213
+ - lib/ey-core/models/database_plan_usage.rb
214
+ - lib/ey-core/models/database_server.rb
215
+ - lib/ey-core/models/database_server_revision.rb
216
+ - lib/ey-core/models/database_server_snapshot.rb
217
+ - lib/ey-core/models/database_server_usage.rb
218
+ - lib/ey-core/models/database_service.rb
219
+ - lib/ey-core/models/environment.rb
220
+ - lib/ey-core/models/environment_plan_usage.rb
221
+ - lib/ey-core/models/feature.rb
222
+ - lib/ey-core/models/firewall.rb
223
+ - lib/ey-core/models/firewall_rule.rb
224
+ - lib/ey-core/models/gem.rb
225
+ - lib/ey-core/models/keypair.rb
226
+ - lib/ey-core/models/keypair_deployment.rb
227
+ - lib/ey-core/models/legacy_alert.rb
228
+ - lib/ey-core/models/load_balancer.rb
229
+ - lib/ey-core/models/load_balancer_node.rb
230
+ - lib/ey-core/models/load_balancer_service.rb
231
+ - lib/ey-core/models/log.rb
232
+ - lib/ey-core/models/logical_database.rb
233
+ - lib/ey-core/models/membership.rb
234
+ - lib/ey-core/models/message.rb
235
+ - lib/ey-core/models/plan_usage.rb
236
+ - lib/ey-core/models/provider.rb
237
+ - lib/ey-core/models/provider_location.rb
238
+ - lib/ey-core/models/request.rb
239
+ - lib/ey-core/models/server.rb
240
+ - lib/ey-core/models/server_event.rb
241
+ - lib/ey-core/models/server_usage.rb
242
+ - lib/ey-core/models/service.rb
243
+ - lib/ey-core/models/ssl_certificate.rb
244
+ - lib/ey-core/models/storage.rb
245
+ - lib/ey-core/models/storage_user.rb
246
+ - lib/ey-core/models/support_trial.rb
247
+ - lib/ey-core/models/task.rb
248
+ - lib/ey-core/models/token.rb
249
+ - lib/ey-core/models/untracked_address.rb
250
+ - lib/ey-core/models/untracked_server.rb
251
+ - lib/ey-core/models/user.rb
252
+ - lib/ey-core/models/volume.rb
253
+ - lib/ey-core/request.rb
254
+ - lib/ey-core/request_failure.rb
255
+ - lib/ey-core/requests/attach_address.rb
256
+ - lib/ey-core/requests/authorized_channel.rb
257
+ - lib/ey-core/requests/boot_environment.rb
258
+ - lib/ey-core/requests/bootstrap_logical_database.rb
259
+ - lib/ey-core/requests/cancel_account.rb
260
+ - lib/ey-core/requests/create_account.rb
261
+ - lib/ey-core/requests/create_addon.rb
262
+ - lib/ey-core/requests/create_address.rb
263
+ - lib/ey-core/requests/create_alert.rb
264
+ - lib/ey-core/requests/create_application.rb
265
+ - lib/ey-core/requests/create_application_archive.rb
266
+ - lib/ey-core/requests/create_backup_file.rb
267
+ - lib/ey-core/requests/create_database_server.rb
268
+ - lib/ey-core/requests/create_database_service.rb
269
+ - lib/ey-core/requests/create_database_service_snapshot.rb
270
+ - lib/ey-core/requests/create_environment.rb
271
+ - lib/ey-core/requests/create_firewall.rb
272
+ - lib/ey-core/requests/create_firewall_rule.rb
273
+ - lib/ey-core/requests/create_keypair.rb
274
+ - lib/ey-core/requests/create_keypair_deployment.rb
275
+ - lib/ey-core/requests/create_load_balancer.rb
276
+ - lib/ey-core/requests/create_log.rb
277
+ - lib/ey-core/requests/create_logical_database.rb
278
+ - lib/ey-core/requests/create_membership.rb
279
+ - lib/ey-core/requests/create_message.rb
280
+ - lib/ey-core/requests/create_password_reset.rb
281
+ - lib/ey-core/requests/create_provider.rb
282
+ - lib/ey-core/requests/create_ssl_certificate.rb
283
+ - lib/ey-core/requests/create_storage.rb
284
+ - lib/ey-core/requests/create_storage_user.rb
285
+ - lib/ey-core/requests/create_task.rb
286
+ - lib/ey-core/requests/create_token.rb
287
+ - lib/ey-core/requests/create_untracked_address.rb
288
+ - lib/ey-core/requests/create_untracked_server.rb
289
+ - lib/ey-core/requests/create_user.rb
290
+ - lib/ey-core/requests/deploy_environment_application.rb
291
+ - lib/ey-core/requests/deprovision_environment.rb
292
+ - lib/ey-core/requests/destroy_addon.rb
293
+ - lib/ey-core/requests/destroy_database_server.rb
294
+ - lib/ey-core/requests/destroy_database_server_snapshot.rb
295
+ - lib/ey-core/requests/destroy_database_service.rb
296
+ - lib/ey-core/requests/destroy_environment.rb
297
+ - lib/ey-core/requests/destroy_firewall.rb
298
+ - lib/ey-core/requests/destroy_firewall_rule.rb
299
+ - lib/ey-core/requests/destroy_load_balancer.rb
300
+ - lib/ey-core/requests/destroy_logical_database.rb
301
+ - lib/ey-core/requests/destroy_provider.rb
302
+ - lib/ey-core/requests/destroy_server.rb
303
+ - lib/ey-core/requests/destroy_ssl_certificate.rb
304
+ - lib/ey-core/requests/destroy_storage.rb
305
+ - lib/ey-core/requests/destroy_storage_user.rb
306
+ - lib/ey-core/requests/destroy_user.rb
307
+ - lib/ey-core/requests/detach_address.rb
308
+ - lib/ey-core/requests/disable_feature.rb
309
+ - lib/ey-core/requests/discover_database_server.rb
310
+ - lib/ey-core/requests/discover_database_server_snapshots.rb
311
+ - lib/ey-core/requests/discover_provider_location.rb
312
+ - lib/ey-core/requests/download_file.rb
313
+ - lib/ey-core/requests/enable_feature.rb
314
+ - lib/ey-core/requests/get_account.rb
315
+ - lib/ey-core/requests/get_account_cancellation.rb
316
+ - lib/ey-core/requests/get_account_referrals.rb
317
+ - lib/ey-core/requests/get_account_trial.rb
318
+ - lib/ey-core/requests/get_accounts.rb
319
+ - lib/ey-core/requests/get_addon.rb
320
+ - lib/ey-core/requests/get_addons.rb
321
+ - lib/ey-core/requests/get_address.rb
322
+ - lib/ey-core/requests/get_addresses.rb
323
+ - lib/ey-core/requests/get_alert.rb
324
+ - lib/ey-core/requests/get_alerting_environments.rb
325
+ - lib/ey-core/requests/get_alerts.rb
326
+ - lib/ey-core/requests/get_api_token.rb
327
+ - lib/ey-core/requests/get_application.rb
328
+ - lib/ey-core/requests/get_application_archive.rb
329
+ - lib/ey-core/requests/get_application_archives.rb
330
+ - lib/ey-core/requests/get_application_deployment.rb
331
+ - lib/ey-core/requests/get_application_deployments.rb
332
+ - lib/ey-core/requests/get_applications.rb
333
+ - lib/ey-core/requests/get_backup_file.rb
334
+ - lib/ey-core/requests/get_backup_files.rb
335
+ - lib/ey-core/requests/get_billing.rb
336
+ - lib/ey-core/requests/get_component.rb
337
+ - lib/ey-core/requests/get_components.rb
338
+ - lib/ey-core/requests/get_contacts.rb
339
+ - lib/ey-core/requests/get_costs.rb
340
+ - lib/ey-core/requests/get_current_user.rb
341
+ - lib/ey-core/requests/get_database_plan_usages.rb
342
+ - lib/ey-core/requests/get_database_server.rb
343
+ - lib/ey-core/requests/get_database_server_revisions.rb
344
+ - lib/ey-core/requests/get_database_server_snapshot.rb
345
+ - lib/ey-core/requests/get_database_server_snapshots.rb
346
+ - lib/ey-core/requests/get_database_server_usages.rb
347
+ - lib/ey-core/requests/get_database_servers.rb
348
+ - lib/ey-core/requests/get_database_servers_firewalls.rb
349
+ - lib/ey-core/requests/get_database_service.rb
350
+ - lib/ey-core/requests/get_database_services.rb
351
+ - lib/ey-core/requests/get_environment.rb
352
+ - lib/ey-core/requests/get_environment_database_services.rb
353
+ - lib/ey-core/requests/get_environment_logical_databases.rb
354
+ - lib/ey-core/requests/get_environment_plan_usages.rb
355
+ - lib/ey-core/requests/get_environments.rb
356
+ - lib/ey-core/requests/get_feature.rb
357
+ - lib/ey-core/requests/get_features.rb
358
+ - lib/ey-core/requests/get_firewall.rb
359
+ - lib/ey-core/requests/get_firewall_rule.rb
360
+ - lib/ey-core/requests/get_firewall_rules.rb
361
+ - lib/ey-core/requests/get_firewalls.rb
362
+ - lib/ey-core/requests/get_gem.rb
363
+ - lib/ey-core/requests/get_keypair.rb
364
+ - lib/ey-core/requests/get_keypair_deployment.rb
365
+ - lib/ey-core/requests/get_keypair_deployments.rb
366
+ - lib/ey-core/requests/get_keypairs.rb
367
+ - lib/ey-core/requests/get_legacy_alert.rb
368
+ - lib/ey-core/requests/get_legacy_alerts.rb
369
+ - lib/ey-core/requests/get_load_balancer.rb
370
+ - lib/ey-core/requests/get_load_balancer_node.rb
371
+ - lib/ey-core/requests/get_load_balancer_nodes.rb
372
+ - lib/ey-core/requests/get_load_balancer_service.rb
373
+ - lib/ey-core/requests/get_load_balancer_services.rb
374
+ - lib/ey-core/requests/get_load_balancers.rb
375
+ - lib/ey-core/requests/get_log.rb
376
+ - lib/ey-core/requests/get_logical_database.rb
377
+ - lib/ey-core/requests/get_logical_databases.rb
378
+ - lib/ey-core/requests/get_logs.rb
379
+ - lib/ey-core/requests/get_membership.rb
380
+ - lib/ey-core/requests/get_memberships.rb
381
+ - lib/ey-core/requests/get_message.rb
382
+ - lib/ey-core/requests/get_messages.rb
383
+ - lib/ey-core/requests/get_metadata.rb
384
+ - lib/ey-core/requests/get_operational_contact.rb
385
+ - lib/ey-core/requests/get_operational_contacts.rb
386
+ - lib/ey-core/requests/get_plan_usages.rb
387
+ - lib/ey-core/requests/get_possible_provider_locations.rb
388
+ - lib/ey-core/requests/get_provider.rb
389
+ - lib/ey-core/requests/get_provider_location.rb
390
+ - lib/ey-core/requests/get_provider_locations.rb
391
+ - lib/ey-core/requests/get_providers.rb
392
+ - lib/ey-core/requests/get_request.rb
393
+ - lib/ey-core/requests/get_requests.rb
394
+ - lib/ey-core/requests/get_server.rb
395
+ - lib/ey-core/requests/get_server_event.rb
396
+ - lib/ey-core/requests/get_server_events.rb
397
+ - lib/ey-core/requests/get_server_usages.rb
398
+ - lib/ey-core/requests/get_servers.rb
399
+ - lib/ey-core/requests/get_ssl_certificate.rb
400
+ - lib/ey-core/requests/get_ssl_certificates.rb
401
+ - lib/ey-core/requests/get_storage.rb
402
+ - lib/ey-core/requests/get_storage_user.rb
403
+ - lib/ey-core/requests/get_storage_users.rb
404
+ - lib/ey-core/requests/get_storages.rb
405
+ - lib/ey-core/requests/get_support_trial.rb
406
+ - lib/ey-core/requests/get_task.rb
407
+ - lib/ey-core/requests/get_tasks.rb
408
+ - lib/ey-core/requests/get_untracked_server.rb
409
+ - lib/ey-core/requests/get_untracked_servers.rb
410
+ - lib/ey-core/requests/get_user.rb
411
+ - lib/ey-core/requests/get_users.rb
412
+ - lib/ey-core/requests/get_volume.rb
413
+ - lib/ey-core/requests/get_volumes.rb
414
+ - lib/ey-core/requests/reboot_server.rb
415
+ - lib/ey-core/requests/request_callback.rb
416
+ - lib/ey-core/requests/reset_password.rb
417
+ - lib/ey-core/requests/run_cluster_application_action.rb
418
+ - lib/ey-core/requests/run_environment_application_action.rb
419
+ - lib/ey-core/requests/signup.rb
420
+ - lib/ey-core/requests/update_addon.rb
421
+ - lib/ey-core/requests/update_address.rb
422
+ - lib/ey-core/requests/update_alert.rb
423
+ - lib/ey-core/requests/update_application_archive.rb
424
+ - lib/ey-core/requests/update_billing.rb
425
+ - lib/ey-core/requests/update_connector.rb
426
+ - lib/ey-core/requests/update_membership.rb
427
+ - lib/ey-core/requests/update_server.rb
428
+ - lib/ey-core/requests/update_ssl_certificate.rb
429
+ - lib/ey-core/requests/update_untracked_server.rb
430
+ - lib/ey-core/requests/upload_file.rb
431
+ - lib/ey-core/response.rb
432
+ - lib/ey-core/response_cache.rb
433
+ - lib/ey-core/subscribable.rb
434
+ - lib/ey-core/token_authentication.rb
435
+ - lib/ey-core/version.rb
436
+ - spec/account_trial_spec.rb
437
+ - spec/accounts_referrals_spec.rb
438
+ - spec/accounts_spec.rb
439
+ - spec/addons_and_vars_spec.rb
440
+ - spec/addresses_spec.rb
441
+ - spec/alerts_spec.rb
442
+ - spec/application_archives_spec.rb
443
+ - spec/applications_spec.rb
444
+ - spec/billing_spec.rb
445
+ - spec/client_spec.rb
446
+ - spec/collection_spec.rb
447
+ - spec/costs_spec.rb
448
+ - spec/database_plan_usage_spec.rb
449
+ - spec/database_server_snapshots_spec.rb
450
+ - spec/database_server_usage_spec.rb
451
+ - spec/database_servers_spec.rb
452
+ - spec/database_services_spec.rb
453
+ - spec/environment_plan_usage_spec.rb
454
+ - spec/environments_spec.rb
455
+ - spec/features_spec.rb
456
+ - spec/firewalls_spec.rb
457
+ - spec/gems_spec.rb
458
+ - spec/keypair_deployments_spec.rb
459
+ - spec/keypairs_spec.rb
460
+ - spec/legacy_alerts_spec.rb
461
+ - spec/load_balancers_spec.rb
462
+ - spec/logical_databases_spec.rb
463
+ - spec/logs_spec.rb
464
+ - spec/memberships_spec.rb
465
+ - spec/messages_spec.rb
466
+ - spec/metadata_spec.rb
467
+ - spec/plan_usage_spec.rb
468
+ - spec/provider_locations_spec.rb
469
+ - spec/providers_spec.rb
470
+ - spec/requests/upload_file_spec.rb
471
+ - spec/requests_spec.rb
472
+ - spec/reset_password_spec.rb
473
+ - spec/server_events_spec.rb
474
+ - spec/server_usage_spec.rb
475
+ - spec/servers_spec.rb
476
+ - spec/services_spec.rb
477
+ - spec/signups_spec.rb
478
+ - spec/spec_helper.rb
479
+ - spec/ssl_certificates_spec.rb
480
+ - spec/storages_spec.rb
481
+ - spec/support/account_helper.rb
482
+ - spec/support/alert_helper.rb
483
+ - spec/support/client_helper.rb
484
+ - spec/support/core.rb
485
+ - spec/support/coverage.rb
486
+ - spec/support/resource_helper.rb
487
+ - spec/support/timecop.rb
488
+ - spec/support_trial_spec.rb
489
+ - spec/tokens_spec.rb
490
+ - spec/untracked_servers_spec.rb
491
+ - spec/users_spec.rb
492
+ homepage: ''
493
+ licenses:
494
+ - MIT
495
+ metadata: {}
496
+ post_install_message:
497
+ rdoc_options: []
498
+ require_paths:
499
+ - lib
500
+ required_ruby_version: !ruby/object:Gem::Requirement
501
+ requirements:
502
+ - - ">="
503
+ - !ruby/object:Gem::Version
504
+ version: '0'
505
+ required_rubygems_version: !ruby/object:Gem::Requirement
506
+ requirements:
507
+ - - ">="
508
+ - !ruby/object:Gem::Version
509
+ version: '0'
510
+ requirements: []
511
+ rubyforge_project:
512
+ rubygems_version: 2.4.5
513
+ signing_key:
514
+ specification_version: 4
515
+ summary: Client library providing real and mock functionality for accessing Engine
516
+ Yard's Core API
517
+ test_files:
518
+ - spec/account_trial_spec.rb
519
+ - spec/accounts_referrals_spec.rb
520
+ - spec/accounts_spec.rb
521
+ - spec/addons_and_vars_spec.rb
522
+ - spec/addresses_spec.rb
523
+ - spec/alerts_spec.rb
524
+ - spec/application_archives_spec.rb
525
+ - spec/applications_spec.rb
526
+ - spec/billing_spec.rb
527
+ - spec/client_spec.rb
528
+ - spec/collection_spec.rb
529
+ - spec/costs_spec.rb
530
+ - spec/database_plan_usage_spec.rb
531
+ - spec/database_server_snapshots_spec.rb
532
+ - spec/database_server_usage_spec.rb
533
+ - spec/database_servers_spec.rb
534
+ - spec/database_services_spec.rb
535
+ - spec/environment_plan_usage_spec.rb
536
+ - spec/environments_spec.rb
537
+ - spec/features_spec.rb
538
+ - spec/firewalls_spec.rb
539
+ - spec/gems_spec.rb
540
+ - spec/keypair_deployments_spec.rb
541
+ - spec/keypairs_spec.rb
542
+ - spec/legacy_alerts_spec.rb
543
+ - spec/load_balancers_spec.rb
544
+ - spec/logical_databases_spec.rb
545
+ - spec/logs_spec.rb
546
+ - spec/memberships_spec.rb
547
+ - spec/messages_spec.rb
548
+ - spec/metadata_spec.rb
549
+ - spec/plan_usage_spec.rb
550
+ - spec/provider_locations_spec.rb
551
+ - spec/providers_spec.rb
552
+ - spec/requests/upload_file_spec.rb
553
+ - spec/requests_spec.rb
554
+ - spec/reset_password_spec.rb
555
+ - spec/server_events_spec.rb
556
+ - spec/server_usage_spec.rb
557
+ - spec/servers_spec.rb
558
+ - spec/services_spec.rb
559
+ - spec/signups_spec.rb
560
+ - spec/spec_helper.rb
561
+ - spec/ssl_certificates_spec.rb
562
+ - spec/storages_spec.rb
563
+ - spec/support/account_helper.rb
564
+ - spec/support/alert_helper.rb
565
+ - spec/support/client_helper.rb
566
+ - spec/support/core.rb
567
+ - spec/support/coverage.rb
568
+ - spec/support/resource_helper.rb
569
+ - spec/support/timecop.rb
570
+ - spec/support_trial_spec.rb
571
+ - spec/tokens_spec.rb
572
+ - spec/untracked_servers_spec.rb
573
+ - spec/users_spec.rb
574
+ has_rdoc: