ey-core 3.4.5 → 3.6.0.autoscaling1

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 (538) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +23 -26
  3. data/.ruby-gemset +1 -1
  4. data/.ruby-version +1 -1
  5. data/.travis.yml +23 -23
  6. data/CHANGELOG.md +174 -166
  7. data/Dockerfile +3 -0
  8. data/Gemfile +21 -21
  9. data/Guardfile +15 -15
  10. data/LICENSE.txt +19 -19
  11. data/README.md +78 -78
  12. data/Rakefile +18 -18
  13. data/bin/ey-core +4 -4
  14. data/examples/add_instance.rb +74 -74
  15. data/examples/boot_env.rb +60 -60
  16. data/examples/console/README.md +14 -14
  17. data/examples/console/address.md +51 -51
  18. data/examples/stop_env.rb +51 -51
  19. data/examples/terminate_instance.rb +62 -62
  20. data/ey-core.gemspec +51 -51
  21. data/features/accounts.feature +13 -13
  22. data/features/applications.feature +29 -29
  23. data/features/current_user.feature +14 -14
  24. data/features/environment_variables.feature +54 -0
  25. data/features/environments.feature +30 -30
  26. data/features/init.feature +6 -6
  27. data/features/login.feature +6 -6
  28. data/features/scp.feature +6 -6
  29. data/features/step_definitions/accounts_steps.rb +37 -23
  30. data/features/step_definitions/applications_steps.rb +39 -46
  31. data/features/step_definitions/current_user_steps.rb +11 -11
  32. data/features/step_definitions/deprecated_command_steps.rb +3 -3
  33. data/features/step_definitions/environment_variables_steps.rb +51 -0
  34. data/features/step_definitions/environments_steps.rb +52 -37
  35. data/features/step_definitions/version_steps.rb +3 -3
  36. data/features/support/account_helpers.rb +89 -89
  37. data/features/support/app_helpers.rb +19 -19
  38. data/features/support/aruba.rb +1 -1
  39. data/features/support/boilerplate.rb +1 -1
  40. data/features/support/client_helpers.rb +36 -36
  41. data/features/support/config_file_helpers.rb +42 -42
  42. data/features/support/core.rb +19 -19
  43. data/features/support/deployment_helpers.rb +19 -19
  44. data/features/support/env.rb +40 -40
  45. data/features/support/environment_helpers.rb +23 -23
  46. data/features/support/environment_variable_helpers.rb +20 -0
  47. data/features/support/fake_kernel.rb +23 -23
  48. data/features/support/io.rb +5 -5
  49. data/features/support/mock_api.rb +21 -21
  50. data/features/support/output_helpers.rb +7 -7
  51. data/features/support/resource_helpers.rb +201 -189
  52. data/features/support/server_helpers.rb +27 -27
  53. data/features/version.feature +8 -8
  54. data/features/whoami.feature +14 -14
  55. data/lib/ey-core/associations.rb +155 -155
  56. data/lib/ey-core/cli/accounts.rb +17 -17
  57. data/lib/ey-core/cli/applications.rb +36 -36
  58. data/lib/ey-core/cli/console.rb +28 -28
  59. data/lib/ey-core/cli/current_user.rb +16 -16
  60. data/lib/ey-core/cli/deploy.rb +123 -123
  61. data/lib/ey-core/cli/environment_variables.rb +71 -0
  62. data/lib/ey-core/cli/environments.rb +39 -39
  63. data/lib/ey-core/cli/errors.rb +11 -11
  64. data/lib/ey-core/cli/help.rb +30 -30
  65. data/lib/ey-core/cli/helpers/archive.rb +70 -70
  66. data/lib/ey-core/cli/helpers/chef.rb +51 -51
  67. data/lib/ey-core/cli/helpers/core.rb +225 -196
  68. data/lib/ey-core/cli/helpers/deprecated.rb +39 -39
  69. data/lib/ey-core/cli/helpers/log_streaming.rb +41 -41
  70. data/lib/ey-core/cli/helpers/server_sieve.rb +76 -76
  71. data/lib/ey-core/cli/helpers/stream_printer.rb +42 -42
  72. data/lib/ey-core/cli/init.rb +14 -14
  73. data/lib/ey-core/cli/login.rb +38 -38
  74. data/lib/ey-core/cli/logout.rb +22 -22
  75. data/lib/ey-core/cli/logs.rb +70 -70
  76. data/lib/ey-core/cli/main.rb +67 -65
  77. data/lib/ey-core/cli/recipes/apply.rb +65 -65
  78. data/lib/ey-core/cli/recipes/download.rb +52 -52
  79. data/lib/ey-core/cli/recipes/main.rb +21 -21
  80. data/lib/ey-core/cli/recipes/upload.rb +78 -78
  81. data/lib/ey-core/cli/recipes.rb +10 -10
  82. data/lib/ey-core/cli/scp.rb +14 -14
  83. data/lib/ey-core/cli/servers.rb +58 -41
  84. data/lib/ey-core/cli/ssh.rb +150 -150
  85. data/lib/ey-core/cli/status.rb +60 -60
  86. data/lib/ey-core/cli/subcommand.rb +53 -53
  87. data/lib/ey-core/cli/timeout_deploy.rb +58 -58
  88. data/lib/ey-core/cli/version.rb +16 -16
  89. data/lib/ey-core/cli/web/disable.rb +49 -49
  90. data/lib/ey-core/cli/web/enable.rb +46 -46
  91. data/lib/ey-core/cli/web/main.rb +21 -21
  92. data/lib/ey-core/cli/web/restart.rb +42 -42
  93. data/lib/ey-core/cli/web.rb +10 -10
  94. data/lib/ey-core/cli/whoami.rb +12 -12
  95. data/lib/ey-core/cli.rb +8 -8
  96. data/lib/ey-core/client/mock.rb +306 -302
  97. data/lib/ey-core/client/real.rb +93 -93
  98. data/lib/ey-core/client.rb +468 -442
  99. data/lib/ey-core/collection.rb +131 -131
  100. data/lib/ey-core/collections/account_cancellations.rb +6 -6
  101. data/lib/ey-core/collections/account_referrals.rb +10 -10
  102. data/lib/ey-core/collections/accounts.rb +8 -8
  103. data/lib/ey-core/collections/addons.rb +16 -16
  104. data/lib/ey-core/collections/addresses.rb +9 -9
  105. data/lib/ey-core/collections/alerts.rb +9 -9
  106. data/lib/ey-core/collections/application_archives.rb +9 -9
  107. data/lib/ey-core/collections/application_deployments.rb +9 -9
  108. data/lib/ey-core/collections/applications.rb +9 -9
  109. data/lib/ey-core/collections/auto_scaling_alarms.rb +8 -0
  110. data/lib/ey-core/collections/auto_scaling_groups.rb +8 -8
  111. data/lib/ey-core/collections/auto_scaling_policies.rb +33 -0
  112. data/lib/ey-core/collections/backup_files.rb +9 -9
  113. data/lib/ey-core/collections/blueprints.rb +9 -9
  114. data/lib/ey-core/collections/components.rb +9 -9
  115. data/lib/ey-core/collections/contacts.rb +9 -9
  116. data/lib/ey-core/collections/container_clusters.rb +9 -0
  117. data/lib/ey-core/collections/container_service_deployments.rb +17 -0
  118. data/lib/ey-core/collections/costs.rb +8 -8
  119. data/lib/ey-core/collections/database_plan_usages.rb +7 -7
  120. data/lib/ey-core/collections/database_server_revisions.rb +7 -7
  121. data/lib/ey-core/collections/database_server_snapshots.rb +17 -17
  122. data/lib/ey-core/collections/database_server_usages.rb +7 -7
  123. data/lib/ey-core/collections/database_servers.rb +9 -9
  124. data/lib/ey-core/collections/database_services.rb +9 -9
  125. data/lib/ey-core/collections/deployments.rb +8 -8
  126. data/lib/ey-core/collections/environment_plan_usages.rb +7 -7
  127. data/lib/ey-core/collections/environment_variables.rb +8 -0
  128. data/lib/ey-core/collections/environments.rb +15 -15
  129. data/lib/ey-core/collections/features.rb +9 -9
  130. data/lib/ey-core/collections/firewall_rules.rb +9 -9
  131. data/lib/ey-core/collections/firewalls.rb +9 -9
  132. data/lib/ey-core/collections/gems.rb +6 -6
  133. data/lib/ey-core/collections/keypair_deployments.rb +9 -9
  134. data/lib/ey-core/collections/keypairs.rb +9 -9
  135. data/lib/ey-core/collections/legacy_alerts.rb +9 -9
  136. data/lib/ey-core/collections/load_balancer_nodes.rb +9 -9
  137. data/lib/ey-core/collections/load_balancer_services.rb +9 -9
  138. data/lib/ey-core/collections/load_balancers.rb +16 -16
  139. data/lib/ey-core/collections/logical_databases.rb +16 -16
  140. data/lib/ey-core/collections/logs.rb +9 -9
  141. data/lib/ey-core/collections/memberships.rb +9 -9
  142. data/lib/ey-core/collections/messages.rb +9 -9
  143. data/lib/ey-core/collections/plan_usages.rb +7 -7
  144. data/lib/ey-core/collections/provider_locations.rb +13 -13
  145. data/lib/ey-core/collections/providers.rb +15 -15
  146. data/lib/ey-core/collections/requests.rb +10 -10
  147. data/lib/ey-core/collections/server_events.rb +9 -9
  148. data/lib/ey-core/collections/server_usages.rb +7 -7
  149. data/lib/ey-core/collections/servers.rb +13 -13
  150. data/lib/ey-core/collections/services.rb +14 -14
  151. data/lib/ey-core/collections/ssl_certificates.rb +9 -9
  152. data/lib/ey-core/collections/storage_users.rb +10 -10
  153. data/lib/ey-core/collections/storages.rb +9 -9
  154. data/lib/ey-core/collections/tasks.rb +9 -9
  155. data/lib/ey-core/collections/tokens.rb +9 -9
  156. data/lib/ey-core/collections/untracked_addresses.rb +4 -4
  157. data/lib/ey-core/collections/untracked_servers.rb +9 -9
  158. data/lib/ey-core/collections/users.rb +12 -12
  159. data/lib/ey-core/collections/volumes.rb +9 -9
  160. data/lib/ey-core/logger.rb +31 -31
  161. data/lib/ey-core/memory_cache.rb +17 -17
  162. data/lib/ey-core/mock/helper.rb +104 -104
  163. data/lib/ey-core/mock/params.rb +31 -31
  164. data/lib/ey-core/mock/resources.rb +92 -92
  165. data/lib/ey-core/mock/searching.rb +115 -115
  166. data/lib/ey-core/mock/util.rb +23 -23
  167. data/lib/ey-core/model.rb +44 -44
  168. data/lib/ey-core/models/account.rb +70 -70
  169. data/lib/ey-core/models/account_cancellation.rb +6 -6
  170. data/lib/ey-core/models/account_referral.rb +8 -8
  171. data/lib/ey-core/models/account_trial.rb +15 -15
  172. data/lib/ey-core/models/addon.rb +37 -37
  173. data/lib/ey-core/models/address.rb +59 -57
  174. data/lib/ey-core/models/alert.rb +99 -100
  175. data/lib/ey-core/models/application.rb +33 -32
  176. data/lib/ey-core/models/application_archive.rb +67 -67
  177. data/lib/ey-core/models/application_deployment.rb +18 -18
  178. data/lib/ey-core/models/auto_scaling_alarm.rb +54 -0
  179. data/lib/ey-core/models/auto_scaling_group.rb +75 -49
  180. data/lib/ey-core/models/backup_file.rb +52 -52
  181. data/lib/ey-core/models/base_auto_scaling_policy.rb +61 -0
  182. data/lib/ey-core/models/billing.rb +27 -27
  183. data/lib/ey-core/models/blueprint.rb +30 -30
  184. data/lib/ey-core/models/component.rb +11 -11
  185. data/lib/ey-core/models/contact.rb +14 -14
  186. data/lib/ey-core/models/container_service_deployment.rb +17 -0
  187. data/lib/ey-core/models/cost.rb +16 -16
  188. data/lib/ey-core/models/database_plan_usage.rb +10 -10
  189. data/lib/ey-core/models/database_server.rb +56 -56
  190. data/lib/ey-core/models/database_server_revision.rb +10 -10
  191. data/lib/ey-core/models/database_server_snapshot.rb +43 -43
  192. data/lib/ey-core/models/database_server_usage.rb +15 -15
  193. data/lib/ey-core/models/database_service.rb +52 -52
  194. data/lib/ey-core/models/deployment.rb +30 -30
  195. data/lib/ey-core/models/environment.rb +248 -242
  196. data/lib/ey-core/models/environment_plan_usage.rb +10 -10
  197. data/lib/ey-core/models/environment_variable.rb +29 -0
  198. data/lib/ey-core/models/feature.rb +33 -33
  199. data/lib/ey-core/models/firewall.rb +46 -46
  200. data/lib/ey-core/models/firewall_rule.rb +41 -41
  201. data/lib/ey-core/models/gem.rb +5 -5
  202. data/lib/ey-core/models/keypair.rb +38 -38
  203. data/lib/ey-core/models/keypair_deployment.rb +26 -26
  204. data/lib/ey-core/models/legacy_alert.rb +12 -12
  205. data/lib/ey-core/models/load_balancer.rb +43 -43
  206. data/lib/ey-core/models/load_balancer_node.rb +17 -17
  207. data/lib/ey-core/models/load_balancer_service.rb +22 -22
  208. data/lib/ey-core/models/log.rb +44 -44
  209. data/lib/ey-core/models/logical_database.rb +40 -40
  210. data/lib/ey-core/models/membership.rb +49 -49
  211. data/lib/ey-core/models/message.rb +27 -27
  212. data/lib/ey-core/models/plan_usage.rb +14 -14
  213. data/lib/ey-core/models/provider.rb +59 -59
  214. data/lib/ey-core/models/provider_location.rb +24 -24
  215. data/lib/ey-core/models/request.rb +109 -105
  216. data/lib/ey-core/models/server.rb +151 -151
  217. data/lib/ey-core/models/server_event.rb +11 -11
  218. data/lib/ey-core/models/server_usage.rb +15 -15
  219. data/lib/ey-core/models/service.rb +10 -10
  220. data/lib/ey-core/models/simple_auto_scaling_policy.rb +24 -0
  221. data/lib/ey-core/models/ssl_certificate.rb +44 -44
  222. data/lib/ey-core/models/step_auto_scaling_policy.rb +24 -0
  223. data/lib/ey-core/models/storage.rb +38 -38
  224. data/lib/ey-core/models/storage_user.rb +44 -44
  225. data/lib/ey-core/models/support_trial.rb +10 -10
  226. data/lib/ey-core/models/target_auto_scaling_policy.rb +24 -0
  227. data/lib/ey-core/models/task.rb +35 -35
  228. data/lib/ey-core/models/token.rb +24 -24
  229. data/lib/ey-core/models/untracked_address.rb +24 -24
  230. data/lib/ey-core/models/untracked_server.rb +45 -45
  231. data/lib/ey-core/models/user.rb +39 -39
  232. data/lib/ey-core/models/volume.rb +20 -20
  233. data/lib/ey-core/request.rb +21 -21
  234. data/lib/ey-core/request_failure.rb +11 -11
  235. data/lib/ey-core/requests/acknowledge_alert.rb +29 -29
  236. data/lib/ey-core/requests/apply_environment_updates.rb +54 -54
  237. data/lib/ey-core/requests/apply_server_updates.rb +52 -52
  238. data/lib/ey-core/requests/attach_address.rb +53 -53
  239. data/lib/ey-core/requests/authorized_channel.rb +22 -22
  240. data/lib/ey-core/requests/blueprint_environment.rb +72 -72
  241. data/lib/ey-core/requests/boot_environment.rb +187 -187
  242. data/lib/ey-core/requests/bootstrap_logical_database.rb +80 -80
  243. data/lib/ey-core/requests/cancel_account.rb +33 -33
  244. data/lib/ey-core/requests/change_environment_maintenance.rb +38 -38
  245. data/lib/ey-core/requests/create_account.rb +38 -33
  246. data/lib/ey-core/requests/create_addon.rb +35 -35
  247. data/lib/ey-core/requests/create_address.rb +54 -53
  248. data/lib/ey-core/requests/create_alert.rb +63 -63
  249. data/lib/ey-core/requests/create_application.rb +73 -72
  250. data/lib/ey-core/requests/create_application_archive.rb +44 -44
  251. data/lib/ey-core/requests/create_auto_scaling_alarm.rb +69 -0
  252. data/lib/ey-core/requests/create_auto_scaling_group.rb +62 -62
  253. data/lib/ey-core/requests/create_auto_scaling_policy.rb +68 -0
  254. data/lib/ey-core/requests/create_backup_file.rb +52 -52
  255. data/lib/ey-core/requests/create_database_server.rb +72 -72
  256. data/lib/ey-core/requests/create_database_service.rb +57 -57
  257. data/lib/ey-core/requests/create_database_service_snapshot.rb +69 -69
  258. data/lib/ey-core/requests/create_environment.rb +77 -76
  259. data/lib/ey-core/requests/create_environment_variable.rb +39 -0
  260. data/lib/ey-core/requests/create_firewall.rb +62 -62
  261. data/lib/ey-core/requests/create_firewall_rule.rb +60 -60
  262. data/lib/ey-core/requests/create_keypair.rb +42 -42
  263. data/lib/ey-core/requests/create_keypair_deployment.rb +36 -36
  264. data/lib/ey-core/requests/create_load_balancer.rb +62 -62
  265. data/lib/ey-core/requests/create_log.rb +53 -53
  266. data/lib/ey-core/requests/create_logical_database.rb +56 -56
  267. data/lib/ey-core/requests/create_membership.rb +47 -47
  268. data/lib/ey-core/requests/create_message.rb +35 -35
  269. data/lib/ey-core/requests/create_password_reset.rb +38 -38
  270. data/lib/ey-core/requests/create_provider.rb +90 -90
  271. data/lib/ey-core/requests/create_server.rb +121 -121
  272. data/lib/ey-core/requests/create_ssl_certificate.rb +83 -83
  273. data/lib/ey-core/requests/create_storage.rb +64 -64
  274. data/lib/ey-core/requests/create_storage_user.rb +64 -64
  275. data/lib/ey-core/requests/create_task.rb +55 -55
  276. data/lib/ey-core/requests/create_token.rb +24 -24
  277. data/lib/ey-core/requests/create_untracked_address.rb +50 -50
  278. data/lib/ey-core/requests/create_untracked_server.rb +39 -39
  279. data/lib/ey-core/requests/create_user.rb +54 -52
  280. data/lib/ey-core/requests/deploy_environment_application.rb +60 -60
  281. data/lib/ey-core/requests/deprovision_environment.rb +17 -17
  282. data/lib/ey-core/requests/destroy_addon.rb +24 -24
  283. data/lib/ey-core/requests/destroy_auto_scaling_alarm.rb +49 -0
  284. data/lib/ey-core/requests/destroy_auto_scaling_group.rb +44 -44
  285. data/lib/ey-core/requests/destroy_auto_scaling_policy.rb +49 -0
  286. data/lib/ey-core/requests/destroy_blueprint.rb +22 -22
  287. data/lib/ey-core/requests/destroy_database_server.rb +41 -41
  288. data/lib/ey-core/requests/destroy_database_server_snapshot.rb +42 -42
  289. data/lib/ey-core/requests/destroy_database_service.rb +57 -57
  290. data/lib/ey-core/requests/destroy_environment.rb +43 -43
  291. data/lib/ey-core/requests/destroy_firewall.rb +41 -41
  292. data/lib/ey-core/requests/destroy_firewall_rule.rb +41 -41
  293. data/lib/ey-core/requests/destroy_load_balancer.rb +30 -30
  294. data/lib/ey-core/requests/destroy_logical_database.rb +41 -41
  295. data/lib/ey-core/requests/destroy_provider.rb +34 -34
  296. data/lib/ey-core/requests/destroy_server.rb +48 -48
  297. data/lib/ey-core/requests/destroy_ssl_certificate.rb +28 -28
  298. data/lib/ey-core/requests/destroy_storage.rb +33 -33
  299. data/lib/ey-core/requests/destroy_storage_user.rb +38 -38
  300. data/lib/ey-core/requests/destroy_user.rb +29 -29
  301. data/lib/ey-core/requests/detach_address.rb +48 -48
  302. data/lib/ey-core/requests/disable_feature.rb +30 -30
  303. data/lib/ey-core/requests/discover_container_service_deployments.rb +71 -0
  304. data/lib/ey-core/requests/discover_database_server.rb +66 -66
  305. data/lib/ey-core/requests/discover_database_server_snapshots.rb +69 -69
  306. data/lib/ey-core/requests/discover_provider_location.rb +57 -57
  307. data/lib/ey-core/requests/discover_server.rb +60 -60
  308. data/lib/ey-core/requests/download_file.rb +25 -25
  309. data/lib/ey-core/requests/enable_feature.rb +35 -35
  310. data/lib/ey-core/requests/get_account.rb +29 -29
  311. data/lib/ey-core/requests/get_account_cancellation.rb +21 -21
  312. data/lib/ey-core/requests/get_account_referrals.rb +28 -28
  313. data/lib/ey-core/requests/get_account_trial.rb +32 -32
  314. data/lib/ey-core/requests/get_accounts.rb +42 -42
  315. data/lib/ey-core/requests/get_addon.rb +25 -25
  316. data/lib/ey-core/requests/get_addons.rb +24 -24
  317. data/lib/ey-core/requests/get_address.rb +25 -25
  318. data/lib/ey-core/requests/get_addresses.rb +27 -27
  319. data/lib/ey-core/requests/get_alert.rb +21 -21
  320. data/lib/ey-core/requests/get_alerting_environments.rb +41 -41
  321. data/lib/ey-core/requests/get_alerts.rb +44 -44
  322. data/lib/ey-core/requests/get_api_token.rb +19 -19
  323. data/lib/ey-core/requests/get_application.rb +21 -21
  324. data/lib/ey-core/requests/get_application_archive.rb +32 -32
  325. data/lib/ey-core/requests/get_application_archives.rb +29 -29
  326. data/lib/ey-core/requests/get_application_deployment.rb +21 -21
  327. data/lib/ey-core/requests/get_application_deployments.rb +28 -28
  328. data/lib/ey-core/requests/get_applications.rb +28 -28
  329. data/lib/ey-core/requests/get_auto_scaling_alarm.rb +27 -0
  330. data/lib/ey-core/requests/get_auto_scaling_alarms.rb +34 -0
  331. data/lib/ey-core/requests/get_auto_scaling_group.rb +21 -21
  332. data/lib/ey-core/requests/get_auto_scaling_groups.rb +29 -29
  333. data/lib/ey-core/requests/get_auto_scaling_policies.rb +46 -0
  334. data/lib/ey-core/requests/get_auto_scaling_policy.rb +27 -0
  335. data/lib/ey-core/requests/get_backup_file.rb +21 -21
  336. data/lib/ey-core/requests/get_backup_files.rb +28 -28
  337. data/lib/ey-core/requests/get_billing.rb +24 -24
  338. data/lib/ey-core/requests/get_blueprint.rb +21 -21
  339. data/lib/ey-core/requests/get_blueprints.rb +29 -29
  340. data/lib/ey-core/requests/get_component.rb +21 -21
  341. data/lib/ey-core/requests/get_components.rb +29 -29
  342. data/lib/ey-core/requests/get_contacts.rb +34 -34
  343. data/lib/ey-core/requests/get_costs.rb +25 -25
  344. data/lib/ey-core/requests/get_current_user.rb +19 -19
  345. data/lib/ey-core/requests/get_database_plan_usages.rb +24 -24
  346. data/lib/ey-core/requests/get_database_server.rb +21 -21
  347. data/lib/ey-core/requests/get_database_server_revisions.rb +27 -27
  348. data/lib/ey-core/requests/get_database_server_snapshot.rb +20 -20
  349. data/lib/ey-core/requests/get_database_server_snapshots.rb +39 -39
  350. data/lib/ey-core/requests/get_database_server_usages.rb +24 -24
  351. data/lib/ey-core/requests/get_database_servers.rb +30 -30
  352. data/lib/ey-core/requests/get_database_servers_firewalls.rb +30 -30
  353. data/lib/ey-core/requests/get_database_service.rb +20 -20
  354. data/lib/ey-core/requests/get_database_services.rb +55 -55
  355. data/lib/ey-core/requests/get_deployment.rb +19 -19
  356. data/lib/ey-core/requests/get_deployments.rb +29 -29
  357. data/lib/ey-core/requests/get_environment.rb +21 -21
  358. data/lib/ey-core/requests/get_environment_database_services.rb +21 -21
  359. data/lib/ey-core/requests/get_environment_logical_databases.rb +20 -20
  360. data/lib/ey-core/requests/get_environment_plan_usages.rb +24 -24
  361. data/lib/ey-core/requests/get_environment_variable.rb +19 -0
  362. data/lib/ey-core/requests/get_environment_variables.rb +29 -0
  363. data/lib/ey-core/requests/get_environments.rb +29 -29
  364. data/lib/ey-core/requests/get_feature.rb +21 -21
  365. data/lib/ey-core/requests/get_features.rb +28 -28
  366. data/lib/ey-core/requests/get_firewall.rb +21 -21
  367. data/lib/ey-core/requests/get_firewall_rule.rb +21 -21
  368. data/lib/ey-core/requests/get_firewall_rules.rb +29 -29
  369. data/lib/ey-core/requests/get_firewalls.rb +45 -45
  370. data/lib/ey-core/requests/get_gem.rb +24 -24
  371. data/lib/ey-core/requests/get_keypair.rb +21 -21
  372. data/lib/ey-core/requests/get_keypair_deployment.rb +21 -21
  373. data/lib/ey-core/requests/get_keypair_deployments.rb +29 -29
  374. data/lib/ey-core/requests/get_keypairs.rb +34 -34
  375. data/lib/ey-core/requests/get_legacy_alert.rb +21 -21
  376. data/lib/ey-core/requests/get_legacy_alerts.rb +29 -29
  377. data/lib/ey-core/requests/get_load_balancer.rb +21 -21
  378. data/lib/ey-core/requests/get_load_balancer_node.rb +21 -21
  379. data/lib/ey-core/requests/get_load_balancer_nodes.rb +30 -30
  380. data/lib/ey-core/requests/get_load_balancer_service.rb +21 -21
  381. data/lib/ey-core/requests/get_load_balancer_services.rb +30 -30
  382. data/lib/ey-core/requests/get_load_balancers.rb +29 -29
  383. data/lib/ey-core/requests/get_log.rb +21 -21
  384. data/lib/ey-core/requests/get_logical_database.rb +23 -23
  385. data/lib/ey-core/requests/get_logical_databases.rb +36 -36
  386. data/lib/ey-core/requests/get_logs.rb +37 -37
  387. data/lib/ey-core/requests/get_membership.rb +21 -21
  388. data/lib/ey-core/requests/get_memberships.rb +29 -29
  389. data/lib/ey-core/requests/get_message.rb +28 -28
  390. data/lib/ey-core/requests/get_messages.rb +27 -27
  391. data/lib/ey-core/requests/get_metadata.rb +22 -22
  392. data/lib/ey-core/requests/get_operational_contact.rb +21 -21
  393. data/lib/ey-core/requests/get_operational_contacts.rb +20 -20
  394. data/lib/ey-core/requests/get_plan_usages.rb +24 -24
  395. data/lib/ey-core/requests/get_possible_provider_locations.rb +19 -19
  396. data/lib/ey-core/requests/get_provider.rb +21 -21
  397. data/lib/ey-core/requests/get_provider_location.rb +29 -29
  398. data/lib/ey-core/requests/get_provider_locations.rb +28 -28
  399. data/lib/ey-core/requests/get_providers.rb +28 -28
  400. data/lib/ey-core/requests/get_request.rb +71 -71
  401. data/lib/ey-core/requests/get_requests.rb +29 -29
  402. data/lib/ey-core/requests/get_server.rb +34 -34
  403. data/lib/ey-core/requests/get_server_event.rb +20 -20
  404. data/lib/ey-core/requests/get_server_events.rb +28 -28
  405. data/lib/ey-core/requests/get_server_usages.rb +24 -24
  406. data/lib/ey-core/requests/get_servers.rb +25 -25
  407. data/lib/ey-core/requests/get_ssl_certificate.rb +23 -23
  408. data/lib/ey-core/requests/get_ssl_certificates.rb +28 -28
  409. data/lib/ey-core/requests/get_storage.rb +21 -21
  410. data/lib/ey-core/requests/get_storage_user.rb +21 -21
  411. data/lib/ey-core/requests/get_storage_users.rb +28 -28
  412. data/lib/ey-core/requests/get_storages.rb +28 -28
  413. data/lib/ey-core/requests/get_support_trial.rb +51 -51
  414. data/lib/ey-core/requests/get_task.rb +21 -21
  415. data/lib/ey-core/requests/get_tasks.rb +28 -28
  416. data/lib/ey-core/requests/get_token.rb +21 -21
  417. data/lib/ey-core/requests/get_token_by_login.rb +30 -30
  418. data/lib/ey-core/requests/get_tokens.rb +32 -32
  419. data/lib/ey-core/requests/get_untracked_server.rb +18 -18
  420. data/lib/ey-core/requests/get_untracked_servers.rb +24 -24
  421. data/lib/ey-core/requests/get_user.rb +21 -21
  422. data/lib/ey-core/requests/get_users.rb +42 -42
  423. data/lib/ey-core/requests/get_volume.rb +21 -21
  424. data/lib/ey-core/requests/get_volumes.rb +28 -28
  425. data/lib/ey-core/requests/reboot_server.rb +39 -39
  426. data/lib/ey-core/requests/reconcile_server.rb +39 -39
  427. data/lib/ey-core/requests/request_callback.rb +26 -26
  428. data/lib/ey-core/requests/reset_password.rb +31 -31
  429. data/lib/ey-core/requests/reset_server_state.rb +32 -32
  430. data/lib/ey-core/requests/restart_environment_app_servers.rb +38 -38
  431. data/lib/ey-core/requests/run_cluster_application_action.rb +28 -28
  432. data/lib/ey-core/requests/run_environment_application_action.rb +29 -29
  433. data/lib/ey-core/requests/signup.rb +56 -56
  434. data/lib/ey-core/requests/start_server.rb +39 -39
  435. data/lib/ey-core/requests/stop_server.rb +39 -39
  436. data/lib/ey-core/requests/timeout_deployment.rb +27 -27
  437. data/lib/ey-core/requests/unassign_environment.rb +31 -31
  438. data/lib/ey-core/requests/update_addon.rb +28 -28
  439. data/lib/ey-core/requests/update_address.rb +29 -29
  440. data/lib/ey-core/requests/update_alert.rb +32 -32
  441. data/lib/ey-core/requests/update_application_archive.rb +23 -23
  442. data/lib/ey-core/requests/update_auto_scaling_alarm.rb +45 -0
  443. data/lib/ey-core/requests/update_auto_scaling_group.rb +45 -45
  444. data/lib/ey-core/requests/update_auto_scaling_policy.rb +46 -0
  445. data/lib/ey-core/requests/update_billing.rb +26 -26
  446. data/lib/ey-core/requests/update_blueprint.rb +29 -29
  447. data/lib/ey-core/requests/update_connector.rb +32 -32
  448. data/lib/ey-core/requests/update_environment.rb +17 -17
  449. data/lib/ey-core/requests/update_environment_variable.rb +25 -0
  450. data/lib/ey-core/requests/update_membership.rb +29 -29
  451. data/lib/ey-core/requests/update_provider_location.rb +29 -29
  452. data/lib/ey-core/requests/update_server.rb +29 -29
  453. data/lib/ey-core/requests/update_ssl_certificate.rb +25 -25
  454. data/lib/ey-core/requests/update_untracked_server.rb +24 -24
  455. data/lib/ey-core/requests/upload_file.rb +44 -44
  456. data/lib/ey-core/requests/upload_recipes_for_environment.rb +28 -28
  457. data/lib/ey-core/response.rb +59 -59
  458. data/lib/ey-core/response_cache.rb +29 -29
  459. data/lib/ey-core/subscribable.rb +60 -60
  460. data/lib/ey-core/test_helpers/account_helpers.rb +73 -73
  461. data/lib/ey-core/test_helpers/alert_helpers.rb +16 -16
  462. data/lib/ey-core/test_helpers/auto_scaling_helpers.rb +35 -0
  463. data/lib/ey-core/test_helpers/client_helpers.rb +40 -40
  464. data/lib/ey-core/test_helpers/cucumber.rb +3 -3
  465. data/lib/ey-core/test_helpers/resource_helpers.rb +196 -196
  466. data/lib/ey-core/test_helpers/rspec.rb +5 -5
  467. data/lib/ey-core/test_helpers.rb +17 -15
  468. data/lib/ey-core/token_authentication.rb +13 -13
  469. data/lib/ey-core/version.rb +5 -5
  470. data/lib/ey-core.rb +59 -59
  471. data/spec/account_spec.rb +65 -65
  472. data/spec/account_trial_spec.rb +17 -17
  473. data/spec/accounts_referrals_spec.rb +20 -20
  474. data/spec/accounts_spec.rb +113 -113
  475. data/spec/addons_and_vars_spec.rb +62 -62
  476. data/spec/addresses_spec.rb +57 -56
  477. data/spec/alerts_spec.rb +155 -155
  478. data/spec/application_archives_spec.rb +39 -39
  479. data/spec/applications_spec.rb +65 -65
  480. data/spec/auto_scaling_alarms_spec.rb +40 -0
  481. data/spec/auto_scaling_groups_spec.rb +28 -28
  482. data/spec/auto_scaling_policies_spec.rb +94 -0
  483. data/spec/billing_spec.rb +31 -31
  484. data/spec/blueprints_spec.rb +47 -47
  485. data/spec/client_spec.rb +16 -16
  486. data/spec/collection_spec.rb +43 -43
  487. data/spec/costs_spec.rb +22 -22
  488. data/spec/database_plan_usage_spec.rb +39 -39
  489. data/spec/database_server_snapshots_spec.rb +41 -41
  490. data/spec/database_server_usage_spec.rb +49 -49
  491. data/spec/database_servers_spec.rb +61 -61
  492. data/spec/database_services_spec.rb +76 -76
  493. data/spec/deployments_spec.rb +24 -24
  494. data/spec/environment_plan_usage_spec.rb +38 -38
  495. data/spec/environments_spec.rb +212 -212
  496. data/spec/ey-core/cli/accounts_spec.rb +20 -20
  497. data/spec/ey-core/cli/helpers/server_sieve_spec.rb +226 -226
  498. data/spec/ey-core/cli/recipes/apply_spec.rb +34 -34
  499. data/spec/ey-core/cli/recipes/download_spec.rb +93 -93
  500. data/spec/ey-core/cli/recipes/upload_spec.rb +80 -80
  501. data/spec/features_spec.rb +79 -79
  502. data/spec/firewalls_spec.rb +84 -84
  503. data/spec/gems_spec.rb +11 -11
  504. data/spec/keypair_deployments_spec.rb +33 -33
  505. data/spec/keypairs_spec.rb +51 -51
  506. data/spec/legacy_alerts_spec.rb +44 -44
  507. data/spec/load_balancers_spec.rb +31 -31
  508. data/spec/logical_databases_spec.rb +38 -38
  509. data/spec/logs_spec.rb +44 -44
  510. data/spec/memberships_spec.rb +73 -73
  511. data/spec/messages_spec.rb +27 -27
  512. data/spec/metadata_spec.rb +11 -11
  513. data/spec/plan_usage_spec.rb +65 -65
  514. data/spec/provider_locations_spec.rb +85 -85
  515. data/spec/providers_spec.rb +105 -105
  516. data/spec/requests/upload_file_spec.rb +25 -25
  517. data/spec/requests_spec.rb +23 -23
  518. data/spec/reset_password_spec.rb +22 -22
  519. data/spec/server_events_spec.rb +31 -31
  520. data/spec/server_usage_spec.rb +70 -70
  521. data/spec/servers_spec.rb +202 -202
  522. data/spec/services_spec.rb +9 -9
  523. data/spec/signups_spec.rb +45 -45
  524. data/spec/spec_helper.rb +27 -20
  525. data/spec/ssl_certificates_spec.rb +94 -94
  526. data/spec/storages_spec.rb +57 -57
  527. data/spec/support/cli_helpers.rb +47 -47
  528. data/spec/support/core.rb +23 -23
  529. data/spec/support/coverage.rb +43 -43
  530. data/spec/support/fake_kernel.rb +21 -21
  531. data/spec/support/helpers.rb +1 -1
  532. data/spec/support/timecop.rb +8 -8
  533. data/spec/support_trial_spec.rb +33 -33
  534. data/spec/tokens_spec.rb +59 -59
  535. data/spec/untracked_servers_spec.rb +59 -59
  536. data/spec/users_spec.rb +108 -108
  537. metadata +46 -8
  538. data/bin/console +0 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6973045bcef9e15cd18d1f5e45e4105de9b509ed66e7c63e991437eee32e4cee
