brightbox-cli 3.3.0 → 4.0.0.rc2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (417) hide show
  1. checksums.yaml +4 -4
  2. data/.gitattributes +1 -0
  3. data/.github/workflows/ruby.yml +1 -1
  4. data/.gitignore +1 -1
  5. data/.rubocop.yml +70 -0
  6. data/CHANGELOG.md +52 -0
  7. data/Gemfile.lock +66 -39
  8. data/README +11 -16
  9. data/README.rdoc +1 -1
  10. data/brightbox-cli.gemspec +20 -33
  11. data/lib/brightbox-cli/accounts.rb +9 -11
  12. data/lib/brightbox-cli/api.rb +38 -36
  13. data/lib/brightbox-cli/cloud_ips.rb +8 -8
  14. data/lib/brightbox-cli/collaborating_account.rb +5 -5
  15. data/lib/brightbox-cli/collaboration.rb +1 -1
  16. data/lib/brightbox-cli/commands/accounts/{accept-invite.rb → accept_invite.rb} +2 -6
  17. data/lib/brightbox-cli/commands/accounts/default.rb +1 -2
  18. data/lib/brightbox-cli/commands/accounts/list.rb +6 -8
  19. data/lib/brightbox-cli/commands/accounts/remove.rb +2 -6
  20. data/lib/brightbox-cli/commands/accounts/{reset-ftp-password.rb → reset_ftp_password.rb} +6 -9
  21. data/lib/brightbox-cli/commands/accounts/show.rb +10 -13
  22. data/lib/brightbox-cli/commands/cloudips/create.rb +2 -5
  23. data/lib/brightbox-cli/commands/cloudips/destroy.rb +10 -14
  24. data/lib/brightbox-cli/commands/cloudips/list.rb +0 -2
  25. data/lib/brightbox-cli/commands/cloudips/map.rb +10 -13
  26. data/lib/brightbox-cli/commands/cloudips/show.rb +11 -14
  27. data/lib/brightbox-cli/commands/cloudips/unmap.rb +2 -4
  28. data/lib/brightbox-cli/commands/cloudips/update.rb +2 -4
  29. data/lib/brightbox-cli/commands/collaborations.rb +2 -3
  30. data/lib/brightbox-cli/commands/config/{client-add.rb → client_add.rb} +0 -3
  31. data/lib/brightbox-cli/commands/config/client_default.rb +18 -0
  32. data/lib/brightbox-cli/commands/config/{client-list.rb → client_list.rb} +1 -4
  33. data/lib/brightbox-cli/commands/config/{client-remove.rb → client_remove.rb} +0 -3
  34. data/lib/brightbox-cli/commands/config/{user-add.rb → user_add.rb} +1 -4
  35. data/lib/brightbox-cli/commands/firewall/{policies-apply.rb → policies_apply.rb} +2 -2
  36. data/lib/brightbox-cli/commands/firewall/{policies-create.rb → policies_create.rb} +2 -4
  37. data/lib/brightbox-cli/commands/firewall/{policies-destroy.rb → policies_destroy.rb} +0 -3
  38. data/lib/brightbox-cli/commands/firewall/{policies-list.rb → policies_list.rb} +0 -2
  39. data/lib/brightbox-cli/commands/firewall/{policies-remove.rb → policies_remove.rb} +2 -2
  40. data/lib/brightbox-cli/commands/firewall/{policies-show.rb → policies_show.rb} +6 -8
  41. data/lib/brightbox-cli/commands/firewall/{policies-update.rb → policies_update.rb} +2 -4
  42. data/lib/brightbox-cli/commands/firewall/{rules-create.rb → rules_create.rb} +6 -8
  43. data/lib/brightbox-cli/commands/firewall/{rules-destroy.rb → rules_destroy.rb} +0 -2
  44. data/lib/brightbox-cli/commands/firewall/{rules-list.rb → rules_list.rb} +0 -2
  45. data/lib/brightbox-cli/commands/firewall/{rules-show.rb → rules_show.rb} +7 -9
  46. data/lib/brightbox-cli/commands/firewall/{rules-update.rb → rules_update.rb} +7 -8
  47. data/lib/brightbox-cli/commands/groups/{add-server.rb → add_server.rb} +0 -2
  48. data/lib/brightbox-cli/commands/groups/create.rb +2 -3
  49. data/lib/brightbox-cli/commands/groups/destroy.rb +0 -2
  50. data/lib/brightbox-cli/commands/groups/list.rb +0 -1
  51. data/lib/brightbox-cli/commands/groups/move_servers.rb +2 -3
  52. data/lib/brightbox-cli/commands/groups/{remove-servers.rb → remove_servers.rb} +2 -4
  53. data/lib/brightbox-cli/commands/groups/show.rb +0 -2
  54. data/lib/brightbox-cli/commands/groups/update.rb +2 -3
  55. data/lib/brightbox-cli/commands/images/destroy.rb +0 -4
  56. data/lib/brightbox-cli/commands/images/list.rb +3 -5
  57. data/lib/brightbox-cli/commands/images/register.rb +9 -17
  58. data/lib/brightbox-cli/commands/images/show.rb +19 -20
  59. data/lib/brightbox-cli/commands/images/update.rb +12 -8
  60. data/lib/brightbox-cli/commands/lbs/{add-nodes.rb → add_nodes.rb} +0 -3
  61. data/lib/brightbox-cli/commands/lbs/create.rb +5 -7
  62. data/lib/brightbox-cli/commands/lbs/destroy.rb +0 -3
  63. data/lib/brightbox-cli/commands/lbs/list.rb +0 -1
  64. data/lib/brightbox-cli/commands/lbs/{remove-nodes.rb → remove_nodes.rb} +0 -3
  65. data/lib/brightbox-cli/commands/lbs/show.rb +20 -22
  66. data/lib/brightbox-cli/commands/lbs/update.rb +6 -9
  67. data/lib/brightbox-cli/commands/login.rb +13 -12
  68. data/lib/brightbox-cli/commands/servers/{activate-console.rb → activate_console.rb} +2 -5
  69. data/lib/brightbox-cli/commands/servers/create.rb +24 -25
  70. data/lib/brightbox-cli/commands/servers/destroy.rb +0 -3
  71. data/lib/brightbox-cli/commands/servers/list.rb +4 -5
  72. data/lib/brightbox-cli/commands/servers/show.rb +0 -2
  73. data/lib/brightbox-cli/commands/servers/shutdown.rb +0 -3
  74. data/lib/brightbox-cli/commands/servers/snapshot.rb +0 -4
  75. data/lib/brightbox-cli/commands/servers/start.rb +0 -4
  76. data/lib/brightbox-cli/commands/servers/stop.rb +0 -3
  77. data/lib/brightbox-cli/commands/servers/update.rb +5 -5
  78. data/lib/brightbox-cli/commands/sql/instances_create.rb +3 -6
  79. data/lib/brightbox-cli/commands/sql/instances_destroy.rb +0 -2
  80. data/lib/brightbox-cli/commands/sql/instances_list.rb +7 -9
  81. data/lib/brightbox-cli/commands/sql/instances_reset_password.rb +0 -1
  82. data/lib/brightbox-cli/commands/sql/instances_show.rb +0 -3
  83. data/lib/brightbox-cli/commands/sql/instances_snapshot.rb +0 -3
  84. data/lib/brightbox-cli/commands/sql/instances_update.rb +1 -3
  85. data/lib/brightbox-cli/commands/sql/snapshots_destroy.rb +0 -3
  86. data/lib/brightbox-cli/commands/sql/snapshots_list.rb +7 -9
  87. data/lib/brightbox-cli/commands/sql/snapshots_show.rb +12 -15
  88. data/lib/brightbox-cli/commands/sql/snapshots_update.rb +1 -3
  89. data/lib/brightbox-cli/commands/sql/types.rb +8 -15
  90. data/lib/brightbox-cli/commands/token.rb +0 -1
  91. data/lib/brightbox-cli/commands/types.rb +8 -14
  92. data/lib/brightbox-cli/commands/{user-collaborations.rb → user_collaborations.rb} +7 -8
  93. data/lib/brightbox-cli/commands/users/list.rb +0 -2
  94. data/lib/brightbox-cli/commands/users/show.rb +1 -3
  95. data/lib/brightbox-cli/commands/users/update.rb +3 -6
  96. data/lib/brightbox-cli/commands/zones.rb +7 -10
  97. data/lib/brightbox-cli/config/accounts.rb +18 -26
  98. data/lib/brightbox-cli/config/api_client.rb +12 -16
  99. data/lib/brightbox-cli/config/authentication_tokens.rb +39 -42
  100. data/lib/brightbox-cli/config/cache.rb +1 -0
  101. data/lib/brightbox-cli/config/clients.rb +8 -8
  102. data/lib/brightbox-cli/config/gpg_encrypted_passwords.rb +6 -8
  103. data/lib/brightbox-cli/config/password_helper.rb +33 -8
  104. data/lib/brightbox-cli/config/sections.rb +45 -29
  105. data/lib/brightbox-cli/config/two_factor_auth.rb +12 -14
  106. data/lib/brightbox-cli/config/two_factor_helper.rb +5 -7
  107. data/lib/brightbox-cli/config/user_application.rb +18 -18
  108. data/lib/brightbox-cli/config.rb +26 -23
  109. data/lib/brightbox-cli/connection_manager.rb +4 -2
  110. data/lib/brightbox-cli/database_server.rb +28 -29
  111. data/lib/brightbox-cli/database_snapshot.rb +1 -1
  112. data/lib/brightbox-cli/database_type.rb +6 -6
  113. data/lib/brightbox-cli/detailed_server.rb +43 -43
  114. data/lib/brightbox-cli/detailed_server_group.rb +1 -1
  115. data/lib/brightbox-cli/error_parser.rb +9 -9
  116. data/lib/brightbox-cli/firewall_policy.rb +2 -1
  117. data/lib/brightbox-cli/firewall_rule.rb +3 -3
  118. data/lib/brightbox-cli/firewall_rules.rb +3 -3
  119. data/lib/brightbox-cli/gli_global_hooks.rb +25 -27
  120. data/lib/brightbox-cli/images.rb +14 -12
  121. data/lib/brightbox-cli/load_balancers.rb +3 -6
  122. data/lib/brightbox-cli/logging.rb +14 -14
  123. data/lib/brightbox-cli/nilable_hash.rb +1 -1
  124. data/lib/brightbox-cli/ruby_core_ext.rb +3 -3
  125. data/lib/brightbox-cli/server_groups.rb +2 -2
  126. data/lib/brightbox-cli/servers.rb +6 -6
  127. data/lib/brightbox-cli/tables.rb +13 -15
  128. data/lib/brightbox-cli/types.rb +6 -6
  129. data/lib/brightbox-cli/user_collaboration.rb +5 -7
  130. data/lib/brightbox-cli/users.rb +1 -1
  131. data/lib/brightbox-cli/version.rb +1 -1
  132. data/lib/brightbox-cli/zones.rb +1 -1
  133. data/lib/brightbox_cli.rb +33 -33
  134. data/spec/brightbox_spec.rb +0 -1
  135. data/spec/cassettes/Brightbox_Account/_all/when_connected_using_an_application/returns_a_collection_of_Accounts.yml +5 -5
  136. data/spec/cassettes/Brightbox_Account/_all/when_connected_using_an_application/returns_resources_on_the_same_connection.yml +2 -2
  137. data/spec/cassettes/Brightbox_Account/_all/when_connected_using_an_client/returns_a_collection_of_Accounts.yml +4 -4
  138. data/spec/cassettes/Brightbox_Account/_all/when_connected_using_an_client/returns_resources_on_the_same_connection.yml +2 -2
  139. data/spec/cassettes/Brightbox_BBConfig/_add_section/when_config_exists_and_overwrite_duplicates_is_false/does_not_update_the_config_file.yml +12 -12
  140. data/spec/cassettes/Brightbox_BBConfig/_add_section/when_config_exists_and_overwrite_duplicates_is_true/does_not_update_the_config_file.yml +12 -12
  141. data/spec/cassettes/Brightbox_BBConfig/_add_section/when_first_and_only_client/saves_changes_to_the_config_file.yml +2 -2
  142. data/spec/cassettes/Brightbox_BBConfig/_add_section/when_first_and_only_client/saves_the_default_account.yml +2 -2
  143. data/spec/cassettes/Brightbox_BBConfig/_add_section/when_first_and_only_client/saves_the_new_client_as_the_default.yml +2 -2
  144. data/spec/cassettes/Brightbox_BBConfig/_find_or_set_default_account/when_client_is_not_authenticated/does_not_raise_an_error.yml +8 -8
  145. data/spec/cassettes/Brightbox_BBConfig/_find_or_set_default_account/when_client_may_access_one_account/updates_the_setting.yml +8 -8
  146. data/spec/cassettes/Brightbox_BBConfig/_renew_tokens/when_config_in_use_is_not_the_default/uses_correct_credentials.yml +1 -1
  147. data/spec/cassettes/Brightbox_BBConfig/_renew_tokens/when_using_a_user_app_with_a_cached_refresh_token/caches_the_new_tokens.yml +1 -1
  148. data/spec/cassettes/Brightbox_BBConfig/_renew_tokens/when_using_a_user_app_with_an_expired_refresh_token/caches_the_new_tokens.yml +2 -2
  149. data/spec/cassettes/Brightbox_BBConfig/_renew_tokens/when_using_a_user_app_with_no_tokens/caches_the_new_tokens.yml +1 -1
  150. data/spec/cassettes/Brightbox_BBConfig/_renew_tokens/when_using_a_user_app_with_no_tokens/prompts_user_to_retry_command.yml +1 -1
  151. data/spec/cassettes/Brightbox_BBConfig/_renew_tokens/when_using_an_API_client_with_no_tokens/caches_a_new_access_token.yml +1 -1
  152. data/spec/cassettes/Brightbox_BBConfig_add_login/when_altering_a_custom_option/does_not_alter_the_configuration.yml +6 -6
  153. data/spec/cassettes/Brightbox_BBConfig_add_login/when_altering_a_custom_option/updates_access_token.yml +6 -6
  154. data/spec/cassettes/Brightbox_BBConfig_add_login/when_altering_a_custom_option/updates_refresh_token.yml +6 -6
  155. data/spec/cassettes/Brightbox_BBConfig_add_login/when_configured_with_custom_options/does_not_alter_the_configuration.yml +6 -6
  156. data/spec/cassettes/Brightbox_BBConfig_add_login/when_configured_with_custom_options/updates_access_token.yml +6 -6
  157. data/spec/cassettes/Brightbox_BBConfig_add_login/when_configured_with_custom_options/updates_refresh_token.yml +6 -6
  158. data/spec/cassettes/Brightbox_BBConfig_add_login/when_logged_in_previously/does_not_alter_the_configuration.yml +9 -9
  159. data/spec/cassettes/Brightbox_BBConfig_add_login/when_logged_in_previously/updates_access_token.yml +9 -9
  160. data/spec/cassettes/Brightbox_BBConfig_add_login/when_logged_in_previously/updates_refresh_token.yml +9 -9
  161. data/spec/cassettes/Brightbox_BBConfig_add_login/when_no_config_exists/creates_the_configuration.yml +6 -6
  162. data/spec/cassettes/Brightbox_BBConfig_add_login/when_no_config_exists/refreshed_tokens.yml +6 -6
  163. data/spec/cassettes/Brightbox_BBConfig_add_login/when_using_an_email_and_suffix/creates_the_configuration.yml +6 -6
  164. data/spec/cassettes/Brightbox_BBConfig_add_login/when_using_an_email_and_suffix/refreshed_tokens.yml +6 -6
  165. data/spec/cassettes/Brightbox_CloudIP/_find_all_/when_a_Cloud_IP_exists/returns_a_suitable.yml +15 -15
  166. data/spec/cassettes/Brightbox_FirewallPolicy/_apply_to/should_apply_firewall_policy.yml +14 -14
  167. data/spec/cassettes/Brightbox_FirewallPolicy/_create/should_create_firewall_policy.yml +14 -14
  168. data/spec/cassettes/Brightbox_FirewallPolicy/_destroy/should_destroy_firewall_policy.yml +16 -16
  169. data/spec/cassettes/Brightbox_FirewallPolicy/_find_all_/when_a_policy_exists/should_list_firewall_policy.yml +13 -13
  170. data/spec/cassettes/Brightbox_FirewallPolicy/_find_or_call/when_a_policy_exists/should_show_firewall_policy.yml +11 -11
  171. data/spec/cassettes/Brightbox_FirewallRule/_create/when_policy_exists/creates_the_rule_successfully.yml +14 -14
  172. data/spec/cassettes/Brightbox_FirewallRule/_destroy/when_rule_exists/destroys_a_rule.yml +12 -12
  173. data/spec/cassettes/Brightbox_FirewallRule/_find/when_rule_exists/can_display_the_result.yml +14 -14
  174. data/spec/cassettes/Brightbox_FirewallRule/_from_policy/when_policy_exists_with_a_rule/lists_all_rules.yml +19 -19
  175. data/spec/cassettes/Brightbox_Server/_destroy/when_server_exists/should_work.yml +12 -12
  176. data/spec/cassettes/Brightbox_Server/_find_all_/when_a_server_exists/should_print_server_list.yml +15 -15
  177. data/spec/cassettes/Brightbox_Server/_show/when_server_exists/shows_detailed_attributes_of_a_server.yml +18 -18
  178. data/spec/cassettes/Brightbox_Server/_shutdown/should_work.yml +18 -18
  179. data/spec/cassettes/Brightbox_Server/_start/should_work.yml +24 -24
  180. data/spec/cassettes/Brightbox_Server/_stop/should_work.yml +18 -18
  181. data/spec/cassettes/Brightbox_Server/_update/when_passing_new_group_membership/should_update_with_group.yml +22 -22
  182. data/spec/cassettes/Brightbox_ServerGroup/_find_all_/when_a_group_exists/list_server_groups.yml +13 -13
  183. data/spec/cassettes/Firewall_policies/update/when_the_policy_does_not_exist/prints_error_to_STDERR.yml +3 -3
  184. data/spec/cassettes/brightbox_accounts/list/_when_access_token_expired_/does_not_report_invalid_token_errors.yml +30 -30
  185. data/spec/cassettes/brightbox_accounts/list/_when_both_tokens_expired_/does_not_report_invalid_token_errors.yml +9 -9
  186. data/spec/cassettes/brightbox_accounts/list/_when_invalid_tokens_/does_not_report_invalid_token_errors.yml +9 -9
  187. data/spec/cassettes/brightbox_accounts/list/_when_no_tokens_/does_not_report_invalid_token_errors.yml +27 -27
  188. data/spec/cassettes/brightbox_accounts/list/_when_no_tokens_/reports_they_were_updated.yml +7 -7
  189. data/spec/cassettes/brightbox_accounts/list/_when_no_tokens_and_password_incorrect_/does_not_report_invalid_token_errors.yml +7 -7
  190. data/spec/cassettes/brightbox_accounts/list/_when_no_tokens_and_password_incorrect_/reports_unable_to_authenticate.yml +6 -6
  191. data/spec/cassettes/brightbox_accounts/list/does_not_error.yml +3 -3
  192. data/spec/cassettes/brightbox_cloudips/map/when_destination_is_a_server_ID/passes_the_interface_identifier_to_the_API.yml +12 -12
  193. data/spec/cassettes/brightbox_cloudips/map/when_destination_is_another_value/passes_the_identifier_to_the_API.yml +7 -7
  194. data/spec/cassettes/brightbox_config/client_add/when_adding_a_new_client/does_not_error.yml +7 -7
  195. data/spec/cassettes/brightbox_config/client_add/when_adding_a_new_client/sets_up_the_config.yml +7 -7
  196. data/spec/cassettes/brightbox_config/client_add/when_new_client_is_first_and_only_client/does_not_change_the_default_client.yml +7 -7
  197. data/spec/cassettes/brightbox_config/client_add/when_new_client_is_first_and_only_client/does_not_error.yml +7 -7
  198. data/spec/cassettes/brightbox_config/client_add/when_new_client_is_first_and_only_client/sets_this_as_the_default_client.yml +7 -7
  199. data/spec/cassettes/brightbox_config/client_add/when_new_client_is_first_and_only_client/sets_up_the_config.yml +7 -7
  200. data/spec/cassettes/brightbox_config/user_add/when_NO_config_file_on_disk/sets_up_the_config.yml +5 -5
  201. data/spec/cassettes/brightbox_config/user_add/when_a_default_client_is_already_set/does_not_change_the_default_client.yml +2 -2
  202. data/spec/cassettes/brightbox_config/user_add/when_application_details_in_config/does_not_error.yml +2 -2
  203. data/spec/cassettes/brightbox_config/user_add/when_application_details_in_config/sets_up_the_config.yml +2 -2
  204. data/spec/cassettes/brightbox_config/user_add/when_application_has_access_only_one_active_account/display_an_warning_about_preselected_default.yml +2 -2
  205. data/spec/cassettes/brightbox_config/user_add/when_application_has_access_only_one_active_account/does_not_error.yml +2 -2
  206. data/spec/cassettes/brightbox_config/user_add/when_application_has_access_only_one_active_account/selects_the_active_account_for_the_default.yml +2 -2
  207. data/spec/cassettes/brightbox_config/user_add/when_application_has_access_only_one_active_account/sets_up_the_config.yml +2 -2
  208. data/spec/cassettes/brightbox_config/user_add/when_application_has_access_to_multiple_accounts/display_an_warning_about_preselected_default.yml +2 -2
  209. data/spec/cassettes/brightbox_config/user_add/when_application_has_access_to_multiple_accounts/does_not_error.yml +2 -2
  210. data/spec/cassettes/brightbox_config/user_add/when_application_has_access_to_multiple_accounts/sets_up_the_config.yml +2 -2
  211. data/spec/cassettes/brightbox_config/user_add/when_new_client_is_first_and_only_client/does_not_error.yml +2 -2
  212. data/spec/cassettes/brightbox_config/user_add/when_new_client_is_first_and_only_client/does_not_prompt_to_rerun_the_command.yml +2 -2
  213. data/spec/cassettes/brightbox_config/user_add/when_new_client_is_first_and_only_client/requests_access_tokens.yml +2 -2
  214. data/spec/cassettes/brightbox_config/user_add/when_new_client_is_first_and_only_client/sets_this_as_the_default_client.yml +2 -2
  215. data/spec/cassettes/brightbox_config/user_add/when_new_client_is_first_and_only_client/sets_up_the_config.yml +5 -5
  216. data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments/does_not_error.yml +2 -2
  217. data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments/does_not_prompt_to_rerun_the_command.yml +2 -2
  218. data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments/requests_access_tokens.yml +2 -2
  219. data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments/sets_up_the_config.yml +3 -3
  220. data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments_and_api_url/does_not_error.yml +2 -2
  221. data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments_and_api_url/requests_access_tokens.yml +2 -2
  222. data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments_and_api_url/sets_up_the_config.yml +2 -2
  223. data/spec/cassettes/brightbox_login/when_alternative_client_credentials_are_given/does_not_error.yml +6 -6
  224. data/spec/cassettes/brightbox_login/when_alternative_client_credentials_are_given/does_not_prompt_to_rerun_the_command.yml +6 -6
  225. data/spec/cassettes/brightbox_login/when_alternative_client_credentials_are_given/prompts_for_the_password.yml +6 -6
  226. data/spec/cassettes/brightbox_login/when_alternative_client_credentials_are_given/requests_access_tokens.yml +6 -6
  227. data/spec/cassettes/brightbox_login/when_alternative_client_credentials_are_given/sets_up_the_config.yml +6 -6
  228. data/spec/cassettes/brightbox_login/when_custom_api/auth_URLs_are_given/does_not_error.yml +6 -6
  229. data/spec/cassettes/brightbox_login/when_custom_api/auth_URLs_are_given/does_not_prompt_to_rerun_the_command.yml +6 -6
  230. data/spec/cassettes/brightbox_login/when_custom_api/auth_URLs_are_given/prompts_for_the_password.yml +6 -6
  231. data/spec/cassettes/brightbox_login/when_custom_api/auth_URLs_are_given/requests_access_tokens.yml +6 -6
  232. data/spec/cassettes/brightbox_login/when_custom_api/auth_URLs_are_given/sets_up_the_config.yml +6 -6
  233. data/spec/cassettes/brightbox_login/when_default_account_is_passed/does_not_error.yml +3 -3
  234. data/spec/cassettes/brightbox_login/when_default_account_is_passed/does_not_prompt_to_rerun_the_command.yml +3 -3
  235. data/spec/cassettes/brightbox_login/when_default_account_is_passed/prompts_for_the_password.yml +3 -3
  236. data/spec/cassettes/brightbox_login/when_default_account_is_passed/requests_access_tokens.yml +3 -3
  237. data/spec/cassettes/brightbox_login/when_default_account_is_passed/sets_up_the_config.yml +3 -3
  238. data/spec/cassettes/brightbox_login/when_no_config_is_present/does_not_error.yml +6 -6
  239. data/spec/cassettes/brightbox_login/when_no_config_is_present/does_not_prompt_to_rerun_the_command.yml +6 -6
  240. data/spec/cassettes/brightbox_login/when_no_config_is_present/requests_access_tokens.yml +6 -6
  241. data/spec/cassettes/brightbox_login/when_no_config_is_present/sets_up_the_config.yml +6 -6
  242. data/spec/cassettes/brightbox_login/when_no_password_is_given/does_not_error.yml +6 -6
  243. data/spec/cassettes/brightbox_login/when_no_password_is_given/does_not_prompt_to_rerun_the_command.yml +6 -6
  244. data/spec/cassettes/brightbox_login/when_no_password_is_given/prompts_for_the_password.yml +6 -6
  245. data/spec/cassettes/brightbox_login/when_no_password_is_given/requests_access_tokens.yml +6 -6
  246. data/spec/cassettes/brightbox_login/when_no_password_is_given/sets_up_the_config.yml +6 -6
  247. data/spec/cassettes/brightbox_sql_instances/create/--allow-access_10_0_0_0/correctly_sends_API_parameters.yml +313 -26
  248. data/spec/cassettes/brightbox_sql_instances/create/--allow-access_srv-12345_grp-12345/correctly_sends_API_parameters.yml +1204 -38
  249. data/spec/cassettes/brightbox_sql_instances/create/--engine_mysql/correctly_sends_API_parameters.yml +596 -26
  250. data/spec/cassettes/brightbox_sql_instances/create/--engine_mysql_--engine-version_5_6/correctly_sends_API_parameters.yml +63 -9
  251. data/spec/cassettes/brightbox_sql_instances/create/--engine_mysql_--engine-version_8_0/correctly_sends_API_parameters.yml +393 -0
  252. data/spec/cassettes/brightbox_sql_instances/create/--maintenance-weekday_5_--maintenance_hour_11/correctly_sends_API_parameters.yml +393 -0
  253. data/spec/cassettes/brightbox_sql_instances/create/--maintenance-weekday_thursday/correctly_sends_API_parameters.yml +393 -0
  254. data/spec/cassettes/brightbox_sql_instances/create/--snapshot_dbi-12345/includes_schedule_fields_in_response.yml +1466 -0
  255. data/spec/cassettes/brightbox_sql_instances/create/--snapshots-schedule_0_12_4_/includes_schedule_fields_in_response.yml +342 -0
  256. data/spec/cassettes/brightbox_sql_instances/create/without_arguments/reports_the_new_admin_password.yml +541 -26
  257. data/spec/cassettes/brightbox_sql_instances/create/without_arguments/reports_the_new_admin_username.yml +484 -26
  258. data/spec/cassettes/brightbox_sql_instances/snapshot/when_database_server_active/correctly_sends_API_parameters.yml +4 -4
  259. data/spec/cassettes/brightbox_sql_instances/snapshot/when_database_server_can_not_be_snapshotted/reports_an_error_to_the_user.yml +2 -2
  260. data/spec/cassettes/brightbox_sql_snapshots/list/when_resources_are_available/does_not_output_to_stderr.yml +2 -2
  261. data/spec/cassettes/brightbox_sql_snapshots/list/when_resources_are_available/outputs_table_details_to_stdout.yml +2 -2
  262. data/spec/cassettes/brightbox_sql_snapshots/show/when_resource_exists/does_not_output_to_stderr.yml +2 -2
  263. data/spec/commands/accounts/default_spec.rb +1 -2
  264. data/spec/commands/accounts/list_spec.rb +7 -8
  265. data/spec/commands/accounts/reset_ftp_password_spec.rb +1 -2
  266. data/spec/commands/accounts/show_spec.rb +1 -2
  267. data/spec/commands/cloudips/create_spec.rb +1 -2
  268. data/spec/commands/cloudips/destroy_spec.rb +1 -2
  269. data/spec/commands/cloudips/list_spec.rb +1 -2
  270. data/spec/commands/cloudips/map_spec.rb +2 -3
  271. data/spec/commands/cloudips/show_spec.rb +1 -2
  272. data/spec/commands/cloudips/unmap_spec.rb +1 -2
  273. data/spec/commands/cloudips/update_spec.rb +7 -8
  274. data/spec/commands/config/client_add_spec.rb +2 -3
  275. data/spec/commands/config/client_default_spec.rb +1 -2
  276. data/spec/commands/config/client_list_spec.rb +1 -2
  277. data/spec/commands/config/client_remove_spec.rb +1 -2
  278. data/spec/commands/config/user_add_spec.rb +3 -4
  279. data/spec/commands/firewall_policies/update_spec.rb +3 -3
  280. data/spec/commands/groups/add_server_spec.rb +1 -2
  281. data/spec/commands/groups/create_spec.rb +1 -2
  282. data/spec/commands/groups/destroy_spec.rb +1 -2
  283. data/spec/commands/groups/list_spec.rb +1 -2
  284. data/spec/commands/groups/move_servers_spec.rb +1 -2
  285. data/spec/commands/groups/remove_servers_spec.rb +1 -2
  286. data/spec/commands/groups/show_spec.rb +1 -2
  287. data/spec/commands/groups/update_spec.rb +1 -2
  288. data/spec/commands/images/destroy_spec.rb +1 -2
  289. data/spec/commands/images/list_spec.rb +62 -63
  290. data/spec/commands/images/locking_spec.rb +4 -4
  291. data/spec/commands/images/register_spec.rb +89 -3
  292. data/spec/commands/images/show_spec.rb +56 -4
  293. data/spec/commands/images/update_spec.rb +53 -3
  294. data/spec/commands/lbs/add_nodes_spec.rb +1 -2
  295. data/spec/commands/lbs/create_spec.rb +2 -3
  296. data/spec/commands/lbs/destroy_spec.rb +1 -2
  297. data/spec/commands/lbs/list_spec.rb +1 -2
  298. data/spec/commands/lbs/locking_spec.rb +4 -4
  299. data/spec/commands/lbs/remove_nodes_spec.rb +1 -2
  300. data/spec/commands/lbs/show_spec.rb +1 -2
  301. data/spec/commands/lbs/update_spec.rb +3 -4
  302. data/spec/commands/login_spec.rb +134 -30
  303. data/spec/commands/policies/apply_spec.rb +1 -2
  304. data/spec/commands/policies/create_spec.rb +1 -2
  305. data/spec/commands/policies/destroy_spec.rb +1 -2
  306. data/spec/commands/policies/list_spec.rb +1 -2
  307. data/spec/commands/policies/remove_spec.rb +1 -2
  308. data/spec/commands/policies/show_spec.rb +1 -2
  309. data/spec/commands/policies/update_spec.rb +1 -2
  310. data/spec/commands/rules/create_spec.rb +1 -2
  311. data/spec/commands/rules/destroy_spec.rb +1 -2
  312. data/spec/commands/rules/list_spec.rb +1 -2
  313. data/spec/commands/rules/show_spec.rb +1 -2
  314. data/spec/commands/rules/update_spec.rb +1 -2
  315. data/spec/commands/servers/activate_console_spec.rb +1 -2
  316. data/spec/commands/servers/create_spec.rb +10 -10
  317. data/spec/commands/servers/destroy_spec.rb +1 -2
  318. data/spec/commands/servers/list_spec.rb +1 -2
  319. data/spec/commands/servers/locking_spec.rb +4 -4
  320. data/spec/commands/servers/reboot_spec.rb +3 -4
  321. data/spec/commands/servers/reset_spec.rb +3 -4
  322. data/spec/commands/servers/show_spec.rb +1 -2
  323. data/spec/commands/servers/shutdown_spec.rb +1 -2
  324. data/spec/commands/servers/snapshot_spec.rb +1 -2
  325. data/spec/commands/servers/start_spec.rb +1 -2
  326. data/spec/commands/servers/stop_spec.rb +1 -2
  327. data/spec/commands/servers/update_spec.rb +1 -2
  328. data/spec/commands/sql/instances/create_spec.rb +58 -75
  329. data/spec/commands/sql/instances/locking_spec.rb +4 -4
  330. data/spec/commands/sql/instances/show_spec.rb +7 -7
  331. data/spec/commands/sql/instances/snapshot_spec.rb +2 -2
  332. data/spec/commands/sql/instances/update_spec.rb +8 -8
  333. data/spec/commands/sql/snapshots/list_spec.rb +1 -1
  334. data/spec/commands/sql/snapshots/locking_spec.rb +4 -4
  335. data/spec/commands/sql/snapshots/show_spec.rb +1 -1
  336. data/spec/commands/sql/types/list_spec.rb +1 -2
  337. data/spec/commands/types/list_spec.rb +1 -2
  338. data/spec/commands/users/list_spec.rb +1 -2
  339. data/spec/commands/users/show_spec.rb +1 -2
  340. data/spec/commands/users/update_spec.rb +1 -2
  341. data/spec/commands/zones/list_spec.rb +1 -2
  342. data/spec/configs/api_client.ini +1 -1
  343. data/spec/configs/user_app.ini +2 -2
  344. data/spec/spec_helper.rb +16 -3
  345. data/spec/support/authentication_helpers.rb +98 -0
  346. data/spec/support/config_helpers.rb +2 -4
  347. data/spec/support/password_prompt_helpers.rb +22 -1
  348. data/spec/support/server_helper.rb +5 -5
  349. data/spec/support/tmp_config.rb +1 -1
  350. data/spec/support/token_helpers.rb +2 -2
  351. data/spec/support/vcr.rb +3 -22
  352. data/spec/unit/brightbox/api/created_on_spec.rb +2 -2
  353. data/spec/unit/brightbox/api/fog_model_spec.rb +13 -13
  354. data/spec/unit/brightbox/api/klass_name_spec.rb +0 -1
  355. data/spec/unit/brightbox/api/method_missing_spec.rb +64 -0
  356. data/spec/unit/brightbox/api/require_account_spec.rb +0 -1
  357. data/spec/unit/brightbox/api/respond_to_spec.rb +71 -0
  358. data/spec/unit/brightbox/bb_config/access_token_filename_spec.rb +0 -1
  359. data/spec/unit/brightbox/bb_config/account_spec.rb +0 -1
  360. data/spec/unit/brightbox/bb_config/add_login_spec.rb +27 -28
  361. data/spec/unit/brightbox/bb_config/add_section_spec.rb +1 -2
  362. data/spec/unit/brightbox/bb_config/clear_default_client_spec.rb +0 -1
  363. data/spec/unit/brightbox/bb_config/client_id_spec.rb +0 -1
  364. data/spec/unit/brightbox/bb_config/client_name_spec.rb +0 -1
  365. data/spec/unit/brightbox/bb_config/config_directory_exists_spec.rb +0 -1
  366. data/spec/unit/brightbox/bb_config/config_directory_spec.rb +0 -1
  367. data/spec/unit/brightbox/bb_config/config_spec.rb +2 -3
  368. data/spec/unit/brightbox/bb_config/default_account_spec.rb +0 -1
  369. data/spec/unit/brightbox/bb_config/default_client_spec.rb +0 -1
  370. data/spec/unit/brightbox/bb_config/delete_section_spec.rb +0 -1
  371. data/spec/unit/brightbox/bb_config/find_or_set_default_account_spec.rb +4 -4
  372. data/spec/unit/brightbox/bb_config/refresh_token_filename_spec.rb +0 -1
  373. data/spec/unit/brightbox/bb_config/renew_tokens_spec.rb +3 -4
  374. data/spec/unit/brightbox/bb_config/save_default_account_spec.rb +0 -1
  375. data/spec/unit/brightbox/bb_config/save_spec.rb +0 -1
  376. data/spec/unit/brightbox/bb_config/section_names_spec.rb +1 -1
  377. data/spec/unit/brightbox/bb_config/to_fog_spec.rb +2 -2
  378. data/spec/unit/brightbox/collaborating_account/to_row_spec.rb +3 -3
  379. data/spec/unit/brightbox/config/api_client/to_fog_spec.rb +8 -8
  380. data/spec/unit/brightbox/config/api_client/valid_spec.rb +4 -4
  381. data/spec/unit/brightbox/config/discover_two_factor_pin_spec.rb +87 -0
  382. data/spec/unit/brightbox/config/section_name_deduplicator_spec.rb +1 -1
  383. data/spec/unit/brightbox/config/user_application/to_fog_spec.rb +10 -10
  384. data/spec/unit/brightbox/config/user_application/valid_spec.rb +3 -3
  385. data/spec/unit/brightbox/connection_manager/fetch_connection_spec.rb +1 -1
  386. data/spec/unit/brightbox/database_server/clean_arguments_spec.rb +1 -2
  387. data/spec/unit/brightbox/database_server/maintenance_window_spec.rb +0 -1
  388. data/spec/unit/brightbox/error_parser/pretty_print_spec.rb +0 -1
  389. data/spec/unit/brightbox/firewall_policy/apply_to_spec.rb +0 -1
  390. data/spec/unit/brightbox/firewall_policy/create_spec.rb +0 -1
  391. data/spec/unit/brightbox/firewall_policy/find_or_call_spec.rb +0 -1
  392. data/spec/unit/brightbox/firewall_policy/find_spec.rb +0 -1
  393. data/spec/unit/brightbox/firewall_rule/find_spec.rb +9 -9
  394. data/spec/unit/brightbox/firewall_rule/from_policy_spec.rb +4 -4
  395. data/spec/unit/brightbox/legacy/args_adjuster_spec.rb +20 -21
  396. data/spec/unit/brightbox/server/create_spec.rb +1 -2
  397. data/spec/unit/brightbox/server/start_spec.rb +2 -2
  398. data/spec/unit/brightbox/server/update_spec.rb +0 -1
  399. data/spec/unit/brightbox/user_collaboration/remove_spec.rb +0 -1
  400. data/spec/unit/nilable_hash_spec.rb +5 -5
  401. data/spec/unit/ruby_core_ext_spec.rb +3 -4
  402. data/spec/unit/temporary_home_spec.rb +1 -1
  403. data/spec/unit/tmp_config_spec.rb +0 -1
  404. metadata +133 -101
  405. data/bin/brightbox-accounts +0 -13
  406. data/bin/brightbox-cloudips +0 -13
  407. data/bin/brightbox-config +0 -13
  408. data/bin/brightbox-firewall-policies +0 -13
  409. data/bin/brightbox-firewall-rules +0 -13
  410. data/bin/brightbox-groups +0 -13
  411. data/bin/brightbox-images +0 -13
  412. data/bin/brightbox-lbs +0 -13
  413. data/bin/brightbox-servers +0 -13
  414. data/bin/brightbox-types +0 -13
  415. data/bin/brightbox-users +0 -13
  416. data/bin/brightbox-zones +0 -13
  417. data/lib/brightbox-cli/commands/config/client-default.rb +0 -26
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.brightbox.dev/1.0/accounts
5
+ uri: http://api.brightbox.localhost/1.0/accounts
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -42,7 +42,7 @@ http_interactions:
42
42
  recorded_at: Wed, 28 Aug 2013 14:18:22 GMT
43
43
  - request:
44
44
  method: post
45
- uri: http://api.brightbox.dev/token
45
+ uri: http://api.brightbox.localhost/token
46
46
  body:
47
47
  encoding: UTF-8
48
48
  string: '{"grant_type":"refresh_token","refresh_token":"c08bd7973ddf8493d878b22fe69c1044bbb3abb1"}'
@@ -87,7 +87,7 @@ http_interactions:
87
87
  recorded_at: Wed, 28 Aug 2013 14:18:22 GMT
88
88
  - request:
89
89
  method: get
90
- uri: http://api.brightbox.dev/1.0/accounts
90
+ uri: http://api.brightbox.localhost/1.0/accounts
91
91
  body:
92
92
  encoding: US-ASCII
93
93
  string: ''
@@ -127,7 +127,7 @@ http_interactions:
127
127
  recorded_at: Wed, 28 Aug 2013 14:18:22 GMT
128
128
  - request:
129
129
  method: post
130
- uri: http://api.brightbox.dev/token
130
+ uri: http://api.brightbox.localhost/token
131
131
  body:
132
132
  encoding: UTF-8
133
133
  string: '{"grant_type":"refresh_token","refresh_token":"c08bd7973ddf8493d878b22fe69c1044bbb3abb1"}'
@@ -172,7 +172,7 @@ http_interactions:
172
172
  recorded_at: Wed, 28 Aug 2013 14:18:27 GMT
