├── .dockerignore ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── NOTICE ├── README.rst ├── bootstrap ├── v1 │ ├── deploy_AWS.sh │ ├── deploy_Azure.sh │ ├── deploy_SAMTruckingDemo.sh │ ├── deploy_SAMTruckingDemoWithDependencies.sh │ ├── deploy_generic.sh │ ├── deploy_generic_SAMTruckingDemo_fromscratch.sh │ └── image_prepare.sh └── v2 │ ├── cbd_bootstrap_centos7.sh │ ├── client_gen │ ├── api_defs │ │ ├── cloudbreak_2-7-1.json │ │ └── cloudbreak_2.9.0.json │ ├── generate_api_client.sh │ └── swagger_templates │ │ ├── README.mustache │ │ ├── __init__api.mustache │ │ ├── __init__model.mustache │ │ ├── __init__package.mustache │ │ ├── __init__test.mustache │ │ ├── api.mustache │ │ ├── api_client.mustache │ │ ├── api_doc.mustache │ │ ├── api_test.mustache │ │ ├── configuration.mustache │ │ ├── git_push.sh.mustache │ │ ├── gitignore.mustache │ │ ├── model.mustache │ │ ├── model_doc.mustache │ │ ├── model_test.mustache │ │ ├── partial_header.mustache │ │ ├── requirements.mustache │ │ ├── rest.mustache │ │ ├── setup.mustache │ │ ├── test-requirements.mustache │ │ ├── tox.mustache │ │ └── travis.mustache │ └── k8svm_bootstrap_centos7.sh ├── docker └── v2 │ ├── dockerhub │ ├── dev │ │ └── Dockerfile │ ├── master │ │ └── Dockerfile │ └── uat │ │ └── Dockerfile │ └── localdev │ └── Dockerfile ├── docs ├── history.rst ├── v0_README.md └── v1_README.md ├── profile.RENAME.yml ├── requirements.txt ├── requirements_dev.txt ├── setup.cfg ├── setup.py └── whoville ├── __init__.py ├── actions.py ├── cloudbreak ├── __init__.py ├── api_client.py ├── apis │ ├── __init__.py │ ├── autoscale_api.py │ ├── v1accountpreferences_api.py │ ├── v1audits_api.py │ ├── v1blueprints_api.py │ ├── v1connectors_api.py │ ├── v1credentials_api.py │ ├── v1events_api.py │ ├── v1flexsubscriptions_api.py │ ├── v1imagecatalogs_api.py │ ├── v1ldap_api.py │ ├── v1mpacks_api.py │ ├── v1proxyconfigs_api.py │ ├── v1rdsconfigs_api.py │ ├── v1recipes_api.py │ ├── v1repositoryconfigs_api.py │ ├── v1securityrules_api.py │ ├── v1settings_api.py │ ├── v1smartsensesubscriptions_api.py │ ├── v1stacks_api.py │ ├── v1subscriptions_api.py │ ├── v1users_api.py │ ├── v1util_api.py │ ├── v2connectors_api.py │ ├── v2stacks_api.py │ ├── v3utils_api.py │ ├── v3workspace_idaudits_api.py │ ├── v3workspace_idblueprints_api.py │ ├── v3workspace_idconnectors_api.py │ ├── v3workspace_idcredentials_api.py │ ├── v3workspace_idevents_api.py │ ├── v3workspace_idfilesystems_api.py │ ├── v3workspace_idflexsubscriptions_api.py │ ├── v3workspace_idimagecatalogs_api.py │ ├── v3workspace_idknoxservices_api.py │ ├── v3workspace_idldapconfigs_api.py │ ├── v3workspace_idmpacks_api.py │ ├── v3workspace_idproxyconfigs_api.py │ ├── v3workspace_idrdsconfigs_api.py │ ├── v3workspace_idrecipes_api.py │ ├── v3workspace_idsmartsensesubscriptions_api.py │ ├── v3workspace_idstacks_api.py │ ├── v3workspace_idusers_api.py │ └── v3workspaces_api.py ├── configuration.py ├── models │ ├── __init__.py │ ├── access_config_json.py │ ├── account_preferences_request.py │ ├── account_preferences_response.py │ ├── adls_cloud_storage_parameters.py │ ├── adls_gen2_cloud_storage_parameters.py │ ├── ambari_address.py │ ├── ambari_database_details.py │ ├── ambari_database_test_result.py │ ├── ambari_info_json.py │ ├── ambari_repo_details.py │ ├── ambari_stack_details.py │ ├── ambari_stack_details_response.py │ ├── ambari_v2_request.py │ ├── attached_cluster_info_response.py │ ├── audit_event.py │ ├── autoscale_cluster_response.py │ ├── autoscale_stack_response.py │ ├── aws_encryption.py │ ├── aws_parameters.py │ ├── azure_parameters.py │ ├── base_image_response.py │ ├── blueprint_details.py │ ├── blueprint_input.py │ ├── blueprint_parameter.py │ ├── blueprint_request.py │ ├── blueprint_response.py │ ├── blueprint_view_response.py │ ├── certificate_response.py │ ├── change_workspace_users_json.py │ ├── cloud_gateway_json.py │ ├── cloud_storage_request.py │ ├── cloud_storage_supported_response.py │ ├── cloudbreak_details_json.py │ ├── cloudbreak_event.py │ ├── cluster_details.py │ ├── cluster_exposed_service_response.py │ ├── cluster_repair_request.py │ ├── cluster_request.py │ ├── cluster_response.py │ ├── cluster_v2_request.py │ ├── cluster_view_response.py │ ├── configs_request.py │ ├── configs_response.py │ ├── connected_cluster_request.py │ ├── constraint.py │ ├── credential_request.py │ ├── credential_response.py │ ├── credential_source_request.py │ ├── credential_view_response.py │ ├── custom_container_request.py │ ├── custom_container_response.py │ ├── custom_domain_settings.py │ ├── custom_instance_type.py │ ├── disk_response.py │ ├── encryption_key_config_json.py │ ├── exposed_service_response.py │ ├── failure_policy_request.py │ ├── failure_policy_response.py │ ├── failure_report.py │ ├── file_system.py │ ├── file_system_response.py │ ├── flex_subscription_request.py │ ├── flex_subscription_response.py │ ├── flow_details.py │ ├── gateway_json.py │ ├── gateway_topology_json.py │ ├── gcp_encryption.py │ ├── gcp_parameters.py │ ├── gcs_cloud_storage_parameters.py │ ├── general_settings.py │ ├── generated_blueprint_response.py │ ├── hardware_info_group_response.py │ ├── hardware_info_response.py │ ├── host_group_adjustment.py │ ├── host_group_request.py │ ├── host_group_response.py │ ├── host_group_view_response.py │ ├── host_metadata.py │ ├── host_metadata_view_response.py │ ├── id.py │ ├── image_catalog_request.py │ ├── image_catalog_response.py │ ├── image_catalog_short_response.py │ ├── image_json.py │ ├── image_response.py │ ├── image_settings.py │ ├── images_response.py │ ├── instance_group_adjustment.py │ ├── instance_group_details.py │ ├── instance_group_response.py │ ├── instance_groups.py │ ├── instance_groups_v2.py │ ├── instance_meta_data.py │ ├── ip_pool_json.py │ ├── kerberos_request.py │ ├── kerberos_response.py │ ├── ldap_config_request.py │ ├── ldap_config_response.py │ ├── ldap_test_request.py │ ├── ldap_test_result.py │ ├── ldap_validation_request.py │ ├── maintenance_mode_json.py │ ├── management_pack_details.py │ ├── management_pack_entry.py │ ├── management_pack_request.py │ ├── management_pack_response.py │ ├── network_request.py │ ├── network_response.py │ ├── network_v2_request.py │ ├── notification_details.py │ ├── open_stack_parameters.py │ ├── operation_details.py │ ├── oracle.py │ ├── orchestrator_request.py │ ├── orchestrator_response.py │ ├── parameters_query_request.py │ ├── parameters_query_response.py │ ├── placement_settings.py │ ├── platform_access_configs_response.py │ ├── platform_disks_json.py │ ├── platform_encryption_keys_response.py │ ├── platform_gateways_response.py │ ├── platform_ip_pools_response.py │ ├── platform_network_response.py │ ├── platform_networks_response.py │ ├── platform_orchestrators_json.py │ ├── platform_regions_json.py │ ├── platform_resource_request_json.py │ ├── platform_security_group_response.py │ ├── platform_security_groups_response.py │ ├── platform_ssh_key_response.py │ ├── platform_ssh_keys_response.py │ ├── platform_variants_json.py │ ├── platform_vmtypes_response.py │ ├── proxy_config_request.py │ ├── proxy_config_response.py │ ├── rds_build_request.py │ ├── rds_build_result.py │ ├── rds_config.py │ ├── rds_config_response.py │ ├── rds_test_request.py │ ├── rds_test_result.py │ ├── recipe_request.py │ ├── recipe_response.py │ ├── recipe_view_response.py │ ├── recommendation_request_json.py │ ├── recommendation_response.py │ ├── region_response.py │ ├── reinstall_request_v2.py │ ├── repo_config_validation_request.py │ ├── repo_config_validation_response.py │ ├── rest_call_details.py │ ├── rest_request_details.py │ ├── rest_response_details.py │ ├── s3_cloud_storage_parameters.py │ ├── security_group_details.py │ ├── security_group_request.py │ ├── security_group_response.py │ ├── security_group_v2_request.py │ ├── security_rule_details.py │ ├── security_rule_request.py │ ├── security_rule_response.py │ ├── security_rules_response.py │ ├── shared_service.py │ ├── shared_service_response.py │ ├── smart_sense_subscription_json.py │ ├── special_parameters_json.py │ ├── stack_authentication.py │ ├── stack_authentication_response.py │ ├── stack_descriptor.py │ ├── stack_details.py │ ├── stack_details_json.py │ ├── stack_image_change_request.py │ ├── stack_matrix.py │ ├── stack_repo_details_json.py │ ├── stack_request.py │ ├── stack_response.py │ ├── stack_scale_request_v2.py │ ├── stack_v2_request.py │ ├── stack_validation_request.py │ ├── stack_view_response.py │ ├── storage_location_request.py │ ├── storage_location_response.py │ ├── structured_event_container.py │ ├── structured_flow_event.py │ ├── structured_notification_event.py │ ├── structured_parameter_queries_response.py │ ├── structured_parameter_query_response.py │ ├── structured_parameters_query_request.py │ ├── structured_rest_call_event.py │ ├── subscription_request.py │ ├── supported_database_entry_response.py │ ├── supported_external_database_service_entry_response.py │ ├── tag_specifications_json.py │ ├── tags.py │ ├── template_request.py │ ├── template_response.py │ ├── template_v2_request.py │ ├── update_cluster.py │ ├── update_gateway_topologies_json.py │ ├── update_image_catalog_request.py │ ├── update_stack.py │ ├── user.py │ ├── user_name_password.py │ ├── user_profile_request.py │ ├── user_profile_response.py │ ├── user_response_json.py │ ├── user_workspace_permissions_json.py │ ├── version_check_result.py │ ├── virtual_machines_response.py │ ├── vm_type_json.py │ ├── vm_type_meta_json.py │ ├── volume_parameter_config_json.py │ ├── wasb_cloud_storage_parameters.py │ ├── workspace_request.py │ ├── workspace_resource_response.py │ ├── workspace_response.py │ └── yarn_parameters.py └── rest.py ├── config.py ├── deploy.py ├── director.py ├── infra.py ├── mayor.py ├── resources ├── draft │ └── inf-cda26-single │ │ ├── blueprint.json │ │ ├── hdf312setup.sh │ │ ├── inf-cda26-single.yaml │ │ └── prepare-metastores-26.sh ├── legacy │ ├── SAMExtensions │ │ ├── enrich-weather.json │ │ ├── normalize-model-features.json │ │ ├── phoenix-enrich-truck-demo.json │ │ ├── sam-custom-processor-0.0.5.jar │ │ ├── sam-custom-processor-0.0.5a.jar │ │ ├── sam-custom-udf-0.0.5.jar │ │ └── truck_demo_pmml.xml │ ├── data_simulator │ │ ├── routes.tar.gz │ │ └── runDataLoader.sh │ ├── phoenix │ │ ├── create_tables.sql │ │ └── data │ │ │ ├── drivers.csv │ │ │ └── timesheet.csv │ ├── templates │ │ ├── SRM_Demo_v3.xml │ │ ├── ambariBlueprint_minimal-HDF.json │ │ ├── nifiTemplate_SAMTruckingDemo.xml │ │ ├── sam-custom-udf-0.0.5.jar │ │ ├── schema_TruckSpeedEvents.avsc │ │ ├── schema_geoTruckEvents.avsc │ │ ├── schema_rawTruckEvents.avsc │ │ └── truckspeedevents.avsc │ └── topology │ │ └── truckingapp.json └── v2 │ ├── cdf-workshop │ ├── blueprint.json │ ├── cdf-workshop.yaml │ └── post-cluster-configs.sh │ ├── demo-cdsw-hdp26 │ ├── blueprint.json │ └── demo-cdsw-hdp26.yaml │ ├── demo-cdsw-hdp31 │ ├── blueprint.json │ ├── cdsw-postcluster.sh │ ├── demo-cdsw-hdp31.yaml │ └── install-dependency-packages.sh │ ├── demo-citibike │ ├── blueprint.json │ ├── demo-citibike.yaml │ └── post-cluster-configs.sh │ ├── demo-ozone-k8s │ ├── demo-ozone-k8s.yaml │ └── deploy-ozone.sh │ ├── demo-splunk-optimization │ ├── blueprint.json │ ├── delete_aks_cluster.sh │ ├── demo-splunk-optimization.yaml │ ├── launch_aks_cluster.sh │ └── post-cluster-configs.sh │ ├── inf-cdh515-multi │ └── inf-cdh515-multi.yaml │ ├── inf-cdh62-multi │ └── inf-cdh62-multi.yaml │ ├── inf-hcp17-multi │ ├── allow-renewable.sh │ ├── blueprint.json │ ├── create-storm-view.sh │ ├── inf-hcp17-multi.yaml │ ├── metron-db-setup.sh │ ├── mysql-client.sh │ ├── nodejs.sh │ ├── noexec-tmp.sh │ └── requests-upgrade.sh │ └── inf-hdp31-single │ ├── blueprint.json │ ├── inf-hdp31-single.yaml │ └── pre-ambari-configs.sh ├── security.py └── utils.py /.dockerignore: -------------------------------------------------------------------------------- 1 | profile.yml 2 | whoville/resources/legacy -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/NOTICE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/README.rst -------------------------------------------------------------------------------- /bootstrap/v1/deploy_AWS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v1/deploy_AWS.sh -------------------------------------------------------------------------------- /bootstrap/v1/deploy_Azure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v1/deploy_Azure.sh -------------------------------------------------------------------------------- /bootstrap/v1/deploy_SAMTruckingDemo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v1/deploy_SAMTruckingDemo.sh -------------------------------------------------------------------------------- /bootstrap/v1/deploy_SAMTruckingDemoWithDependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v1/deploy_SAMTruckingDemoWithDependencies.sh -------------------------------------------------------------------------------- /bootstrap/v1/deploy_generic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v1/deploy_generic.sh -------------------------------------------------------------------------------- /bootstrap/v1/deploy_generic_SAMTruckingDemo_fromscratch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v1/deploy_generic_SAMTruckingDemo_fromscratch.sh -------------------------------------------------------------------------------- /bootstrap/v1/image_prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v1/image_prepare.sh -------------------------------------------------------------------------------- /bootstrap/v2/cbd_bootstrap_centos7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/cbd_bootstrap_centos7.sh -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/api_defs/cloudbreak_2-7-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/api_defs/cloudbreak_2-7-1.json -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/api_defs/cloudbreak_2.9.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/api_defs/cloudbreak_2.9.0.json -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/generate_api_client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/generate_api_client.sh -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/README.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/README.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/__init__api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/__init__api.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/__init__model.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/__init__model.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/__init__package.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/__init__package.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/__init__test.mustache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/api.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/api.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/api_client.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/api_client.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/api_doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/api_doc.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/api_test.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/api_test.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/configuration.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/configuration.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/git_push.sh.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/git_push.sh.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/gitignore.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/gitignore.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/model.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/model.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/model_doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/model_doc.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/model_test.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/model_test.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/partial_header.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/partial_header.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/requirements.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/requirements.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/rest.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/rest.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/setup.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/setup.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/test-requirements.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/test-requirements.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/tox.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/tox.mustache -------------------------------------------------------------------------------- /bootstrap/v2/client_gen/swagger_templates/travis.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/client_gen/swagger_templates/travis.mustache -------------------------------------------------------------------------------- /bootstrap/v2/k8svm_bootstrap_centos7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/bootstrap/v2/k8svm_bootstrap_centos7.sh -------------------------------------------------------------------------------- /docker/v2/dockerhub/dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/docker/v2/dockerhub/dev/Dockerfile -------------------------------------------------------------------------------- /docker/v2/dockerhub/master/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/docker/v2/dockerhub/master/Dockerfile -------------------------------------------------------------------------------- /docker/v2/dockerhub/uat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/docker/v2/dockerhub/uat/Dockerfile -------------------------------------------------------------------------------- /docker/v2/localdev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/docker/v2/localdev/Dockerfile -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/docs/history.rst -------------------------------------------------------------------------------- /docs/v0_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/docs/v0_README.md -------------------------------------------------------------------------------- /docs/v1_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/docs/v1_README.md -------------------------------------------------------------------------------- /profile.RENAME.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/profile.RENAME.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/setup.py -------------------------------------------------------------------------------- /whoville/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/__init__.py -------------------------------------------------------------------------------- /whoville/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/actions.py -------------------------------------------------------------------------------- /whoville/cloudbreak/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/__init__.py -------------------------------------------------------------------------------- /whoville/cloudbreak/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/api_client.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/__init__.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/autoscale_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/autoscale_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1accountpreferences_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1accountpreferences_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1audits_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1audits_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1blueprints_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1blueprints_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1connectors_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1connectors_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1credentials_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1credentials_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1events_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1events_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1flexsubscriptions_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1flexsubscriptions_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1imagecatalogs_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1imagecatalogs_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1ldap_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1ldap_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1mpacks_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1mpacks_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1proxyconfigs_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1proxyconfigs_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1rdsconfigs_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1rdsconfigs_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1recipes_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1recipes_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1repositoryconfigs_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1repositoryconfigs_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1securityrules_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1securityrules_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1settings_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1settings_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1smartsensesubscriptions_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1smartsensesubscriptions_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1stacks_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1stacks_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1subscriptions_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1subscriptions_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1users_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1users_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v1util_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v1util_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v2connectors_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v2connectors_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v2stacks_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v2stacks_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v3utils_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v3utils_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v3workspace_idaudits_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v3workspace_idaudits_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v3workspace_idblueprints_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v3workspace_idblueprints_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v3workspace_idconnectors_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v3workspace_idconnectors_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v3workspace_idcredentials_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v3workspace_idcredentials_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v3workspace_idevents_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v3workspace_idevents_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v3workspace_idfilesystems_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v3workspace_idfilesystems_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v3workspace_idflexsubscriptions_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v3workspace_idflexsubscriptions_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v3workspace_idimagecatalogs_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v3workspace_idimagecatalogs_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v3workspace_idknoxservices_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v3workspace_idknoxservices_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v3workspace_idldapconfigs_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v3workspace_idldapconfigs_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v3workspace_idmpacks_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v3workspace_idmpacks_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v3workspace_idproxyconfigs_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v3workspace_idproxyconfigs_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v3workspace_idrdsconfigs_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v3workspace_idrdsconfigs_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v3workspace_idrecipes_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v3workspace_idrecipes_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v3workspace_idsmartsensesubscriptions_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v3workspace_idsmartsensesubscriptions_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v3workspace_idstacks_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v3workspace_idstacks_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v3workspace_idusers_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v3workspace_idusers_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/apis/v3workspaces_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/apis/v3workspaces_api.py -------------------------------------------------------------------------------- /whoville/cloudbreak/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/configuration.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/__init__.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/access_config_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/access_config_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/account_preferences_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/account_preferences_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/account_preferences_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/account_preferences_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/adls_cloud_storage_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/adls_cloud_storage_parameters.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/adls_gen2_cloud_storage_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/adls_gen2_cloud_storage_parameters.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/ambari_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/ambari_address.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/ambari_database_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/ambari_database_details.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/ambari_database_test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/ambari_database_test_result.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/ambari_info_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/ambari_info_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/ambari_repo_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/ambari_repo_details.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/ambari_stack_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/ambari_stack_details.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/ambari_stack_details_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/ambari_stack_details_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/ambari_v2_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/ambari_v2_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/attached_cluster_info_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/attached_cluster_info_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/audit_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/audit_event.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/autoscale_cluster_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/autoscale_cluster_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/autoscale_stack_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/autoscale_stack_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/aws_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/aws_encryption.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/aws_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/aws_parameters.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/azure_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/azure_parameters.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/base_image_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/base_image_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/blueprint_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/blueprint_details.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/blueprint_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/blueprint_input.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/blueprint_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/blueprint_parameter.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/blueprint_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/blueprint_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/blueprint_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/blueprint_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/blueprint_view_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/blueprint_view_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/certificate_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/certificate_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/change_workspace_users_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/change_workspace_users_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/cloud_gateway_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/cloud_gateway_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/cloud_storage_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/cloud_storage_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/cloud_storage_supported_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/cloud_storage_supported_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/cloudbreak_details_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/cloudbreak_details_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/cloudbreak_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/cloudbreak_event.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/cluster_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/cluster_details.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/cluster_exposed_service_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/cluster_exposed_service_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/cluster_repair_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/cluster_repair_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/cluster_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/cluster_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/cluster_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/cluster_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/cluster_v2_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/cluster_v2_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/cluster_view_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/cluster_view_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/configs_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/configs_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/configs_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/configs_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/connected_cluster_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/connected_cluster_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/constraint.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/credential_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/credential_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/credential_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/credential_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/credential_source_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/credential_source_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/credential_view_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/credential_view_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/custom_container_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/custom_container_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/custom_container_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/custom_container_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/custom_domain_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/custom_domain_settings.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/custom_instance_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/custom_instance_type.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/disk_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/disk_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/encryption_key_config_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/encryption_key_config_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/exposed_service_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/exposed_service_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/failure_policy_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/failure_policy_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/failure_policy_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/failure_policy_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/failure_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/failure_report.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/file_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/file_system.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/file_system_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/file_system_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/flex_subscription_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/flex_subscription_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/flex_subscription_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/flex_subscription_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/flow_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/flow_details.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/gateway_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/gateway_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/gateway_topology_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/gateway_topology_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/gcp_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/gcp_encryption.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/gcp_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/gcp_parameters.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/gcs_cloud_storage_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/gcs_cloud_storage_parameters.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/general_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/general_settings.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/generated_blueprint_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/generated_blueprint_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/hardware_info_group_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/hardware_info_group_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/hardware_info_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/hardware_info_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/host_group_adjustment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/host_group_adjustment.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/host_group_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/host_group_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/host_group_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/host_group_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/host_group_view_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/host_group_view_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/host_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/host_metadata.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/host_metadata_view_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/host_metadata_view_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/id.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/image_catalog_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/image_catalog_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/image_catalog_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/image_catalog_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/image_catalog_short_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/image_catalog_short_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/image_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/image_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/image_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/image_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/image_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/image_settings.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/images_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/images_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/instance_group_adjustment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/instance_group_adjustment.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/instance_group_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/instance_group_details.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/instance_group_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/instance_group_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/instance_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/instance_groups.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/instance_groups_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/instance_groups_v2.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/instance_meta_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/instance_meta_data.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/ip_pool_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/ip_pool_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/kerberos_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/kerberos_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/kerberos_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/kerberos_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/ldap_config_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/ldap_config_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/ldap_config_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/ldap_config_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/ldap_test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/ldap_test_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/ldap_test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/ldap_test_result.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/ldap_validation_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/ldap_validation_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/maintenance_mode_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/maintenance_mode_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/management_pack_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/management_pack_details.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/management_pack_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/management_pack_entry.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/management_pack_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/management_pack_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/management_pack_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/management_pack_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/network_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/network_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/network_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/network_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/network_v2_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/network_v2_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/notification_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/notification_details.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/open_stack_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/open_stack_parameters.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/operation_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/operation_details.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/oracle.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/orchestrator_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/orchestrator_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/orchestrator_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/orchestrator_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/parameters_query_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/parameters_query_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/parameters_query_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/parameters_query_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/placement_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/placement_settings.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/platform_access_configs_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/platform_access_configs_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/platform_disks_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/platform_disks_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/platform_encryption_keys_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/platform_encryption_keys_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/platform_gateways_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/platform_gateways_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/platform_ip_pools_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/platform_ip_pools_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/platform_network_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/platform_network_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/platform_networks_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/platform_networks_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/platform_orchestrators_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/platform_orchestrators_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/platform_regions_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/platform_regions_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/platform_resource_request_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/platform_resource_request_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/platform_security_group_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/platform_security_group_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/platform_security_groups_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/platform_security_groups_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/platform_ssh_key_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/platform_ssh_key_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/platform_ssh_keys_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/platform_ssh_keys_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/platform_variants_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/platform_variants_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/platform_vmtypes_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/platform_vmtypes_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/proxy_config_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/proxy_config_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/proxy_config_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/proxy_config_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/rds_build_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/rds_build_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/rds_build_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/rds_build_result.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/rds_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/rds_config.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/rds_config_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/rds_config_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/rds_test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/rds_test_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/rds_test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/rds_test_result.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/recipe_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/recipe_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/recipe_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/recipe_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/recipe_view_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/recipe_view_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/recommendation_request_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/recommendation_request_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/recommendation_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/recommendation_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/region_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/region_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/reinstall_request_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/reinstall_request_v2.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/repo_config_validation_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/repo_config_validation_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/repo_config_validation_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/repo_config_validation_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/rest_call_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/rest_call_details.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/rest_request_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/rest_request_details.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/rest_response_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/rest_response_details.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/s3_cloud_storage_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/s3_cloud_storage_parameters.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/security_group_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/security_group_details.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/security_group_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/security_group_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/security_group_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/security_group_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/security_group_v2_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/security_group_v2_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/security_rule_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/security_rule_details.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/security_rule_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/security_rule_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/security_rule_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/security_rule_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/security_rules_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/security_rules_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/shared_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/shared_service.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/shared_service_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/shared_service_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/smart_sense_subscription_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/smart_sense_subscription_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/special_parameters_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/special_parameters_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/stack_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/stack_authentication.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/stack_authentication_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/stack_authentication_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/stack_descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/stack_descriptor.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/stack_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/stack_details.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/stack_details_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/stack_details_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/stack_image_change_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/stack_image_change_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/stack_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/stack_matrix.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/stack_repo_details_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/stack_repo_details_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/stack_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/stack_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/stack_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/stack_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/stack_scale_request_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/stack_scale_request_v2.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/stack_v2_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/stack_v2_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/stack_validation_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/stack_validation_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/stack_view_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/stack_view_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/storage_location_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/storage_location_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/storage_location_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/storage_location_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/structured_event_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/structured_event_container.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/structured_flow_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/structured_flow_event.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/structured_notification_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/structured_notification_event.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/structured_parameter_queries_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/structured_parameter_queries_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/structured_parameter_query_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/structured_parameter_query_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/structured_parameters_query_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/structured_parameters_query_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/structured_rest_call_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/structured_rest_call_event.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/subscription_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/subscription_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/supported_database_entry_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/supported_database_entry_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/supported_external_database_service_entry_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/supported_external_database_service_entry_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/tag_specifications_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/tag_specifications_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/tags.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/template_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/template_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/template_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/template_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/template_v2_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/template_v2_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/update_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/update_cluster.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/update_gateway_topologies_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/update_gateway_topologies_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/update_image_catalog_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/update_image_catalog_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/update_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/update_stack.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/user.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/user_name_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/user_name_password.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/user_profile_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/user_profile_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/user_profile_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/user_profile_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/user_response_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/user_response_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/user_workspace_permissions_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/user_workspace_permissions_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/version_check_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/version_check_result.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/virtual_machines_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/virtual_machines_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/vm_type_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/vm_type_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/vm_type_meta_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/vm_type_meta_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/volume_parameter_config_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/volume_parameter_config_json.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/wasb_cloud_storage_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/wasb_cloud_storage_parameters.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/workspace_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/workspace_request.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/workspace_resource_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/workspace_resource_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/workspace_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/workspace_response.py -------------------------------------------------------------------------------- /whoville/cloudbreak/models/yarn_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/models/yarn_parameters.py -------------------------------------------------------------------------------- /whoville/cloudbreak/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/cloudbreak/rest.py -------------------------------------------------------------------------------- /whoville/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/config.py -------------------------------------------------------------------------------- /whoville/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/deploy.py -------------------------------------------------------------------------------- /whoville/director.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/director.py -------------------------------------------------------------------------------- /whoville/infra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/infra.py -------------------------------------------------------------------------------- /whoville/mayor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/mayor.py -------------------------------------------------------------------------------- /whoville/resources/draft/inf-cda26-single/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/draft/inf-cda26-single/blueprint.json -------------------------------------------------------------------------------- /whoville/resources/draft/inf-cda26-single/hdf312setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/draft/inf-cda26-single/hdf312setup.sh -------------------------------------------------------------------------------- /whoville/resources/draft/inf-cda26-single/inf-cda26-single.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/draft/inf-cda26-single/inf-cda26-single.yaml -------------------------------------------------------------------------------- /whoville/resources/draft/inf-cda26-single/prepare-metastores-26.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/draft/inf-cda26-single/prepare-metastores-26.sh -------------------------------------------------------------------------------- /whoville/resources/legacy/SAMExtensions/enrich-weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/SAMExtensions/enrich-weather.json -------------------------------------------------------------------------------- /whoville/resources/legacy/SAMExtensions/normalize-model-features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/SAMExtensions/normalize-model-features.json -------------------------------------------------------------------------------- /whoville/resources/legacy/SAMExtensions/phoenix-enrich-truck-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/SAMExtensions/phoenix-enrich-truck-demo.json -------------------------------------------------------------------------------- /whoville/resources/legacy/SAMExtensions/sam-custom-processor-0.0.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/SAMExtensions/sam-custom-processor-0.0.5.jar -------------------------------------------------------------------------------- /whoville/resources/legacy/SAMExtensions/sam-custom-processor-0.0.5a.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/SAMExtensions/sam-custom-processor-0.0.5a.jar -------------------------------------------------------------------------------- /whoville/resources/legacy/SAMExtensions/sam-custom-udf-0.0.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/SAMExtensions/sam-custom-udf-0.0.5.jar -------------------------------------------------------------------------------- /whoville/resources/legacy/SAMExtensions/truck_demo_pmml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/SAMExtensions/truck_demo_pmml.xml -------------------------------------------------------------------------------- /whoville/resources/legacy/data_simulator/routes.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/data_simulator/routes.tar.gz -------------------------------------------------------------------------------- /whoville/resources/legacy/data_simulator/runDataLoader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/data_simulator/runDataLoader.sh -------------------------------------------------------------------------------- /whoville/resources/legacy/phoenix/create_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/phoenix/create_tables.sql -------------------------------------------------------------------------------- /whoville/resources/legacy/phoenix/data/drivers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/phoenix/data/drivers.csv -------------------------------------------------------------------------------- /whoville/resources/legacy/phoenix/data/timesheet.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/phoenix/data/timesheet.csv -------------------------------------------------------------------------------- /whoville/resources/legacy/templates/SRM_Demo_v3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/templates/SRM_Demo_v3.xml -------------------------------------------------------------------------------- /whoville/resources/legacy/templates/ambariBlueprint_minimal-HDF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/templates/ambariBlueprint_minimal-HDF.json -------------------------------------------------------------------------------- /whoville/resources/legacy/templates/nifiTemplate_SAMTruckingDemo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/templates/nifiTemplate_SAMTruckingDemo.xml -------------------------------------------------------------------------------- /whoville/resources/legacy/templates/sam-custom-udf-0.0.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/templates/sam-custom-udf-0.0.5.jar -------------------------------------------------------------------------------- /whoville/resources/legacy/templates/schema_TruckSpeedEvents.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/templates/schema_TruckSpeedEvents.avsc -------------------------------------------------------------------------------- /whoville/resources/legacy/templates/schema_geoTruckEvents.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/templates/schema_geoTruckEvents.avsc -------------------------------------------------------------------------------- /whoville/resources/legacy/templates/schema_rawTruckEvents.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/templates/schema_rawTruckEvents.avsc -------------------------------------------------------------------------------- /whoville/resources/legacy/templates/truckspeedevents.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/templates/truckspeedevents.avsc -------------------------------------------------------------------------------- /whoville/resources/legacy/topology/truckingapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/legacy/topology/truckingapp.json -------------------------------------------------------------------------------- /whoville/resources/v2/cdf-workshop/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/cdf-workshop/blueprint.json -------------------------------------------------------------------------------- /whoville/resources/v2/cdf-workshop/cdf-workshop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/cdf-workshop/cdf-workshop.yaml -------------------------------------------------------------------------------- /whoville/resources/v2/cdf-workshop/post-cluster-configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/cdf-workshop/post-cluster-configs.sh -------------------------------------------------------------------------------- /whoville/resources/v2/demo-cdsw-hdp26/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/demo-cdsw-hdp26/blueprint.json -------------------------------------------------------------------------------- /whoville/resources/v2/demo-cdsw-hdp26/demo-cdsw-hdp26.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/demo-cdsw-hdp26/demo-cdsw-hdp26.yaml -------------------------------------------------------------------------------- /whoville/resources/v2/demo-cdsw-hdp31/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/demo-cdsw-hdp31/blueprint.json -------------------------------------------------------------------------------- /whoville/resources/v2/demo-cdsw-hdp31/cdsw-postcluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/demo-cdsw-hdp31/cdsw-postcluster.sh -------------------------------------------------------------------------------- /whoville/resources/v2/demo-cdsw-hdp31/demo-cdsw-hdp31.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/demo-cdsw-hdp31/demo-cdsw-hdp31.yaml -------------------------------------------------------------------------------- /whoville/resources/v2/demo-cdsw-hdp31/install-dependency-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/demo-cdsw-hdp31/install-dependency-packages.sh -------------------------------------------------------------------------------- /whoville/resources/v2/demo-citibike/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/demo-citibike/blueprint.json -------------------------------------------------------------------------------- /whoville/resources/v2/demo-citibike/demo-citibike.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/demo-citibike/demo-citibike.yaml -------------------------------------------------------------------------------- /whoville/resources/v2/demo-citibike/post-cluster-configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/demo-citibike/post-cluster-configs.sh -------------------------------------------------------------------------------- /whoville/resources/v2/demo-ozone-k8s/demo-ozone-k8s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/demo-ozone-k8s/demo-ozone-k8s.yaml -------------------------------------------------------------------------------- /whoville/resources/v2/demo-ozone-k8s/deploy-ozone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/demo-ozone-k8s/deploy-ozone.sh -------------------------------------------------------------------------------- /whoville/resources/v2/demo-splunk-optimization/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/demo-splunk-optimization/blueprint.json -------------------------------------------------------------------------------- /whoville/resources/v2/demo-splunk-optimization/delete_aks_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/demo-splunk-optimization/delete_aks_cluster.sh -------------------------------------------------------------------------------- /whoville/resources/v2/demo-splunk-optimization/demo-splunk-optimization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/demo-splunk-optimization/demo-splunk-optimization.yaml -------------------------------------------------------------------------------- /whoville/resources/v2/demo-splunk-optimization/launch_aks_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/demo-splunk-optimization/launch_aks_cluster.sh -------------------------------------------------------------------------------- /whoville/resources/v2/demo-splunk-optimization/post-cluster-configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/demo-splunk-optimization/post-cluster-configs.sh -------------------------------------------------------------------------------- /whoville/resources/v2/inf-cdh515-multi/inf-cdh515-multi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/inf-cdh515-multi/inf-cdh515-multi.yaml -------------------------------------------------------------------------------- /whoville/resources/v2/inf-cdh62-multi/inf-cdh62-multi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/inf-cdh62-multi/inf-cdh62-multi.yaml -------------------------------------------------------------------------------- /whoville/resources/v2/inf-hcp17-multi/allow-renewable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/inf-hcp17-multi/allow-renewable.sh -------------------------------------------------------------------------------- /whoville/resources/v2/inf-hcp17-multi/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/inf-hcp17-multi/blueprint.json -------------------------------------------------------------------------------- /whoville/resources/v2/inf-hcp17-multi/create-storm-view.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/inf-hcp17-multi/create-storm-view.sh -------------------------------------------------------------------------------- /whoville/resources/v2/inf-hcp17-multi/inf-hcp17-multi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/inf-hcp17-multi/inf-hcp17-multi.yaml -------------------------------------------------------------------------------- /whoville/resources/v2/inf-hcp17-multi/metron-db-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/inf-hcp17-multi/metron-db-setup.sh -------------------------------------------------------------------------------- /whoville/resources/v2/inf-hcp17-multi/mysql-client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/inf-hcp17-multi/mysql-client.sh -------------------------------------------------------------------------------- /whoville/resources/v2/inf-hcp17-multi/nodejs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/inf-hcp17-multi/nodejs.sh -------------------------------------------------------------------------------- /whoville/resources/v2/inf-hcp17-multi/noexec-tmp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/inf-hcp17-multi/noexec-tmp.sh -------------------------------------------------------------------------------- /whoville/resources/v2/inf-hcp17-multi/requests-upgrade.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | pip install requests==2.6.1 -------------------------------------------------------------------------------- /whoville/resources/v2/inf-hdp31-single/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/inf-hdp31-single/blueprint.json -------------------------------------------------------------------------------- /whoville/resources/v2/inf-hdp31-single/inf-hdp31-single.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/inf-hdp31-single/inf-hdp31-single.yaml -------------------------------------------------------------------------------- /whoville/resources/v2/inf-hdp31-single/pre-ambari-configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/resources/v2/inf-hdp31-single/pre-ambari-configs.sh -------------------------------------------------------------------------------- /whoville/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/security.py -------------------------------------------------------------------------------- /whoville/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaffelson/whoville/HEAD/whoville/utils.py --------------------------------------------------------------------------------