├── .dockerignore ├── .gitattributes ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── Gemfile ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── bin ├── nucleus └── nucleus.bat ├── config.ru ├── config ├── adapters │ ├── cloud_foundry_v2.yml │ ├── heroku.yml │ └── openshift_v2.yml └── nucleus_config.rb ├── lib ├── nucleus.rb ├── nucleus │ ├── adapter_resolver.rb │ ├── adapters │ │ ├── base_adapter.rb │ │ ├── buildpack_translator.rb │ │ └── v1 │ │ │ ├── cloud_foundry_v2 │ │ │ ├── app_states.rb │ │ │ ├── application.rb │ │ │ ├── authentication.rb │ │ │ ├── buildpacks.rb │ │ │ ├── cloud_foundry_v2.rb │ │ │ ├── data.rb │ │ │ ├── domains.rb │ │ │ ├── lifecycle.rb │ │ │ ├── logs.rb │ │ │ ├── regions.rb │ │ │ ├── scaling.rb │ │ │ ├── semantic_errors.rb │ │ │ ├── services.rb │ │ │ └── vars.rb │ │ │ ├── heroku │ │ │ ├── app_states.rb │ │ │ ├── application.rb │ │ │ ├── authentication.rb │ │ │ ├── buildpacks.rb │ │ │ ├── data.rb │ │ │ ├── domains.rb │ │ │ ├── heroku.rb │ │ │ ├── lifecycle.rb │ │ │ ├── logs.rb │ │ │ ├── regions.rb │ │ │ ├── scaling.rb │ │ │ ├── semantic_errors.rb │ │ │ ├── services.rb │ │ │ └── vars.rb │ │ │ ├── openshift_v2 │ │ │ ├── app_states.rb │ │ │ ├── application.rb │ │ │ ├── authentication.rb │ │ │ ├── data.rb │ │ │ ├── domains.rb │ │ │ ├── lifecycle.rb │ │ │ ├── logs.rb │ │ │ ├── openshift_v2.rb │ │ │ ├── regions.rb │ │ │ ├── scaling.rb │ │ │ ├── semantic_errors.rb │ │ │ ├── services.rb │ │ │ └── vars.rb │ │ │ └── stub_adapter.rb │ ├── core │ │ ├── adapter_authentication_inductor.rb │ │ ├── adapter_extensions │ │ │ ├── auth │ │ │ │ ├── auth_client.rb │ │ │ │ ├── authentication_retry_wrapper.rb │ │ │ │ ├── expiring_token_auth_client.rb │ │ │ │ ├── http_basic_auth_client.rb │ │ │ │ ├── o_auth2_auth_client.rb │ │ │ │ └── token_auth_client.rb │ │ │ ├── http_client.rb │ │ │ ├── http_tail_client.rb │ │ │ └── tail_stopper.rb │ │ ├── common │ │ │ ├── errors │ │ │ │ ├── ambiguous_adapter_error.rb │ │ │ │ ├── file_existence_error.rb │ │ │ │ └── startup_error.rb │ │ │ ├── exit_codes.rb │ │ │ ├── files │ │ │ │ ├── application_repo_sanitizer.rb │ │ │ │ ├── archive_extractor.rb │ │ │ │ └── archiver.rb │ │ │ ├── link_generator.rb │ │ │ ├── logging │ │ │ │ ├── logging.rb │ │ │ │ ├── multi_logger.rb │ │ │ │ └── request_log_formatter.rb │ │ │ ├── ssh_handler.rb │ │ │ ├── stream_callback.rb │ │ │ ├── thread_config_accessor.rb │ │ │ └── url_converter.rb │ │ ├── enums │ │ │ ├── application_states.rb │ │ │ └── logfile_types.rb │ │ ├── error_messages.rb │ │ ├── errors │ │ │ ├── adapter_error.rb │ │ │ ├── adapter_missing_implementation_error.rb │ │ │ ├── adapter_request_error.rb │ │ │ ├── adapter_resource_not_found_error.rb │ │ │ ├── endpoint_authentication_error.rb │ │ │ ├── platform_specific_semantic_error.rb │ │ │ ├── platform_timeout_error.rb │ │ │ ├── platform_unavailable_error.rb │ │ │ ├── semantic_adapter_request_error.rb │ │ │ └── unknown_adapter_call_error.rb │ │ ├── file_handling │ │ │ ├── archive_converter.rb │ │ │ ├── file_manager.rb │ │ │ ├── git_deployer.rb │ │ │ └── git_repo_analyzer.rb │ │ ├── import │ │ │ ├── adapter_configuration.rb │ │ │ ├── vendor_parser.rb │ │ │ └── version_detector.rb │ │ └── models │ │ │ ├── abstract_model.rb │ │ │ ├── endpoint.rb │ │ │ ├── provider.rb │ │ │ └── vendor.rb │ ├── ext │ │ ├── kernel.rb │ │ └── regexp.rb │ ├── os.rb │ ├── root_dir.rb │ ├── scripts │ │ ├── finalize.rb │ │ ├── initialize.rb │ │ ├── initialize_config_defaults.rb │ │ ├── load.rb │ │ ├── load_dependencies.rb │ │ ├── setup_config.rb │ │ └── shutdown.rb │ └── version.rb └── nucleus_api │ ├── api │ ├── common │ │ └── error_builder.rb │ ├── entities │ │ ├── abstract_entity.rb │ │ ├── abstract_service.rb │ │ ├── api.rb │ │ ├── api_version.rb │ │ ├── api_version_resource.rb │ │ ├── application.rb │ │ ├── collections │ │ │ ├── applications.rb │ │ │ ├── collection_entity.rb │ │ │ ├── domains.rb │ │ │ ├── endpoints.rb │ │ │ ├── environment_variables.rb │ │ │ ├── installed_services.rb │ │ │ ├── logs.rb │ │ │ ├── providers.rb │ │ │ ├── regions.rb │ │ │ ├── service_plans.rb │ │ │ ├── services.rb │ │ │ └── vendors.rb │ │ ├── domain.rb │ │ ├── endpoint.rb │ │ ├── environment_variable.rb │ │ ├── error.rb │ │ ├── installed_service.rb │ │ ├── installed_service_property.rb │ │ ├── link.rb │ │ ├── links │ │ │ ├── api_references.rb │ │ │ ├── application_references.rb │ │ │ ├── basic_references.rb │ │ │ └── service_references.rb │ │ ├── log.rb │ │ ├── persisted_entity.rb │ │ ├── provider.rb │ │ ├── region.rb │ │ ├── service.rb │ │ ├── service_costs.rb │ │ ├── service_costs_price.rb │ │ ├── service_plan.rb │ │ └── vendor.rb │ ├── enums │ │ ├── compression_formats.rb │ │ └── log_download_formats.rb │ ├── error_responses.rb │ ├── errors │ │ ├── api_error.rb │ │ ├── application_archive_error.rb │ │ └── resource_not_found_error.rb │ ├── helpers │ │ ├── adapter_helper.rb │ │ ├── auth_helper.rb │ │ ├── dao_helper.rb │ │ ├── error_helper.rb │ │ ├── form_processing_helper.rb │ │ ├── link_generator_helper.rb │ │ ├── log_helper.rb │ │ ├── shared_params_helper.rb │ │ └── streaming_helper.rb │ └── versions │ │ ├── root_api.rb │ │ └── v1 │ │ ├── auth.rb │ │ ├── base.rb │ │ ├── endpoints.rb │ │ ├── protected │ │ ├── application_data.rb │ │ ├── application_domains.rb │ │ ├── application_env_vars.rb │ │ ├── application_lifecycle.rb │ │ ├── application_logs.rb │ │ ├── application_logs_tail.rb │ │ ├── application_scaling.rb │ │ ├── application_services.rb │ │ ├── applications.rb │ │ ├── calls.rb │ │ ├── regions.rb │ │ ├── service_plans.rb │ │ └── services.rb │ │ ├── providers.rb │ │ ├── requirements.yml │ │ └── vendors.rb │ ├── api_root_dir.rb │ ├── ext │ ├── grape │ │ ├── auth_dsl.rb │ │ ├── dynamic_realm_base.rb │ │ ├── grape_middleware_header.rb │ │ └── params_scope.rb │ └── lint.rb │ ├── import │ ├── adapter_importer.rb │ ├── api_requirements.rb │ └── api_version_detector.rb │ ├── persistence │ ├── cache_store.rb │ ├── daos │ │ ├── adapter_dao.rb │ │ ├── cache_dao.rb │ │ ├── endpoint_dao.rb │ │ ├── provider_dao.rb │ │ └── vendor_dao.rb │ ├── models │ │ ├── adapter_index_entry.rb │ │ ├── required_method.rb │ │ └── requirements.rb │ └── store.rb │ ├── rack_middleware │ ├── access_logger.rb │ ├── basic_auth.rb │ ├── error_request_logger.rb │ └── request_id.rb │ ├── scripts │ ├── initialize_api.rb │ ├── initialize_api_customizations.rb │ ├── initialize_daos.rb │ ├── load_api.rb │ ├── rack_application.rb │ └── shutdown_api.rb │ └── version.rb ├── nucleus.gemspec ├── public ├── robots.txt └── swagger-ui │ ├── css │ ├── print.css │ ├── reset.css │ ├── screen.css │ ├── style.css │ └── typography.css │ ├── fonts │ ├── DroidSans-Bold.ttf │ └── DroidSans.ttf │ ├── images │ ├── collapse.gif │ ├── expand.gif │ ├── explorer_icons.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── logo_small.png │ ├── pet_store_api.png │ ├── throbber.gif │ └── wordnik_api.png │ ├── index.html │ ├── lang │ ├── en.js │ ├── es.js │ ├── fr.js │ ├── it.js │ ├── ja.js │ ├── pl.js │ ├── pt.js │ ├── ru.js │ ├── tr.js │ ├── translator.js │ └── zh-cn.js │ ├── lib │ ├── backbone-min.js │ ├── handlebars-2.0.0.js │ ├── highlight.7.3.pack.js │ ├── jquery-1.8.0.min.js │ ├── jquery.ba-bbq.min.js │ ├── jquery.slideto.min.js │ ├── jquery.wiggle.min.js │ ├── jsoneditor.min.js │ ├── marked.js │ ├── swagger-oauth.js │ ├── underscore-min.js │ └── underscore-min.map │ ├── o2c.html │ ├── redirect.html │ ├── swagger-ui.js │ └── swagger-ui.min.js ├── schemas ├── api.adapter.schema.yml └── api.requirements.schema.yml ├── spec ├── adapter │ ├── adapter_spec_helper.rb │ ├── application-archives │ │ ├── corrupted-archive.tar.gz │ │ ├── corrupted-archive.zip │ │ ├── valid-sample-app.tar.gz │ │ ├── valid-sample-app.tbz2 │ │ └── valid-sample-app.zip │ ├── common_api_spec.rb │ ├── helpers │ │ ├── adapter_helper.rb │ │ ├── credentials_helper.rb │ │ ├── em_http_stream_recorder.rb │ │ ├── faye_websocket_recorder.rb │ │ ├── method_response_recorder.rb │ │ ├── mock_stream_server.rb │ │ ├── rack_test_mock_session_patch.rb │ │ ├── rspec_config_helper.rb │ │ ├── rspec_eventmachine_patch.rb │ │ ├── vcr_config_helper.rb │ │ └── vcr_oj_serializer.rb │ ├── recordings │ │ └── v1 │ │ │ ├── cloud_foundry_v2 │ │ │ ├── method_cassettes │ │ │ │ └── nucleus │ │ │ │ │ └── adapters │ │ │ │ │ └── archive_converter │ │ │ │ │ └── convert │ │ │ │ │ ├── 03836262f8a0c1f63d69f46663caeed3 │ │ │ │ │ └── response │ │ │ │ │ ├── 3949dc9e914bc0a670e47b04e203f94f │ │ │ │ │ └── io_response │ │ │ │ │ ├── e3df836db0614ee5554933ce286999b2 │ │ │ │ │ └── response │ │ │ │ │ ├── eda45389ede29e8436a6e3eefcb3bc83 │ │ │ │ │ └── io_response │ │ │ │ │ └── f60df35213b7c26a268ad9b547be77d1 │ │ │ │ │ └── response │ │ │ ├── vcr_cassettes │ │ │ │ └── with_valid_credentials │ │ │ │ │ ├── is_compliant_and │ │ │ │ │ ├── _auth_client.json │ │ │ │ │ ├── app-actions │ │ │ │ │ │ ├── lifecycle │ │ │ │ │ │ │ ├── fail │ │ │ │ │ │ │ │ ├── restart │ │ │ │ │ │ │ │ │ ├── fails.json │ │ │ │ │ │ │ │ │ └── subsq_req_shows_no_state_changes.json │ │ │ │ │ │ │ │ ├── start │ │ │ │ │ │ │ │ │ ├── fails.json │ │ │ │ │ │ │ │ │ └── subsq_req_shows_no_state_changes.json │ │ │ │ │ │ │ │ └── stop │ │ │ │ │ │ │ │ │ ├── fails.json │ │ │ │ │ │ │ │ │ └── subsq_req_shows_no_state_changes.json │ │ │ │ │ │ │ ├── restart │ │ │ │ │ │ │ │ ├── succeeds_for_app_all_if_currently_running.json │ │ │ │ │ │ │ │ ├── succeeds_for_app_all_if_currently_stopped.json │ │ │ │ │ │ │ │ ├── succeeds_for_app_min_if_currently_running.json │ │ │ │ │ │ │ │ └── succeeds_for_app_min_if_currently_stopped.json │ │ │ │ │ │ │ ├── start │ │ │ │ │ │ │ │ ├── succeeds_for_app_all_if_already_running.json │ │ │ │ │ │ │ │ ├── succeeds_for_app_all_if_currently_stopped.json │ │ │ │ │ │ │ │ ├── succeeds_for_app_min_if_already_running.json │ │ │ │ │ │ │ │ └── succeeds_for_app_min_if_currently_stopped.json │ │ │ │ │ │ │ └── stop │ │ │ │ │ │ │ │ ├── succeeds_for_app_all_if_already_stopped.json │ │ │ │ │ │ │ │ ├── succeeds_for_app_all_if_currently_running.json │ │ │ │ │ │ │ │ ├── succeeds_for_app_min_if_already_stopped.json │ │ │ │ │ │ │ │ └── succeeds_for_app_min_if_currently_running.json │ │ │ │ │ │ └── scaling │ │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ ├── with_0_instances_value.json │ │ │ │ │ │ │ ├── with_invalid_instances_property_type.json │ │ │ │ │ │ │ ├── with_missing_instances_property.json │ │ │ │ │ │ │ └── with_negative_instances_value.json │ │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ ├── with_scale-in_and_removes_an_application_instance.json │ │ │ │ │ │ │ └── with_scale-out_and_adds_an_application_instance.json │ │ │ │ │ ├── app-data │ │ │ │ │ │ ├── deploy │ │ │ │ │ │ │ ├── fails_for │ │ │ │ │ │ │ │ ├── corrupted_tar_gz_archive.json │ │ │ │ │ │ │ │ ├── corrupted_zip_archive.json │ │ │ │ │ │ │ │ ├── unsupported_archive_tbz2.json │ │ │ │ │ │ │ │ └── unsupported_archive_tbz2_but_with_supported_mime_type.json │ │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ │ ├── and_app_with_all_properties.json │ │ │ │ │ │ │ │ ├── and_app_with_min_properties.json │ │ │ │ │ │ │ │ ├── with_valid_tar_gz_application_archive.json │ │ │ │ │ │ │ │ └── with_valid_zip_application_archive.json │ │ │ │ │ │ ├── download │ │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ │ ├── for_non-existing_application.json │ │ │ │ │ │ │ │ └── with_invalid_archive_format_rar.json │ │ │ │ │ │ │ ├── of_type_tar_gz_fails_when_there_is_no_deployment.json │ │ │ │ │ │ │ ├── succeeds │ │ │ │ │ │ │ │ ├── for_archive_format_tar_gz.json │ │ │ │ │ │ │ │ └── for_default_archive_format_zip.json │ │ │ │ │ │ │ └── with_default_type_fails_when_there_is_no_deployment.json │ │ │ │ │ │ └── rebuild │ │ │ │ │ │ │ ├── changes_the_release_version_property.json │ │ │ │ │ │ │ ├── fails_when_there_is_no_deployment.json │ │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ ├── app-domains │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ │ ├── with_invalid_name │ │ │ │ │ │ │ │ │ ├── email_as_name.json │ │ │ │ │ │ │ │ │ ├── malformed_name_with_multiple_dots.json │ │ │ │ │ │ │ │ │ ├── malformed_name_with_trailing_dot.json │ │ │ │ │ │ │ │ │ └── name_without_TLD.json │ │ │ │ │ │ │ │ └── with_missing_name.json │ │ │ │ │ │ │ ├── if_the_name_is_already_used.json │ │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ │ ├── with_hostname_in_the_name.json │ │ │ │ │ │ │ │ └── without_hostname_in_the_name.json │ │ │ │ │ │ ├── delete │ │ │ │ │ │ │ ├── fails_for │ │ │ │ │ │ │ │ ├── non-existing_application.json │ │ │ │ │ │ │ │ └── non-existing_domain_id.json │ │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ │ ├── for_previously_created_entity_with_hostname.json │ │ │ │ │ │ │ │ └── for_previously_created_entity_without_hostname.json │ │ │ │ │ │ ├── get │ │ │ │ │ │ │ ├── fails_for_non-existent_domain.json │ │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ │ ├── with_hostname.json │ │ │ │ │ │ │ │ └── without_hostname.json │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ └── list │ │ │ │ │ │ │ ├── fails_for_non-existing_application.json │ │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ ├── app-logs │ │ │ │ │ │ ├── download-all │ │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ │ ├── with_invalid_archive_format_log.json │ │ │ │ │ │ │ │ ├── with_invalid_archive_format_rar.json │ │ │ │ │ │ │ │ └── with_non-existing_application.json │ │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ │ ├── as_tar_gz.json │ │ │ │ │ │ │ │ └── as_zip.json │ │ │ │ │ │ ├── download │ │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ │ ├── with_invalid_file_format_rar.json │ │ │ │ │ │ │ │ ├── with_non-existing_application.json │ │ │ │ │ │ │ │ └── with_non-existing_log.json │ │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ │ ├── for_type_request_as_log.json │ │ │ │ │ │ │ │ ├── for_type_request_log_as_tar_gz.json │ │ │ │ │ │ │ │ └── for_type_request_log_as_zip.json │ │ │ │ │ │ ├── get │ │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ │ ├── with_non-existent_log_id.json │ │ │ │ │ │ │ │ └── with_non-existing_application.json │ │ │ │ │ │ │ ├── of_type_request.json │ │ │ │ │ │ │ └── with_empty_results_for_type_request.json │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── fails_for_non-existing_application.json │ │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ │ └── tail │ │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ ├── with_non-existent_log_id.json │ │ │ │ │ │ │ └── with_non-existing_application.json │ │ │ │ │ │ │ └── request.json │ │ │ │ │ ├── app-services │ │ │ │ │ │ ├── add │ │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ │ ├── if_the_service_is_already_assigned.json │ │ │ │ │ │ │ │ ├── with_invalid_plan.json │ │ │ │ │ │ │ │ ├── with_invalid_service.json │ │ │ │ │ │ │ │ ├── with_missing_plan.json │ │ │ │ │ │ │ │ └── with_missing_service.json │ │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ │ └── with_1st_invocation.json │ │ │ │ │ │ ├── change │ │ │ │ │ │ │ └── fails │ │ │ │ │ │ │ │ ├── with_non-existent_application.json │ │ │ │ │ │ │ │ ├── with_non-existent_plan.json │ │ │ │ │ │ │ │ └── with_non-existent_service.json │ │ │ │ │ │ ├── get │ │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ │ ├── with_non-existent_application.json │ │ │ │ │ │ │ │ └── with_non-existent_service.json │ │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── fails_for_non-existing_application.json │ │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ │ └── remove │ │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ ├── with_non-existent_application.json │ │ │ │ │ │ │ └── with_non-existent_service.json │ │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ ├── app-vars │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ │ ├── if_the_key_is_already_used.json │ │ │ │ │ │ │ │ ├── with_missing_key_property.json │ │ │ │ │ │ │ │ └── with_missing_value_property.json │ │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ │ ├── no_2_using_app_all │ │ │ │ │ │ │ │ ├── did_not_alter_other_vars.json │ │ │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ │ │ │ ├── using_app_all.json │ │ │ │ │ │ │ │ └── using_app_with_min_properties.json │ │ │ │ │ │ ├── delete │ │ │ │ │ │ │ ├── did_not_alter_other_vars.json │ │ │ │ │ │ │ ├── fails_for │ │ │ │ │ │ │ │ ├── non-existing_application.json │ │ │ │ │ │ │ │ └── non-existing_key.json │ │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ │ ├── get │ │ │ │ │ │ │ ├── fails_for_non-existent_key.json │ │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── fails_for_non-existing_application.json │ │ │ │ │ │ │ ├── succeeds.json │ │ │ │ │ │ │ └── with_empty_result_list.json │ │ │ │ │ │ └── update │ │ │ │ │ │ │ ├── did_not_alter_other_vars.json │ │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ ├── with_missing_value.json │ │ │ │ │ │ │ └── with_non-existing_key.json │ │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ ├── app │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ │ ├── in_2nd_attempt_with_duplicate_name.json │ │ │ │ │ │ │ │ ├── with_invalid │ │ │ │ │ │ │ │ │ ├── region.json │ │ │ │ │ │ │ │ │ └── runtimes │ │ │ │ │ │ │ │ │ │ └── by_bad_URL_and_unknown_name.json │ │ │ │ │ │ │ │ └── with_missing │ │ │ │ │ │ │ │ │ ├── name_property.json │ │ │ │ │ │ │ │ │ └── runtimes_property.json │ │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ │ ├── of_type_nodejs_with_all_properties.json │ │ │ │ │ │ │ │ └── of_type_nodejs_with_minimal_properties.json │ │ │ │ │ │ ├── delete │ │ │ │ │ │ │ ├── fails_for_non-existing_application.json │ │ │ │ │ │ │ └── for_created_application │ │ │ │ │ │ │ │ ├── with_all_properties │ │ │ │ │ │ │ │ ├── makes_GET_of_that_app_return_404.json │ │ │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ │ │ │ └── with_min_properties │ │ │ │ │ │ │ │ ├── makes_GET_of_that_app_return_404.json │ │ │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ │ ├── get │ │ │ │ │ │ │ ├── fails_for_non-existent_application.json │ │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ └── web_access │ │ │ │ │ │ │ ├── for_app_with_all_properties.json │ │ │ │ │ │ │ └── for_app_with_min_properties.json │ │ │ │ │ ├── application_update │ │ │ │ │ │ └── app │ │ │ │ │ │ │ └── update │ │ │ │ │ │ │ ├── fails.json │ │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ ├── changing_name_and_runtimes.json │ │ │ │ │ │ │ ├── changing_only_the_name.json │ │ │ │ │ │ │ ├── changing_only_the_runtimes.json │ │ │ │ │ │ │ ├── reverting_runtime_change_for_app_all.json │ │ │ │ │ │ │ └── reverting_runtime_change_for_app_min.json │ │ │ │ │ ├── regions │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── service-plans │ │ │ │ │ │ ├── get │ │ │ │ │ │ │ ├── fails_for │ │ │ │ │ │ │ │ ├── get_of_service_plan_with_non-existent_service.json │ │ │ │ │ │ │ │ └── get_of_service_plan_with_non-existent_service_plan.json │ │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ │ └── list │ │ │ │ │ │ │ ├── fails_for_get_of_service_plan_with_non-existent_service.json │ │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ └── services │ │ │ │ │ │ ├── get │ │ │ │ │ │ ├── fails_for_get_of_non-existent_service.json │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ │ └── list.json │ │ │ │ │ └── native_adapter_call │ │ │ │ │ └── against_endpoint │ │ │ │ │ └── does_fetch_all_buildpacks.json │ │ │ └── websocket_cassettes │ │ │ │ └── faye_websocket │ │ │ │ └── 6e6faac84968756e78a959c28e39468d │ │ │ │ ├── response_0 │ │ │ │ ├── response_1 │ │ │ │ └── response_2 │ │ │ ├── heroku │ │ │ ├── http_stream_cassettes │ │ │ │ └── em-http-request │ │ │ │ │ └── c33beae8f946205946c4a28c94a1b77a │ │ │ │ │ ├── response_0 │ │ │ │ │ ├── response_1 │ │ │ │ │ └── response_2 │ │ │ ├── method_cassettes │ │ │ │ └── nucleus │ │ │ │ │ └── adapters │ │ │ │ │ ├── file_manager │ │ │ │ │ └── save_file_from_data │ │ │ │ │ │ ├── 1851d9e883ed2f06b15e8c113ddae451 │ │ │ │ │ │ └── response │ │ │ │ │ │ └── 56fe820228ee4fa38f59d07854c514dd │ │ │ │ │ │ └── response │ │ │ │ │ └── git_deployer │ │ │ │ │ ├── deploy │ │ │ │ │ ├── 5dfa09b52dc881a3495b378551d3c333 │ │ │ │ │ │ └── response │ │ │ │ │ ├── 81c04e4f411faceba5648f47d2d1470b │ │ │ │ │ │ └── response │ │ │ │ │ ├── a9a562a27e9b24d89d834136952a0eb9 │ │ │ │ │ │ └── response │ │ │ │ │ ├── b93b01aad069eea6fbaddac34271205f │ │ │ │ │ │ └── response │ │ │ │ │ └── dcbc3b67fa14e5443eecccd6b7b5ddc9 │ │ │ │ │ │ └── response │ │ │ │ │ ├── download │ │ │ │ │ ├── 37374fecac557d1e2969cddf96fd4301 │ │ │ │ │ │ └── io_response │ │ │ │ │ └── b69e03709fe1ce9a08d20694e58a06b7 │ │ │ │ │ │ └── io_response │ │ │ │ │ └── trigger_build │ │ │ │ │ ├── 32ae9d1ca748f5f970dbe945597238c1 │ │ │ │ │ └── response │ │ │ │ │ └── 8fc66b76adb6915f80e013329b80bec7 │ │ │ │ │ └── response │ │ │ └── vcr_cassettes │ │ │ │ └── with_valid_credentials │ │ │ │ ├── is_compliant_and │ │ │ │ ├── app-actions │ │ │ │ │ ├── lifecycle │ │ │ │ │ │ ├── fail │ │ │ │ │ │ │ ├── restart │ │ │ │ │ │ │ │ ├── fails.json │ │ │ │ │ │ │ │ └── subsq_req_shows_no_state_changes.json │ │ │ │ │ │ │ ├── start │ │ │ │ │ │ │ │ ├── fails.json │ │ │ │ │ │ │ │ └── subsq_req_shows_no_state_changes.json │ │ │ │ │ │ │ └── stop │ │ │ │ │ │ │ │ ├── fails.json │ │ │ │ │ │ │ │ └── subsq_req_shows_no_state_changes.json │ │ │ │ │ │ ├── restart │ │ │ │ │ │ │ ├── succeeds_for_app_all_if_currently_running.json │ │ │ │ │ │ │ ├── succeeds_for_app_all_if_currently_stopped.json │ │ │ │ │ │ │ ├── succeeds_for_app_min_if_currently_running.json │ │ │ │ │ │ │ └── succeeds_for_app_min_if_currently_stopped.json │ │ │ │ │ │ ├── start │ │ │ │ │ │ │ ├── succeeds_for_app_all_if_already_running.json │ │ │ │ │ │ │ ├── succeeds_for_app_all_if_currently_stopped.json │ │ │ │ │ │ │ ├── succeeds_for_app_min_if_already_running.json │ │ │ │ │ │ │ └── succeeds_for_app_min_if_currently_stopped.json │ │ │ │ │ │ └── stop │ │ │ │ │ │ │ ├── succeeds_for_app_all_if_already_stopped.json │ │ │ │ │ │ │ ├── succeeds_for_app_all_if_currently_running.json │ │ │ │ │ │ │ ├── succeeds_for_app_min_if_already_stopped.json │ │ │ │ │ │ │ └── succeeds_for_app_min_if_currently_running.json │ │ │ │ │ └── scaling │ │ │ │ │ │ ├── fails │ │ │ │ │ │ ├── with_0_instances_value.json │ │ │ │ │ │ ├── with_invalid_instances_property_type.json │ │ │ │ │ │ ├── with_missing_instances_property.json │ │ │ │ │ │ └── with_negative_instances_value.json │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ └── with_scale-in_and_removes_an_application_instance.json │ │ │ │ ├── app-data │ │ │ │ │ ├── deploy │ │ │ │ │ │ ├── fails_for │ │ │ │ │ │ │ ├── corrupted_tar_gz_archive.json │ │ │ │ │ │ │ ├── corrupted_zip_archive.json │ │ │ │ │ │ │ ├── unsupported_archive_tbz2.json │ │ │ │ │ │ │ └── unsupported_archive_tbz2_but_with_supported_mime_type.json │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ ├── and_app_with_all_properties.json │ │ │ │ │ │ │ ├── and_app_with_min_properties.json │ │ │ │ │ │ │ ├── with_valid_tar_gz_application_archive.json │ │ │ │ │ │ │ └── with_valid_zip_application_archive.json │ │ │ │ │ ├── download │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ ├── for_non-existing_application.json │ │ │ │ │ │ │ └── with_invalid_archive_format_rar.json │ │ │ │ │ │ ├── of_type_tar_gz_fails_when_there_is_no_deployment.json │ │ │ │ │ │ ├── succeeds │ │ │ │ │ │ │ ├── for_archive_format_tar_gz.json │ │ │ │ │ │ │ └── for_default_archive_format_zip.json │ │ │ │ │ │ └── with_default_type_fails_when_there_is_no_deployment.json │ │ │ │ │ └── rebuild │ │ │ │ │ │ ├── changes_the_release_version_property.json │ │ │ │ │ │ ├── fails_when_there_is_no_deployment.json │ │ │ │ │ │ └── succeeds.json │ │ │ │ ├── app-domains │ │ │ │ │ ├── create │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ ├── with_invalid_name │ │ │ │ │ │ │ │ ├── email_as_name.json │ │ │ │ │ │ │ │ ├── malformed_name_with_multiple_dots.json │ │ │ │ │ │ │ │ ├── malformed_name_with_trailing_dot.json │ │ │ │ │ │ │ │ └── name_without_TLD.json │ │ │ │ │ │ │ └── with_missing_name.json │ │ │ │ │ │ ├── if_the_name_is_already_used.json │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ ├── with_hostname_in_the_name.json │ │ │ │ │ │ │ └── without_hostname_in_the_name.json │ │ │ │ │ ├── delete │ │ │ │ │ │ ├── fails_for │ │ │ │ │ │ │ ├── non-existing_application.json │ │ │ │ │ │ │ └── non-existing_domain_id.json │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ ├── for_previously_created_entity_with_hostname.json │ │ │ │ │ │ │ └── for_previously_created_entity_without_hostname.json │ │ │ │ │ ├── get │ │ │ │ │ │ ├── fails_for_non-existent_domain.json │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ ├── with_hostname.json │ │ │ │ │ │ │ └── without_hostname.json │ │ │ │ │ ├── list.json │ │ │ │ │ └── list │ │ │ │ │ │ ├── fails_for_non-existing_application.json │ │ │ │ │ │ └── succeeds.json │ │ │ │ ├── app-logs │ │ │ │ │ ├── download-all │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ ├── with_invalid_archive_format_log.json │ │ │ │ │ │ │ ├── with_invalid_archive_format_rar.json │ │ │ │ │ │ │ └── with_non-existing_application.json │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ ├── as_tar_gz.json │ │ │ │ │ │ │ └── as_zip.json │ │ │ │ │ ├── download │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ ├── with_invalid_file_format_rar.json │ │ │ │ │ │ │ ├── with_non-existing_application.json │ │ │ │ │ │ │ └── with_non-existing_log.json │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ ├── for_type_request_as_log.json │ │ │ │ │ │ │ ├── for_type_request_log_as_tar_gz.json │ │ │ │ │ │ │ └── for_type_request_log_as_zip.json │ │ │ │ │ ├── get │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ ├── with_non-existent_log_id.json │ │ │ │ │ │ │ └── with_non-existing_application.json │ │ │ │ │ │ ├── of_type_request.json │ │ │ │ │ │ └── with_empty_results_for_type_request.json │ │ │ │ │ ├── list │ │ │ │ │ │ ├── fails_for_non-existing_application.json │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ └── tail │ │ │ │ │ │ ├── fails │ │ │ │ │ │ ├── with_non-existent_log_id.json │ │ │ │ │ │ └── with_non-existing_application.json │ │ │ │ │ │ └── request.json │ │ │ │ ├── app-services │ │ │ │ │ ├── add │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ ├── if_the_service_is_already_assigned.json │ │ │ │ │ │ │ ├── with_invalid_plan.json │ │ │ │ │ │ │ ├── with_invalid_service.json │ │ │ │ │ │ │ ├── with_missing_plan.json │ │ │ │ │ │ │ └── with_missing_service.json │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ └── with_1st_invocation.json │ │ │ │ │ ├── change │ │ │ │ │ │ └── fails │ │ │ │ │ │ │ ├── with_non-existent_application.json │ │ │ │ │ │ │ ├── with_non-existent_plan.json │ │ │ │ │ │ │ └── with_non-existent_service.json │ │ │ │ │ ├── get │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ ├── with_non-existent_application.json │ │ │ │ │ │ │ └── with_non-existent_service.json │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ ├── list.json │ │ │ │ │ ├── list │ │ │ │ │ │ ├── fails_for_non-existing_application.json │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ └── remove │ │ │ │ │ │ ├── fails │ │ │ │ │ │ ├── with_non-existent_application.json │ │ │ │ │ │ └── with_non-existent_service.json │ │ │ │ │ │ └── succeeds.json │ │ │ │ ├── app-vars │ │ │ │ │ ├── create │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ ├── if_the_key_is_already_used.json │ │ │ │ │ │ │ ├── with_missing_key_property.json │ │ │ │ │ │ │ └── with_missing_value_property.json │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ ├── no_2_using_app_all │ │ │ │ │ │ │ ├── did_not_alter_other_vars.json │ │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ │ │ ├── using_app_all.json │ │ │ │ │ │ │ └── using_app_with_min_properties.json │ │ │ │ │ ├── delete │ │ │ │ │ │ ├── did_not_alter_other_vars.json │ │ │ │ │ │ ├── fails_for │ │ │ │ │ │ │ ├── non-existing_application.json │ │ │ │ │ │ │ └── non-existing_key.json │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ ├── get │ │ │ │ │ │ ├── fails_for_non-existent_key.json │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ ├── list │ │ │ │ │ │ ├── fails_for_non-existing_application.json │ │ │ │ │ │ ├── succeeds.json │ │ │ │ │ │ └── with_empty_result_list.json │ │ │ │ │ └── update │ │ │ │ │ │ ├── did_not_alter_other_vars.json │ │ │ │ │ │ ├── fails │ │ │ │ │ │ ├── with_missing_value.json │ │ │ │ │ │ └── with_non-existing_key.json │ │ │ │ │ │ └── succeeds.json │ │ │ │ ├── app │ │ │ │ │ ├── create │ │ │ │ │ │ ├── fails │ │ │ │ │ │ │ ├── in_2nd_attempt_with_duplicate_name.json │ │ │ │ │ │ │ ├── with_invalid │ │ │ │ │ │ │ │ ├── region.json │ │ │ │ │ │ │ │ └── runtimes │ │ │ │ │ │ │ │ │ └── by_bad_URL_and_unknown_name.json │ │ │ │ │ │ │ └── with_missing │ │ │ │ │ │ │ │ ├── name_property.json │ │ │ │ │ │ │ │ └── runtimes_property.json │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ │ ├── of_type_nodejs_with_all_properties.json │ │ │ │ │ │ │ └── of_type_nodejs_with_minimal_properties.json │ │ │ │ │ ├── delete │ │ │ │ │ │ ├── fails_for_non-existing_application.json │ │ │ │ │ │ └── for_created_application │ │ │ │ │ │ │ ├── with_all_properties │ │ │ │ │ │ │ ├── makes_GET_of_that_app_return_404.json │ │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ │ │ └── with_min_properties │ │ │ │ │ │ │ ├── makes_GET_of_that_app_return_404.json │ │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ ├── get │ │ │ │ │ │ ├── fails_for_non-existent_application.json │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ ├── list.json │ │ │ │ │ └── web_access │ │ │ │ │ │ ├── for_app_with_all_properties.json │ │ │ │ │ │ └── for_app_with_min_properties.json │ │ │ │ ├── application_update │ │ │ │ │ └── app │ │ │ │ │ │ └── update │ │ │ │ │ │ ├── fails.json │ │ │ │ │ │ └── succeeds │ │ │ │ │ │ ├── changing_name_and_runtimes.json │ │ │ │ │ │ ├── changing_only_the_name.json │ │ │ │ │ │ ├── changing_only_the_runtimes.json │ │ │ │ │ │ ├── reverting_runtime_change_for_app_all.json │ │ │ │ │ │ └── reverting_runtime_change_for_app_min.json │ │ │ │ ├── regions │ │ │ │ │ ├── get.json │ │ │ │ │ └── list.json │ │ │ │ ├── service-plans │ │ │ │ │ ├── get │ │ │ │ │ │ ├── fails_for │ │ │ │ │ │ │ ├── get_of_service_plan_with_non-existent_service.json │ │ │ │ │ │ │ └── get_of_service_plan_with_non-existent_service_plan.json │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ └── list │ │ │ │ │ │ ├── fails_for_get_of_service_plan_with_non-existent_service.json │ │ │ │ │ │ └── succeeds.json │ │ │ │ └── services │ │ │ │ │ ├── get │ │ │ │ │ ├── fails_for_get_of_non-existent_service.json │ │ │ │ │ └── succeeds.json │ │ │ │ │ └── list.json │ │ │ │ └── native_adapter_call │ │ │ │ └── against_endpoint │ │ │ │ └── does_fetch_account_data │ │ │ │ ├── has_a_request_id.json │ │ │ │ ├── has_status_200.json │ │ │ │ └── with_the_specified_structure.json │ │ │ └── openshift_v2 │ │ │ ├── method_cassettes │ │ │ └── nucleus │ │ │ │ └── adapters │ │ │ │ ├── file_manager │ │ │ │ └── save_file_from_data │ │ │ │ │ ├── 2f1f8678bdef054c201b089bc3d32978 │ │ │ │ │ └── response │ │ │ │ │ └── ee97fe6d6a3dd87ea175fbd5eff40a16 │ │ │ │ │ └── response │ │ │ │ ├── git_deployer │ │ │ │ ├── deploy │ │ │ │ │ ├── 012f6b0482ed35ff397ac794253d5b7a │ │ │ │ │ │ └── response │ │ │ │ │ ├── 4658c35a058e45b0b7743a41ca70c363 │ │ │ │ │ │ └── response │ │ │ │ │ ├── 60a19a1152f954b7f2df9295d3e8e942 │ │ │ │ │ │ └── response │ │ │ │ │ ├── b256bfac18c71cbdabbf0235499f3fae │ │ │ │ │ │ └── response │ │ │ │ │ └── d8b5d3904c10e8ff5f9bd38cd2c06e83 │ │ │ │ │ │ └── response │ │ │ │ ├── download │ │ │ │ │ ├── 05e014036aef9240f68fec227b800988 │ │ │ │ │ │ └── io_response │ │ │ │ │ └── 3cb1410b1781b2f9da120d0c60d4ba4e │ │ │ │ │ │ └── io_response │ │ │ │ └── trigger_build │ │ │ │ │ ├── 85d4e67a848b3fbc65febcaee120de50 │ │ │ │ │ └── response │ │ │ │ │ └── e8a2b25a92ea0c297437e2f8e1a37504 │ │ │ │ │ └── response │ │ │ │ └── v1 │ │ │ │ └── openshift_v2 │ │ │ │ ├── remote_log_entries │ │ │ │ ├── 2e11b61ac960f750de5147375a801fbb │ │ │ │ │ └── response │ │ │ │ ├── 49d64701db1d63507e4b78b0f258a73d │ │ │ │ │ └── response │ │ │ │ ├── 62e2738af77eb79f0105809e99225b01 │ │ │ │ │ └── response │ │ │ │ ├── 6f3ae6edb8fab3374c408bb476de15da │ │ │ │ │ └── response │ │ │ │ ├── 7ac3eeddf1b4f5f115f2088b185ab1ef │ │ │ │ │ └── response │ │ │ │ ├── c0830a193b88fbef9a1003796078f48b │ │ │ │ │ └── response │ │ │ │ ├── dc6ea3c91b547696dec04163020ee929 │ │ │ │ │ └── response │ │ │ │ ├── e0c14656526419c3e3ffce762c41b848 │ │ │ │ │ └── response │ │ │ │ ├── e182ebfec60d426e3000b6c1e669ab77 │ │ │ │ │ └── response │ │ │ │ └── fd7f233fbb28edcecff8ac648db274d6 │ │ │ │ │ └── response │ │ │ │ └── remote_log_files │ │ │ │ ├── 2e158883375687b653bf66d9aff47c52 │ │ │ │ └── response │ │ │ │ ├── 330e27a78195534438fc55fd2bf8113c │ │ │ │ └── response │ │ │ │ ├── 340afe8dff9b35830df363b3f015200a │ │ │ │ └── response │ │ │ │ ├── 4e23f9f9a7f074e2a8435a3004e4f246 │ │ │ │ └── response │ │ │ │ ├── c6564dcab12fac5d84f50f0d411d52f7 │ │ │ │ └── response │ │ │ │ └── e2ef02a97c1558a9d07a1ae7d051caed │ │ │ │ └── response │ │ │ └── vcr_cassettes │ │ │ └── with_valid_credentials │ │ │ ├── is_compliant_and │ │ │ ├── app-actions │ │ │ │ ├── lifecycle │ │ │ │ │ ├── fail │ │ │ │ │ │ ├── restart │ │ │ │ │ │ │ ├── fails.json │ │ │ │ │ │ │ └── subsq_req_shows_no_state_changes.json │ │ │ │ │ │ ├── start │ │ │ │ │ │ │ ├── fails.json │ │ │ │ │ │ │ └── subsq_req_shows_no_state_changes.json │ │ │ │ │ │ └── stop │ │ │ │ │ │ │ ├── fails.json │ │ │ │ │ │ │ └── subsq_req_shows_no_state_changes.json │ │ │ │ │ ├── restart │ │ │ │ │ │ ├── succeeds_for_app_all_if_currently_running.json │ │ │ │ │ │ ├── succeeds_for_app_all_if_currently_stopped.json │ │ │ │ │ │ ├── succeeds_for_app_min_if_currently_running.json │ │ │ │ │ │ └── succeeds_for_app_min_if_currently_stopped.json │ │ │ │ │ ├── start │ │ │ │ │ │ ├── succeeds_for_app_all_if_already_running.json │ │ │ │ │ │ ├── succeeds_for_app_all_if_currently_stopped.json │ │ │ │ │ │ ├── succeeds_for_app_min_if_already_running.json │ │ │ │ │ │ └── succeeds_for_app_min_if_currently_stopped.json │ │ │ │ │ └── stop │ │ │ │ │ │ ├── succeeds_for_app_all_if_already_stopped.json │ │ │ │ │ │ ├── succeeds_for_app_all_if_currently_running.json │ │ │ │ │ │ ├── succeeds_for_app_min_if_already_stopped.json │ │ │ │ │ │ └── succeeds_for_app_min_if_currently_running.json │ │ │ │ └── scaling │ │ │ │ │ ├── fails │ │ │ │ │ ├── with_0_instances_value.json │ │ │ │ │ ├── with_invalid_instances_property_type.json │ │ │ │ │ ├── with_missing_instances_property.json │ │ │ │ │ └── with_negative_instances_value.json │ │ │ │ │ └── succeeds │ │ │ │ │ ├── with_scale-in_and_removes_an_application_instance.json │ │ │ │ │ └── with_scale-out_and_adds_an_application_instance.json │ │ │ ├── app-data │ │ │ │ ├── deploy │ │ │ │ │ ├── fails_for │ │ │ │ │ │ ├── corrupted_tar_gz_archive.json │ │ │ │ │ │ ├── corrupted_zip_archive.json │ │ │ │ │ │ ├── unsupported_archive_tbz2.json │ │ │ │ │ │ └── unsupported_archive_tbz2_but_with_supported_mime_type.json │ │ │ │ │ └── succeeds │ │ │ │ │ │ ├── and_app_with_all_properties.json │ │ │ │ │ │ ├── and_app_with_min_properties.json │ │ │ │ │ │ ├── with_valid_tar_gz_application_archive.json │ │ │ │ │ │ └── with_valid_zip_application_archive.json │ │ │ │ ├── download │ │ │ │ │ ├── fails │ │ │ │ │ │ ├── for_non-existing_application.json │ │ │ │ │ │ └── with_invalid_archive_format_rar.json │ │ │ │ │ ├── of_type_tar_gz_fails_when_there_is_no_deployment.json │ │ │ │ │ ├── succeeds │ │ │ │ │ │ ├── for_archive_format_tar_gz.json │ │ │ │ │ │ └── for_default_archive_format_zip.json │ │ │ │ │ └── with_default_type_fails_when_there_is_no_deployment.json │ │ │ │ └── rebuild │ │ │ │ │ ├── changes_the_release_version_property.json │ │ │ │ │ ├── fails_when_there_is_no_deployment.json │ │ │ │ │ └── succeeds.json │ │ │ ├── app-domains │ │ │ │ ├── create │ │ │ │ │ ├── fails │ │ │ │ │ │ ├── with_invalid_name │ │ │ │ │ │ │ ├── email_as_name.json │ │ │ │ │ │ │ ├── malformed_name_with_multiple_dots.json │ │ │ │ │ │ │ ├── malformed_name_with_trailing_dot.json │ │ │ │ │ │ │ └── name_without_TLD.json │ │ │ │ │ │ └── with_missing_name.json │ │ │ │ │ ├── if_the_name_is_already_used.json │ │ │ │ │ └── succeeds │ │ │ │ │ │ ├── with_hostname_in_the_name.json │ │ │ │ │ │ └── without_hostname_in_the_name.json │ │ │ │ ├── delete │ │ │ │ │ ├── fails_for │ │ │ │ │ │ ├── non-existing_application.json │ │ │ │ │ │ └── non-existing_domain_id.json │ │ │ │ │ └── succeeds │ │ │ │ │ │ ├── for_previously_created_entity_with_hostname.json │ │ │ │ │ │ └── for_previously_created_entity_without_hostname.json │ │ │ │ ├── get │ │ │ │ │ ├── fails_for_non-existent_domain.json │ │ │ │ │ └── succeeds │ │ │ │ │ │ ├── with_hostname.json │ │ │ │ │ │ └── without_hostname.json │ │ │ │ ├── list.json │ │ │ │ └── list │ │ │ │ │ ├── fails_for_non-existing_application.json │ │ │ │ │ └── succeeds.json │ │ │ ├── app-logs │ │ │ │ ├── download-all │ │ │ │ │ ├── fails │ │ │ │ │ │ ├── with_invalid_archive_format_log.json │ │ │ │ │ │ ├── with_invalid_archive_format_rar.json │ │ │ │ │ │ └── with_non-existing_application.json │ │ │ │ │ └── succeeds │ │ │ │ │ │ ├── as_tar_gz.json │ │ │ │ │ │ └── as_zip.json │ │ │ │ ├── download │ │ │ │ │ ├── fails │ │ │ │ │ │ ├── with_invalid_file_format_rar.json │ │ │ │ │ │ ├── with_non-existing_application.json │ │ │ │ │ │ └── with_non-existing_log.json │ │ │ │ │ └── succeeds │ │ │ │ │ │ ├── for_type_request_as_log.json │ │ │ │ │ │ ├── for_type_request_log_as_tar_gz.json │ │ │ │ │ │ └── for_type_request_log_as_zip.json │ │ │ │ ├── get │ │ │ │ │ └── fails │ │ │ │ │ │ ├── with_non-existent_log_id.json │ │ │ │ │ │ └── with_non-existing_application.json │ │ │ │ └── list │ │ │ │ │ ├── fails_for_non-existing_application.json │ │ │ │ │ └── succeeds.json │ │ │ ├── app-services │ │ │ │ ├── add │ │ │ │ │ ├── fails │ │ │ │ │ │ ├── if_the_service_is_already_assigned.json │ │ │ │ │ │ ├── with_invalid_plan.json │ │ │ │ │ │ ├── with_invalid_service.json │ │ │ │ │ │ ├── with_missing_plan.json │ │ │ │ │ │ └── with_missing_service.json │ │ │ │ │ └── succeeds │ │ │ │ │ │ └── with_1st_invocation.json │ │ │ │ ├── get │ │ │ │ │ ├── fails │ │ │ │ │ │ ├── with_non-existent_application.json │ │ │ │ │ │ └── with_non-existent_service.json │ │ │ │ │ └── succeeds.json │ │ │ │ ├── list.json │ │ │ │ ├── list │ │ │ │ │ ├── fails_for_non-existing_application.json │ │ │ │ │ └── succeeds.json │ │ │ │ └── remove │ │ │ │ │ ├── fails │ │ │ │ │ ├── with_non-existent_application.json │ │ │ │ │ └── with_non-existent_service.json │ │ │ │ │ └── succeeds.json │ │ │ ├── app-vars │ │ │ │ ├── create │ │ │ │ │ ├── fails │ │ │ │ │ │ ├── if_the_key_is_already_used.json │ │ │ │ │ │ ├── with_missing_key_property.json │ │ │ │ │ │ └── with_missing_value_property.json │ │ │ │ │ └── succeeds │ │ │ │ │ │ ├── no_2_using_app_all │ │ │ │ │ │ ├── did_not_alter_other_vars.json │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ │ ├── using_app_all.json │ │ │ │ │ │ └── using_app_with_min_properties.json │ │ │ │ ├── delete │ │ │ │ │ ├── did_not_alter_other_vars.json │ │ │ │ │ ├── fails_for │ │ │ │ │ │ ├── non-existing_application.json │ │ │ │ │ │ └── non-existing_key.json │ │ │ │ │ └── succeeds.json │ │ │ │ ├── get │ │ │ │ │ ├── fails_for_non-existent_key.json │ │ │ │ │ └── succeeds.json │ │ │ │ ├── list │ │ │ │ │ ├── fails_for_non-existing_application.json │ │ │ │ │ ├── succeeds.json │ │ │ │ │ └── with_empty_result_list.json │ │ │ │ └── update │ │ │ │ │ ├── did_not_alter_other_vars.json │ │ │ │ │ ├── fails │ │ │ │ │ ├── with_missing_value.json │ │ │ │ │ └── with_non-existing_key.json │ │ │ │ │ └── succeeds.json │ │ │ ├── app │ │ │ │ ├── create │ │ │ │ │ ├── fails │ │ │ │ │ │ ├── in_2nd_attempt_with_duplicate_name.json │ │ │ │ │ │ ├── with_invalid │ │ │ │ │ │ │ ├── region.json │ │ │ │ │ │ │ └── runtimes │ │ │ │ │ │ │ │ └── by_bad_URL_and_unknown_name.json │ │ │ │ │ │ └── with_missing │ │ │ │ │ │ │ ├── name_property.json │ │ │ │ │ │ │ └── runtimes_property.json │ │ │ │ │ └── succeeds │ │ │ │ │ │ ├── of_type_nodejs_with_all_properties.json │ │ │ │ │ │ └── of_type_nodejs_with_minimal_properties.json │ │ │ │ ├── delete │ │ │ │ │ ├── fails_for_non-existing_application.json │ │ │ │ │ └── for_created_application │ │ │ │ │ │ ├── with_all_properties │ │ │ │ │ │ ├── makes_GET_of_that_app_return_404.json │ │ │ │ │ │ └── succeeds.json │ │ │ │ │ │ └── with_min_properties │ │ │ │ │ │ ├── makes_GET_of_that_app_return_404.json │ │ │ │ │ │ └── succeeds.json │ │ │ │ ├── get │ │ │ │ │ ├── fails_for_non-existent_application.json │ │ │ │ │ └── succeeds.json │ │ │ │ ├── list.json │ │ │ │ └── web_access │ │ │ │ │ ├── for_app_with_all_properties.json │ │ │ │ │ └── for_app_with_min_properties.json │ │ │ ├── regions │ │ │ │ ├── get.json │ │ │ │ └── list.json │ │ │ ├── service-plans │ │ │ │ ├── get │ │ │ │ │ ├── fails_for │ │ │ │ │ │ ├── get_of_service_plan_with_non-existent_service.json │ │ │ │ │ │ └── get_of_service_plan_with_non-existent_service_plan.json │ │ │ │ │ └── succeeds.json │ │ │ │ └── list │ │ │ │ │ ├── fails_for_get_of_service_plan_with_non-existent_service.json │ │ │ │ │ └── succeeds.json │ │ │ └── services │ │ │ │ ├── get │ │ │ │ ├── fails_for_get_of_non-existent_service.json │ │ │ │ └── succeeds.json │ │ │ │ └── list.json │ │ │ └── native_adapter_call │ │ │ └── against_endpoint │ │ │ └── does_fetch_all_cartridges │ │ │ ├── has_a_request_id.json │ │ │ ├── has_status_200.json │ │ │ ├── with_the_matching_content_declaration.json │ │ │ └── with_the_specified_structure.json │ ├── support │ │ ├── features │ │ │ ├── shared_example_adapter_application_data.rb │ │ │ ├── shared_example_adapter_application_domains.rb │ │ │ ├── shared_example_adapter_application_lifecycle.rb │ │ │ ├── shared_example_adapter_application_logs.rb │ │ │ ├── shared_example_adapter_application_scaling.rb │ │ │ ├── shared_example_adapter_application_services.rb │ │ │ ├── shared_example_adapter_application_states.rb │ │ │ ├── shared_example_adapter_application_vars.rb │ │ │ ├── shared_example_adapter_applications.rb │ │ │ ├── shared_example_adapter_authentication.rb │ │ │ ├── shared_example_adapter_regions.rb │ │ │ ├── shared_example_adapter_service_plans.rb │ │ │ └── shared_example_adapter_services.rb │ │ ├── shared_example_adapters_invalid_auth.rb │ │ └── shared_example_adapters_valid_auth.rb │ └── v1 │ │ ├── cloud_foundry_v2 │ │ └── cloud_foundry_v2_spec.rb │ │ ├── heroku │ │ └── heroku_spec.rb │ │ └── openshift_v2 │ │ └── openshift_v2_spec.rb ├── factories │ └── models.rb ├── integration │ ├── api │ │ ├── auth_spec.rb │ │ ├── endpoints_spec.rb │ │ ├── errors_spec.rb │ │ ├── providers_spec.rb │ │ ├── swagger_schema_spec.rb │ │ └── vendors_spec.rb │ ├── integration_spec_helper.rb │ └── test_data_generator.rb ├── nucleus_git_key.pem ├── spec_helper.rb ├── support │ └── shared_example_request_types.rb ├── test_suites.rake └── unit │ ├── adapters │ ├── archive_converter_spec.rb │ ├── file_manager_spec.rb │ ├── git_deployer_spec.rb │ └── v1 │ │ └── stub_spec.rb │ ├── common │ ├── helpers │ │ └── auth_helper_spec.rb │ ├── oauth2_auth_client_spec.rb │ ├── regexp_spec.rb │ ├── request_log_formatter_spec.rb │ └── thread_config_accessor_spec.rb │ ├── models │ ├── endpoint_spec.rb │ ├── provider_spec.rb │ └── vendor_spec.rb │ ├── schemas │ ├── adapter_schema_spec.rb │ ├── adapter_validation_spec.rb │ └── requirements_schema_spec.rb │ └── unit_spec_helper.rb ├── tasks ├── compatibility.rake └── evaluation.rake └── wiki ├── adapter_tests.md └── implement_new_adapter.md /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | CHANGELOG.md merge=union -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --format progress 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/nucleus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/bin/nucleus -------------------------------------------------------------------------------- /bin/nucleus.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/bin/nucleus.bat -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/config.ru -------------------------------------------------------------------------------- /config/adapters/cloud_foundry_v2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/config/adapters/cloud_foundry_v2.yml -------------------------------------------------------------------------------- /config/adapters/heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/config/adapters/heroku.yml -------------------------------------------------------------------------------- /config/adapters/openshift_v2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/config/adapters/openshift_v2.yml -------------------------------------------------------------------------------- /config/nucleus_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/config/nucleus_config.rb -------------------------------------------------------------------------------- /lib/nucleus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus.rb -------------------------------------------------------------------------------- /lib/nucleus/adapter_resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapter_resolver.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/base_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/base_adapter.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/buildpack_translator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/buildpack_translator.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/cloud_foundry_v2/app_states.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/cloud_foundry_v2/app_states.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/cloud_foundry_v2/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/cloud_foundry_v2/application.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/cloud_foundry_v2/authentication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/cloud_foundry_v2/authentication.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/cloud_foundry_v2/buildpacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/cloud_foundry_v2/buildpacks.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/cloud_foundry_v2/cloud_foundry_v2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/cloud_foundry_v2/cloud_foundry_v2.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/cloud_foundry_v2/data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/cloud_foundry_v2/data.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/cloud_foundry_v2/domains.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/cloud_foundry_v2/domains.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/cloud_foundry_v2/lifecycle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/cloud_foundry_v2/lifecycle.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/cloud_foundry_v2/logs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/cloud_foundry_v2/logs.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/cloud_foundry_v2/regions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/cloud_foundry_v2/regions.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/cloud_foundry_v2/scaling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/cloud_foundry_v2/scaling.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/cloud_foundry_v2/semantic_errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/cloud_foundry_v2/semantic_errors.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/cloud_foundry_v2/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/cloud_foundry_v2/services.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/cloud_foundry_v2/vars.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/cloud_foundry_v2/vars.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/heroku/app_states.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/heroku/app_states.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/heroku/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/heroku/application.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/heroku/authentication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/heroku/authentication.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/heroku/buildpacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/heroku/buildpacks.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/heroku/data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/heroku/data.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/heroku/domains.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/heroku/domains.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/heroku/heroku.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/heroku/heroku.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/heroku/lifecycle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/heroku/lifecycle.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/heroku/logs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/heroku/logs.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/heroku/regions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/heroku/regions.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/heroku/scaling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/heroku/scaling.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/heroku/semantic_errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/heroku/semantic_errors.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/heroku/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/heroku/services.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/heroku/vars.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/heroku/vars.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/openshift_v2/app_states.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/openshift_v2/app_states.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/openshift_v2/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/openshift_v2/application.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/openshift_v2/authentication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/openshift_v2/authentication.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/openshift_v2/data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/openshift_v2/data.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/openshift_v2/domains.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/openshift_v2/domains.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/openshift_v2/lifecycle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/openshift_v2/lifecycle.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/openshift_v2/logs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/openshift_v2/logs.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/openshift_v2/openshift_v2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/openshift_v2/openshift_v2.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/openshift_v2/regions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/openshift_v2/regions.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/openshift_v2/scaling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/openshift_v2/scaling.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/openshift_v2/semantic_errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/openshift_v2/semantic_errors.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/openshift_v2/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/openshift_v2/services.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/openshift_v2/vars.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/openshift_v2/vars.rb -------------------------------------------------------------------------------- /lib/nucleus/adapters/v1/stub_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/adapters/v1/stub_adapter.rb -------------------------------------------------------------------------------- /lib/nucleus/core/adapter_authentication_inductor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/adapter_authentication_inductor.rb -------------------------------------------------------------------------------- /lib/nucleus/core/adapter_extensions/auth/auth_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/adapter_extensions/auth/auth_client.rb -------------------------------------------------------------------------------- /lib/nucleus/core/adapter_extensions/auth/authentication_retry_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/adapter_extensions/auth/authentication_retry_wrapper.rb -------------------------------------------------------------------------------- /lib/nucleus/core/adapter_extensions/auth/expiring_token_auth_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/adapter_extensions/auth/expiring_token_auth_client.rb -------------------------------------------------------------------------------- /lib/nucleus/core/adapter_extensions/auth/http_basic_auth_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/adapter_extensions/auth/http_basic_auth_client.rb -------------------------------------------------------------------------------- /lib/nucleus/core/adapter_extensions/auth/o_auth2_auth_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/adapter_extensions/auth/o_auth2_auth_client.rb -------------------------------------------------------------------------------- /lib/nucleus/core/adapter_extensions/auth/token_auth_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/adapter_extensions/auth/token_auth_client.rb -------------------------------------------------------------------------------- /lib/nucleus/core/adapter_extensions/http_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/adapter_extensions/http_client.rb -------------------------------------------------------------------------------- /lib/nucleus/core/adapter_extensions/http_tail_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/adapter_extensions/http_tail_client.rb -------------------------------------------------------------------------------- /lib/nucleus/core/adapter_extensions/tail_stopper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/adapter_extensions/tail_stopper.rb -------------------------------------------------------------------------------- /lib/nucleus/core/common/errors/ambiguous_adapter_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/common/errors/ambiguous_adapter_error.rb -------------------------------------------------------------------------------- /lib/nucleus/core/common/errors/file_existence_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/common/errors/file_existence_error.rb -------------------------------------------------------------------------------- /lib/nucleus/core/common/errors/startup_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/common/errors/startup_error.rb -------------------------------------------------------------------------------- /lib/nucleus/core/common/exit_codes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/common/exit_codes.rb -------------------------------------------------------------------------------- /lib/nucleus/core/common/files/application_repo_sanitizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/common/files/application_repo_sanitizer.rb -------------------------------------------------------------------------------- /lib/nucleus/core/common/files/archive_extractor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/common/files/archive_extractor.rb -------------------------------------------------------------------------------- /lib/nucleus/core/common/files/archiver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/common/files/archiver.rb -------------------------------------------------------------------------------- /lib/nucleus/core/common/link_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/common/link_generator.rb -------------------------------------------------------------------------------- /lib/nucleus/core/common/logging/logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/common/logging/logging.rb -------------------------------------------------------------------------------- /lib/nucleus/core/common/logging/multi_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/common/logging/multi_logger.rb -------------------------------------------------------------------------------- /lib/nucleus/core/common/logging/request_log_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/common/logging/request_log_formatter.rb -------------------------------------------------------------------------------- /lib/nucleus/core/common/ssh_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/common/ssh_handler.rb -------------------------------------------------------------------------------- /lib/nucleus/core/common/stream_callback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/common/stream_callback.rb -------------------------------------------------------------------------------- /lib/nucleus/core/common/thread_config_accessor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/common/thread_config_accessor.rb -------------------------------------------------------------------------------- /lib/nucleus/core/common/url_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/common/url_converter.rb -------------------------------------------------------------------------------- /lib/nucleus/core/enums/application_states.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/enums/application_states.rb -------------------------------------------------------------------------------- /lib/nucleus/core/enums/logfile_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/enums/logfile_types.rb -------------------------------------------------------------------------------- /lib/nucleus/core/error_messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/error_messages.rb -------------------------------------------------------------------------------- /lib/nucleus/core/errors/adapter_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/errors/adapter_error.rb -------------------------------------------------------------------------------- /lib/nucleus/core/errors/adapter_missing_implementation_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/errors/adapter_missing_implementation_error.rb -------------------------------------------------------------------------------- /lib/nucleus/core/errors/adapter_request_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/errors/adapter_request_error.rb -------------------------------------------------------------------------------- /lib/nucleus/core/errors/adapter_resource_not_found_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/errors/adapter_resource_not_found_error.rb -------------------------------------------------------------------------------- /lib/nucleus/core/errors/endpoint_authentication_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/errors/endpoint_authentication_error.rb -------------------------------------------------------------------------------- /lib/nucleus/core/errors/platform_specific_semantic_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/errors/platform_specific_semantic_error.rb -------------------------------------------------------------------------------- /lib/nucleus/core/errors/platform_timeout_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/errors/platform_timeout_error.rb -------------------------------------------------------------------------------- /lib/nucleus/core/errors/platform_unavailable_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/errors/platform_unavailable_error.rb -------------------------------------------------------------------------------- /lib/nucleus/core/errors/semantic_adapter_request_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/errors/semantic_adapter_request_error.rb -------------------------------------------------------------------------------- /lib/nucleus/core/errors/unknown_adapter_call_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/errors/unknown_adapter_call_error.rb -------------------------------------------------------------------------------- /lib/nucleus/core/file_handling/archive_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/file_handling/archive_converter.rb -------------------------------------------------------------------------------- /lib/nucleus/core/file_handling/file_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/file_handling/file_manager.rb -------------------------------------------------------------------------------- /lib/nucleus/core/file_handling/git_deployer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/file_handling/git_deployer.rb -------------------------------------------------------------------------------- /lib/nucleus/core/file_handling/git_repo_analyzer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/file_handling/git_repo_analyzer.rb -------------------------------------------------------------------------------- /lib/nucleus/core/import/adapter_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/import/adapter_configuration.rb -------------------------------------------------------------------------------- /lib/nucleus/core/import/vendor_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/import/vendor_parser.rb -------------------------------------------------------------------------------- /lib/nucleus/core/import/version_detector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/import/version_detector.rb -------------------------------------------------------------------------------- /lib/nucleus/core/models/abstract_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/models/abstract_model.rb -------------------------------------------------------------------------------- /lib/nucleus/core/models/endpoint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/models/endpoint.rb -------------------------------------------------------------------------------- /lib/nucleus/core/models/provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/models/provider.rb -------------------------------------------------------------------------------- /lib/nucleus/core/models/vendor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/core/models/vendor.rb -------------------------------------------------------------------------------- /lib/nucleus/ext/kernel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/ext/kernel.rb -------------------------------------------------------------------------------- /lib/nucleus/ext/regexp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/ext/regexp.rb -------------------------------------------------------------------------------- /lib/nucleus/os.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/os.rb -------------------------------------------------------------------------------- /lib/nucleus/root_dir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/root_dir.rb -------------------------------------------------------------------------------- /lib/nucleus/scripts/finalize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/scripts/finalize.rb -------------------------------------------------------------------------------- /lib/nucleus/scripts/initialize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/scripts/initialize.rb -------------------------------------------------------------------------------- /lib/nucleus/scripts/initialize_config_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/scripts/initialize_config_defaults.rb -------------------------------------------------------------------------------- /lib/nucleus/scripts/load.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/scripts/load.rb -------------------------------------------------------------------------------- /lib/nucleus/scripts/load_dependencies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/scripts/load_dependencies.rb -------------------------------------------------------------------------------- /lib/nucleus/scripts/setup_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/scripts/setup_config.rb -------------------------------------------------------------------------------- /lib/nucleus/scripts/shutdown.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus/scripts/shutdown.rb -------------------------------------------------------------------------------- /lib/nucleus/version.rb: -------------------------------------------------------------------------------- 1 | module Nucleus 2 | VERSION = '0.3.2'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /lib/nucleus_api/api/common/error_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/common/error_builder.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/abstract_entity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/abstract_entity.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/abstract_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/abstract_service.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/api.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/api_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/api_version.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/api_version_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/api_version_resource.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/application.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/collections/applications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/collections/applications.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/collections/collection_entity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/collections/collection_entity.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/collections/domains.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/collections/domains.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/collections/endpoints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/collections/endpoints.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/collections/environment_variables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/collections/environment_variables.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/collections/installed_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/collections/installed_services.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/collections/logs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/collections/logs.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/collections/providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/collections/providers.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/collections/regions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/collections/regions.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/collections/service_plans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/collections/service_plans.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/collections/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/collections/services.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/collections/vendors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/collections/vendors.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/domain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/domain.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/endpoint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/endpoint.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/environment_variable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/environment_variable.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/error.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/installed_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/installed_service.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/installed_service_property.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/installed_service_property.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/link.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/links/api_references.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/links/api_references.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/links/application_references.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/links/application_references.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/links/basic_references.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/links/basic_references.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/links/service_references.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/links/service_references.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/log.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/persisted_entity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/persisted_entity.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/provider.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/region.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/region.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/service.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/service_costs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/service_costs.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/service_costs_price.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/service_costs_price.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/service_plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/service_plan.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/entities/vendor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/entities/vendor.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/enums/compression_formats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/enums/compression_formats.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/enums/log_download_formats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/enums/log_download_formats.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/error_responses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/error_responses.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/errors/api_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/errors/api_error.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/errors/application_archive_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/errors/application_archive_error.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/errors/resource_not_found_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/errors/resource_not_found_error.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/helpers/adapter_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/helpers/adapter_helper.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/helpers/auth_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/helpers/auth_helper.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/helpers/dao_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/helpers/dao_helper.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/helpers/error_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/helpers/error_helper.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/helpers/form_processing_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/helpers/form_processing_helper.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/helpers/link_generator_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/helpers/link_generator_helper.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/helpers/log_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/helpers/log_helper.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/helpers/shared_params_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/helpers/shared_params_helper.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/helpers/streaming_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/helpers/streaming_helper.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/root_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/root_api.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/v1/auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/v1/auth.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/v1/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/v1/base.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/v1/endpoints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/v1/endpoints.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/v1/protected/application_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/v1/protected/application_data.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/v1/protected/application_domains.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/v1/protected/application_domains.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/v1/protected/application_env_vars.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/v1/protected/application_env_vars.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/v1/protected/application_lifecycle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/v1/protected/application_lifecycle.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/v1/protected/application_logs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/v1/protected/application_logs.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/v1/protected/application_logs_tail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/v1/protected/application_logs_tail.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/v1/protected/application_scaling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/v1/protected/application_scaling.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/v1/protected/application_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/v1/protected/application_services.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/v1/protected/applications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/v1/protected/applications.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/v1/protected/calls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/v1/protected/calls.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/v1/protected/regions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/v1/protected/regions.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/v1/protected/service_plans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/v1/protected/service_plans.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/v1/protected/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/v1/protected/services.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/v1/providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/v1/providers.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/v1/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/v1/requirements.yml -------------------------------------------------------------------------------- /lib/nucleus_api/api/versions/v1/vendors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api/versions/v1/vendors.rb -------------------------------------------------------------------------------- /lib/nucleus_api/api_root_dir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/api_root_dir.rb -------------------------------------------------------------------------------- /lib/nucleus_api/ext/grape/auth_dsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/ext/grape/auth_dsl.rb -------------------------------------------------------------------------------- /lib/nucleus_api/ext/grape/dynamic_realm_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/ext/grape/dynamic_realm_base.rb -------------------------------------------------------------------------------- /lib/nucleus_api/ext/grape/grape_middleware_header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/ext/grape/grape_middleware_header.rb -------------------------------------------------------------------------------- /lib/nucleus_api/ext/grape/params_scope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/ext/grape/params_scope.rb -------------------------------------------------------------------------------- /lib/nucleus_api/ext/lint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/ext/lint.rb -------------------------------------------------------------------------------- /lib/nucleus_api/import/adapter_importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/import/adapter_importer.rb -------------------------------------------------------------------------------- /lib/nucleus_api/import/api_requirements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/import/api_requirements.rb -------------------------------------------------------------------------------- /lib/nucleus_api/import/api_version_detector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/import/api_version_detector.rb -------------------------------------------------------------------------------- /lib/nucleus_api/persistence/cache_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/persistence/cache_store.rb -------------------------------------------------------------------------------- /lib/nucleus_api/persistence/daos/adapter_dao.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/persistence/daos/adapter_dao.rb -------------------------------------------------------------------------------- /lib/nucleus_api/persistence/daos/cache_dao.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/persistence/daos/cache_dao.rb -------------------------------------------------------------------------------- /lib/nucleus_api/persistence/daos/endpoint_dao.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/persistence/daos/endpoint_dao.rb -------------------------------------------------------------------------------- /lib/nucleus_api/persistence/daos/provider_dao.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/persistence/daos/provider_dao.rb -------------------------------------------------------------------------------- /lib/nucleus_api/persistence/daos/vendor_dao.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/persistence/daos/vendor_dao.rb -------------------------------------------------------------------------------- /lib/nucleus_api/persistence/models/adapter_index_entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/persistence/models/adapter_index_entry.rb -------------------------------------------------------------------------------- /lib/nucleus_api/persistence/models/required_method.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/persistence/models/required_method.rb -------------------------------------------------------------------------------- /lib/nucleus_api/persistence/models/requirements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/persistence/models/requirements.rb -------------------------------------------------------------------------------- /lib/nucleus_api/persistence/store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/persistence/store.rb -------------------------------------------------------------------------------- /lib/nucleus_api/rack_middleware/access_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/rack_middleware/access_logger.rb -------------------------------------------------------------------------------- /lib/nucleus_api/rack_middleware/basic_auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/rack_middleware/basic_auth.rb -------------------------------------------------------------------------------- /lib/nucleus_api/rack_middleware/error_request_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/rack_middleware/error_request_logger.rb -------------------------------------------------------------------------------- /lib/nucleus_api/rack_middleware/request_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/rack_middleware/request_id.rb -------------------------------------------------------------------------------- /lib/nucleus_api/scripts/initialize_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/scripts/initialize_api.rb -------------------------------------------------------------------------------- /lib/nucleus_api/scripts/initialize_api_customizations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/scripts/initialize_api_customizations.rb -------------------------------------------------------------------------------- /lib/nucleus_api/scripts/initialize_daos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/scripts/initialize_daos.rb -------------------------------------------------------------------------------- /lib/nucleus_api/scripts/load_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/scripts/load_api.rb -------------------------------------------------------------------------------- /lib/nucleus_api/scripts/rack_application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/scripts/rack_application.rb -------------------------------------------------------------------------------- /lib/nucleus_api/scripts/shutdown_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/scripts/shutdown_api.rb -------------------------------------------------------------------------------- /lib/nucleus_api/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/lib/nucleus_api/version.rb -------------------------------------------------------------------------------- /nucleus.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/nucleus.gemspec -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /public/swagger-ui/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/css/print.css -------------------------------------------------------------------------------- /public/swagger-ui/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/css/reset.css -------------------------------------------------------------------------------- /public/swagger-ui/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/css/screen.css -------------------------------------------------------------------------------- /public/swagger-ui/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/css/style.css -------------------------------------------------------------------------------- /public/swagger-ui/css/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/css/typography.css -------------------------------------------------------------------------------- /public/swagger-ui/fonts/DroidSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/fonts/DroidSans-Bold.ttf -------------------------------------------------------------------------------- /public/swagger-ui/fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/fonts/DroidSans.ttf -------------------------------------------------------------------------------- /public/swagger-ui/images/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/images/collapse.gif -------------------------------------------------------------------------------- /public/swagger-ui/images/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/images/expand.gif -------------------------------------------------------------------------------- /public/swagger-ui/images/explorer_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/images/explorer_icons.png -------------------------------------------------------------------------------- /public/swagger-ui/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/images/favicon-16x16.png -------------------------------------------------------------------------------- /public/swagger-ui/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/images/favicon-32x32.png -------------------------------------------------------------------------------- /public/swagger-ui/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/images/favicon.ico -------------------------------------------------------------------------------- /public/swagger-ui/images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/images/logo_small.png -------------------------------------------------------------------------------- /public/swagger-ui/images/pet_store_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/images/pet_store_api.png -------------------------------------------------------------------------------- /public/swagger-ui/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/images/throbber.gif -------------------------------------------------------------------------------- /public/swagger-ui/images/wordnik_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/images/wordnik_api.png -------------------------------------------------------------------------------- /public/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/index.html -------------------------------------------------------------------------------- /public/swagger-ui/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lang/en.js -------------------------------------------------------------------------------- /public/swagger-ui/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lang/es.js -------------------------------------------------------------------------------- /public/swagger-ui/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lang/fr.js -------------------------------------------------------------------------------- /public/swagger-ui/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lang/it.js -------------------------------------------------------------------------------- /public/swagger-ui/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lang/ja.js -------------------------------------------------------------------------------- /public/swagger-ui/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lang/pl.js -------------------------------------------------------------------------------- /public/swagger-ui/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lang/pt.js -------------------------------------------------------------------------------- /public/swagger-ui/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lang/ru.js -------------------------------------------------------------------------------- /public/swagger-ui/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lang/tr.js -------------------------------------------------------------------------------- /public/swagger-ui/lang/translator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lang/translator.js -------------------------------------------------------------------------------- /public/swagger-ui/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lang/zh-cn.js -------------------------------------------------------------------------------- /public/swagger-ui/lib/backbone-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lib/backbone-min.js -------------------------------------------------------------------------------- /public/swagger-ui/lib/handlebars-2.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lib/handlebars-2.0.0.js -------------------------------------------------------------------------------- /public/swagger-ui/lib/highlight.7.3.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lib/highlight.7.3.pack.js -------------------------------------------------------------------------------- /public/swagger-ui/lib/jquery-1.8.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lib/jquery-1.8.0.min.js -------------------------------------------------------------------------------- /public/swagger-ui/lib/jquery.ba-bbq.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lib/jquery.ba-bbq.min.js -------------------------------------------------------------------------------- /public/swagger-ui/lib/jquery.slideto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lib/jquery.slideto.min.js -------------------------------------------------------------------------------- /public/swagger-ui/lib/jquery.wiggle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lib/jquery.wiggle.min.js -------------------------------------------------------------------------------- /public/swagger-ui/lib/jsoneditor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lib/jsoneditor.min.js -------------------------------------------------------------------------------- /public/swagger-ui/lib/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lib/marked.js -------------------------------------------------------------------------------- /public/swagger-ui/lib/swagger-oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lib/swagger-oauth.js -------------------------------------------------------------------------------- /public/swagger-ui/lib/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lib/underscore-min.js -------------------------------------------------------------------------------- /public/swagger-ui/lib/underscore-min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/lib/underscore-min.map -------------------------------------------------------------------------------- /public/swagger-ui/o2c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/o2c.html -------------------------------------------------------------------------------- /public/swagger-ui/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/redirect.html -------------------------------------------------------------------------------- /public/swagger-ui/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/swagger-ui.js -------------------------------------------------------------------------------- /public/swagger-ui/swagger-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/public/swagger-ui/swagger-ui.min.js -------------------------------------------------------------------------------- /schemas/api.adapter.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/schemas/api.adapter.schema.yml -------------------------------------------------------------------------------- /schemas/api.requirements.schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/schemas/api.requirements.schema.yml -------------------------------------------------------------------------------- /spec/adapter/adapter_spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/adapter_spec_helper.rb -------------------------------------------------------------------------------- /spec/adapter/application-archives/corrupted-archive.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/application-archives/corrupted-archive.tar.gz -------------------------------------------------------------------------------- /spec/adapter/application-archives/corrupted-archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/application-archives/corrupted-archive.zip -------------------------------------------------------------------------------- /spec/adapter/application-archives/valid-sample-app.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/application-archives/valid-sample-app.tar.gz -------------------------------------------------------------------------------- /spec/adapter/application-archives/valid-sample-app.tbz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/application-archives/valid-sample-app.tbz2 -------------------------------------------------------------------------------- /spec/adapter/application-archives/valid-sample-app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/application-archives/valid-sample-app.zip -------------------------------------------------------------------------------- /spec/adapter/common_api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/common_api_spec.rb -------------------------------------------------------------------------------- /spec/adapter/helpers/adapter_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/helpers/adapter_helper.rb -------------------------------------------------------------------------------- /spec/adapter/helpers/credentials_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/helpers/credentials_helper.rb -------------------------------------------------------------------------------- /spec/adapter/helpers/em_http_stream_recorder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/helpers/em_http_stream_recorder.rb -------------------------------------------------------------------------------- /spec/adapter/helpers/faye_websocket_recorder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/helpers/faye_websocket_recorder.rb -------------------------------------------------------------------------------- /spec/adapter/helpers/method_response_recorder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/helpers/method_response_recorder.rb -------------------------------------------------------------------------------- /spec/adapter/helpers/mock_stream_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/helpers/mock_stream_server.rb -------------------------------------------------------------------------------- /spec/adapter/helpers/rack_test_mock_session_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/helpers/rack_test_mock_session_patch.rb -------------------------------------------------------------------------------- /spec/adapter/helpers/rspec_config_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/helpers/rspec_config_helper.rb -------------------------------------------------------------------------------- /spec/adapter/helpers/rspec_eventmachine_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/helpers/rspec_eventmachine_patch.rb -------------------------------------------------------------------------------- /spec/adapter/helpers/vcr_config_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/helpers/vcr_config_helper.rb -------------------------------------------------------------------------------- /spec/adapter/helpers/vcr_oj_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/helpers/vcr_oj_serializer.rb -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/method_cassettes/nucleus/adapters/archive_converter/convert/03836262f8a0c1f63d69f46663caeed3/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/method_cassettes/nucleus/adapters/archive_converter/convert/03836262f8a0c1f63d69f46663caeed3/response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/method_cassettes/nucleus/adapters/archive_converter/convert/3949dc9e914bc0a670e47b04e203f94f/io_response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/method_cassettes/nucleus/adapters/archive_converter/convert/3949dc9e914bc0a670e47b04e203f94f/io_response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/method_cassettes/nucleus/adapters/archive_converter/convert/e3df836db0614ee5554933ce286999b2/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/method_cassettes/nucleus/adapters/archive_converter/convert/e3df836db0614ee5554933ce286999b2/response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/method_cassettes/nucleus/adapters/archive_converter/convert/eda45389ede29e8436a6e3eefcb3bc83/io_response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/method_cassettes/nucleus/adapters/archive_converter/convert/eda45389ede29e8436a6e3eefcb3bc83/io_response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/method_cassettes/nucleus/adapters/archive_converter/convert/f60df35213b7c26a268ad9b547be77d1/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/method_cassettes/nucleus/adapters/archive_converter/convert/f60df35213b7c26a268ad9b547be77d1/response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/_auth_client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/_auth_client.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/lifecycle/fail/restart/fails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/lifecycle/fail/restart/fails.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/lifecycle/fail/start/fails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/lifecycle/fail/start/fails.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/lifecycle/fail/stop/fails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/lifecycle/fail/stop/fails.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/scaling/fails/with_0_instances_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/scaling/fails/with_0_instances_value.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/deploy/fails_for/corrupted_zip_archive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/deploy/fails_for/corrupted_zip_archive.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/rebuild/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/rebuild/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/create/fails/with_missing_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/create/fails/with_missing_name.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/create/if_the_name_is_already_used.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/create/if_the_name_is_already_used.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/get/fails_for_non-existent_domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/get/fails_for_non-existent_domain.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/get/succeeds/with_hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/get/succeeds/with_hostname.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/get/succeeds/without_hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/get/succeeds/without_hostname.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/list.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/list/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/list/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download-all/succeeds/as_tar_gz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download-all/succeeds/as_tar_gz.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download-all/succeeds/as_zip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download-all/succeeds/as_zip.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download/fails/with_non-existing_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download/fails/with_non-existing_log.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/fails/with_non-existent_log_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/fails/with_non-existent_log_id.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/fails/with_non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/fails/with_non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/of_type_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/of_type_request.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/with_empty_results_for_type_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/with_empty_results_for_type_request.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/list/fails_for_non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/list/fails_for_non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/list/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/list/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/tail/fails/with_non-existent_log_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/tail/fails/with_non-existent_log_id.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/tail/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/tail/request.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_invalid_plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_invalid_plan.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_invalid_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_invalid_service.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_missing_plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_missing_plan.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_missing_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_missing_service.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/succeeds/with_1st_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/succeeds/with_1st_invocation.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/change/fails/with_non-existent_plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/change/fails/with_non-existent_plan.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/get/fails/with_non-existent_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/get/fails/with_non-existent_service.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/get/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/get/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/list.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/list/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/list/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/remove/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/remove/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/fails/if_the_key_is_already_used.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/fails/if_the_key_is_already_used.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/fails/with_missing_key_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/fails/with_missing_key_property.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/succeeds/using_app_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/succeeds/using_app_all.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/did_not_alter_other_vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/did_not_alter_other_vars.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/fails_for/non-existing_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/fails_for/non-existing_key.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/get/fails_for_non-existent_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/get/fails_for_non-existent_key.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/get/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/get/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/list/fails_for_non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/list/fails_for_non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/list/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/list/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/list/with_empty_result_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/list/with_empty_result_list.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/did_not_alter_other_vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/did_not_alter_other_vars.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/fails/with_missing_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/fails/with_missing_value.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/fails/with_non-existing_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/fails/with_non-existing_key.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/with_invalid/region.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/with_invalid/region.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/with_missing/name_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/with_missing/name_property.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/with_missing/runtimes_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/with_missing/runtimes_property.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/delete/fails_for_non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/delete/fails_for_non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/get/fails_for_non-existent_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/get/fails_for_non-existent_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/get/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/get/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/list.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/web_access/for_app_with_all_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/web_access/for_app_with_all_properties.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/web_access/for_app_with_min_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/web_access/for_app_with_min_properties.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/application_update/app/update/fails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/application_update/app/update/fails.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/regions/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/regions/get.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/regions/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/regions/list.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/service-plans/get/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/service-plans/get/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/service-plans/list/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/service-plans/list/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/services/get/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/services/get/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/services/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/services/list.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/native_adapter_call/against_endpoint/does_fetch_all_buildpacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/vcr_cassettes/with_valid_credentials/native_adapter_call/against_endpoint/does_fetch_all_buildpacks.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/websocket_cassettes/faye_websocket/6e6faac84968756e78a959c28e39468d/response_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/websocket_cassettes/faye_websocket/6e6faac84968756e78a959c28e39468d/response_0 -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/websocket_cassettes/faye_websocket/6e6faac84968756e78a959c28e39468d/response_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/websocket_cassettes/faye_websocket/6e6faac84968756e78a959c28e39468d/response_1 -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/cloud_foundry_v2/websocket_cassettes/faye_websocket/6e6faac84968756e78a959c28e39468d/response_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/cloud_foundry_v2/websocket_cassettes/faye_websocket/6e6faac84968756e78a959c28e39468d/response_2 -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/http_stream_cassettes/em-http-request/c33beae8f946205946c4a28c94a1b77a/response_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/http_stream_cassettes/em-http-request/c33beae8f946205946c4a28c94a1b77a/response_0 -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/http_stream_cassettes/em-http-request/c33beae8f946205946c4a28c94a1b77a/response_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/http_stream_cassettes/em-http-request/c33beae8f946205946c4a28c94a1b77a/response_1 -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/http_stream_cassettes/em-http-request/c33beae8f946205946c4a28c94a1b77a/response_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/http_stream_cassettes/em-http-request/c33beae8f946205946c4a28c94a1b77a/response_2 -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/method_cassettes/nucleus/adapters/file_manager/save_file_from_data/1851d9e883ed2f06b15e8c113ddae451/response: -------------------------------------------------------------------------------- 1 | 55 2 | -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/method_cassettes/nucleus/adapters/file_manager/save_file_from_data/56fe820228ee4fa38f59d07854c514dd/response: -------------------------------------------------------------------------------- 1 | 55 2 | -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/method_cassettes/nucleus/adapters/git_deployer/deploy/5dfa09b52dc881a3495b378551d3c333/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/method_cassettes/nucleus/adapters/git_deployer/deploy/5dfa09b52dc881a3495b378551d3c333/response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/method_cassettes/nucleus/adapters/git_deployer/deploy/81c04e4f411faceba5648f47d2d1470b/response: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/method_cassettes/nucleus/adapters/git_deployer/deploy/a9a562a27e9b24d89d834136952a0eb9/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/method_cassettes/nucleus/adapters/git_deployer/deploy/a9a562a27e9b24d89d834136952a0eb9/response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/method_cassettes/nucleus/adapters/git_deployer/deploy/b93b01aad069eea6fbaddac34271205f/response: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/method_cassettes/nucleus/adapters/git_deployer/deploy/dcbc3b67fa14e5443eecccd6b7b5ddc9/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/method_cassettes/nucleus/adapters/git_deployer/deploy/dcbc3b67fa14e5443eecccd6b7b5ddc9/response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/method_cassettes/nucleus/adapters/git_deployer/download/37374fecac557d1e2969cddf96fd4301/io_response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/method_cassettes/nucleus/adapters/git_deployer/download/37374fecac557d1e2969cddf96fd4301/io_response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/method_cassettes/nucleus/adapters/git_deployer/download/b69e03709fe1ce9a08d20694e58a06b7/io_response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/method_cassettes/nucleus/adapters/git_deployer/download/b69e03709fe1ce9a08d20694e58a06b7/io_response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/method_cassettes/nucleus/adapters/git_deployer/trigger_build/32ae9d1ca748f5f970dbe945597238c1/response: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/method_cassettes/nucleus/adapters/git_deployer/trigger_build/8fc66b76adb6915f80e013329b80bec7/response: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/lifecycle/fail/restart/fails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/lifecycle/fail/restart/fails.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/lifecycle/fail/start/fails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/lifecycle/fail/start/fails.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/lifecycle/fail/stop/fails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/lifecycle/fail/stop/fails.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/scaling/fails/with_0_instances_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/scaling/fails/with_0_instances_value.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/scaling/fails/with_missing_instances_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/scaling/fails/with_missing_instances_property.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/scaling/fails/with_negative_instances_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/scaling/fails/with_negative_instances_value.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/deploy/fails_for/corrupted_tar_gz_archive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/deploy/fails_for/corrupted_tar_gz_archive.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/deploy/fails_for/corrupted_zip_archive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/deploy/fails_for/corrupted_zip_archive.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/deploy/fails_for/unsupported_archive_tbz2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/deploy/fails_for/unsupported_archive_tbz2.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/deploy/succeeds/and_app_with_all_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/deploy/succeeds/and_app_with_all_properties.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/deploy/succeeds/and_app_with_min_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/deploy/succeeds/and_app_with_min_properties.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/download/fails/for_non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/download/fails/for_non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/download/fails/with_invalid_archive_format_rar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/download/fails/with_invalid_archive_format_rar.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/download/succeeds/for_archive_format_tar_gz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/download/succeeds/for_archive_format_tar_gz.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/download/succeeds/for_default_archive_format_zip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/download/succeeds/for_default_archive_format_zip.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/rebuild/changes_the_release_version_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/rebuild/changes_the_release_version_property.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/rebuild/fails_when_there_is_no_deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/rebuild/fails_when_there_is_no_deployment.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/rebuild/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/rebuild/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/create/fails/with_invalid_name/email_as_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/create/fails/with_invalid_name/email_as_name.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/create/fails/with_missing_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/create/fails/with_missing_name.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/create/if_the_name_is_already_used.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/create/if_the_name_is_already_used.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/create/succeeds/with_hostname_in_the_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/create/succeeds/with_hostname_in_the_name.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/create/succeeds/without_hostname_in_the_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/create/succeeds/without_hostname_in_the_name.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/delete/fails_for/non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/delete/fails_for/non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/delete/fails_for/non-existing_domain_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/delete/fails_for/non-existing_domain_id.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/get/fails_for_non-existent_domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/get/fails_for_non-existent_domain.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/get/succeeds/with_hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/get/succeeds/with_hostname.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/get/succeeds/without_hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/get/succeeds/without_hostname.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/list.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/list/fails_for_non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/list/fails_for_non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/list/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/list/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download-all/fails/with_non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download-all/fails/with_non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download-all/succeeds/as_tar_gz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download-all/succeeds/as_tar_gz.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download-all/succeeds/as_zip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download-all/succeeds/as_zip.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download/fails/with_invalid_file_format_rar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download/fails/with_invalid_file_format_rar.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download/fails/with_non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download/fails/with_non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download/fails/with_non-existing_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download/fails/with_non-existing_log.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download/succeeds/for_type_request_as_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download/succeeds/for_type_request_as_log.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download/succeeds/for_type_request_log_as_tar_gz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download/succeeds/for_type_request_log_as_tar_gz.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download/succeeds/for_type_request_log_as_zip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download/succeeds/for_type_request_log_as_zip.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/fails/with_non-existent_log_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/fails/with_non-existent_log_id.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/fails/with_non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/fails/with_non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/of_type_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/of_type_request.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/with_empty_results_for_type_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/with_empty_results_for_type_request.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/list/fails_for_non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/list/fails_for_non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/list/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/list/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/tail/fails/with_non-existent_log_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/tail/fails/with_non-existent_log_id.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/tail/fails/with_non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/tail/fails/with_non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/tail/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/tail/request.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/if_the_service_is_already_assigned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/if_the_service_is_already_assigned.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_invalid_plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_invalid_plan.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_invalid_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_invalid_service.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_missing_plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_missing_plan.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_missing_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_missing_service.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/succeeds/with_1st_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/succeeds/with_1st_invocation.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/change/fails/with_non-existent_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/change/fails/with_non-existent_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/change/fails/with_non-existent_plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/change/fails/with_non-existent_plan.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/change/fails/with_non-existent_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/change/fails/with_non-existent_service.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/get/fails/with_non-existent_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/get/fails/with_non-existent_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/get/fails/with_non-existent_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/get/fails/with_non-existent_service.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/get/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/get/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/list.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/list/fails_for_non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/list/fails_for_non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/list/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/list/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/remove/fails/with_non-existent_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/remove/fails/with_non-existent_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/remove/fails/with_non-existent_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/remove/fails/with_non-existent_service.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/remove/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/remove/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/fails/if_the_key_is_already_used.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/fails/if_the_key_is_already_used.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/fails/with_missing_key_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/fails/with_missing_key_property.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/fails/with_missing_value_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/fails/with_missing_value_property.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/succeeds/no_2_using_app_all/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/succeeds/no_2_using_app_all/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/succeeds/using_app_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/succeeds/using_app_all.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/succeeds/using_app_with_min_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/succeeds/using_app_with_min_properties.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/did_not_alter_other_vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/did_not_alter_other_vars.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/fails_for/non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/fails_for/non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/fails_for/non-existing_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/fails_for/non-existing_key.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/get/fails_for_non-existent_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/get/fails_for_non-existent_key.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/get/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/get/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/list/fails_for_non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/list/fails_for_non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/list/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/list/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/list/with_empty_result_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/list/with_empty_result_list.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/did_not_alter_other_vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/did_not_alter_other_vars.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/fails/with_missing_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/fails/with_missing_value.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/fails/with_non-existing_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/fails/with_non-existing_key.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/in_2nd_attempt_with_duplicate_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/in_2nd_attempt_with_duplicate_name.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/with_invalid/region.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/with_invalid/region.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/with_missing/name_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/with_missing/name_property.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/with_missing/runtimes_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/with_missing/runtimes_property.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/succeeds/of_type_nodejs_with_all_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/succeeds/of_type_nodejs_with_all_properties.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/succeeds/of_type_nodejs_with_minimal_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/succeeds/of_type_nodejs_with_minimal_properties.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/delete/fails_for_non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/delete/fails_for_non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/get/fails_for_non-existent_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/get/fails_for_non-existent_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/get/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/get/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/list.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/web_access/for_app_with_all_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/web_access/for_app_with_all_properties.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/web_access/for_app_with_min_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/app/web_access/for_app_with_min_properties.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/application_update/app/update/fails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/application_update/app/update/fails.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/regions/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/regions/get.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/regions/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/regions/list.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/service-plans/get/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/service-plans/get/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/service-plans/list/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/service-plans/list/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/services/get/fails_for_get_of_non-existent_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/services/get/fails_for_get_of_non-existent_service.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/services/get/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/services/get/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/services/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/is_compliant_and/services/list.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/native_adapter_call/against_endpoint/does_fetch_account_data/has_status_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/heroku/vcr_cassettes/with_valid_credentials/native_adapter_call/against_endpoint/does_fetch_account_data/has_status_200.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/file_manager/save_file_from_data/2f1f8678bdef054c201b089bc3d32978/response: -------------------------------------------------------------------------------- 1 | 55 2 | -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/file_manager/save_file_from_data/ee97fe6d6a3dd87ea175fbd5eff40a16/response: -------------------------------------------------------------------------------- 1 | 55 2 | -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/git_deployer/deploy/012f6b0482ed35ff397ac794253d5b7a/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/git_deployer/deploy/012f6b0482ed35ff397ac794253d5b7a/response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/git_deployer/deploy/4658c35a058e45b0b7743a41ca70c363/response: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/git_deployer/deploy/60a19a1152f954b7f2df9295d3e8e942/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/git_deployer/deploy/60a19a1152f954b7f2df9295d3e8e942/response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/git_deployer/deploy/b256bfac18c71cbdabbf0235499f3fae/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/git_deployer/deploy/b256bfac18c71cbdabbf0235499f3fae/response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/git_deployer/deploy/d8b5d3904c10e8ff5f9bd38cd2c06e83/response: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/git_deployer/download/05e014036aef9240f68fec227b800988/io_response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/git_deployer/download/05e014036aef9240f68fec227b800988/io_response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/git_deployer/download/3cb1410b1781b2f9da120d0c60d4ba4e/io_response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/git_deployer/download/3cb1410b1781b2f9da120d0c60d4ba4e/io_response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/git_deployer/trigger_build/85d4e67a848b3fbc65febcaee120de50/response: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/git_deployer/trigger_build/e8a2b25a92ea0c297437e2f8e1a37504/response: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/v1/openshift_v2/remote_log_entries/2e11b61ac960f750de5147375a801fbb/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/v1/openshift_v2/remote_log_entries/2e11b61ac960f750de5147375a801fbb/response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/v1/openshift_v2/remote_log_entries/49d64701db1d63507e4b78b0f258a73d/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/v1/openshift_v2/remote_log_entries/49d64701db1d63507e4b78b0f258a73d/response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/v1/openshift_v2/remote_log_files/2e158883375687b653bf66d9aff47c52/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/v1/openshift_v2/remote_log_files/2e158883375687b653bf66d9aff47c52/response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/v1/openshift_v2/remote_log_files/330e27a78195534438fc55fd2bf8113c/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/v1/openshift_v2/remote_log_files/330e27a78195534438fc55fd2bf8113c/response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/v1/openshift_v2/remote_log_files/340afe8dff9b35830df363b3f015200a/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/v1/openshift_v2/remote_log_files/340afe8dff9b35830df363b3f015200a/response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/v1/openshift_v2/remote_log_files/4e23f9f9a7f074e2a8435a3004e4f246/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/v1/openshift_v2/remote_log_files/4e23f9f9a7f074e2a8435a3004e4f246/response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/v1/openshift_v2/remote_log_files/c6564dcab12fac5d84f50f0d411d52f7/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/v1/openshift_v2/remote_log_files/c6564dcab12fac5d84f50f0d411d52f7/response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/v1/openshift_v2/remote_log_files/e2ef02a97c1558a9d07a1ae7d051caed/response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/method_cassettes/nucleus/adapters/v1/openshift_v2/remote_log_files/e2ef02a97c1558a9d07a1ae7d051caed/response -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/lifecycle/fail/restart/fails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/lifecycle/fail/restart/fails.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/lifecycle/fail/start/fails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/lifecycle/fail/start/fails.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/lifecycle/fail/stop/fails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/lifecycle/fail/stop/fails.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/scaling/fails/with_0_instances_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-actions/scaling/fails/with_0_instances_value.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/deploy/fails_for/corrupted_tar_gz_archive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/deploy/fails_for/corrupted_tar_gz_archive.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/deploy/fails_for/corrupted_zip_archive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/deploy/fails_for/corrupted_zip_archive.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/deploy/fails_for/unsupported_archive_tbz2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/deploy/fails_for/unsupported_archive_tbz2.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/rebuild/fails_when_there_is_no_deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/rebuild/fails_when_there_is_no_deployment.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/rebuild/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-data/rebuild/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/create/fails/with_missing_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/create/fails/with_missing_name.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/create/if_the_name_is_already_used.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/create/if_the_name_is_already_used.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/get/fails_for_non-existent_domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/get/fails_for_non-existent_domain.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/get/succeeds/with_hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/get/succeeds/with_hostname.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/get/succeeds/without_hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/get/succeeds/without_hostname.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/list.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/list/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-domains/list/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download-all/succeeds/as_tar_gz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download-all/succeeds/as_tar_gz.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download-all/succeeds/as_zip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download-all/succeeds/as_zip.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download/fails/with_non-existing_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download/fails/with_non-existing_log.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download/succeeds/for_type_request_as_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/download/succeeds/for_type_request_as_log.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/fails/with_non-existent_log_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/fails/with_non-existent_log_id.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/fails/with_non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/get/fails/with_non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/list/fails_for_non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/list/fails_for_non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/list/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-logs/list/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_invalid_plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_invalid_plan.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_invalid_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_invalid_service.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_missing_plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_missing_plan.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_missing_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/fails/with_missing_service.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/succeeds/with_1st_invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/add/succeeds/with_1st_invocation.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/get/fails/with_non-existent_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/get/fails/with_non-existent_service.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/get/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/get/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/list.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/list/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/list/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/remove/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-services/remove/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/fails/if_the_key_is_already_used.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/fails/if_the_key_is_already_used.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/fails/with_missing_key_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/fails/with_missing_key_property.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/fails/with_missing_value_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/fails/with_missing_value_property.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/succeeds/using_app_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/create/succeeds/using_app_all.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/did_not_alter_other_vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/did_not_alter_other_vars.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/fails_for/non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/fails_for/non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/fails_for/non-existing_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/fails_for/non-existing_key.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/delete/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/get/fails_for_non-existent_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/get/fails_for_non-existent_key.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/get/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/get/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/list/fails_for_non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/list/fails_for_non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/list/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/list/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/list/with_empty_result_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/list/with_empty_result_list.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/did_not_alter_other_vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/did_not_alter_other_vars.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/fails/with_missing_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/fails/with_missing_value.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/fails/with_non-existing_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/fails/with_non-existing_key.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app-vars/update/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/with_invalid/region.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/with_invalid/region.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/with_missing/name_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/with_missing/name_property.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/with_missing/runtimes_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/create/fails/with_missing/runtimes_property.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/delete/fails_for_non-existing_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/delete/fails_for_non-existing_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/get/fails_for_non-existent_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/get/fails_for_non-existent_application.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/get/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/get/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/list.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/web_access/for_app_with_all_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/web_access/for_app_with_all_properties.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/web_access/for_app_with_min_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/app/web_access/for_app_with_min_properties.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/regions/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/regions/get.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/regions/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/regions/list.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/service-plans/get/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/service-plans/get/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/service-plans/list/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/service-plans/list/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/services/get/fails_for_get_of_non-existent_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/services/get/fails_for_get_of_non-existent_service.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/services/get/succeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/services/get/succeeds.json -------------------------------------------------------------------------------- /spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/services/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/recordings/v1/openshift_v2/vcr_cassettes/with_valid_credentials/is_compliant_and/services/list.json -------------------------------------------------------------------------------- /spec/adapter/support/features/shared_example_adapter_application_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/support/features/shared_example_adapter_application_data.rb -------------------------------------------------------------------------------- /spec/adapter/support/features/shared_example_adapter_application_domains.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/support/features/shared_example_adapter_application_domains.rb -------------------------------------------------------------------------------- /spec/adapter/support/features/shared_example_adapter_application_lifecycle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/support/features/shared_example_adapter_application_lifecycle.rb -------------------------------------------------------------------------------- /spec/adapter/support/features/shared_example_adapter_application_logs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/support/features/shared_example_adapter_application_logs.rb -------------------------------------------------------------------------------- /spec/adapter/support/features/shared_example_adapter_application_scaling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/support/features/shared_example_adapter_application_scaling.rb -------------------------------------------------------------------------------- /spec/adapter/support/features/shared_example_adapter_application_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/support/features/shared_example_adapter_application_services.rb -------------------------------------------------------------------------------- /spec/adapter/support/features/shared_example_adapter_application_states.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/support/features/shared_example_adapter_application_states.rb -------------------------------------------------------------------------------- /spec/adapter/support/features/shared_example_adapter_application_vars.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/support/features/shared_example_adapter_application_vars.rb -------------------------------------------------------------------------------- /spec/adapter/support/features/shared_example_adapter_applications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/support/features/shared_example_adapter_applications.rb -------------------------------------------------------------------------------- /spec/adapter/support/features/shared_example_adapter_authentication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/support/features/shared_example_adapter_authentication.rb -------------------------------------------------------------------------------- /spec/adapter/support/features/shared_example_adapter_regions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/support/features/shared_example_adapter_regions.rb -------------------------------------------------------------------------------- /spec/adapter/support/features/shared_example_adapter_service_plans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/support/features/shared_example_adapter_service_plans.rb -------------------------------------------------------------------------------- /spec/adapter/support/features/shared_example_adapter_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/support/features/shared_example_adapter_services.rb -------------------------------------------------------------------------------- /spec/adapter/support/shared_example_adapters_invalid_auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/support/shared_example_adapters_invalid_auth.rb -------------------------------------------------------------------------------- /spec/adapter/support/shared_example_adapters_valid_auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/support/shared_example_adapters_valid_auth.rb -------------------------------------------------------------------------------- /spec/adapter/v1/cloud_foundry_v2/cloud_foundry_v2_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/v1/cloud_foundry_v2/cloud_foundry_v2_spec.rb -------------------------------------------------------------------------------- /spec/adapter/v1/heroku/heroku_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/v1/heroku/heroku_spec.rb -------------------------------------------------------------------------------- /spec/adapter/v1/openshift_v2/openshift_v2_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/adapter/v1/openshift_v2/openshift_v2_spec.rb -------------------------------------------------------------------------------- /spec/factories/models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/factories/models.rb -------------------------------------------------------------------------------- /spec/integration/api/auth_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/integration/api/auth_spec.rb -------------------------------------------------------------------------------- /spec/integration/api/endpoints_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/integration/api/endpoints_spec.rb -------------------------------------------------------------------------------- /spec/integration/api/errors_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/integration/api/errors_spec.rb -------------------------------------------------------------------------------- /spec/integration/api/providers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/integration/api/providers_spec.rb -------------------------------------------------------------------------------- /spec/integration/api/swagger_schema_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/integration/api/swagger_schema_spec.rb -------------------------------------------------------------------------------- /spec/integration/api/vendors_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/integration/api/vendors_spec.rb -------------------------------------------------------------------------------- /spec/integration/integration_spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/integration/integration_spec_helper.rb -------------------------------------------------------------------------------- /spec/integration/test_data_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/integration/test_data_generator.rb -------------------------------------------------------------------------------- /spec/nucleus_git_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/nucleus_git_key.pem -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/shared_example_request_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/support/shared_example_request_types.rb -------------------------------------------------------------------------------- /spec/test_suites.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/test_suites.rake -------------------------------------------------------------------------------- /spec/unit/adapters/archive_converter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/unit/adapters/archive_converter_spec.rb -------------------------------------------------------------------------------- /spec/unit/adapters/file_manager_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/unit/adapters/file_manager_spec.rb -------------------------------------------------------------------------------- /spec/unit/adapters/git_deployer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/unit/adapters/git_deployer_spec.rb -------------------------------------------------------------------------------- /spec/unit/adapters/v1/stub_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/unit/adapters/v1/stub_spec.rb -------------------------------------------------------------------------------- /spec/unit/common/helpers/auth_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/unit/common/helpers/auth_helper_spec.rb -------------------------------------------------------------------------------- /spec/unit/common/oauth2_auth_client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/unit/common/oauth2_auth_client_spec.rb -------------------------------------------------------------------------------- /spec/unit/common/regexp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/unit/common/regexp_spec.rb -------------------------------------------------------------------------------- /spec/unit/common/request_log_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/unit/common/request_log_formatter_spec.rb -------------------------------------------------------------------------------- /spec/unit/common/thread_config_accessor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/unit/common/thread_config_accessor_spec.rb -------------------------------------------------------------------------------- /spec/unit/models/endpoint_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/unit/models/endpoint_spec.rb -------------------------------------------------------------------------------- /spec/unit/models/provider_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/unit/models/provider_spec.rb -------------------------------------------------------------------------------- /spec/unit/models/vendor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/unit/models/vendor_spec.rb -------------------------------------------------------------------------------- /spec/unit/schemas/adapter_schema_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/unit/schemas/adapter_schema_spec.rb -------------------------------------------------------------------------------- /spec/unit/schemas/adapter_validation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/unit/schemas/adapter_validation_spec.rb -------------------------------------------------------------------------------- /spec/unit/schemas/requirements_schema_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/unit/schemas/requirements_schema_spec.rb -------------------------------------------------------------------------------- /spec/unit/unit_spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/spec/unit/unit_spec_helper.rb -------------------------------------------------------------------------------- /tasks/compatibility.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/tasks/compatibility.rake -------------------------------------------------------------------------------- /tasks/evaluation.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/tasks/evaluation.rake -------------------------------------------------------------------------------- /wiki/adapter_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/wiki/adapter_tests.md -------------------------------------------------------------------------------- /wiki/implement_new_adapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-kolb/nucleus/HEAD/wiki/implement_new_adapter.md --------------------------------------------------------------------------------