173
173
  - request:
174
174
  method: post
175
- uri: http://api.brightbox.dev/token
175
+ uri: http://api.brightbox.localhost/token
176
176
  body:
177
177
  encoding: UTF-8
178
178
  string: '{"grant_type":"password","username":"jason.null@brightbox.com","password":"N:B3e%7Cmh"}'
@@ -217,7 +217,7 @@ http_interactions:
217
217
  recorded_at: Wed, 28 Aug 2013 14:18:27 GMT
218
218
  - request:
219
219
  method: post
220
- uri: http://api.brightbox.dev/token
220
+ uri: http://api.brightbox.localhost/token
221
221
  body:
222
222
  encoding: UTF-8
223
223
  string: '{"grant_type":"client_credentials"}'
@@ -262,7 +262,7 @@ http_interactions:
262
262
  recorded_at: Wed, 28 Aug 2013 14:19:48 GMT
263
263
  - request:
264
264
  method: post
265
- uri: http://api.brightbox.dev/token
265
+ uri: http://api.brightbox.localhost/token
266
266
  body:
267
267
  encoding: UTF-8
268
268
  string: '{"grant_type":"client_credentials"}'
@@ -308,7 +308,7 @@ http_interactions:
308
308
  recorded_at: Wed, 28 Aug 2013 14:22:49 GMT