4
- data.tar.gz: f7bb365250fc316cbd672dc6f155e694cc76c4214abca5a2a69f3b716868add2
3
+ metadata.gz: d6ea2b7bfed5dc192b709ae8531b774ad238f90b5ed4709186af8250639c944e
4
+ data.tar.gz: b930f35c380cc22b00465bd98b7f4c8ce193732911cfadac0ae7034a27390ecb
5
5
  SHA512:
6
- metadata.gz: 663cdf98f64f09e52bf929306d611b5e776db58f42e15b5ffa6634eda1613422726d9f7a41c3c38ddad0270ee87fd2ab27d756a080d9b77f229486d2de0b65f8
7
- data.tar.gz: 571690e4fe206ea6887486566bd43667a6d3a8576ed5e9cfa349a064a7ed8e38315ab6dee8de4fb4fb7bf9a2dacac933b7caafe7bb1ab79364ce8374778b75fe
6
+ metadata.gz: 3ef000eaee9816291914a7eb0214775a2b8625ef1dafcb9acda1cd6947b2791a3c979e3e785c9743ff1b500e2f2d7cca32b1e1c68993970f3f35aa4ae5e17c44
7
+ data.tar.gz: 887e4c0d1b3a97a67b8b9524433e318f8ebe275329817f87f3d7f4f55f6749603f23d6c008f2c670f7f3c30546025c27b1c73610527179e48411bbefd42f2f71
data/.gitignore CHANGED
@@ -1,26 +1,23 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- Gemfile.lock
7
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- pkg
13
- rdoc
14
- spec/reports
15
- test/tmp
16
- test/version_tmp
17
- tmp
18
- .core
19
- .token
20
- *.swp
21
- .rspec
22
- .gemrelease
23
- tags
24
-
25
- # Idea files
26
- .idea/
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ .core
19
+ .token
20
+ *.swp
21
+ .rspec
22
+ .gemrelease
23
+ tags
data/.ruby-gemset CHANGED
@@ -1 +1 @@
1
- core-client-rb-upstream
1
+ core-client-rb-upstream
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.2.2
1
+ 2.2.2
data/.travis.yml CHANGED
@@ -1,23 +1,23 @@
1
- ---
2
- notifications:
3
- email: false
4
- webhooks:
5
- - https://ensemble.engineyard.com/travis
6
-
7
- addons:
8
- code_climate:
9
- repo_token:
10
- secure: "SCFPa7xtyR6UOrfh3YIv7kvfhGy9vkQ9469HARUoCYmfQUY87I1zdehfCKh/pm8bwGOpQbsxwmxe9a5QrH5xXZdndbm1Ry0vhfYEXaiVfE4qZrq1TbrWbYxG5lPuXs04FGtLP0Xqm8wGnfS95PmG2KA8OjrT+vn1MCXbYPICvK4="
11
-
12
- language: ruby
13
- cache: bundler
14
-
15
- rvm:
16
- - 2.2.2
17
- - 2.3.1
18
- - 2.4.2
19
-
20
- env:
21
- - COVERAGE=true
22
-
23
- script: bundle exec rake
1
+ ---
2
+ notifications:
3
+ email: false
4
+ webhooks:
5
+ - https://ensemble.engineyard.com/travis
6
+
7
+ addons:
8
+ code_climate:
9
+ repo_token:
10
+ secure: "SCFPa7xtyR6UOrfh3YIv7kvfhGy9vkQ9469HARUoCYmfQUY87I1zdehfCKh/pm8bwGOpQbsxwmxe9a5QrH5xXZdndbm1Ry0vhfYEXaiVfE4qZrq1TbrWbYxG5lPuXs04FGtLP0Xqm8wGnfS95PmG2KA8OjrT+vn1MCXbYPICvK4="
11
+
12
+ language: ruby
13
+ cache: bundler
14
+
15
+ rvm:
16
+ - 2.2.2
17
+ - 2.3.1
18
+ - 2.4.2
19
+
20
+ env:
21
+ - COVERAGE=true
22
+
23
+ script: bundle exec rake
data/CHANGELOG.md CHANGED
@@ -1,167 +1,175 @@
1
- # Change Log
2
-
3
- ## [Unreleased](https://github.com/engineyard/core-client-rb/tree/HEAD)
4
-
5
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.8.4...HEAD)
6
-
7
- **Merged pull requests:**
8
-
9
- - \[ENG-193\] Create untracked addresses via smithy [\#34](https://github.com/engineyard/core-client-rb/pull/34) ([omgitsads](https://github.com/omgitsads))
10
- - remove usage of hmac client in specs [\#33](https://github.com/engineyard/core-client-rb/pull/33) ([lanej](https://github.com/lanej))
11
-
12
- ## [v2.8.4](https://github.com/engineyard/core-client-rb/tree/v2.8.4) (2015-08-12)
13
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.8.3...v2.8.4)
14
-
15
- **Merged pull requests:**
16
-
17
- - \[ENG-96\] Add custom cookbooks component to mock [\#32](https://github.com/engineyard/core-client-rb/pull/32) ([ryansouza](https://github.com/ryansouza))
18
-
19
- ## [v2.8.3](https://github.com/engineyard/core-client-rb/tree/v2.8.3) (2015-08-10)
20
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.8.2...v2.8.3)
21
-
22
- **Merged pull requests:**
23
-
24
- - Add endpoint for creating new password [\#31](https://github.com/engineyard/core-client-rb/pull/31) ([adamreese](https://github.com/adamreese))
25
-
26
- ## [v2.8.2](https://github.com/engineyard/core-client-rb/tree/v2.8.2) (2015-08-05)
27
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.8.1...v2.8.2)
28
-
29
- **Merged pull requests:**
30
-
31
- - Add provisioned\_id attribute to ServerUsage [\#30](https://github.com/engineyard/core-client-rb/pull/30) ([jacobo](https://github.com/jacobo))
32
-
33
- ## [v2.8.1](https://github.com/engineyard/core-client-rb/tree/v2.8.1) (2015-08-04)
34
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.8.0...v2.8.1)
35
-
36
- **Merged pull requests:**
37
-
38
- - add console command to cli [\#29](https://github.com/engineyard/core-client-rb/pull/29) ([ehowe](https://github.com/ehowe))
39
-
40
- ## [v2.8.0](https://github.com/engineyard/core-client-rb/tree/v2.8.0) (2015-08-03)
41
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.10...v2.8.0)
42
-
43
- **Merged pull requests:**
44
-
45
- - add password reset request [\#13](https://github.com/engineyard/core-client-rb/pull/13) ([adamreese](https://github.com/adamreese))
46
-
47
- ## [v2.7.10](https://github.com/engineyard/core-client-rb/tree/v2.7.10) (2015-07-30)
48
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.9...v2.7.10)
49
-
50
- **Merged pull requests:**
51
-
52
- - Expose deis attribute on server\_usage [\#28](https://github.com/engineyard/core-client-rb/pull/28) ([jacobo](https://github.com/jacobo))
53
-
54
- ## [v2.7.9](https://github.com/engineyard/core-client-rb/tree/v2.7.9) (2015-07-29)
55
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.8...v2.7.9)
56
-
57
- **Merged pull requests:**
58
-
59
- - destroy database server snapshot [\#27](https://github.com/engineyard/core-client-rb/pull/27) ([lanej](https://github.com/lanej))
60
-
61
- ## [v2.7.8](https://github.com/engineyard/core-client-rb/tree/v2.7.8) (2015-07-29)
62
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.6...v2.7.8)
63
-
64
- **Merged pull requests:**
65
-
66
- - mention --host argument to gem bump in readme [\#26](https://github.com/engineyard/core-client-rb/pull/26) ([jacobo](https://github.com/jacobo))
67
- - Expose support trials [\#25](https://github.com/engineyard/core-client-rb/pull/25) ([jacobo](https://github.com/jacobo))
68
- - database service snapshots [\#24](https://github.com/engineyard/core-client-rb/pull/24) ([lanej](https://github.com/lanej))
69
- - allow passing in a config file to read tokens from [\#22](https://github.com/engineyard/core-client-rb/pull/22) ([ehowe](https://github.com/ehowe))
70
- - retrieve token from api with username and password [\#21](https://github.com/engineyard/core-client-rb/pull/21) ([ehowe](https://github.com/ehowe))
71
-
72
- ## [v2.7.6](https://github.com/engineyard/core-client-rb/tree/v2.7.6) (2015-07-24)
73
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.5...v2.7.6)
74
-
75
- **Merged pull requests:**
76
-
77
- - correct id form, fix snapshot service bug [\#20](https://github.com/engineyard/core-client-rb/pull/20) ([lanej](https://github.com/lanej))
78
-
79
- ## [v2.7.5](https://github.com/engineyard/core-client-rb/tree/v2.7.5) (2015-07-24)
80
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.4...v2.7.5)
81
-
82
- **Merged pull requests:**
83
-
84
- - create database service snapshot [\#19](https://github.com/engineyard/core-client-rb/pull/19) ([lanej](https://github.com/lanej))
85
-
86
- ## [v2.7.4](https://github.com/engineyard/core-client-rb/tree/v2.7.4) (2015-07-24)
87
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.3...v2.7.4)
88
-
89
- **Merged pull requests:**
90
-
91
- - alter metadata format to match services [\#18](https://github.com/engineyard/core-client-rb/pull/18) ([lanej](https://github.com/lanej))
92
-
93
- ## [v2.7.3](https://github.com/engineyard/core-client-rb/tree/v2.7.3) (2015-07-23)
94
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.2...v2.7.3)
95
-
96
- **Merged pull requests:**
97
-
98
- - find gem versions [\#15](https://github.com/engineyard/core-client-rb/pull/15) ([ehowe](https://github.com/ehowe))
99
-
100
- ## [v2.7.2](https://github.com/engineyard/core-client-rb/tree/v2.7.2) (2015-07-22)
101
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.1...v2.7.2)
102
-
103
- **Merged pull requests:**
104
-
105
- - Added query to costs and created\_at to environment [\#16](https://github.com/engineyard/core-client-rb/pull/16) ([emachnic](https://github.com/emachnic))
106
-
107
- ## [v2.7.1](https://github.com/engineyard/core-client-rb/tree/v2.7.1) (2015-07-20)
108
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.0...v2.7.1)
109
-
110
- **Merged pull requests:**
111
-
112
- - Change request hash to symbols [\#14](https://github.com/engineyard/core-client-rb/pull/14) ([emachnic](https://github.com/emachnic))
113
-
114
- ## [v2.7.0](https://github.com/engineyard/core-client-rb/tree/v2.7.0) (2015-07-20)
115
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.6.0...v2.7.0)
116
-
117
- **Merged pull requests:**
118
-
119
- - Add costs to client [\#12](https://github.com/engineyard/core-client-rb/pull/12) ([emachnic](https://github.com/emachnic))
120
- - Mock.delay to control how quickly requests finish [\#11](https://github.com/engineyard/core-client-rb/pull/11) ([jacobo](https://github.com/jacobo))
121
- - Delete share\_ey\_sso\_backend mock hooks [\#10](https://github.com/engineyard/core-client-rb/pull/10) ([jacobo](https://github.com/jacobo))
122
-
123
- ## [v2.6.0](https://github.com/engineyard/core-client-rb/tree/v2.6.0) (2015-07-14)
124
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.5.4...v2.6.0)
125
-
126
- **Merged pull requests:**
127
-
128
- - Account referrals [\#9](https://github.com/engineyard/core-client-rb/pull/9) ([emachnic](https://github.com/emachnic))
129
- - Update mocks: search database\_services by account [\#8](https://github.com/engineyard/core-client-rb/pull/8) ([jacobo](https://github.com/jacobo))
130
-
131
- ## [v2.5.4](https://github.com/engineyard/core-client-rb/tree/v2.5.4) (2015-06-29)
132
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.5.3...v2.5.4)
133
-
134
- **Merged pull requests:**
135
-
136
- - allow callbacks [\#4](https://github.com/engineyard/core-client-rb/pull/4) ([ehowe](https://github.com/ehowe))
137
-
138
- ## [v2.5.3](https://github.com/engineyard/core-client-rb/tree/v2.5.3) (2015-06-26)
139
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.5.2...v2.5.3)
140
-
141
- **Merged pull requests:**
142
-
143
- - Fixes signup being sent over url [\#6](https://github.com/engineyard/core-client-rb/pull/6) ([adamreese](https://github.com/adamreese))
144
- - remove session\_token endpoint [\#5](https://github.com/engineyard/core-client-rb/pull/5) ([adamreese](https://github.com/adamreese))
145
-
146
- ## [v2.5.2](https://github.com/engineyard/core-client-rb/tree/v2.5.2) (2015-06-22)
147
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.5.1...v2.5.2)
148
-
149
- **Merged pull requests:**
150
-
151
- - model unauthorized error [\#3](https://github.com/engineyard/core-client-rb/pull/3) ([lanej](https://github.com/lanej))
152
-
153
- ## [v2.5.1](https://github.com/engineyard/core-client-rb/tree/v2.5.1) (2015-06-22)
154
- [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.5.0...v2.5.1)
155
-
156
- **Merged pull requests:**
157
-
158
- - add signup\#upgrade\_url to mocked [\#2](https://github.com/engineyard/core-client-rb/pull/2) ([adamreese](https://github.com/adamreese))
159
-
160
- ## [v2.5.0](https://github.com/engineyard/core-client-rb/tree/v2.5.0) (2015-06-22)
161
- **Merged pull requests:**
162
-
163
- - create signup endpoint [\#1](https://github.com/engineyard/core-client-rb/pull/1) ([adamreese](https://github.com/adamreese))
164
-
165
-
166
-
1
+ # Change Log
2
+
3
+ ## [Unreleased](https://github.com/engineyard/core-client-rb/tree/HEAD)
4
+
5
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v3.5.0...HEAD)
6
+
7
+ **Merged pull requests:**
8
+
9
+ ## [v3.5.0](https://github.com/engineyard/core-client-rb/tree/v3.5.0) (2018-04-04)
10
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v3.4.4...v3.5.0)
11
+
12
+ **Merged pull requests:**
13
+
14
+ - Add support for autoscaling policies [\#110](https://github.com/engineyard/core-client-rb/pull/101) ([thorn](https://github.com/thorn))
15
+ - Add support for environment variables [\#90](https://github.com/engineyard/core-client-rb/pull/90) ([rzaharenkov](https://github.com/rzaharenkov))
16
+ - Add ability to send configuration options together with blueprint [\#104](https://github.com/engineyard/core-client-rb/pull/104) ([ramonpm](https://github.com/ramonpm))
17
+ - Add support for address.scope parameter for EIP [\#102](https://github.com/engineyard/core-client-rb/pull/102) ([thorn](https://github.com/thorn))
18
+ - Various fixes for `servers` command [\#103](https://github.com/engineyard/core-client-rb/pull/103) ([binarypaladin](https://github.com/binarypaladin))
19
+
20
+ ## [v2.8.4](https://github.com/engineyard/core-client-rb/tree/v2.8.4) (2015-08-12)
21
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.8.3...v2.8.4)
22
+
23
+ **Merged pull requests:**
24
+
25
+ - \[ENG-96\] Add custom cookbooks component to mock [\#32](https://github.com/engineyard/core-client-rb/pull/32) ([ryansouza](https://github.com/ryansouza))
26
+
27
+ ## [v2.8.3](https://github.com/engineyard/core-client-rb/tree/v2.8.3) (2015-08-10)
28
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.8.2...v2.8.3)
29
+
30
+ **Merged pull requests:**
31
+
32
+ - Add endpoint for creating new password [\#31](https://github.com/engineyard/core-client-rb/pull/31) ([adamreese](https://github.com/adamreese))
33
+
34
+ ## [v2.8.2](https://github.com/engineyard/core-client-rb/tree/v2.8.2) (2015-08-05)
35
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.8.1...v2.8.2)
36
+
37
+ **Merged pull requests:**
38
+
39
+ - Add provisioned\_id attribute to ServerUsage [\#30](https://github.com/engineyard/core-client-rb/pull/30) ([jacobo](https://github.com/jacobo))
40
+
41
+ ## [v2.8.1](https://github.com/engineyard/core-client-rb/tree/v2.8.1) (2015-08-04)
42
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.8.0...v2.8.1)
43
+
44
+ **Merged pull requests:**
45
+
46
+ - add console command to cli [\#29](https://github.com/engineyard/core-client-rb/pull/29) ([ehowe](https://github.com/ehowe))
47
+
48
+ ## [v2.8.0](https://github.com/engineyard/core-client-rb/tree/v2.8.0) (2015-08-03)
49
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.10...v2.8.0)
50
+
51
+ **Merged pull requests:**
52
+
53
+ - add password reset request [\#13](https://github.com/engineyard/core-client-rb/pull/13) ([adamreese](https://github.com/adamreese))
54
+
55
+ ## [v2.7.10](https://github.com/engineyard/core-client-rb/tree/v2.7.10) (2015-07-30)
56
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.9...v2.7.10)
57
+
58
+ **Merged pull requests:**
59
+
60
+ - Expose deis attribute on server\_usage [\#28](https://github.com/engineyard/core-client-rb/pull/28) ([jacobo](https://github.com/jacobo))
61
+
62
+ ## [v2.7.9](https://github.com/engineyard/core-client-rb/tree/v2.7.9) (2015-07-29)
63
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.8...v2.7.9)
64
+
65
+ **Merged pull requests:**
66
+
67
+ - destroy database server snapshot [\#27](https://github.com/engineyard/core-client-rb/pull/27) ([lanej](https://github.com/lanej))
68
+
69
+ ## [v2.7.8](https://github.com/engineyard/core-client-rb/tree/v2.7.8) (2015-07-29)
70
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.6...v2.7.8)
71
+
72
+ **Merged pull requests:**
73
+
74
+ - mention --host argument to gem bump in readme [\#26](https://github.com/engineyard/core-client-rb/pull/26) ([jacobo](https://github.com/jacobo))
75
+ - Expose support trials [\#25](https://github.com/engineyard/core-client-rb/pull/25) ([jacobo](https://github.com/jacobo))
76
+ - database service snapshots [\#24](https://github.com/engineyard/core-client-rb/pull/24) ([lanej](https://github.com/lanej))
77
+ - allow passing in a config file to read tokens from [\#22](https://github.com/engineyard/core-client-rb/pull/22) ([ehowe](https://github.com/ehowe))
78
+ - retrieve token from api with username and password [\#21](https://github.com/engineyard/core-client-rb/pull/21) ([ehowe](https://github.com/ehowe))
79
+
80
+ ## [v2.7.6](https://github.com/engineyard/core-client-rb/tree/v2.7.6) (2015-07-24)
81
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.5...v2.7.6)
82
+
83
+ **Merged pull requests:**
84
+
85
+ - correct id form, fix snapshot service bug [\#20](https://github.com/engineyard/core-client-rb/pull/20) ([lanej](https://github.com/lanej))
86
+
87
+ ## [v2.7.5](https://github.com/engineyard/core-client-rb/tree/v2.7.5) (2015-07-24)
88
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.4...v2.7.5)
89
+
90
+ **Merged pull requests:**
91
+
92
+ - create database service snapshot [\#19](https://github.com/engineyard/core-client-rb/pull/19) ([lanej](https://github.com/lanej))
93
+
94
+ ## [v2.7.4](https://github.com/engineyard/core-client-rb/tree/v2.7.4) (2015-07-24)
95
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.3...v2.7.4)
96
+
97
+ **Merged pull requests:**
98
+
99
+ - alter metadata format to match services [\#18](https://github.com/engineyard/core-client-rb/pull/18) ([lanej](https://github.com/lanej))
100
+
101
+ ## [v2.7.3](https://github.com/engineyard/core-client-rb/tree/v2.7.3) (2015-07-23)
102
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.2...v2.7.3)
103
+
104
+ **Merged pull requests:**
105
+
106
+ - find gem versions [\#15](https://github.com/engineyard/core-client-rb/pull/15) ([ehowe](https://github.com/ehowe))
107
+
108
+ ## [v2.7.2](https://github.com/engineyard/core-client-rb/tree/v2.7.2) (2015-07-22)
109
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.1...v2.7.2)
110
+
111
+ **Merged pull requests:**
112
+
113
+ - Added query to costs and created\_at to environment [\#16](https://github.com/engineyard/core-client-rb/pull/16) ([emachnic](https://github.com/emachnic))
114
+
115
+ ## [v2.7.1](https://github.com/engineyard/core-client-rb/tree/v2.7.1) (2015-07-20)
116
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.7.0...v2.7.1)
117
+
118
+ **Merged pull requests:**
119
+
120
+ - Change request hash to symbols [\#14](https://github.com/engineyard/core-client-rb/pull/14) ([emachnic](https://github.com/emachnic))
121
+
122
+ ## [v2.7.0](https://github.com/engineyard/core-client-rb/tree/v2.7.0) (2015-07-20)
123
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.6.0...v2.7.0)
124
+
125
+ **Merged pull requests:**
126
+
127
+ - Add costs to client [\#12](https://github.com/engineyard/core-client-rb/pull/12) ([emachnic](https://github.com/emachnic))
128
+ - Mock.delay to control how quickly requests finish [\#11](https://github.com/engineyard/core-client-rb/pull/11) ([jacobo](https://github.com/jacobo))
129
+ - Delete share\_ey\_sso\_backend mock hooks [\#10](https://github.com/engineyard/core-client-rb/pull/10) ([jacobo](https://github.com/jacobo))
130
+
131
+ ## [v2.6.0](https://github.com/engineyard/core-client-rb/tree/v2.6.0) (2015-07-14)
132
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.5.4...v2.6.0)
133
+
134
+ **Merged pull requests:**
135
+
136
+ - Account referrals [\#9](https://github.com/engineyard/core-client-rb/pull/9) ([emachnic](https://github.com/emachnic))
137
+ - Update mocks: search database\_services by account [\#8](https://github.com/engineyard/core-client-rb/pull/8) ([jacobo](https://github.com/jacobo))
138
+
139
+ ## [v2.5.4](https://github.com/engineyard/core-client-rb/tree/v2.5.4) (2015-06-29)
140
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.5.3...v2.5.4)
141
+
142
+ **Merged pull requests:**
143
+
144
+ - allow callbacks [\#4](https://github.com/engineyard/core-client-rb/pull/4) ([ehowe](https://github.com/ehowe))
145
+
146
+ ## [v2.5.3](https://github.com/engineyard/core-client-rb/tree/v2.5.3) (2015-06-26)
147
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.5.2...v2.5.3)
148
+
149
+ **Merged pull requests:**
150
+
151
+ - Fixes signup being sent over url [\#6](https://github.com/engineyard/core-client-rb/pull/6) ([adamreese](https://github.com/adamreese))
152
+ - remove session\_token endpoint [\#5](https://github.com/engineyard/core-client-rb/pull/5) ([adamreese](https://github.com/adamreese))
153
+
154
+ ## [v2.5.2](https://github.com/engineyard/core-client-rb/tree/v2.5.2) (2015-06-22)
155
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.5.1...v2.5.2)
156
+
157
+ **Merged pull requests:**
158
+
159
+ - model unauthorized error [\#3](https://github.com/engineyard/core-client-rb/pull/3) ([lanej](https://github.com/lanej))
160
+
161
+ ## [v2.5.1](https://github.com/engineyard/core-client-rb/tree/v2.5.1) (2015-06-22)
162
+ [Full Changelog](https://github.com/engineyard/core-client-rb/compare/v2.5.0...v2.5.1)
163
+
164
+ **Merged pull requests:**
165
+
166
+ - add signup\#upgrade\_url to mocked [\#2](https://github.com/engineyard/core-client-rb/pull/2) ([adamreese](https://github.com/adamreese))
167
+
168
+ ## [v2.5.0](https://github.com/engineyard/core-client-rb/tree/v2.5.0) (2015-06-22)
169
+ **Merged pull requests:**
170
+
171
+ - create signup endpoint [\#1](https://github.com/engineyard/core-client-rb/pull/1) ([adamreese](https://github.com/adamreese))
172
+
173
+
174
+
167
175
  \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
data/Dockerfile ADDED
@@ -0,0 +1,3 @@
1
+ FROM ruby:2.5.8
2
+ WORKDIR /app
3
+ CMD gem build ey-core.gemspec
data/Gemfile CHANGED
@@ -1,21 +1,21 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in ey-core.gemspec
4
- gemspec
5
-
6
- gem "rack", "<= 2.0"
7
-
8
- group :doc do
9
- gem 'yard'
10
- gem 'redcarpet'
11
- end
12
-
13
- group :test do
14
- gem 'codeclimate-test-reporter', '~> 0.3'
15
- gem 'faker'
16
- gem 'hashie'
17
- gem 'rack-test'
18
- gem 'rspec', '~> 3.1'
19
- gem 'simplecov'
20
- gem 'timecop'
21
- end
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ey-core.gemspec
4
+ gemspec
5
+
6
+ gem "rack", "<= 2.0"
7
+
8
+ group :doc do
9
+ gem 'yard'
10
+ gem 'redcarpet'
11
+ end
12
+
13
+ group :test do
14
+ gem 'codeclimate-test-reporter', '~> 0.3'
15
+ gem 'faker'
16
+ gem 'hashie'
17
+ gem 'rack-test'
18
+ gem 'rspec', '~> 3.1'
19
+ gem 'simplecov'
20
+ gem 'timecop'
21
+ end
data/Guardfile CHANGED
@@ -1,15 +1,15 @@
1
- # A sample Guardfile
2
- # More info at https://github.com/guard/guard#readme
3
-
4
-
5
- guard 'bundler' do
6
- watch('Gemfile')
7
- watch(/^.+\.gemspec/)
8
- end
9
-
10
- guard 'rspec', cmd: "bundle exec rspec", all_on_start: true, failed_mode: :focus do
11
- watch(%r{^spec/.+_spec\.rb$})
12
- watch(%r{^lib/(.+)\.rb$}) { "spec" }
13
- watch('spec/spec_helper.rb') { "spec" }
14
- watch(%r{^spec/(support|shared).*\.rb$}) { "spec" }
15
- end
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+
5
+ guard 'bundler' do
6
+ watch('Gemfile')
7
+ watch(/^.+\.gemspec/)
8
+ end
9
+
10
+ guard 'rspec', cmd: "bundle exec rspec", all_on_start: true, failed_mode: :focus do
11
+ watch(%r{^spec/.+_spec\.rb$})
12
+ watch(%r{^lib/(.+)\.rb$}) { "spec" }
13
+ watch('spec/spec_helper.rb') { "spec" }
14
+ watch(%r{^spec/(support|shared).*\.rb$}) { "spec" }
15
+ end
data/LICENSE.txt CHANGED
@@ -1,19 +1,19 @@
1
- Copyright (c) 2015 Engine Yard
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining a copy
4
- of this software and associated documentation files (the "Software"), to deal
5
- in the Software without restriction, including without limitation the rights
6
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- copies of the Software, and to permit persons to whom the Software is
8
- furnished to do so, subject to the following conditions:
9
-
10
- The above copyright notice and this permission notice shall be included in
11
- all copies or substantial portions of the Software.
12
-
13
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- THE SOFTWARE.
1
+ Copyright (c) 2015 Engine Yard
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in
11
+ all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE.