brightbox-cli 3.3.0 → 4.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitattributes +1 -0
- data/.github/workflows/ruby.yml +1 -1
- data/.gitignore +1 -1
- data/.rubocop.yml +70 -0
- data/CHANGELOG.md +60 -0
- data/Gemfile.lock +74 -45
- data/Jenkinsfile +12 -32
- data/README +23 -32
- data/README.rdoc +1 -1
- data/brightbox-cli.gemspec +21 -34
- data/lib/brightbox-cli/accounts.rb +9 -11
- data/lib/brightbox-cli/api.rb +38 -36
- data/lib/brightbox-cli/cloud_ips.rb +8 -8
- data/lib/brightbox-cli/collaborating_account.rb +5 -5
- data/lib/brightbox-cli/collaboration.rb +1 -1
- data/lib/brightbox-cli/commands/accounts/{accept-invite.rb → accept_invite.rb} +2 -6
- data/lib/brightbox-cli/commands/accounts/default.rb +1 -2
- data/lib/brightbox-cli/commands/accounts/list.rb +6 -8
- data/lib/brightbox-cli/commands/accounts/remove.rb +2 -6
- data/lib/brightbox-cli/commands/accounts/{reset-ftp-password.rb → reset_ftp_password.rb} +6 -9
- data/lib/brightbox-cli/commands/accounts/show.rb +10 -13
- data/lib/brightbox-cli/commands/cloudips/create.rb +2 -5
- data/lib/brightbox-cli/commands/cloudips/destroy.rb +10 -14
- data/lib/brightbox-cli/commands/cloudips/list.rb +0 -2
- data/lib/brightbox-cli/commands/cloudips/map.rb +10 -13
- data/lib/brightbox-cli/commands/cloudips/show.rb +11 -14
- data/lib/brightbox-cli/commands/cloudips/unmap.rb +2 -4
- data/lib/brightbox-cli/commands/cloudips/update.rb +2 -4
- data/lib/brightbox-cli/commands/collaborations.rb +2 -3
- data/lib/brightbox-cli/commands/config/{client-add.rb → client_add.rb} +0 -3
- data/lib/brightbox-cli/commands/config/client_default.rb +18 -0
- data/lib/brightbox-cli/commands/config/{client-list.rb → client_list.rb} +1 -4
- data/lib/brightbox-cli/commands/config/{client-remove.rb → client_remove.rb} +0 -3
- data/lib/brightbox-cli/commands/config/{user-add.rb → user_add.rb} +1 -4
- data/lib/brightbox-cli/commands/firewall/{policies-apply.rb → policies_apply.rb} +2 -2
- data/lib/brightbox-cli/commands/firewall/{policies-create.rb → policies_create.rb} +2 -4
- data/lib/brightbox-cli/commands/firewall/{policies-destroy.rb → policies_destroy.rb} +0 -3
- data/lib/brightbox-cli/commands/firewall/{policies-list.rb → policies_list.rb} +0 -2
- data/lib/brightbox-cli/commands/firewall/{policies-remove.rb → policies_remove.rb} +2 -2
- data/lib/brightbox-cli/commands/firewall/{policies-show.rb → policies_show.rb} +6 -8
- data/lib/brightbox-cli/commands/firewall/{policies-update.rb → policies_update.rb} +2 -4
- data/lib/brightbox-cli/commands/firewall/{rules-create.rb → rules_create.rb} +6 -8
- data/lib/brightbox-cli/commands/firewall/{rules-destroy.rb → rules_destroy.rb} +0 -2
- data/lib/brightbox-cli/commands/firewall/{rules-list.rb → rules_list.rb} +0 -2
- data/lib/brightbox-cli/commands/firewall/{rules-show.rb → rules_show.rb} +7 -9
- data/lib/brightbox-cli/commands/firewall/{rules-update.rb → rules_update.rb} +7 -8
- data/lib/brightbox-cli/commands/groups/{add-server.rb → add_server.rb} +0 -2
- data/lib/brightbox-cli/commands/groups/create.rb +2 -3
- data/lib/brightbox-cli/commands/groups/destroy.rb +0 -2
- data/lib/brightbox-cli/commands/groups/list.rb +0 -1
- data/lib/brightbox-cli/commands/groups/move_servers.rb +2 -3
- data/lib/brightbox-cli/commands/groups/{remove-servers.rb → remove_servers.rb} +2 -4
- data/lib/brightbox-cli/commands/groups/show.rb +0 -2
- data/lib/brightbox-cli/commands/groups/update.rb +2 -3
- data/lib/brightbox-cli/commands/images/destroy.rb +0 -4
- data/lib/brightbox-cli/commands/images/list.rb +3 -5
- data/lib/brightbox-cli/commands/images/register.rb +9 -17
- data/lib/brightbox-cli/commands/images/show.rb +19 -20
- data/lib/brightbox-cli/commands/images/update.rb +12 -8
- data/lib/brightbox-cli/commands/lbs/{add-nodes.rb → add_nodes.rb} +0 -3
- data/lib/brightbox-cli/commands/lbs/create.rb +5 -7
- data/lib/brightbox-cli/commands/lbs/destroy.rb +0 -3
- data/lib/brightbox-cli/commands/lbs/list.rb +0 -1
- data/lib/brightbox-cli/commands/lbs/{remove-nodes.rb → remove_nodes.rb} +0 -3
- data/lib/brightbox-cli/commands/lbs/show.rb +20 -22
- data/lib/brightbox-cli/commands/lbs/update.rb +6 -9
- data/lib/brightbox-cli/commands/login.rb +13 -12
- data/lib/brightbox-cli/commands/servers/{activate-console.rb → activate_console.rb} +2 -5
- data/lib/brightbox-cli/commands/servers/create.rb +32 -26
- data/lib/brightbox-cli/commands/servers/destroy.rb +0 -3
- data/lib/brightbox-cli/commands/servers/list.rb +4 -5
- data/lib/brightbox-cli/commands/servers/show.rb +0 -2
- data/lib/brightbox-cli/commands/servers/shutdown.rb +0 -3
- data/lib/brightbox-cli/commands/servers/snapshot.rb +0 -4
- data/lib/brightbox-cli/commands/servers/start.rb +0 -4
- data/lib/brightbox-cli/commands/servers/stop.rb +0 -3
- data/lib/brightbox-cli/commands/servers/update.rb +5 -5
- data/lib/brightbox-cli/commands/sql/instances_create.rb +3 -6
- data/lib/brightbox-cli/commands/sql/instances_destroy.rb +0 -2
- data/lib/brightbox-cli/commands/sql/instances_list.rb +7 -9
- data/lib/brightbox-cli/commands/sql/instances_reset_password.rb +0 -1
- data/lib/brightbox-cli/commands/sql/instances_show.rb +0 -3
- data/lib/brightbox-cli/commands/sql/instances_snapshot.rb +0 -3
- data/lib/brightbox-cli/commands/sql/instances_update.rb +1 -3
- data/lib/brightbox-cli/commands/sql/snapshots_destroy.rb +0 -3
- data/lib/brightbox-cli/commands/sql/snapshots_list.rb +7 -9
- data/lib/brightbox-cli/commands/sql/snapshots_show.rb +12 -15
- data/lib/brightbox-cli/commands/sql/snapshots_update.rb +1 -3
- data/lib/brightbox-cli/commands/sql/types.rb +8 -15
- data/lib/brightbox-cli/commands/token.rb +0 -1
- data/lib/brightbox-cli/commands/types.rb +8 -14
- data/lib/brightbox-cli/commands/{user-collaborations.rb → user_collaborations.rb} +7 -8
- data/lib/brightbox-cli/commands/users/list.rb +0 -2
- data/lib/brightbox-cli/commands/users/show.rb +1 -3
- data/lib/brightbox-cli/commands/users/update.rb +3 -6
- data/lib/brightbox-cli/commands/zones.rb +7 -10
- data/lib/brightbox-cli/config/accounts.rb +18 -26
- data/lib/brightbox-cli/config/api_client.rb +12 -16
- data/lib/brightbox-cli/config/authentication_tokens.rb +39 -42
- data/lib/brightbox-cli/config/cache.rb +1 -0
- data/lib/brightbox-cli/config/clients.rb +8 -8
- data/lib/brightbox-cli/config/gpg_encrypted_passwords.rb +6 -8
- data/lib/brightbox-cli/config/password_helper.rb +33 -8
- data/lib/brightbox-cli/config/sections.rb +45 -29
- data/lib/brightbox-cli/config/two_factor_auth.rb +12 -14
- data/lib/brightbox-cli/config/two_factor_helper.rb +5 -7
- data/lib/brightbox-cli/config/user_application.rb +18 -18
- data/lib/brightbox-cli/config.rb +26 -23
- data/lib/brightbox-cli/connection_manager.rb +4 -2
- data/lib/brightbox-cli/database_server.rb +28 -29
- data/lib/brightbox-cli/database_snapshot.rb +1 -1
- data/lib/brightbox-cli/database_type.rb +6 -6
- data/lib/brightbox-cli/detailed_server.rb +43 -43
- data/lib/brightbox-cli/detailed_server_group.rb +1 -1
- data/lib/brightbox-cli/error_parser.rb +9 -9
- data/lib/brightbox-cli/firewall_policy.rb +2 -1
- data/lib/brightbox-cli/firewall_rule.rb +3 -3
- data/lib/brightbox-cli/firewall_rules.rb +3 -3
- data/lib/brightbox-cli/gli_global_hooks.rb +25 -27
- data/lib/brightbox-cli/images.rb +14 -12
- data/lib/brightbox-cli/load_balancers.rb +3 -6
- data/lib/brightbox-cli/logging.rb +14 -14
- data/lib/brightbox-cli/nilable_hash.rb +1 -1
- data/lib/brightbox-cli/ruby_core_ext.rb +3 -3
- data/lib/brightbox-cli/server_groups.rb +2 -2
- data/lib/brightbox-cli/servers.rb +6 -6
- data/lib/brightbox-cli/tables.rb +13 -15
- data/lib/brightbox-cli/types.rb +6 -6
- data/lib/brightbox-cli/user_collaboration.rb +5 -7
- data/lib/brightbox-cli/users.rb +1 -1
- data/lib/brightbox-cli/version.rb +1 -1
- data/lib/brightbox-cli/zones.rb +1 -1
- data/lib/brightbox_cli.rb +33 -33
- data/locales/en.yml +2 -0
- data/spec/brightbox_spec.rb +0 -1
- data/spec/cassettes/Brightbox_Account/_all/when_connected_using_an_application/returns_a_collection_of_Accounts.yml +5 -5
- data/spec/cassettes/Brightbox_Account/_all/when_connected_using_an_application/returns_resources_on_the_same_connection.yml +2 -2
- data/spec/cassettes/Brightbox_Account/_all/when_connected_using_an_client/returns_a_collection_of_Accounts.yml +4 -4
- data/spec/cassettes/Brightbox_Account/_all/when_connected_using_an_client/returns_resources_on_the_same_connection.yml +2 -2
- data/spec/cassettes/Brightbox_BBConfig/_add_section/when_config_exists_and_overwrite_duplicates_is_false/does_not_update_the_config_file.yml +12 -12
- data/spec/cassettes/Brightbox_BBConfig/_add_section/when_config_exists_and_overwrite_duplicates_is_true/does_not_update_the_config_file.yml +12 -12
- data/spec/cassettes/Brightbox_BBConfig/_add_section/when_first_and_only_client/saves_changes_to_the_config_file.yml +2 -2
- data/spec/cassettes/Brightbox_BBConfig/_add_section/when_first_and_only_client/saves_the_default_account.yml +2 -2
- data/spec/cassettes/Brightbox_BBConfig/_add_section/when_first_and_only_client/saves_the_new_client_as_the_default.yml +2 -2
- data/spec/cassettes/Brightbox_BBConfig/_find_or_set_default_account/when_client_is_not_authenticated/does_not_raise_an_error.yml +8 -8
- data/spec/cassettes/Brightbox_BBConfig/_find_or_set_default_account/when_client_may_access_one_account/updates_the_setting.yml +8 -8
- data/spec/cassettes/Brightbox_BBConfig/_renew_tokens/when_config_in_use_is_not_the_default/uses_correct_credentials.yml +1 -1
- data/spec/cassettes/Brightbox_BBConfig/_renew_tokens/when_using_a_user_app_with_a_cached_refresh_token/caches_the_new_tokens.yml +1 -1
- data/spec/cassettes/Brightbox_BBConfig/_renew_tokens/when_using_a_user_app_with_an_expired_refresh_token/caches_the_new_tokens.yml +2 -2
- data/spec/cassettes/Brightbox_BBConfig/_renew_tokens/when_using_a_user_app_with_no_tokens/caches_the_new_tokens.yml +1 -1
- data/spec/cassettes/Brightbox_BBConfig/_renew_tokens/when_using_a_user_app_with_no_tokens/prompts_user_to_retry_command.yml +1 -1
- data/spec/cassettes/Brightbox_BBConfig/_renew_tokens/when_using_an_API_client_with_no_tokens/caches_a_new_access_token.yml +1 -1
- data/spec/cassettes/Brightbox_BBConfig_add_login/when_altering_a_custom_option/does_not_alter_the_configuration.yml +6 -6
- data/spec/cassettes/Brightbox_BBConfig_add_login/when_altering_a_custom_option/updates_access_token.yml +6 -6
- data/spec/cassettes/Brightbox_BBConfig_add_login/when_altering_a_custom_option/updates_refresh_token.yml +6 -6
- data/spec/cassettes/Brightbox_BBConfig_add_login/when_configured_with_custom_options/does_not_alter_the_configuration.yml +6 -6
- data/spec/cassettes/Brightbox_BBConfig_add_login/when_configured_with_custom_options/updates_access_token.yml +6 -6
- data/spec/cassettes/Brightbox_BBConfig_add_login/when_configured_with_custom_options/updates_refresh_token.yml +6 -6
- data/spec/cassettes/Brightbox_BBConfig_add_login/when_logged_in_previously/does_not_alter_the_configuration.yml +9 -9
- data/spec/cassettes/Brightbox_BBConfig_add_login/when_logged_in_previously/updates_access_token.yml +9 -9
- data/spec/cassettes/Brightbox_BBConfig_add_login/when_logged_in_previously/updates_refresh_token.yml +9 -9
- data/spec/cassettes/Brightbox_BBConfig_add_login/when_no_config_exists/creates_the_configuration.yml +6 -6
- data/spec/cassettes/Brightbox_BBConfig_add_login/when_no_config_exists/refreshed_tokens.yml +6 -6
- data/spec/cassettes/Brightbox_BBConfig_add_login/when_using_an_email_and_suffix/creates_the_configuration.yml +6 -6
- data/spec/cassettes/Brightbox_BBConfig_add_login/when_using_an_email_and_suffix/refreshed_tokens.yml +6 -6
- data/spec/cassettes/Brightbox_CloudIP/_find_all_/when_a_Cloud_IP_exists/returns_a_suitable.yml +15 -15
- data/spec/cassettes/Brightbox_FirewallPolicy/_apply_to/should_apply_firewall_policy.yml +14 -14
- data/spec/cassettes/Brightbox_FirewallPolicy/_create/should_create_firewall_policy.yml +14 -14
- data/spec/cassettes/Brightbox_FirewallPolicy/_destroy/should_destroy_firewall_policy.yml +16 -16
- data/spec/cassettes/Brightbox_FirewallPolicy/_find_all_/when_a_policy_exists/should_list_firewall_policy.yml +13 -13
- data/spec/cassettes/Brightbox_FirewallPolicy/_find_or_call/when_a_policy_exists/should_show_firewall_policy.yml +11 -11
- data/spec/cassettes/Brightbox_FirewallRule/_create/when_policy_exists/creates_the_rule_successfully.yml +14 -14
- data/spec/cassettes/Brightbox_FirewallRule/_destroy/when_rule_exists/destroys_a_rule.yml +12 -12
- data/spec/cassettes/Brightbox_FirewallRule/_find/when_rule_exists/can_display_the_result.yml +14 -14
- data/spec/cassettes/Brightbox_FirewallRule/_from_policy/when_policy_exists_with_a_rule/lists_all_rules.yml +19 -19
- data/spec/cassettes/Brightbox_Server/_destroy/when_server_exists/should_work.yml +12 -12
- data/spec/cassettes/Brightbox_Server/_find_all_/when_a_server_exists/should_print_server_list.yml +15 -15
- data/spec/cassettes/Brightbox_Server/_show/when_server_exists/shows_detailed_attributes_of_a_server.yml +18 -18
- data/spec/cassettes/Brightbox_Server/_shutdown/should_work.yml +18 -18
- data/spec/cassettes/Brightbox_Server/_start/should_work.yml +24 -24
- data/spec/cassettes/Brightbox_Server/_stop/should_work.yml +18 -18
- data/spec/cassettes/Brightbox_Server/_update/when_passing_new_group_membership/should_update_with_group.yml +22 -22
- data/spec/cassettes/Brightbox_ServerGroup/_find_all_/when_a_group_exists/list_server_groups.yml +13 -13
- data/spec/cassettes/Firewall_policies/update/when_the_policy_does_not_exist/prints_error_to_STDERR.yml +3 -3
- data/spec/cassettes/brightbox_accounts/list/_when_access_token_expired_/does_not_report_invalid_token_errors.yml +30 -30
- data/spec/cassettes/brightbox_accounts/list/_when_both_tokens_expired_/does_not_report_invalid_token_errors.yml +9 -9
- data/spec/cassettes/brightbox_accounts/list/_when_invalid_tokens_/does_not_report_invalid_token_errors.yml +9 -9
- data/spec/cassettes/brightbox_accounts/list/_when_no_tokens_/does_not_report_invalid_token_errors.yml +27 -27
- data/spec/cassettes/brightbox_accounts/list/_when_no_tokens_/reports_they_were_updated.yml +7 -7
- data/spec/cassettes/brightbox_accounts/list/_when_no_tokens_and_password_incorrect_/does_not_report_invalid_token_errors.yml +7 -7
- data/spec/cassettes/brightbox_accounts/list/_when_no_tokens_and_password_incorrect_/reports_unable_to_authenticate.yml +6 -6
- data/spec/cassettes/brightbox_accounts/list/does_not_error.yml +3 -3
- data/spec/cassettes/brightbox_cloudips/map/when_destination_is_a_server_ID/passes_the_interface_identifier_to_the_API.yml +12 -12
- data/spec/cassettes/brightbox_cloudips/map/when_destination_is_another_value/passes_the_identifier_to_the_API.yml +7 -7
- data/spec/cassettes/brightbox_config/client_add/when_adding_a_new_client/does_not_error.yml +7 -7
- data/spec/cassettes/brightbox_config/client_add/when_adding_a_new_client/sets_up_the_config.yml +7 -7
- data/spec/cassettes/brightbox_config/client_add/when_new_client_is_first_and_only_client/does_not_change_the_default_client.yml +7 -7
- data/spec/cassettes/brightbox_config/client_add/when_new_client_is_first_and_only_client/does_not_error.yml +7 -7
- data/spec/cassettes/brightbox_config/client_add/when_new_client_is_first_and_only_client/sets_this_as_the_default_client.yml +7 -7
- data/spec/cassettes/brightbox_config/client_add/when_new_client_is_first_and_only_client/sets_up_the_config.yml +7 -7
- data/spec/cassettes/brightbox_config/user_add/when_NO_config_file_on_disk/sets_up_the_config.yml +5 -5
- data/spec/cassettes/brightbox_config/user_add/when_a_default_client_is_already_set/does_not_change_the_default_client.yml +2 -2
- data/spec/cassettes/brightbox_config/user_add/when_application_details_in_config/does_not_error.yml +2 -2
- data/spec/cassettes/brightbox_config/user_add/when_application_details_in_config/sets_up_the_config.yml +2 -2
- data/spec/cassettes/brightbox_config/user_add/when_application_has_access_only_one_active_account/display_an_warning_about_preselected_default.yml +2 -2
- data/spec/cassettes/brightbox_config/user_add/when_application_has_access_only_one_active_account/does_not_error.yml +2 -2
- 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
- data/spec/cassettes/brightbox_config/user_add/when_application_has_access_only_one_active_account/sets_up_the_config.yml +2 -2
- data/spec/cassettes/brightbox_config/user_add/when_application_has_access_to_multiple_accounts/display_an_warning_about_preselected_default.yml +2 -2
- data/spec/cassettes/brightbox_config/user_add/when_application_has_access_to_multiple_accounts/does_not_error.yml +2 -2
- data/spec/cassettes/brightbox_config/user_add/when_application_has_access_to_multiple_accounts/sets_up_the_config.yml +2 -2
- data/spec/cassettes/brightbox_config/user_add/when_new_client_is_first_and_only_client/does_not_error.yml +2 -2
- 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
- data/spec/cassettes/brightbox_config/user_add/when_new_client_is_first_and_only_client/requests_access_tokens.yml +2 -2
- data/spec/cassettes/brightbox_config/user_add/when_new_client_is_first_and_only_client/sets_this_as_the_default_client.yml +2 -2
- data/spec/cassettes/brightbox_config/user_add/when_new_client_is_first_and_only_client/sets_up_the_config.yml +5 -5
- data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments/does_not_error.yml +2 -2
- data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments/does_not_prompt_to_rerun_the_command.yml +2 -2
- data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments/requests_access_tokens.yml +2 -2
- data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments/sets_up_the_config.yml +3 -3
- data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments_and_api_url/does_not_error.yml +2 -2
- data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments_and_api_url/requests_access_tokens.yml +2 -2
- data/spec/cassettes/brightbox_config/user_add/when_passing_in_required_arguments_and_api_url/sets_up_the_config.yml +2 -2
- data/spec/cassettes/brightbox_login/when_alternative_client_credentials_are_given/does_not_error.yml +6 -6
- data/spec/cassettes/brightbox_login/when_alternative_client_credentials_are_given/does_not_prompt_to_rerun_the_command.yml +6 -6
- data/spec/cassettes/brightbox_login/when_alternative_client_credentials_are_given/prompts_for_the_password.yml +6 -6
- data/spec/cassettes/brightbox_login/when_alternative_client_credentials_are_given/requests_access_tokens.yml +6 -6
- data/spec/cassettes/brightbox_login/when_alternative_client_credentials_are_given/sets_up_the_config.yml +6 -6
- data/spec/cassettes/brightbox_login/when_custom_api/auth_URLs_are_given/does_not_error.yml +6 -6
- data/spec/cassettes/brightbox_login/when_custom_api/auth_URLs_are_given/does_not_prompt_to_rerun_the_command.yml +6 -6
- data/spec/cassettes/brightbox_login/when_custom_api/auth_URLs_are_given/prompts_for_the_password.yml +6 -6
- data/spec/cassettes/brightbox_login/when_custom_api/auth_URLs_are_given/requests_access_tokens.yml +6 -6
- data/spec/cassettes/brightbox_login/when_custom_api/auth_URLs_are_given/sets_up_the_config.yml +6 -6
- data/spec/cassettes/brightbox_login/when_default_account_is_passed/does_not_error.yml +3 -3
- data/spec/cassettes/brightbox_login/when_default_account_is_passed/does_not_prompt_to_rerun_the_command.yml +3 -3
- data/spec/cassettes/brightbox_login/when_default_account_is_passed/prompts_for_the_password.yml +3 -3
- data/spec/cassettes/brightbox_login/when_default_account_is_passed/requests_access_tokens.yml +3 -3
- data/spec/cassettes/brightbox_login/when_default_account_is_passed/sets_up_the_config.yml +3 -3
- data/spec/cassettes/brightbox_login/when_no_config_is_present/does_not_error.yml +6 -6
- data/spec/cassettes/brightbox_login/when_no_config_is_present/does_not_prompt_to_rerun_the_command.yml +6 -6
- data/spec/cassettes/brightbox_login/when_no_config_is_present/requests_access_tokens.yml +6 -6
- data/spec/cassettes/brightbox_login/when_no_config_is_present/sets_up_the_config.yml +6 -6
- data/spec/cassettes/brightbox_login/when_no_password_is_given/does_not_error.yml +6 -6
- data/spec/cassettes/brightbox_login/when_no_password_is_given/does_not_prompt_to_rerun_the_command.yml +6 -6
- data/spec/cassettes/brightbox_login/when_no_password_is_given/prompts_for_the_password.yml +6 -6
- data/spec/cassettes/brightbox_login/when_no_password_is_given/requests_access_tokens.yml +6 -6
- data/spec/cassettes/brightbox_login/when_no_password_is_given/sets_up_the_config.yml +6 -6
- data/spec/cassettes/brightbox_sql_instances/create/--allow-access_10_0_0_0/correctly_sends_API_parameters.yml +313 -26
- data/spec/cassettes/brightbox_sql_instances/create/--allow-access_srv-12345_grp-12345/correctly_sends_API_parameters.yml +1204 -38
- data/spec/cassettes/brightbox_sql_instances/create/--engine_mysql/correctly_sends_API_parameters.yml +596 -26
- data/spec/cassettes/brightbox_sql_instances/create/--engine_mysql_--engine-version_5_6/correctly_sends_API_parameters.yml +63 -9
- data/spec/cassettes/brightbox_sql_instances/create/--engine_mysql_--engine-version_8_0/correctly_sends_API_parameters.yml +393 -0
- data/spec/cassettes/brightbox_sql_instances/create/--maintenance-weekday_5_--maintenance_hour_11/correctly_sends_API_parameters.yml +393 -0
- data/spec/cassettes/brightbox_sql_instances/create/--maintenance-weekday_thursday/correctly_sends_API_parameters.yml +393 -0
- data/spec/cassettes/brightbox_sql_instances/create/--snapshot_dbi-12345/includes_schedule_fields_in_response.yml +1466 -0
- data/spec/cassettes/brightbox_sql_instances/create/--snapshots-schedule_0_12_4_/includes_schedule_fields_in_response.yml +342 -0
- data/spec/cassettes/brightbox_sql_instances/create/without_arguments/reports_the_new_admin_password.yml +541 -26
- data/spec/cassettes/brightbox_sql_instances/create/without_arguments/reports_the_new_admin_username.yml +484 -26
- data/spec/cassettes/brightbox_sql_instances/snapshot/when_database_server_active/correctly_sends_API_parameters.yml +4 -4
- data/spec/cassettes/brightbox_sql_instances/snapshot/when_database_server_can_not_be_snapshotted/reports_an_error_to_the_user.yml +2 -2
- data/spec/cassettes/brightbox_sql_snapshots/list/when_resources_are_available/does_not_output_to_stderr.yml +2 -2
- data/spec/cassettes/brightbox_sql_snapshots/list/when_resources_are_available/outputs_table_details_to_stdout.yml +2 -2
- data/spec/cassettes/brightbox_sql_snapshots/show/when_resource_exists/does_not_output_to_stderr.yml +2 -2
- data/spec/commands/accounts/default_spec.rb +1 -2
- data/spec/commands/accounts/list_spec.rb +7 -8
- data/spec/commands/accounts/reset_ftp_password_spec.rb +1 -2
- data/spec/commands/accounts/show_spec.rb +1 -2
- data/spec/commands/cloudips/create_spec.rb +1 -2
- data/spec/commands/cloudips/destroy_spec.rb +1 -2
- data/spec/commands/cloudips/list_spec.rb +1 -2
- data/spec/commands/cloudips/map_spec.rb +2 -3
- data/spec/commands/cloudips/show_spec.rb +1 -2
- data/spec/commands/cloudips/unmap_spec.rb +1 -2
- data/spec/commands/cloudips/update_spec.rb +7 -8
- data/spec/commands/config/client_add_spec.rb +2 -3
- data/spec/commands/config/client_default_spec.rb +1 -2
- data/spec/commands/config/client_list_spec.rb +1 -2
- data/spec/commands/config/client_remove_spec.rb +1 -2
- data/spec/commands/config/user_add_spec.rb +3 -4
- data/spec/commands/firewall_policies/update_spec.rb +3 -3
- data/spec/commands/groups/add_server_spec.rb +1 -2
- data/spec/commands/groups/create_spec.rb +1 -2
- data/spec/commands/groups/destroy_spec.rb +1 -2
- data/spec/commands/groups/list_spec.rb +1 -2
- data/spec/commands/groups/move_servers_spec.rb +1 -2
- data/spec/commands/groups/remove_servers_spec.rb +1 -2
- data/spec/commands/groups/show_spec.rb +1 -2
- data/spec/commands/groups/update_spec.rb +1 -2
- data/spec/commands/images/destroy_spec.rb +1 -2
- data/spec/commands/images/list_spec.rb +62 -63
- data/spec/commands/images/locking_spec.rb +4 -4
- data/spec/commands/images/register_spec.rb +89 -3
- data/spec/commands/images/show_spec.rb +56 -4
- data/spec/commands/images/update_spec.rb +53 -3
- data/spec/commands/lbs/add_nodes_spec.rb +1 -2
- data/spec/commands/lbs/create_spec.rb +2 -3
- data/spec/commands/lbs/destroy_spec.rb +1 -2
- data/spec/commands/lbs/list_spec.rb +1 -2
- data/spec/commands/lbs/locking_spec.rb +4 -4
- data/spec/commands/lbs/remove_nodes_spec.rb +1 -2
- data/spec/commands/lbs/show_spec.rb +1 -2
- data/spec/commands/lbs/update_spec.rb +3 -4
- data/spec/commands/login_spec.rb +134 -30
- data/spec/commands/policies/apply_spec.rb +1 -2
- data/spec/commands/policies/create_spec.rb +1 -2
- data/spec/commands/policies/destroy_spec.rb +1 -2
- data/spec/commands/policies/list_spec.rb +1 -2
- data/spec/commands/policies/remove_spec.rb +1 -2
- data/spec/commands/policies/show_spec.rb +1 -2
- data/spec/commands/policies/update_spec.rb +1 -2
- data/spec/commands/rules/create_spec.rb +1 -2
- data/spec/commands/rules/destroy_spec.rb +1 -2
- data/spec/commands/rules/list_spec.rb +1 -2
- data/spec/commands/rules/show_spec.rb +1 -2
- data/spec/commands/rules/update_spec.rb +1 -2
- data/spec/commands/servers/activate_console_spec.rb +1 -2
- data/spec/commands/servers/create_spec.rb +112 -10
- data/spec/commands/servers/destroy_spec.rb +1 -2
- data/spec/commands/servers/list_spec.rb +1 -2
- data/spec/commands/servers/locking_spec.rb +4 -4
- data/spec/commands/servers/reboot_spec.rb +3 -4
- data/spec/commands/servers/reset_spec.rb +3 -4
- data/spec/commands/servers/show_spec.rb +1 -2
- data/spec/commands/servers/shutdown_spec.rb +1 -2
- data/spec/commands/servers/snapshot_spec.rb +1 -2
- data/spec/commands/servers/start_spec.rb +1 -2
- data/spec/commands/servers/stop_spec.rb +1 -2
- data/spec/commands/servers/update_spec.rb +1 -2
- data/spec/commands/sql/instances/create_spec.rb +58 -75
- data/spec/commands/sql/instances/locking_spec.rb +4 -4
- data/spec/commands/sql/instances/show_spec.rb +7 -7
- data/spec/commands/sql/instances/snapshot_spec.rb +2 -2
- data/spec/commands/sql/instances/update_spec.rb +8 -8
- data/spec/commands/sql/snapshots/list_spec.rb +1 -1
- data/spec/commands/sql/snapshots/locking_spec.rb +4 -4
- data/spec/commands/sql/snapshots/show_spec.rb +1 -1
- data/spec/commands/sql/types/list_spec.rb +1 -2
- data/spec/commands/types/list_spec.rb +1 -2
- data/spec/commands/users/list_spec.rb +1 -2
- data/spec/commands/users/show_spec.rb +1 -2
- data/spec/commands/users/update_spec.rb +1 -2
- data/spec/commands/zones/list_spec.rb +1 -2
- data/spec/configs/api_client.ini +1 -1
- data/spec/configs/user_app.ini +2 -2
- data/spec/spec_helper.rb +16 -3
- data/spec/support/authentication_helpers.rb +98 -0
- data/spec/support/config_helpers.rb +2 -4
- data/spec/support/password_prompt_helpers.rb +22 -1
- data/spec/support/server_helper.rb +5 -5
- data/spec/support/tmp_config.rb +1 -1
- data/spec/support/token_helpers.rb +2 -2
- data/spec/support/vcr.rb +3 -22
- data/spec/unit/brightbox/api/created_on_spec.rb +2 -2
- data/spec/unit/brightbox/api/fog_model_spec.rb +13 -13
- data/spec/unit/brightbox/api/klass_name_spec.rb +0 -1
- data/spec/unit/brightbox/api/method_missing_spec.rb +64 -0
- data/spec/unit/brightbox/api/require_account_spec.rb +0 -1
- data/spec/unit/brightbox/api/respond_to_spec.rb +71 -0
- data/spec/unit/brightbox/bb_config/access_token_filename_spec.rb +0 -1
- data/spec/unit/brightbox/bb_config/account_spec.rb +0 -1
- data/spec/unit/brightbox/bb_config/add_login_spec.rb +27 -28
- data/spec/unit/brightbox/bb_config/add_section_spec.rb +1 -2
- data/spec/unit/brightbox/bb_config/clear_default_client_spec.rb +0 -1
- data/spec/unit/brightbox/bb_config/client_id_spec.rb +0 -1
- data/spec/unit/brightbox/bb_config/client_name_spec.rb +0 -1
- data/spec/unit/brightbox/bb_config/config_directory_exists_spec.rb +0 -1
- data/spec/unit/brightbox/bb_config/config_directory_spec.rb +0 -1
- data/spec/unit/brightbox/bb_config/config_spec.rb +2 -3
- data/spec/unit/brightbox/bb_config/default_account_spec.rb +0 -1
- data/spec/unit/brightbox/bb_config/default_client_spec.rb +0 -1
- data/spec/unit/brightbox/bb_config/delete_section_spec.rb +0 -1
- data/spec/unit/brightbox/bb_config/find_or_set_default_account_spec.rb +4 -4
- data/spec/unit/brightbox/bb_config/refresh_token_filename_spec.rb +0 -1
- data/spec/unit/brightbox/bb_config/renew_tokens_spec.rb +3 -4
- data/spec/unit/brightbox/bb_config/save_default_account_spec.rb +0 -1
- data/spec/unit/brightbox/bb_config/save_spec.rb +0 -1
- data/spec/unit/brightbox/bb_config/section_names_spec.rb +1 -1
- data/spec/unit/brightbox/bb_config/to_fog_spec.rb +2 -2
- data/spec/unit/brightbox/collaborating_account/to_row_spec.rb +3 -3
- data/spec/unit/brightbox/config/api_client/to_fog_spec.rb +8 -8
- data/spec/unit/brightbox/config/api_client/valid_spec.rb +4 -4
- data/spec/unit/brightbox/config/discover_two_factor_pin_spec.rb +87 -0
- data/spec/unit/brightbox/config/section_name_deduplicator_spec.rb +1 -1
- data/spec/unit/brightbox/config/user_application/to_fog_spec.rb +10 -10
- data/spec/unit/brightbox/config/user_application/valid_spec.rb +3 -3
- data/spec/unit/brightbox/connection_manager/fetch_connection_spec.rb +1 -1
- data/spec/unit/brightbox/database_server/clean_arguments_spec.rb +1 -2
- data/spec/unit/brightbox/database_server/maintenance_window_spec.rb +0 -1
- data/spec/unit/brightbox/error_parser/pretty_print_spec.rb +0 -1
- data/spec/unit/brightbox/firewall_policy/apply_to_spec.rb +0 -1
- data/spec/unit/brightbox/firewall_policy/create_spec.rb +0 -1
- data/spec/unit/brightbox/firewall_policy/find_or_call_spec.rb +0 -1
- data/spec/unit/brightbox/firewall_policy/find_spec.rb +0 -1
- data/spec/unit/brightbox/firewall_rule/find_spec.rb +9 -9
- data/spec/unit/brightbox/firewall_rule/from_policy_spec.rb +4 -4
- data/spec/unit/brightbox/legacy/args_adjuster_spec.rb +20 -21
- data/spec/unit/brightbox/server/create_spec.rb +1 -2
- data/spec/unit/brightbox/server/start_spec.rb +2 -2
- data/spec/unit/brightbox/server/update_spec.rb +0 -1
- data/spec/unit/brightbox/user_collaboration/remove_spec.rb +0 -1
- data/spec/unit/nilable_hash_spec.rb +5 -5
- data/spec/unit/ruby_core_ext_spec.rb +3 -4
- data/spec/unit/temporary_home_spec.rb +1 -1
- data/spec/unit/tmp_config_spec.rb +0 -1
- metadata +131 -99
- data/bin/brightbox-accounts +0 -13
- data/bin/brightbox-cloudips +0 -13
- data/bin/brightbox-config +0 -13
- data/bin/brightbox-firewall-policies +0 -13
- data/bin/brightbox-firewall-rules +0 -13
- data/bin/brightbox-groups +0 -13
- data/bin/brightbox-images +0 -13
- data/bin/brightbox-lbs +0 -13
- data/bin/brightbox-servers +0 -13
- data/bin/brightbox-types +0 -13
- data/bin/brightbox-users +0 -13
- data/bin/brightbox-zones +0 -13
- 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: post
|
5
|
-
uri: http://api.brightbox.
|
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: Tue, 27 Aug 2013 16:12:21 GMT
|
48
48
|
- request:
|
49
49
|
method: get
|
50
|
-
uri: http://api.brightbox.
|
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: Tue, 27 Aug 2013 16:12:21 GMT
|
93
93
|
- request:
|
94
94
|
method: post
|
95
|
-
uri: http://api.brightbox.
|
95
|
+
uri: http://api.brightbox.localhost/1.0/servers?account_id=acc-12345
|
96
96
|
body:
|
97
97
|
encoding: UTF-8
|
98
98
|
string: '{"image":"img-12345"}'
|
@@ -109,7 +109,7 @@ http_interactions:
|
|
109
109
|
message:
|
110
110
|
headers:
|
111
111
|
Location:
|
112
|
-
- http://api.brightbox.
|
112
|
+
- http://api.brightbox.localhost/1.0/servers/srv-q47f4
|
113
113
|
Content-Type:
|
114
114
|
- application/json; charset=utf-8
|
115
115
|
X-UA-Compatible:
|
@@ -132,7 +132,7 @@ http_interactions:
|
|
132
132
|
recorded_at: Tue, 27 Aug 2013 16:12:22 GMT
|
133
133
|
- request:
|
134
134
|
method: post
|
135
|
-
uri: http://api.brightbox.
|
135
|
+
uri: http://api.brightbox.localhost/1.0/server_groups?account_id=acc-12345
|
136
136
|
body:
|
137
137
|
encoding: UTF-8
|
138
138
|
string: '{"name":"test"}'
|
@@ -149,7 +149,7 @@ http_interactions:
|
|
149
149
|
message:
|
150
150
|
headers:
|
151
151
|
Location:
|
152
|
-
- http://api.brightbox.
|
152
|
+
- http://api.brightbox.localhost/1.0/server_groups/grp-pclgw
|
153
153
|
Content-Type:
|
154
154
|
- application/json; charset=utf-8
|
155
155
|
X-UA-Compatible:
|
@@ -171,7 +171,7 @@ http_interactions:
|
|
171
171
|
recorded_at: Tue, 27 Aug 2013 16:12:22 GMT
|
172
172
|
- request:
|
173
173
|
method: put
|
174
|
-
uri: http://api.brightbox.
|
174
|
+
uri: http://api.brightbox.localhost/1.0/servers/srv-12345?account_id=acc-12345
|
175
175
|
body:
|
176
176
|
encoding: UTF-8
|
177
177
|
string: '{"server_groups":["grp-12345"]}'
|
@@ -210,7 +210,7 @@ http_interactions:
|
|
210
210
|
recorded_at: Tue, 27 Aug 2013 16:12:25 GMT
|
211
211
|
- request:
|
212
212
|
method: get
|
213
|
-
uri: http://api.brightbox.
|
213
|
+
uri: http://api.brightbox.localhost/1.0/servers/srv-12345?account_id=acc-12345
|
214
214
|
body:
|
215
215
|
encoding: US-ASCII
|
216
216
|
string: ''
|
@@ -249,7 +249,7 @@ http_interactions:
|
|
249
249
|
recorded_at: Tue, 27 Aug 2013 16:12:25 GMT
|
250
250
|
- request:
|
251
251
|
method: get
|
252
|
-
uri: http://api.brightbox.
|
252
|
+
uri: http://api.brightbox.localhost/1.0/servers/srv-12345?account_id=acc-12345
|
253
253
|
body:
|
254
254
|
encoding: US-ASCII
|
255
255
|
string: ''
|
@@ -288,7 +288,7 @@ http_interactions:
|
|
288
288
|
recorded_at: Tue, 27 Aug 2013 16:12:25 GMT
|
289
289
|
- request:
|
290
290
|
method: get
|
291
|
-
uri: http://api.brightbox.
|
291
|
+
uri: http://api.brightbox.localhost/1.0/servers/srv-12345?account_id=acc-12345
|
292
292
|
body:
|
293
293
|
encoding: US-ASCII
|
294
294
|
string: ''
|
@@ -327,7 +327,7 @@ http_interactions:
|
|
327
327
|
recorded_at: Tue, 27 Aug 2013 16:12:26 GMT
|
328
328
|
- request:
|
329
329
|
method: delete
|
330
|
-
uri: http://api.brightbox.
|
330
|
+
uri: http://api.brightbox.localhost/1.0/servers/srv-12345?account_id=acc-12345
|
331
331
|
body:
|
332
332
|
encoding: US-ASCII
|
333
333
|
string: ''
|
@@ -364,7 +364,7 @@ http_interactions:
|
|
364
364
|
recorded_at: Tue, 27 Aug 2013 16:12:26 GMT
|
365
365
|
- request:
|
366
366
|
method: post
|
367
|
-
uri: http://api.brightbox.
|
367
|
+
uri: http://api.brightbox.localhost/token
|
368
368
|
body:
|
369
369
|
encoding: UTF-8
|
370
370
|
string: '{"grant_type":"client_credentials"}'
|
@@ -408,7 +408,7 @@ http_interactions:
|
|
408
408
|
recorded_at: Tue, 27 Aug 2013 17:09:49 GMT
|
409
409
|
- request:
|
410
410
|
method: post
|
411
|
-
uri: http://api.brightbox.
|
411
|
+
uri: http://api.brightbox.localhost/token
|
412
412
|
body:
|
413
413
|
encoding: UTF-8
|
414
414
|
string: '{"grant_type":"client_credentials"}'
|
@@ -452,7 +452,7 @@ http_interactions:
|
|
452
452
|
recorded_at: Tue, 27 Aug 2013 17:09:49 GMT
|
453
453
|
- request:
|
454
454
|
method: post
|
455
|
-
uri: http://api.brightbox.
|
455
|
+
uri: http://api.brightbox.localhost/token
|
456
456
|
body:
|
457
457
|
encoding: UTF-8
|
458
458
|
string: '{"grant_type":"client_credentials"}'
|
@@ -496,7 +496,7 @@ http_interactions:
|
|
496
496
|
recorded_at: Tue, 27 Aug 2013 17:09:49 GMT
|
497
497
|
- request:
|
498
498
|
method: post
|
499
|
-
uri: http://api.brightbox.
|
499
|
+
uri: http://api.brightbox.localhost/token
|
500
500
|
body:
|
501
501
|
encoding: UTF-8
|
502
502
|
string: '{"grant_type":"client_credentials"}'
|
@@ -540,7 +540,7 @@ http_interactions:
|
|
540
540
|
recorded_at: Tue, 27 Aug 2013 17:09:49 GMT
|
541
541
|
- request:
|
542
542
|
method: post
|
543
|
-
uri: http://api.brightbox.
|
543
|
+
uri: http://api.brightbox.localhost/token
|
544
544
|
body:
|
545
545
|
encoding: UTF-8
|
546
546
|
string: '{"grant_type":"client_credentials"}'
|
@@ -584,7 +584,7 @@ http_interactions:
|
|
584
584
|
recorded_at: Tue, 27 Aug 2013 17:09:49 GMT
|
585
585
|
- request:
|
586
586
|
method: post
|
587
|
-
uri: http://api.brightbox.
|
587
|
+
uri: http://api.brightbox.localhost/token
|
588
588
|
body:
|
589
589
|
encoding: UTF-8
|
590
590
|
string: '{"grant_type":"client_credentials"}'
|
@@ -628,7 +628,7 @@ http_interactions:
|
|
628
628
|
recorded_at: Tue, 27 Aug 2013 17:09:50 GMT
|
629
629
|
- request:
|
630
630
|
method: post
|
631
|
-
uri: http://api.brightbox.
|
631
|
+
uri: http://api.brightbox.localhost/token
|
632
632
|
body:
|
633
633
|
encoding: UTF-8
|
634
634
|
string: '{"grant_type":"client_credentials"}'
|
@@ -672,7 +672,7 @@ http_interactions:
|
|
672
672
|
recorded_at: Tue, 27 Aug 2013 17:09:50 GMT
|
673
673
|
- request:
|
674
674
|
method: post
|
675
|
-
uri: http://api.brightbox.
|
675
|
+
uri: http://api.brightbox.localhost/token
|
676
676
|
body:
|
677
677
|
encoding: UTF-8
|
678
678
|
string: '{"grant_type":"client_credentials"}'
|
@@ -716,7 +716,7 @@ http_interactions:
|
|
716
716
|
recorded_at: Tue, 27 Aug 2013 17:09:50 GMT
|
717
717
|
- request:
|
718
718
|
method: get
|
719
|
-
uri: http://api.brightbox.
|
719
|
+
uri: http://api.brightbox.localhost/1.0/accounts
|
720
720
|
body:
|
721
721
|
encoding: US-ASCII
|
722
722
|
string: ''
|
@@ -756,7 +756,7 @@ http_interactions:
|
|
756
756
|
recorded_at: Tue, 17 Sep 2013 17:08:08 GMT
|
757
757
|
- request:
|
758
758
|
method: post
|
759
|
-
uri: http://api.brightbox.
|
759
|
+
uri: http://api.brightbox.localhost/token
|
760
760
|
body:
|
761
761
|
encoding: UTF-8
|
762
762
|
string: '{"grant_type":"client_credentials"}'
|
@@ -801,7 +801,7 @@ http_interactions:
|
|
801
801
|
recorded_at: Tue, 17 Sep 2013 17:08:08 GMT
|
802
802
|
- request:
|
803
803
|
method: get
|
804
|
-
uri: http://api.brightbox.
|
804
|
+
uri: http://api.brightbox.localhost/1.0/accounts
|
805
805
|
body:
|
806
806
|
encoding: US-ASCII
|
807
807
|
string: ''
|
data/spec/cassettes/Brightbox_ServerGroup/_find_all_/when_a_group_exists/list_server_groups.yml
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: http://api.brightbox.
|
5
|
+
uri: http://api.brightbox.localhost/1.0/account?account_id=acc-12345
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -48,7 +48,7 @@ http_interactions:
|
|
48
48
|
recorded_at: Tue, 27 Aug 2013 16:14:19 GMT
|
49
49
|
- request:
|
50
50
|
method: post
|
51
|
-
uri: http://api.brightbox.
|
51
|
+
uri: http://api.brightbox.localhost/1.0/server_groups?account_id=acc-12345
|
52
52
|
body:
|
53
53
|
encoding: UTF-8
|
54
54
|
string: '{"name":"Test group"}'
|
@@ -65,7 +65,7 @@ http_interactions:
|
|
65
65
|
message:
|
66
66
|
headers:
|
67
67
|
Location:
|
68
|
-
- http://api.brightbox.
|
68
|
+
- http://api.brightbox.localhost/1.0/server_groups/grp-dz0s6
|
69
69
|
Content-Type:
|
70
70
|
- application/json; charset=utf-8
|
71
71
|
X-UA-Compatible:
|
@@ -88,7 +88,7 @@ http_interactions:
|
|
88
88
|
recorded_at: Tue, 27 Aug 2013 16:14:19 GMT
|
89
89
|
- request:
|
90
90
|
method: get
|
91
|
-
uri: http://api.brightbox.
|
91
|
+
uri: http://api.brightbox.localhost/1.0/server_groups?account_id=acc-12345
|
92
92
|
body:
|
93
93
|
encoding: US-ASCII
|
94
94
|
string: ''
|
@@ -132,7 +132,7 @@ http_interactions:
|
|
132
132
|
recorded_at: Tue, 27 Aug 2013 16:14:20 GMT
|
133
133
|
- request:
|
134
134
|
method: delete
|
135
|
-
uri: http://api.brightbox.
|
135
|
+
uri: http://api.brightbox.localhost/1.0/server_groups/grp-12345?account_id=acc-12345
|
136
136
|
body:
|
137
137
|
encoding: US-ASCII
|
138
138
|
string: ''
|
@@ -170,7 +170,7 @@ http_interactions:
|
|
170
170
|
recorded_at: Tue, 27 Aug 2013 16:14:20 GMT
|
171
171
|
- request:
|
172
172
|
method: post
|
173
|
-
uri: http://api.brightbox.
|
173
|
+
uri: http://api.brightbox.localhost/token
|
174
174
|
body:
|
175
175
|
encoding: UTF-8
|
176
176
|
string: '{"grant_type":"client_credentials"}'
|
@@ -214,7 +214,7 @@ http_interactions:
|
|
214
214
|
recorded_at: Tue, 27 Aug 2013 17:10:00 GMT
|
215
215
|
- request:
|
216
216
|
method: post
|
217
|
-
uri: http://api.brightbox.
|
217
|
+
uri: http://api.brightbox.localhost/token
|
218
218
|
body:
|
219
219
|
encoding: UTF-8
|
220
220
|
string: '{"grant_type":"client_credentials"}'
|
@@ -258,7 +258,7 @@ http_interactions:
|
|
258
258
|
recorded_at: Tue, 27 Aug 2013 17:10:00 GMT
|
259
259
|
- request:
|
260
260
|
method: post
|
261
|
-
uri: http://api.brightbox.
|
261
|
+
uri: http://api.brightbox.localhost/token
|
262
262
|
body:
|
263
263
|
encoding: UTF-8
|
264
264
|
string: '{"grant_type":"client_credentials"}'
|
@@ -302,7 +302,7 @@ http_interactions:
|
|
302
302
|
recorded_at: Tue, 27 Aug 2013 17:10:01 GMT
|
303
303
|
- request:
|
304
304
|
method: post
|
305
|
-
uri: http://api.brightbox.
|
305
|
+
uri: http://api.brightbox.localhost/token
|
306
306
|
body:
|
307
307
|
encoding: UTF-8
|
308
308
|
string: '{"grant_type":"client_credentials"}'
|
@@ -346,7 +346,7 @@ http_interactions:
|
|
346
346
|
recorded_at: Tue, 27 Aug 2013 17:10:01 GMT
|
347
347
|
- request:
|
348
348
|
method: post
|
349
|
-
uri: http://api.brightbox.
|
349
|
+
uri: http://api.brightbox.localhost/token
|
350
350
|
body:
|
351
351
|
encoding: UTF-8
|
352
352
|
string: '{"grant_type":"client_credentials"}'
|
@@ -391,7 +391,7 @@ http_interactions:
|
|
391
391
|
recorded_at: Wed, 28 Aug 2013 16:10:20 GMT
|
392
392
|
- request:
|
393
393
|
method: get
|
394
|
-
uri: http://api.brightbox.
|
394
|
+
uri: http://api.brightbox.localhost/1.0/accounts
|
395
395
|
body:
|
396
396
|
encoding: US-ASCII
|
397
397
|
string: ''
|
@@ -431,7 +431,7 @@ http_interactions:
|
|
431
431
|
recorded_at: Tue, 17 Sep 2013 17:08:08 GMT
|
432
432
|
- request:
|
433
433
|
method: post
|
434
|
-
uri: http://api.brightbox.
|
434
|
+
uri: http://api.brightbox.localhost/token
|
435
435
|
body:
|
436
436
|
encoding: UTF-8
|
437
437
|
string: '{"grant_type":"client_credentials"}'
|
@@ -476,7 +476,7 @@ http_interactions:
|
|
476
476
|
recorded_at: Tue, 17 Sep 2013 17:08:08 GMT
|
477
477
|
- request:
|
478
478
|
method: get
|
479
|
-
uri: http://api.brightbox.
|
479
|
+
uri: http://api.brightbox.localhost/1.0/accounts
|
480
480
|
body:
|
481
481
|
encoding: US-ASCII
|
482
482
|
string: ''
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: put
|
5
|
-
uri: http://api.brightbox.
|
5
|
+
uri: http://api.brightbox.localhost/1.0/firewall_policies/fwp-12345
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
8
|
string: ! '{"name":"missing"}'
|
@@ -50,7 +50,7 @@ http_interactions:
|
|
50
50
|
recorded_at: Fri, 27 Sep 2013 15:18:18 GMT
|
51
51
|
- request:
|
52
52
|
method: post
|
53
|
-
uri: http://api.brightbox.
|
53
|
+
uri: http://api.brightbox.localhost/token
|
54
54
|
body:
|
55
55
|
encoding: UTF-8
|
56
56
|
string: ! '{"grant_type":"client_credentials"}'
|
@@ -106,7 +106,7 @@ http_interactions:
|
|
106
106
|
recorded_at: Fri, 27 Sep 2013 15:18:18 GMT
|
107
107
|
- request:
|
108
108
|
method: put
|
109
|
-
uri: http://api.brightbox.
|
109
|
+
uri: http://api.brightbox.localhost/1.0/firewall_policies/fwp-12345
|
110
110
|
body:
|
111
111
|
encoding: ASCII-8BIT
|
112
112
|
string: !binary |-
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: http://api.brightbox.
|
5
|
+
uri: http://api.brightbox.localhost/1.0/accounts
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -16,7 +16,7 @@ http_interactions:
|
|
16
16
|
response:
|
17
17
|
status:
|
18
18
|
code: 401
|
19
|
-
message:
|
19
|
+
message:
|
20
20
|
headers:
|
21
21
|
WWW-Authenticate:
|
22
22
|
- OAuth error="invalid_token"
|
@@ -38,11 +38,11 @@ http_interactions:
|
|
38
38
|
encoding: UTF-8
|
39
39
|
string: '{"error":"invalid_token","error_description":"The OAuth token can not
|
40
40
|
be found"}'
|
41
|
-
http_version:
|
41
|
+
http_version:
|
42
42
|
recorded_at: Wed, 28 Aug 2013 14:50:08 GMT
|
43
43
|
- request:
|
44
44
|
method: post
|
45
|
-
uri: http://api.brightbox.
|
45
|
+
uri: http://api.brightbox.localhost/token
|
46
46
|
body:
|
47
47
|
encoding: UTF-8
|
48
48
|
string: '{"grant_type":"client_credentials"}'
|
@@ -56,7 +56,7 @@ http_interactions:
|
|
56
56
|
response:
|
57
57
|
status:
|
58
58
|
code: 400
|
59
|
-
message:
|
59
|
+
message:
|
60
60
|
headers:
|
61
61
|
X-Frame-Options:
|
62
62
|
- sameorigin
|
@@ -84,11 +84,11 @@ http_interactions:
|
|
84
84
|
provided is invalid, the client failed to authenticate, the client did not
|
85
85
|
include its credentials, provided multiple client credentials, or used unsupported
|
86
86
|
credentials type."}'
|
87
|
-
http_version:
|
87
|
+
http_version:
|
88
88
|
recorded_at: Wed, 28 Aug 2013 14:50:08 GMT
|
89
89
|
- request:
|
90
90
|
method: get
|
91
|
-
uri: http://api.brightbox.
|
91
|
+
uri: http://api.brightbox.localhost/1.0/accounts
|
92
92
|
body:
|
93
93
|
encoding: US-ASCII
|
94
94
|
string: ''
|
@@ -102,7 +102,7 @@ http_interactions:
|
|
102
102
|
response:
|
103
103
|
status:
|
104
104
|
code: 401
|
105
|
-
message:
|
105
|
+
message:
|
106
106
|
headers:
|
107
107
|
WWW-Authenticate:
|
108
108
|
- OAuth error="invalid_token"
|
@@ -124,11 +124,11 @@ http_interactions:
|
|
124
124
|
encoding: UTF-8
|
125
125
|
string: '{"error":"invalid_token","error_description":"The OAuth token can not
|
126
126
|
be found"}'
|
127
|
-
http_version:
|
127
|
+
http_version:
|
128
128
|
recorded_at: Wed, 28 Aug 2013 14:50:08 GMT
|
129
129
|
- request:
|
130
130
|
method: post
|
131
|
-
uri: http://api.brightbox.
|
131
|
+
uri: http://api.brightbox.localhost/token
|
132
132
|
body:
|
133
133
|
encoding: UTF-8
|
134
134
|
string: '{"grant_type":"refresh_token","refresh_token":"a05c73351bbbc8d3abba9cf175733aec22a5cb71"}'
|
@@ -142,7 +142,7 @@ http_interactions:
|
|
142
142
|
response:
|
143
143
|
status:
|
144
144
|
code: 200
|
145
|
-
message:
|
145
|
+
message:
|
146
146
|
headers:
|
147
147
|
X-Frame-Options:
|
148
148
|
- sameorigin
|
@@ -169,11 +169,11 @@ http_interactions:
|
|
169
169
|
body:
|
170
170
|
encoding: UTF-8
|
171
171
|
string: '{"access_token":"d003e4f0970b948af8e35d3ed9f3531cdd6e2154","expires_in":7200,"refresh_token":"dcd32790159f852756dadf8bed12cc3369c7b448"}'
|
172
|
-
http_version:
|
172
|
+
http_version:
|
173
173
|
recorded_at: Wed, 28 Aug 2013 14:50:09 GMT
|
174
174
|
- request:
|
175
175
|
method: post
|
176
|
-
uri: http://api.brightbox.
|
176
|
+
uri: http://api.brightbox.localhost/token
|
177
177
|
body:
|
178
178
|
encoding: UTF-8
|
179
179
|
string: '{"grant_type":"client_credentials"}'
|
@@ -187,7 +187,7 @@ http_interactions:
|
|
187
187
|
response:
|
188
188
|
status:
|
189
189
|
code: 400
|
190
|
-
message:
|
190
|
+
message:
|
191
191
|
headers:
|
192
192
|
X-Frame-Options:
|
193
193
|
- sameorigin
|
@@ -215,11 +215,11 @@ http_interactions:
|
|
215
215
|
provided is invalid, the client failed to authenticate, the client did not
|
216
216
|
include its credentials, provided multiple client credentials, or used unsupported
|
217
217
|
credentials type."}'
|
218
|
-
http_version:
|
218
|
+
http_version:
|
219
219
|
recorded_at: Wed, 28 Aug 2013 14:54:24 GMT
|
220
220
|
- request:
|
221
221
|
method: post
|
222
|
-
uri: http://api.brightbox.
|
222
|
+
uri: http://api.brightbox.localhost/token
|
223
223
|
body:
|
224
224
|
encoding: UTF-8
|
225
225
|
string: '{"grant_type":"client_credentials"}'
|
@@ -233,7 +233,7 @@ http_interactions:
|
|
233
233
|
response:
|
234
234
|
status:
|
235
235
|
code: 400
|
236
|
-
message:
|
236
|
+
message:
|
237
237
|
headers:
|
238
238
|
X-Frame-Options:
|
239
239
|
- sameorigin
|
@@ -259,11 +259,11 @@ http_interactions:
|
|
259
259
|
encoding: UTF-8
|
260
260
|
string: '{"error":"unauthorized_client","error_description":"The authenticated
|
261
261
|
client is not authorized to use the access grant type provided."}'
|
262
|
-
http_version:
|
262
|
+
http_version:
|
263
263
|
recorded_at: Wed, 18 Sep 2013 15:18:57 GMT
|
264
264
|
- request:
|
265
265
|
method: post
|
266
|
-
uri: http://api.brightbox.
|
266
|
+
uri: http://api.brightbox.localhost/token
|
267
267
|
body:
|
268
268
|
encoding: UTF-8
|
269
269
|
string: '{"grant_type":"client_credentials"}'
|
@@ -277,7 +277,7 @@ http_interactions:
|
|
277
277
|
response:
|
278
278
|
status:
|
279
279
|
code: 400
|
280
|
-
message:
|
280
|
+
message:
|
281
281
|
headers:
|
282
282
|
X-Frame-Options:
|
283
283
|
- sameorigin
|
@@ -303,11 +303,11 @@ http_interactions:
|
|
303
303
|
encoding: UTF-8
|
304
304
|
string: '{"error":"unauthorized_client","error_description":"The authenticated
|
305
305
|
client is not authorized to use the access grant type provided."}'
|
306
|
-
http_version:
|
306
|
+
http_version:
|
307
307
|
recorded_at: Wed, 18 Sep 2013 15:18:57 GMT
|
308
308
|
- request:
|
309
309
|
method: post
|
310
|
-
uri: http://api.brightbox.
|
310
|
+
uri: http://api.brightbox.localhost/token
|
311
311
|
body:
|
312
312
|
encoding: UTF-8
|
313
313
|
string: '{"grant_type":"refresh_token","refresh_token":"a05c73351bbbc8d3abba9cf175733aec22a5cb71"}'
|
@@ -321,7 +321,7 @@ http_interactions:
|
|
321
321
|
response:
|
322
322
|
status:
|
323
323
|
code: 400
|
324
|
-
message:
|
324
|
+
message:
|
325
325
|
headers:
|
326
326
|
X-Frame-Options:
|
327
327
|
- sameorigin
|
@@ -349,11 +349,11 @@ http_interactions:
|
|
349
349
|
is invalid, expired, or revoked (e.g. invalid assertion, expired authorization
|
350
350
|
token, bad end-user password credentials, or mismatching authorization code
|
351
351
|
and redirection URI)."}'
|
352
|
-
http_version:
|
352
|
+
http_version:
|
353
353
|
recorded_at: Wed, 18 Sep 2013 15:19:02 GMT
|
354
354
|
- request:
|
355
355
|
method: post
|
356
|
-
uri: http://api.brightbox.
|
356
|
+
uri: http://api.brightbox.localhost/token
|
357
357
|
body:
|
358
358
|
encoding: UTF-8
|
359
359
|
string: '{"grant_type":"password","username":"jason.null@brightbox.com","password":""}'
|
@@ -367,7 +367,7 @@ http_interactions:
|
|
367
367
|
response:
|
368
368
|
status:
|
369
369
|
code: 401
|
370
|
-
message:
|
370
|
+
message:
|
371
371
|
headers:
|
372
372
|
X-Frame-Options:
|
373
373
|
- sameorigin
|
@@ -394,11 +394,11 @@ http_interactions:
|
|
394
394
|
body:
|
395
395
|
encoding: UTF-8
|
396
396
|
string: '{"error":"invalid_client"}'
|
397
|
-
http_version:
|
397
|
+
http_version:
|
398
398
|
recorded_at: Wed, 18 Sep 2013 15:19:35 GMT
|
399
399
|
- request:
|
400
400
|
method: post
|
401
|
-
uri: http://api.brightbox.
|
401
|
+
uri: http://api.brightbox.localhost/token
|
402
402
|
body:
|
403
403
|
encoding: UTF-8
|
404
404
|
string: '{"grant_type":"refresh_token","refresh_token":"6846e655733a4fc36913c6c7e7bf8cb8fe7940b8"}'
|
@@ -412,7 +412,7 @@ http_interactions:
|
|
412
412
|
response:
|
413
413
|
status:
|
414
414
|
code: 400
|
415
|
-
message:
|
415
|
+
message:
|
416
416
|
headers:
|
417
417
|
Content-Type:
|
418
418
|
- application/json
|
@@ -440,6 +440,6 @@ http_interactions:
|
|
440
440
|
is invalid, expired, or revoked (e.g. invalid assertion, expired authorization
|
441
441
|
token, bad end-user password credentials, or mismatching authorization code
|
442
442
|
and redirection URI)."}'
|
443
|
-
http_version:
|
443
|
+
http_version:
|
444
444
|
recorded_at: Mon, 19 Oct 2015 15:08:07 GMT
|
445
445
|
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.
|
5
|
+
uri: http://api.brightbox.localhost/token
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
8
|
string: '{"grant_type":"client_credentials"}'
|
@@ -48,7 +48,7 @@ http_interactions:
|
|
48
48
|
recorded_at: Wed, 28 Aug 2013 14:46:22 GMT
|
49
49
|
- request:
|
50
50
|
method: get
|
51
|
-
uri: http://api.brightbox.
|
51
|
+
uri: http://api.brightbox.localhost/1.0/accounts
|
52
52
|
body:
|
53
53
|
encoding: US-ASCII
|
54
54
|
string: ''
|
@@ -88,7 +88,7 @@ http_interactions:
|
|
88
88
|
recorded_at: Wed, 28 Aug 2013 14:46:22 GMT
|
89
89
|
- request:
|
90
90
|
method: post
|
91
|
-
uri: http://api.brightbox.
|
91
|
+
uri: http://api.brightbox.localhost/token
|
92
92
|
body:
|
93
93
|
encoding: UTF-8
|
94
94
|
string: '{"grant_type":"client_credentials"}'
|
@@ -134,7 +134,7 @@ http_interactions:
|
|
134
134
|
recorded_at: Wed, 28 Aug 2013 14:46:22 GMT
|
135
135
|
- request:
|
136
136
|
method: get
|
137
|
-
uri: http://api.brightbox.
|
137
|
+
uri: http://api.brightbox.localhost/1.0/accounts
|
138
138
|
body:
|
139
139
|
encoding: US-ASCII
|
140
140
|
string: ''
|
@@ -174,7 +174,7 @@ http_interactions:
|
|
174
174
|
recorded_at: Wed, 28 Aug 2013 14:46:22 GMT
|
175
175
|
- request:
|
176
176
|
method: post
|
177
|
-
uri: http://api.brightbox.
|
177
|
+
uri: http://api.brightbox.localhost/token
|
178
178
|
body:
|
179
179
|
encoding: UTF-8
|
180
180
|
string: '{"grant_type":"refresh_token","refresh_token":"b57a7c633a65614b74cc29839ccfade8e64e696d"}'
|
@@ -220,7 +220,7 @@ http_interactions:
|
|
220
220
|
recorded_at: Wed, 28 Aug 2013 14:46:23 GMT
|
221
221
|
- request:
|
222
222
|
method: post
|
223
|
-
uri: http://api.brightbox.
|
223
|
+
uri: http://api.brightbox.localhost/token
|
224
224
|
body:
|
225
225
|
encoding: UTF-8
|
226
226
|
string: '{"grant_type":"password","username":"jason.null@brightbox.com","password":"N:B3e%7Cmh"}'
|
@@ -265,7 +265,7 @@ http_interactions:
|
|
265
265
|
recorded_at: Wed, 28 Aug 2013 14:46:23 GMT
|
266
266
|
- request:
|
267
267
|
method: post
|
268
|
-
uri: http://api.brightbox.
|
268
|
+
uri: http://api.brightbox.localhost/token
|
269
269
|
body:
|
270
270
|
encoding: UTF-8
|
271
271
|
string: '{"grant_type":"client_credentials"}'
|
@@ -309,7 +309,7 @@ http_interactions:
|
|
309
309
|
recorded_at: Wed, 18 Sep 2013 15:18:56 GMT
|
310
310
|
- request:
|
311
311
|
method: post
|
312
|
-
uri: http://api.brightbox.
|
312
|
+
uri: http://api.brightbox.localhost/token
|
313
313
|
body:
|
314
314
|
encoding: UTF-8
|
315
315
|
string: '{"grant_type":"client_credentials"}'
|
@@ -353,7 +353,7 @@ http_interactions:
|
|
353
353
|
recorded_at: Wed, 18 Sep 2013 15:18:56 GMT
|
354
354
|
- request:
|
355
355
|
method: post
|
356
|
-
uri: http://api.brightbox.
|
356
|
+
uri: http://api.brightbox.localhost/token
|
357
357
|
body:
|
358
358
|
encoding: UTF-8
|
359
359
|
string: '{"grant_type":"refresh_token","refresh_token":"b57a7c633a65614b74cc29839ccfade8e64e696d"}'
|