309
309
  - request:
310
310
  method: post
311
- uri: http://api.brightbox.dev/token
311
+ uri: http://api.brightbox.localhost/token
312
312
  body:
313
313
  encoding: UTF-8
314
314
  string: '{"grant_type":"client_credentials"}'
@@ -352,7 +352,7 @@ http_interactions:
352
352
  recorded_at: Wed, 18 Sep 2013 15:18:56 GMT
353
353
  - request:
354
354
  method: post
355
- uri: http://api.brightbox.dev/token
355
+ uri: http://api.brightbox.localhost/token
356
356
  body:
357
357
  encoding: UTF-8
358
358
  string: '{"grant_type":"client_credentials"}'
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://api.brightbox.dev/token
5
+ uri: http://api.brightbox.localhost/token
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: '{"grant_type":"client_credentials"}'
@@ -16,7 +16,7 @@ http_interactions:
16
16
  response:
17
17
  status:
18
18
  code: 400
19
- message:
19
+ message:
20
20
  headers:
21
21
  X-Frame-Options:
22
22
  - sameorigin
@@ -42,11 +42,11 @@ http_interactions:
42
42
  encoding: UTF-8
43
43
  string: '{"error":"unauthorized_client","error_description":"The authenticated
44
44
  client is not authorized to use the access grant type provided."}'
45
- http_version:
45
+ http_version:
46
46
  recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
47
47
  - request:
48
48
  method: get
49
- uri: http://api.brightbox.dev/1.0/accounts
49
+ uri: http://api.brightbox.localhost/1.0/accounts
50
50
  body:
51
51
  encoding: US-ASCII
52
52
  string: ''
@@ -60,7 +60,7 @@ http_interactions:
60
60
  response:
61
61
  status:
62
62
  code: 401
63
- message:
63
+ message:
64
64
  headers:
65
65
  WWW-Authenticate:
66
66
  - OAuth error="invalid_token"
@@ -82,11 +82,11 @@ http_interactions:
82
82
  encoding: UTF-8
83
83
  string: '{"error":"invalid_token","error_description":"The OAuth token can not
84
84
  be found"}'
85
- http_version:
85
+ http_version:
86
86
  recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
87
87
  - request:
88
88
  method: post
89
- uri: http://api.brightbox.dev/token
89
+ uri: http://api.brightbox.localhost/token
90
90
  body:
91
91
  encoding: UTF-8
92
92
  string: '{"grant_type":"client_credentials"}'
@@ -100,7 +100,7 @@ http_interactions:
100
100
  response:
101
101
  status:
102
102
  code: 400
103
- message:
103
+ message:
104
104
  headers:
105
105
  X-Frame-Options:
106
106
  - sameorigin
@@ -126,11 +126,11 @@ http_interactions:
126
126
  encoding: UTF-8
127
127
  string: '{"error":"unauthorized_client","error_description":"The authenticated
128
128
  client is not authorized to use the access grant type provided."}'
129
- http_version:
129
+ http_version:
130
130
  recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
131
131
  - request:
132
132
  method: get
133
- uri: http://api.brightbox.dev/1.0/accounts
133
+ uri: http://api.brightbox.localhost/1.0/accounts
134
134
  body:
135
135
  encoding: US-ASCII
136
136
  string: ''
@@ -144,7 +144,7 @@ http_interactions:
144
144
  response:
145
145
  status:
146
146
  code: 401
147
- message:
147
+ message:
148
148
  headers:
149
149
  WWW-Authenticate:
150
150
  - OAuth error="invalid_token"
@@ -166,11 +166,11 @@ http_interactions:
166
166
  encoding: UTF-8
167
167
  string: '{"error":"invalid_token","error_description":"The OAuth token can not
168
168
  be found"}'
169
- http_version:
169
+ http_version:
170
170
  recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
171
171
  - request:
172
172
  method: post
173
- uri: http://api.brightbox.dev/token
173
+ uri: http://api.brightbox.localhost/token
174
174
  body:
175
175
  encoding: UTF-8
176
176
  string: '{"grant_type":"password","username":"jason.null@brightbox.com","password":"N:B3e%7Cmh"}'
@@ -184,7 +184,7 @@ http_interactions:
184
184
  response:
185
185
  status:
186
186
  code: 200
187
- message:
187
+ message:
188
188
  headers:
189
189
  X-Frame-Options:
190
190
  - sameorigin
@@ -211,11 +211,11 @@ http_interactions:
211
211
  body:
212
212
  encoding: UTF-8
213
213
  string: '{"access_token":"cf9d63fa39bf6f7bedad62c461f020e92d8f1e44","expires_in":7200,"refresh_token":"7b574d091da700939a4cebcd1938ad4b547b1d00"}'
214
- http_version:
214
+ http_version:
215
215
  recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
216
216
  - request:
217
217
  method: post
218
- uri: http://api.brightbox.dev/token
218
+ uri: http://api.brightbox.localhost/token
219
219
  body:
220
220
  encoding: UTF-8
221
221
  string: '{"grant_type":"client_credentials"}'
@@ -229,7 +229,7 @@ http_interactions:
229
229
  response:
230
230
  status:
231
231
  code: 200
232
- message:
232
+ message:
233
233
  headers:
234
234
  X-Frame-Options:
235
235
  - sameorigin
@@ -256,11 +256,11 @@ http_interactions:
256
256
  body:
257
257
  encoding: UTF-8
258
258
  string: '{"access_token":"e75c77ba85740b2d572e15bbe75595ffc7f5814a","expires_in":7200}'
259
- http_version:
259
+ http_version:
260
260
  recorded_at: Tue, 27 Aug 2013 16:54:19 GMT
261
261
  - request:
262
262
  method: post
263
- uri: http://api.brightbox.dev/token
263
+ uri: http://api.brightbox.localhost/token
264
264
  body:
265
265
  encoding: UTF-8
266
266
  string: '{"grant_type":"client_credentials"}'
@@ -274,7 +274,7 @@ http_interactions:
274
274
  response:
275
275
  status:
276
276
  code: 200
277
- message:
277
+ message:
278
278
  headers:
279
279
  X-Frame-Options:
280
280
  - sameorigin
@@ -301,11 +301,11 @@ http_interactions:
301
301
  body:
302
302
  encoding: UTF-8
303
303
  string: '{"access_token":"7e65f560ecbca978f15131faa5071d120b9986f2","expires_in":7200}'
304
- http_version:
304
+ http_version:
305
305
  recorded_at: Wed, 28 Aug 2013 08:50:46 GMT
306
306
  - request:
307
307
  method: post
308
- uri: http://api.brightbox.dev/token
308
+ uri: http://api.brightbox.localhost/token
309
309
  body:
310
310
  encoding: UTF-8
311
311
  string: '{"grant_type":"refresh_token","refresh_token":"dcd32790159f852756dadf8bed12cc3369c7b448"}'
@@ -319,7 +319,7 @@ http_interactions:
319
319
  response:
320
320
  status:
321
321
  code: 400
322
- message:
322
+ message:
323
323
  headers:
324
324
  X-Frame-Options:
325
325
  - sameorigin
@@ -347,11 +347,11 @@ http_interactions:
347
347
  is invalid, expired, or revoked (e.g. invalid assertion, expired authorization
348
348
  token, bad end-user password credentials, or mismatching authorization code
349
349
  and redirection URI)."}'
350
- http_version:
350
+ http_version:
351
351
  recorded_at: Wed, 18 Sep 2013 15:15:36 GMT
352
352
  - request:
353
353
  method: post
354
- uri: http://api.brightbox.dev/token
354
+ uri: http://api.brightbox.localhost/token
355
355
  body:
356
356
  encoding: UTF-8
357
357
  string: '{"grant_type":"refresh_token","refresh_token":"305ae4a60568a02d606744372dc7b8a2b80d7a8e"}'
@@ -365,7 +365,7 @@ http_interactions:
365
365
  response:
366
366
  status:
367
367
  code: 400
368
- message:
368
+ message:
369
369
  headers:
370
370
  Content-Type:
371
371
  - application/json
@@ -393,6 +393,6 @@ http_interactions:
393
393
  is invalid, expired, or revoked (e.g. invalid assertion, expired authorization
394
394
  token, bad end-user password credentials, or mismatching authorization code
395
395
  and redirection URI)."}'
396
- http_version:
396
+ http_version:
397
397
  recorded_at: Mon, 19 Oct 2015 15:46:27 GMT
398
398
  recorded_with: VCR 2.5.0
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://api.brightbox.dev/token
5
+ uri: http://api.brightbox.localhost/token
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: '{"grant_type":"client_credentials"}'
@@ -46,7 +46,7 @@ http_interactions:
46
46
  recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
47
47
  - request:
48
48
  method: get
49
- uri: http://api.brightbox.dev/1.0/accounts
49
+ uri: http://api.brightbox.localhost/1.0/accounts
50
50
  body:
51
51
  encoding: US-ASCII
52
52
  string: ''
@@ -86,7 +86,7 @@ http_interactions:
86
86
  recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
87
87
  - request:
88
88
  method: post
89
- uri: http://api.brightbox.dev/token
89
+ uri: http://api.brightbox.localhost/token
90
90
  body:
91
91
  encoding: UTF-8
92
92
  string: '{"grant_type":"client_credentials"}'
@@ -130,7 +130,7 @@ http_interactions:
130
130
  recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
131
131
  - request:
132
132
  method: get
133
- uri: http://api.brightbox.dev/1.0/accounts
133
+ uri: http://api.brightbox.localhost/1.0/accounts
134
134
  body:
135
135
  encoding: US-ASCII
136
136
  string: ''
@@ -170,7 +170,7 @@ http_interactions:
170
170
  recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
171
171
  - request:
172
172
  method: post
173
- uri: http://api.brightbox.dev/token
173
+ uri: http://api.brightbox.localhost/token
174
174
  body:
175
175
  encoding: UTF-8
176
176
  string: '{"grant_type":"password","username":"jason.null@brightbox.com","password":"N:B3e%7Cmh"}'
@@ -215,7 +215,7 @@ http_interactions:
215
215
  recorded_at: Tue, 27 Aug 2013 15:11:59 GMT
216
216
  - request:
217
217
  method: post
218
- uri: http://api.brightbox.dev/token
218
+ uri: http://api.brightbox.localhost/token
219
219
  body:
220
220
  encoding: UTF-8
221
221
  string: '{"grant_type":"client_credentials"}'
@@ -260,7 +260,7 @@ http_interactions:
260
260
  recorded_at: Tue, 27 Aug 2013 16:54:19 GMT
261
261
  - request:
262
262
  method: post
263
- uri: http://api.brightbox.dev/token
263
+ uri: http://api.brightbox.localhost/token
264
264
  body:
265
265
  encoding: UTF-8
266
266
  string: '{"grant_type":"client_credentials"}'
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://api.brightbox.dev/token
5
+ uri: http://api.brightbox.localhost/token
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: '{"grant_type":"client_credentials"}'
@@ -46,7 +46,7 @@ http_interactions:
46
46
  recorded_at: Wed, 18 Sep 2013 15:15:36 GMT
47
47
  - request:
48
48
  method: get
49
- uri: http://api.brightbox.dev/1.0/accounts
49
+ uri: http://api.brightbox.localhost/1.0/accounts
50
50
  body:
51
51
  encoding: US-ASCII
52
52
  string: ''
@@ -86,7 +86,7 @@ http_interactions:
86
86
  recorded_at: Wed, 18 Sep 2013 15:15:37 GMT
87
87
  - request:
88
88
  method: post
89
- uri: http://api.brightbox.dev/token
89
+ uri: http://api.brightbox.localhost/token
90
90
  body:
91
91
  encoding: UTF-8
92
92
  string: '{"grant_type":"client_credentials"}'
@@ -130,7 +130,7 @@ http_interactions:
130
130
  recorded_at: Wed, 18 Sep 2013 15:15:37 GMT
131
131
  - request:
132
132
  method: get
133
- uri: http://api.brightbox.dev/1.0/accounts
133
+ uri: http://api.brightbox.localhost/1.0/accounts
134
134
  body:
135
135
  encoding: US-ASCII
136
136
  string: ''
@@ -170,7 +170,7 @@ http_interactions:
170
170
  recorded_at: Wed, 18 Sep 2013 15:15:37 GMT
171
171
  - request:
172
172
  method: post
173
- uri: http://api.brightbox.dev/token
173
+ uri: http://api.brightbox.localhost/token
174
174
  body:
175
175
  encoding: UTF-8
176
176
  string: '{"grant_type":"password","username":"jason.null@brightbox.com","password":"wrong"}'
@@ -215,7 +215,7 @@ http_interactions:
215
215
  recorded_at: Wed, 18 Sep 2013 15:15:37 GMT
216
216
  - request:
217
217
  method: post
218
- uri: http://api.brightbox.dev/token
218
+ uri: http://api.brightbox.localhost/token
219
219
  body:
220
220
  encoding: UTF-8
221
221
  string: '{"grant_type":"client_credentials"}'
@@ -260,7 +260,7 @@ http_interactions:
260
260
  recorded_at: Wed, 18 Sep 2013 15:17:33 GMT
261
261
  - request:
262
262
  method: post
263
- uri: http://api.brightbox.dev/token
263
+ uri: http://api.brightbox.localhost/token
264
264
  body:
265
265
  encoding: UTF-8
266
266
  string: '{"grant_type":"client_credentials"}'
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://api.brightbox.dev/token
5
+ uri: http://api.brightbox.localhost/token
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: '{"grant_type":"client_credentials"}'
@@ -46,7 +46,7 @@ http_interactions:
46
46
  recorded_at: Wed, 18 Sep 2013 15:15:37 GMT
47
47
  - request:
48
48
  method: get
49
- uri: http://api.brightbox.dev/1.0/accounts
49
+ uri: http://api.brightbox.localhost/1.0/accounts
50
50
  body:
51
51
  encoding: US-ASCII
52
52
  string: ''
@@ -86,7 +86,7 @@ http_interactions:
86
86
  recorded_at: Wed, 18 Sep 2013 15:15:37 GMT
87
87
  - request:
88
88
  method: post
89
- uri: http://api.brightbox.dev/token
89
+ uri: http://api.brightbox.localhost/token
90
90
  body:
91
91
  encoding: UTF-8
92
92
  string: '{"grant_type":"client_credentials"}'
@@ -130,7 +130,7 @@ http_interactions:
130
130
  recorded_at: Wed, 18 Sep 2013 15:15:37 GMT
131
131
  - request:
132
132
  method: get
133
- uri: http://api.brightbox.dev/1.0/accounts
133
+ uri: http://api.brightbox.localhost/1.0/accounts
134
134
  body:
135
135
  encoding: US-ASCII
136
136
  string: ''
@@ -170,7 +170,7 @@ http_interactions:
170
170
  recorded_at: Wed, 18 Sep 2013 15:15:37 GMT
171
171
  - request:
172
172
  method: post
173
- uri: http://api.brightbox.dev/token
173
+ uri: http://api.brightbox.localhost/token
174
174
  body:
175
175
  encoding: UTF-8
176
176
  string: '{"grant_type":"password","username":"jason.null@brightbox.com","password":"wrong"}'
@@ -215,7 +215,7 @@ http_interactions:
215
215
  recorded_at: Wed, 18 Sep 2013 15:15:37 GMT
216
216
  - request:
217
217
  method: post
218
- uri: http://api.brightbox.dev/token
218
+ uri: http://api.brightbox.localhost/token
219
219
  body:
220
220
  encoding: UTF-8
221
221
  string: '{"grant_type":"client_credentials"}'
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://api.brightbox.dev/token
5
+ uri: http://api.brightbox.localhost/token
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: '{"grant_type":"client_credentials"}'
@@ -47,7 +47,7 @@ http_interactions:
47
47
  recorded_at: Wed, 28 Aug 2013 12:04:58 GMT
48
48
  - request:
49
49
  method: get
50
- uri: http://api.brightbox.dev/1.0/account
50
+ uri: http://api.brightbox.localhost/1.0/account
51
51
  body:
52
52
  encoding: US-ASCII
53
53
  string: ''
@@ -92,7 +92,7 @@ http_interactions:
92
92
  recorded_at: Wed, 28 Aug 2013 12:04:58 GMT
93
93
  - request:
94
94
  method: post
95
- uri: http://api.brightbox.dev/token
95
+ uri: http://api.brightbox.localhost/token
96
96
  body:
97
97
  encoding: UTF-8
98
98
  string: '{"grant_type":"client_credentials"}'
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.brightbox.dev/1.0/cloud_ips/cip-12345?account_id=acc-12345
5
+ uri: http://api.brightbox.localhost/1.0/cloud_ips/cip-12345?account_id=acc-12345
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -46,7 +46,7 @@ http_interactions:
46
46
  recorded_at: Tue, 21 Jan 2014 15:59:06 GMT
47
47
  - request:
48
48
  method: get
49
- uri: http://api.brightbox.dev/1.0/servers/srv-12345?account_id=acc-12345
49
+ uri: http://api.brightbox.localhost/1.0/servers/srv-12345?account_id=acc-12345
50
50
  body:
51
51
  encoding: US-ASCII
52
52
  string: ''
@@ -91,7 +91,7 @@ http_interactions:
91
91
  recorded_at: Tue, 21 Jan 2014 15:59:06 GMT
92
92
  - request:
93
93
  method: post
94
- uri: http://api.brightbox.dev/1.0/cloud_ips/cip-12345/map?account_id=acc-12345
94
+ uri: http://api.brightbox.localhost/1.0/cloud_ips/cip-12345/map?account_id=acc-12345
95
95
  body:
96
96
  encoding: UTF-8
97
97
  string: "{\"destination\":\"int-12345\"}"
@@ -133,7 +133,7 @@ http_interactions:
133
133
  recorded_at: Tue, 21 Jan 2014 15:59:06 GMT
134
134
  - request:
135
135
  method: get
136
- uri: http://api.brightbox.dev/1.0/cloud_ips/cip-12345?account_id=acc-12345
136
+ uri: http://api.brightbox.localhost/1.0/cloud_ips/cip-12345?account_id=acc-12345
137
137
  body:
138
138
  encoding: US-ASCII
139
139
  string: ''
@@ -177,7 +177,7 @@ http_interactions:
177
177
  recorded_at: Tue, 21 Jan 2014 15:59:07 GMT
178
178
  - request:
179
179
  method: get
180
- uri: http://api.brightbox.dev/1.0/cloud_ips/cip-12345?account_id=acc-12345
180
+ uri: http://api.brightbox.localhost/1.0/cloud_ips/cip-12345?account_id=acc-12345
181
181
  body:
182
182
  encoding: US-ASCII
183
183
  string: ''
@@ -221,7 +221,7 @@ http_interactions:
221
221
  recorded_at: Tue, 21 Jan 2014 15:59:08 GMT
222
222
  - request:
223
223
  method: get
224
- uri: http://api.brightbox.dev/1.0/cloud_ips/cip-12345?account_id=acc-12345
224
+ uri: http://api.brightbox.localhost/1.0/cloud_ips/cip-12345?account_id=acc-12345
225
225
  body:
226
226
  encoding: US-ASCII
227
227
  string: ''
@@ -265,7 +265,7 @@ http_interactions:
265
265
  recorded_at: Tue, 21 Jan 2014 15:59:09 GMT
266
266
  - request:
267
267
  method: post
268
- uri: http://api.brightbox.dev/token
268
+ uri: http://api.brightbox.localhost/token
269
269
  body:
270
270
  encoding: UTF-8
271
271
  string: "{\"grant_type\":\"client_credentials\"}"
@@ -311,7 +311,7 @@ http_interactions:
311
311
  recorded_at: Tue, 18 Feb 2014 15:58:18 GMT
312
312
  - request:
313
313
  method: post
314
- uri: http://api.brightbox.dev/token
314
+ uri: http://api.brightbox.localhost/token
315
315
  body:
316
316
  encoding: UTF-8
317
317
  string: "{\"grant_type\":\"client_credentials\"}"
@@ -357,7 +357,7 @@ http_interactions:
357
357
  recorded_at: Tue, 18 Feb 2014 15:58:18 GMT
358
358
  - request:
359
359
  method: post
360
- uri: http://api.brightbox.dev/token
360
+ uri: http://api.brightbox.localhost/token
361
361
  body:
362
362
  encoding: UTF-8
363
363
  string: "{\"grant_type\":\"client_credentials\"}"
@@ -403,7 +403,7 @@ http_interactions:
403
403
  recorded_at: Tue, 18 Feb 2014 15:58:18 GMT
404
404
  - request:
405
405
  method: post
406
- uri: http://api.brightbox.dev/token
406
+ uri: http://api.brightbox.localhost/token
407
407
  body:
408
408
  encoding: UTF-8
409
409
  string: "{\"grant_type\":\"client_credentials\"}"
@@ -449,7 +449,7 @@ http_interactions:
449
449
  recorded_at: Tue, 18 Feb 2014 15:58:18 GMT
450
450
  - request:
451
451
  method: post
452
- uri: http://api.brightbox.dev/token
452
+ uri: http://api.brightbox.localhost/token
453
453
  body:
454
454
  encoding: UTF-8
455
455
  string: "{\"grant_type\":\"client_credentials\"}"
@@ -495,7 +495,7 @@ http_interactions:
495
495
  recorded_at: Tue, 18 Feb 2014 15:58:19 GMT
496
496
  - request:
497
497
  method: post
498
- uri: http://api.brightbox.dev/token
498
+ uri: http://api.brightbox.localhost/token
499
499
  body:
500
500
  encoding: UTF-8
501
501
  string: "{\"grant_type\":\"client_credentials\"}"
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.brightbox.dev/1.0/cloud_ips/cip-12345?account_id=acc-12345
5
+ uri: http://api.brightbox.localhost/1.0/cloud_ips/cip-12345?account_id=acc-12345
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -46,7 +46,7 @@ http_interactions:
46
46
  recorded_at: Tue, 21 Jan 2014 15:55:03 GMT
47
47
  - request:
48
48
  method: get
49
- uri: http://api.brightbox.dev/1.0/cloud_ips/cip-12345?account_id=acc-12345
49
+ uri: http://api.brightbox.localhost/1.0/cloud_ips/cip-12345?account_id=acc-12345
50
50
  body:
51
51
  encoding: US-ASCII
52
52
  string: ''
@@ -90,7 +90,7 @@ http_interactions:
90
90
  recorded_at: Tue, 21 Jan 2014 15:55:03 GMT
91
91
  - request:
92
92
  method: get
93
- uri: http://api.brightbox.dev/1.0/cloud_ips/cip-12345?account_id=acc-12345
93
+ uri: http://api.brightbox.localhost/1.0/cloud_ips/cip-12345?account_id=acc-12345
94
94
  body:
95
95
  encoding: US-ASCII
96
96
  string: ''
@@ -134,7 +134,7 @@ http_interactions:
134
134
  recorded_at: Tue, 21 Jan 2014 15:55:04 GMT
135
135
  - request:
136
136
  method: get
137
- uri: http://api.brightbox.dev/1.0/cloud_ips/cip-12345?account_id=acc-12345
137
+ uri: http://api.brightbox.localhost/1.0/cloud_ips/cip-12345?account_id=acc-12345
138
138
  body:
139
139
  encoding: US-ASCII
140
140
  string: ''
@@ -178,7 +178,7 @@ http_interactions:
178
178
  recorded_at: Tue, 21 Jan 2014 15:55:06 GMT
179
179
  - request:
180
180
  method: post
181
- uri: http://api.brightbox.dev/token
181
+ uri: http://api.brightbox.localhost/token
182
182
  body:
183
183
  encoding: UTF-8
184
184
  string: "{\"grant_type\":\"client_credentials\"}"
@@ -224,7 +224,7 @@ http_interactions:
224
224
  recorded_at: Tue, 18 Feb 2014 15:58:22 GMT
225
225
  - request:
226
226
  method: post
227
- uri: http://api.brightbox.dev/token
227
+ uri: http://api.brightbox.localhost/token
228
228
  body:
229
229
  encoding: UTF-8
230
230
  string: "{\"grant_type\":\"client_credentials\"}"
@@ -270,7 +270,7 @@ http_interactions:
270
270
  recorded_at: Tue, 18 Feb 2014 15:58:23 GMT
271
271
  - request:
272
272
  method: post
273
- uri: http://api.brightbox.dev/token
273
+ uri: http://api.brightbox.localhost/token
274
274
  body:
275
275
  encoding: UTF-8
276
276
  string: "{\"grant_type\":\"client_credentials\"}"