├── .dockerignore ├── .gitattributes ├── .gitignore ├── .travis.yml ├── Dockerfile.dev ├── LICENSE ├── Makefile ├── NormativeTypes ├── artifact_types ├── capability_types ├── data_types ├── group_types ├── interface_types ├── node_types ├── policy_types └── relationship_types ├── README.md ├── TODO.md ├── assignment.go ├── assignment_test.go ├── attributes.go ├── capabilities.go ├── constraints.go ├── examples ├── README.md ├── artifacts │ ├── collectd │ │ ├── config.py │ │ ├── create.sh │ │ └── start.sh │ ├── elasticsearch │ │ ├── create.sh │ │ └── start.sh │ ├── kibana │ │ ├── config.sh │ │ ├── create.sh │ │ └── start.sh │ ├── logstash │ │ ├── configure_collectd.py │ │ ├── configure_elasticsearch.py │ │ ├── configure_rsyslog.py │ │ ├── create.sh │ │ └── start.sh │ ├── mongodb │ │ ├── config.sh │ │ ├── create.sh │ │ ├── create_database.sh │ │ └── start.sh │ ├── mysql │ │ ├── mysql_database_configure.sh │ │ ├── mysql_dbms_configure.sh │ │ ├── mysql_dbms_install.sh │ │ └── mysql_dbms_start.sh │ ├── nodejs │ │ ├── config.sh │ │ ├── create.sh │ │ └── start.sh │ ├── rsyslog │ │ ├── config.sh │ │ ├── create.sh │ │ └── start.sh │ ├── webserver │ │ ├── webserver_install.sh │ │ └── webserver_start.sh │ └── wordpress │ │ ├── wordpress_configure.sh │ │ └── wordpress_install.sh ├── csar_elk.zip ├── csar_hello_world.zip ├── csar_metadata_not_yaml.zip ├── csar_not_zip.zip ├── csar_single_instance_wordpress.zip ├── csar_wordpress_invalid_import_path.zip ├── csar_wordpress_invalid_script_url.zip ├── csar_wrong_metadata_file.zip ├── custom_types │ ├── collectd.yaml │ ├── elasticsearch.yaml │ ├── kibana.yaml │ ├── logstash.yaml │ ├── paypalpizzastore_nodejs_app.yaml │ ├── rsyslog.yaml │ └── wordpress.yaml ├── example1.yaml ├── example2.yaml ├── example3.yaml ├── example4.yaml ├── network │ ├── tosca_one_server_one_network.yaml │ ├── tosca_one_server_three_networks.yaml │ ├── tosca_server_on_existing_network.yaml │ └── tosca_two_servers_one_network.yaml ├── storage │ ├── tosca_blockstorage_with_attachment.yaml │ ├── tosca_blockstorage_with_attachment_notation1.yaml │ ├── tosca_blockstorage_with_attachment_notation2.yaml │ ├── tosca_blockstorage_with_custom_relationship_type.yaml │ ├── tosca_blockstorage_with_relationship_template.yaml │ ├── tosca_multiple_blockstorage_with_attachment.yaml │ └── tosca_single_object_store.yaml ├── test_host_assignment.yaml ├── tosca_blockstorage_with_attachment.yaml ├── tosca_blockstorage_with_attachment_notation1.yaml ├── tosca_elk.yaml ├── tosca_helloworld.yaml ├── tosca_helloworld_invalid.yaml ├── tosca_nodejs_mongodb_two_instances.yaml ├── tosca_one_server_one_network.yaml ├── tosca_single_instance_wordpress.yaml ├── tosca_single_instance_wordpress_with_local_abspath_import.yaml ├── tosca_single_instance_wordpress_with_url_import.yaml ├── tosca_single_server.yaml ├── tosca_single_server_with_defaults.yaml ├── tosca_software_component.yaml └── tosca_web_application.yaml ├── flattener.go ├── glide.lock ├── glide.yaml ├── groups.go ├── interfaces.go ├── lifecycle.go ├── node_template.go ├── node_type.go ├── normative_definitions.go ├── parser.go ├── parser_test.go ├── policies.go ├── properties.go ├── reflector.go ├── relationships.go ├── requirements.go ├── resolver.go ├── scripts ├── check.sh ├── cover.sh ├── fmt.sh ├── setup.sh └── test.sh ├── service_template.go ├── service_template_test.go ├── status.go ├── tests ├── csar_elk.zip ├── csar_hello_world.zip ├── csar_metadata_not_yaml.zip ├── csar_not_zip.zip ├── csar_single_instance_wordpress.zip ├── csar_wordpress_invalid_import_path.zip ├── csar_wordpress_invalid_script_url.zip ├── csar_wrong_metadata_file.zip ├── custom_types │ ├── collectd.yaml │ ├── compute_with_attribute_list.yaml │ ├── compute_with_prop.yaml │ ├── custom_network_nodes_defs.yaml │ ├── custom_policy_types.yaml │ ├── custom_rel_types.yaml │ ├── db_with_list_param.yaml │ ├── elasticsearch.yaml │ ├── kibana.yaml │ ├── logstash.yaml │ ├── node_with_cap.yaml │ ├── paypalpizzastore_nodejs_app.yaml │ ├── rsyslog.yaml │ ├── tosca_non_normative.yaml │ └── wordpress.yaml ├── example1.yaml ├── example2.yaml ├── example3.yaml ├── example4.yaml ├── files │ └── my_db_content.txt ├── get_attribute_host_keyword.yaml ├── get_attribute_with_index.yaml ├── get_property_capabilties_inheritance.yaml ├── get_property_source_target_keywords.yaml ├── invalids │ ├── test_bad_import_format.yaml │ └── test_bad_import_format_defs.yaml ├── refapp │ ├── import1 │ │ └── collectd.yaml │ ├── import2 │ │ ├── elasticsearch.yaml │ │ └── kibana.yaml │ ├── logstash.yaml │ ├── paypalpizzastore_nodejs_app.yaml │ ├── rsyslog.yaml │ └── tosca_elk.yaml ├── test_get_artifact.yaml ├── test_host_assignment.yaml ├── test_template_with_nested_imports.yaml ├── test_token.yaml ├── test_token_invalid.yaml ├── tosca_abstract_db_node_template.yaml ├── tosca_abstract_db_requirement_using_node_filter.yaml ├── tosca_abstract_node_template_with_node_filter.yaml ├── tosca_autoscaling.yaml ├── tosca_blockstorage_with_attachment.yaml ├── tosca_blockstorage_with_attachment_notation1.yaml ├── tosca_blockstorage_with_attachment_notation2.yaml ├── tosca_container_nodes.yaml ├── tosca_container_policies.yaml ├── tosca_custom_network_nodes_imports.yaml ├── tosca_custom_network_nodes_inline.yaml ├── tosca_custom_relationship.yaml ├── tosca_elk.yaml ├── tosca_get_functions_semantic.yaml ├── tosca_grouping_anti_colocation_policy.yaml ├── tosca_grouping_node_templates.yaml ├── tosca_helloworld.yaml ├── tosca_helloworld_invalid.yaml ├── tosca_host_requirement_using_node_filter.yaml ├── tosca_interface_inheritance.yaml ├── tosca_multiple_blockstorage_with_attachment.yaml ├── tosca_nested_property_names_indexes.yaml ├── tosca_node_template_attributes.yaml ├── tosca_nodejs_mongodb_two_instances.yaml ├── tosca_one_server_one_network.yaml ├── tosca_properties_reflected_as_attributes.yaml ├── tosca_ref_abstract_db_node_template.yaml ├── tosca_simple_constraint_policy.yaml ├── tosca_single_instance_wordpress.yaml ├── tosca_single_instance_wordpress_with_url_import.yaml ├── tosca_single_object_store.yaml ├── tosca_single_server.yaml ├── tosca_single_server_with_defaults.yaml ├── tosca_software_component.yaml └── tosca_web_application.yaml ├── topology.go ├── tosca_data_types.go ├── tosca_functions.go ├── tosca_namespace_alias.go ├── tosca_namespace_alias_test.go ├── tosca_normative_values.go ├── tosca_reusable_modeling_definitions.go ├── utils.go ├── utils_test.go └── workflow.go /.dockerignore: -------------------------------------------------------------------------------- 1 | .glide/ 2 | vendor/ 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/Dockerfile.dev -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/Makefile -------------------------------------------------------------------------------- /NormativeTypes/artifact_types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/NormativeTypes/artifact_types -------------------------------------------------------------------------------- /NormativeTypes/capability_types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/NormativeTypes/capability_types -------------------------------------------------------------------------------- /NormativeTypes/data_types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/NormativeTypes/data_types -------------------------------------------------------------------------------- /NormativeTypes/group_types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/NormativeTypes/group_types -------------------------------------------------------------------------------- /NormativeTypes/interface_types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/NormativeTypes/interface_types -------------------------------------------------------------------------------- /NormativeTypes/node_types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/NormativeTypes/node_types -------------------------------------------------------------------------------- /NormativeTypes/policy_types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/NormativeTypes/policy_types -------------------------------------------------------------------------------- /NormativeTypes/relationship_types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/NormativeTypes/relationship_types -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/TODO.md -------------------------------------------------------------------------------- /assignment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/assignment.go -------------------------------------------------------------------------------- /assignment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/assignment_test.go -------------------------------------------------------------------------------- /attributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/attributes.go -------------------------------------------------------------------------------- /capabilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/capabilities.go -------------------------------------------------------------------------------- /constraints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/constraints.go -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/artifacts/collectd/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/collectd/config.py -------------------------------------------------------------------------------- /examples/artifacts/collectd/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/collectd/create.sh -------------------------------------------------------------------------------- /examples/artifacts/collectd/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/collectd/start.sh -------------------------------------------------------------------------------- /examples/artifacts/elasticsearch/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/elasticsearch/create.sh -------------------------------------------------------------------------------- /examples/artifacts/elasticsearch/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/elasticsearch/start.sh -------------------------------------------------------------------------------- /examples/artifacts/kibana/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/kibana/config.sh -------------------------------------------------------------------------------- /examples/artifacts/kibana/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/kibana/create.sh -------------------------------------------------------------------------------- /examples/artifacts/kibana/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/kibana/start.sh -------------------------------------------------------------------------------- /examples/artifacts/logstash/configure_collectd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/logstash/configure_collectd.py -------------------------------------------------------------------------------- /examples/artifacts/logstash/configure_elasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/logstash/configure_elasticsearch.py -------------------------------------------------------------------------------- /examples/artifacts/logstash/configure_rsyslog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/logstash/configure_rsyslog.py -------------------------------------------------------------------------------- /examples/artifacts/logstash/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/logstash/create.sh -------------------------------------------------------------------------------- /examples/artifacts/logstash/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/logstash/start.sh -------------------------------------------------------------------------------- /examples/artifacts/mongodb/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/mongodb/config.sh -------------------------------------------------------------------------------- /examples/artifacts/mongodb/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/mongodb/create.sh -------------------------------------------------------------------------------- /examples/artifacts/mongodb/create_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/mongodb/create_database.sh -------------------------------------------------------------------------------- /examples/artifacts/mongodb/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/mongodb/start.sh -------------------------------------------------------------------------------- /examples/artifacts/mysql/mysql_database_configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/mysql/mysql_database_configure.sh -------------------------------------------------------------------------------- /examples/artifacts/mysql/mysql_dbms_configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/mysql/mysql_dbms_configure.sh -------------------------------------------------------------------------------- /examples/artifacts/mysql/mysql_dbms_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/mysql/mysql_dbms_install.sh -------------------------------------------------------------------------------- /examples/artifacts/mysql/mysql_dbms_start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | /etc/init.d/mysql start -------------------------------------------------------------------------------- /examples/artifacts/nodejs/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/nodejs/config.sh -------------------------------------------------------------------------------- /examples/artifacts/nodejs/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/nodejs/create.sh -------------------------------------------------------------------------------- /examples/artifacts/nodejs/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/nodejs/start.sh -------------------------------------------------------------------------------- /examples/artifacts/rsyslog/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/rsyslog/config.sh -------------------------------------------------------------------------------- /examples/artifacts/rsyslog/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/rsyslog/create.sh -------------------------------------------------------------------------------- /examples/artifacts/rsyslog/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/rsyslog/start.sh -------------------------------------------------------------------------------- /examples/artifacts/webserver/webserver_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/webserver/webserver_install.sh -------------------------------------------------------------------------------- /examples/artifacts/webserver/webserver_start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | service apache2 start -------------------------------------------------------------------------------- /examples/artifacts/wordpress/wordpress_configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/wordpress/wordpress_configure.sh -------------------------------------------------------------------------------- /examples/artifacts/wordpress/wordpress_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/artifacts/wordpress/wordpress_install.sh -------------------------------------------------------------------------------- /examples/csar_elk.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/csar_elk.zip -------------------------------------------------------------------------------- /examples/csar_hello_world.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/csar_hello_world.zip -------------------------------------------------------------------------------- /examples/csar_metadata_not_yaml.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/csar_metadata_not_yaml.zip -------------------------------------------------------------------------------- /examples/csar_not_zip.zip: -------------------------------------------------------------------------------- 1 | This is an invalid CSAR file. -------------------------------------------------------------------------------- /examples/csar_single_instance_wordpress.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/csar_single_instance_wordpress.zip -------------------------------------------------------------------------------- /examples/csar_wordpress_invalid_import_path.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/csar_wordpress_invalid_import_path.zip -------------------------------------------------------------------------------- /examples/csar_wordpress_invalid_script_url.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/csar_wordpress_invalid_script_url.zip -------------------------------------------------------------------------------- /examples/csar_wrong_metadata_file.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/csar_wrong_metadata_file.zip -------------------------------------------------------------------------------- /examples/custom_types/collectd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/custom_types/collectd.yaml -------------------------------------------------------------------------------- /examples/custom_types/elasticsearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/custom_types/elasticsearch.yaml -------------------------------------------------------------------------------- /examples/custom_types/kibana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/custom_types/kibana.yaml -------------------------------------------------------------------------------- /examples/custom_types/logstash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/custom_types/logstash.yaml -------------------------------------------------------------------------------- /examples/custom_types/paypalpizzastore_nodejs_app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/custom_types/paypalpizzastore_nodejs_app.yaml -------------------------------------------------------------------------------- /examples/custom_types/rsyslog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/custom_types/rsyslog.yaml -------------------------------------------------------------------------------- /examples/custom_types/wordpress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/custom_types/wordpress.yaml -------------------------------------------------------------------------------- /examples/example1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/example1.yaml -------------------------------------------------------------------------------- /examples/example2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/example2.yaml -------------------------------------------------------------------------------- /examples/example3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/example3.yaml -------------------------------------------------------------------------------- /examples/example4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/example4.yaml -------------------------------------------------------------------------------- /examples/network/tosca_one_server_one_network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/network/tosca_one_server_one_network.yaml -------------------------------------------------------------------------------- /examples/network/tosca_one_server_three_networks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/network/tosca_one_server_three_networks.yaml -------------------------------------------------------------------------------- /examples/network/tosca_server_on_existing_network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/network/tosca_server_on_existing_network.yaml -------------------------------------------------------------------------------- /examples/network/tosca_two_servers_one_network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/network/tosca_two_servers_one_network.yaml -------------------------------------------------------------------------------- /examples/storage/tosca_blockstorage_with_attachment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/storage/tosca_blockstorage_with_attachment.yaml -------------------------------------------------------------------------------- /examples/storage/tosca_blockstorage_with_attachment_notation1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/storage/tosca_blockstorage_with_attachment_notation1.yaml -------------------------------------------------------------------------------- /examples/storage/tosca_blockstorage_with_attachment_notation2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/storage/tosca_blockstorage_with_attachment_notation2.yaml -------------------------------------------------------------------------------- /examples/storage/tosca_blockstorage_with_custom_relationship_type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/storage/tosca_blockstorage_with_custom_relationship_type.yaml -------------------------------------------------------------------------------- /examples/storage/tosca_blockstorage_with_relationship_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/storage/tosca_blockstorage_with_relationship_template.yaml -------------------------------------------------------------------------------- /examples/storage/tosca_multiple_blockstorage_with_attachment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/storage/tosca_multiple_blockstorage_with_attachment.yaml -------------------------------------------------------------------------------- /examples/storage/tosca_single_object_store.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/storage/tosca_single_object_store.yaml -------------------------------------------------------------------------------- /examples/test_host_assignment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/test_host_assignment.yaml -------------------------------------------------------------------------------- /examples/tosca_blockstorage_with_attachment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/tosca_blockstorage_with_attachment.yaml -------------------------------------------------------------------------------- /examples/tosca_blockstorage_with_attachment_notation1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/tosca_blockstorage_with_attachment_notation1.yaml -------------------------------------------------------------------------------- /examples/tosca_elk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/tosca_elk.yaml -------------------------------------------------------------------------------- /examples/tosca_helloworld.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/tosca_helloworld.yaml -------------------------------------------------------------------------------- /examples/tosca_helloworld_invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/tosca_helloworld_invalid.yaml -------------------------------------------------------------------------------- /examples/tosca_nodejs_mongodb_two_instances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/tosca_nodejs_mongodb_two_instances.yaml -------------------------------------------------------------------------------- /examples/tosca_one_server_one_network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/tosca_one_server_one_network.yaml -------------------------------------------------------------------------------- /examples/tosca_single_instance_wordpress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/tosca_single_instance_wordpress.yaml -------------------------------------------------------------------------------- /examples/tosca_single_instance_wordpress_with_local_abspath_import.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/tosca_single_instance_wordpress_with_local_abspath_import.yaml -------------------------------------------------------------------------------- /examples/tosca_single_instance_wordpress_with_url_import.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/tosca_single_instance_wordpress_with_url_import.yaml -------------------------------------------------------------------------------- /examples/tosca_single_server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/tosca_single_server.yaml -------------------------------------------------------------------------------- /examples/tosca_single_server_with_defaults.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/tosca_single_server_with_defaults.yaml -------------------------------------------------------------------------------- /examples/tosca_software_component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/tosca_software_component.yaml -------------------------------------------------------------------------------- /examples/tosca_web_application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/examples/tosca_web_application.yaml -------------------------------------------------------------------------------- /flattener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/flattener.go -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/glide.lock -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/glide.yaml -------------------------------------------------------------------------------- /groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/groups.go -------------------------------------------------------------------------------- /interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/interfaces.go -------------------------------------------------------------------------------- /lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/lifecycle.go -------------------------------------------------------------------------------- /node_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/node_template.go -------------------------------------------------------------------------------- /node_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/node_type.go -------------------------------------------------------------------------------- /normative_definitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/normative_definitions.go -------------------------------------------------------------------------------- /parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/parser.go -------------------------------------------------------------------------------- /parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/parser_test.go -------------------------------------------------------------------------------- /policies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/policies.go -------------------------------------------------------------------------------- /properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/properties.go -------------------------------------------------------------------------------- /reflector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/reflector.go -------------------------------------------------------------------------------- /relationships.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/relationships.go -------------------------------------------------------------------------------- /requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/requirements.go -------------------------------------------------------------------------------- /resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/resolver.go -------------------------------------------------------------------------------- /scripts/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/scripts/check.sh -------------------------------------------------------------------------------- /scripts/cover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/scripts/cover.sh -------------------------------------------------------------------------------- /scripts/fmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/scripts/fmt.sh -------------------------------------------------------------------------------- /scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/scripts/setup.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | go test -v $(glide nv) -bench . 4 | -------------------------------------------------------------------------------- /service_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/service_template.go -------------------------------------------------------------------------------- /service_template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/service_template_test.go -------------------------------------------------------------------------------- /status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/status.go -------------------------------------------------------------------------------- /tests/csar_elk.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/csar_elk.zip -------------------------------------------------------------------------------- /tests/csar_hello_world.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/csar_hello_world.zip -------------------------------------------------------------------------------- /tests/csar_metadata_not_yaml.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/csar_metadata_not_yaml.zip -------------------------------------------------------------------------------- /tests/csar_not_zip.zip: -------------------------------------------------------------------------------- 1 | This is an invalid CSAR file. -------------------------------------------------------------------------------- /tests/csar_single_instance_wordpress.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/csar_single_instance_wordpress.zip -------------------------------------------------------------------------------- /tests/csar_wordpress_invalid_import_path.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/csar_wordpress_invalid_import_path.zip -------------------------------------------------------------------------------- /tests/csar_wordpress_invalid_script_url.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/csar_wordpress_invalid_script_url.zip -------------------------------------------------------------------------------- /tests/csar_wrong_metadata_file.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/csar_wrong_metadata_file.zip -------------------------------------------------------------------------------- /tests/custom_types/collectd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/custom_types/collectd.yaml -------------------------------------------------------------------------------- /tests/custom_types/compute_with_attribute_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/custom_types/compute_with_attribute_list.yaml -------------------------------------------------------------------------------- /tests/custom_types/compute_with_prop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/custom_types/compute_with_prop.yaml -------------------------------------------------------------------------------- /tests/custom_types/custom_network_nodes_defs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/custom_types/custom_network_nodes_defs.yaml -------------------------------------------------------------------------------- /tests/custom_types/custom_policy_types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/custom_types/custom_policy_types.yaml -------------------------------------------------------------------------------- /tests/custom_types/custom_rel_types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/custom_types/custom_rel_types.yaml -------------------------------------------------------------------------------- /tests/custom_types/db_with_list_param.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/custom_types/db_with_list_param.yaml -------------------------------------------------------------------------------- /tests/custom_types/elasticsearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/custom_types/elasticsearch.yaml -------------------------------------------------------------------------------- /tests/custom_types/kibana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/custom_types/kibana.yaml -------------------------------------------------------------------------------- /tests/custom_types/logstash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/custom_types/logstash.yaml -------------------------------------------------------------------------------- /tests/custom_types/node_with_cap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/custom_types/node_with_cap.yaml -------------------------------------------------------------------------------- /tests/custom_types/paypalpizzastore_nodejs_app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/custom_types/paypalpizzastore_nodejs_app.yaml -------------------------------------------------------------------------------- /tests/custom_types/rsyslog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/custom_types/rsyslog.yaml -------------------------------------------------------------------------------- /tests/custom_types/tosca_non_normative.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/custom_types/tosca_non_normative.yaml -------------------------------------------------------------------------------- /tests/custom_types/wordpress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/custom_types/wordpress.yaml -------------------------------------------------------------------------------- /tests/example1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/example1.yaml -------------------------------------------------------------------------------- /tests/example2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/example2.yaml -------------------------------------------------------------------------------- /tests/example3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/example3.yaml -------------------------------------------------------------------------------- /tests/example4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/example4.yaml -------------------------------------------------------------------------------- /tests/files/my_db_content.txt: -------------------------------------------------------------------------------- 1 | username: abc123 2 | password: fake 3 | schema: wp 4 | -------------------------------------------------------------------------------- /tests/get_attribute_host_keyword.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/get_attribute_host_keyword.yaml -------------------------------------------------------------------------------- /tests/get_attribute_with_index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/get_attribute_with_index.yaml -------------------------------------------------------------------------------- /tests/get_property_capabilties_inheritance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/get_property_capabilties_inheritance.yaml -------------------------------------------------------------------------------- /tests/get_property_source_target_keywords.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/get_property_source_target_keywords.yaml -------------------------------------------------------------------------------- /tests/invalids/test_bad_import_format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/invalids/test_bad_import_format.yaml -------------------------------------------------------------------------------- /tests/invalids/test_bad_import_format_defs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/invalids/test_bad_import_format_defs.yaml -------------------------------------------------------------------------------- /tests/refapp/import1/collectd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/refapp/import1/collectd.yaml -------------------------------------------------------------------------------- /tests/refapp/import2/elasticsearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/refapp/import2/elasticsearch.yaml -------------------------------------------------------------------------------- /tests/refapp/import2/kibana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/refapp/import2/kibana.yaml -------------------------------------------------------------------------------- /tests/refapp/logstash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/refapp/logstash.yaml -------------------------------------------------------------------------------- /tests/refapp/paypalpizzastore_nodejs_app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/refapp/paypalpizzastore_nodejs_app.yaml -------------------------------------------------------------------------------- /tests/refapp/rsyslog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/refapp/rsyslog.yaml -------------------------------------------------------------------------------- /tests/refapp/tosca_elk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/refapp/tosca_elk.yaml -------------------------------------------------------------------------------- /tests/test_get_artifact.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/test_get_artifact.yaml -------------------------------------------------------------------------------- /tests/test_host_assignment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/test_host_assignment.yaml -------------------------------------------------------------------------------- /tests/test_template_with_nested_imports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/test_template_with_nested_imports.yaml -------------------------------------------------------------------------------- /tests/test_token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/test_token.yaml -------------------------------------------------------------------------------- /tests/test_token_invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/test_token_invalid.yaml -------------------------------------------------------------------------------- /tests/tosca_abstract_db_node_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_abstract_db_node_template.yaml -------------------------------------------------------------------------------- /tests/tosca_abstract_db_requirement_using_node_filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_abstract_db_requirement_using_node_filter.yaml -------------------------------------------------------------------------------- /tests/tosca_abstract_node_template_with_node_filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_abstract_node_template_with_node_filter.yaml -------------------------------------------------------------------------------- /tests/tosca_autoscaling.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_autoscaling.yaml -------------------------------------------------------------------------------- /tests/tosca_blockstorage_with_attachment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_blockstorage_with_attachment.yaml -------------------------------------------------------------------------------- /tests/tosca_blockstorage_with_attachment_notation1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_blockstorage_with_attachment_notation1.yaml -------------------------------------------------------------------------------- /tests/tosca_blockstorage_with_attachment_notation2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_blockstorage_with_attachment_notation2.yaml -------------------------------------------------------------------------------- /tests/tosca_container_nodes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_container_nodes.yaml -------------------------------------------------------------------------------- /tests/tosca_container_policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_container_policies.yaml -------------------------------------------------------------------------------- /tests/tosca_custom_network_nodes_imports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_custom_network_nodes_imports.yaml -------------------------------------------------------------------------------- /tests/tosca_custom_network_nodes_inline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_custom_network_nodes_inline.yaml -------------------------------------------------------------------------------- /tests/tosca_custom_relationship.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_custom_relationship.yaml -------------------------------------------------------------------------------- /tests/tosca_elk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_elk.yaml -------------------------------------------------------------------------------- /tests/tosca_get_functions_semantic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_get_functions_semantic.yaml -------------------------------------------------------------------------------- /tests/tosca_grouping_anti_colocation_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_grouping_anti_colocation_policy.yaml -------------------------------------------------------------------------------- /tests/tosca_grouping_node_templates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_grouping_node_templates.yaml -------------------------------------------------------------------------------- /tests/tosca_helloworld.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_helloworld.yaml -------------------------------------------------------------------------------- /tests/tosca_helloworld_invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_helloworld_invalid.yaml -------------------------------------------------------------------------------- /tests/tosca_host_requirement_using_node_filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_host_requirement_using_node_filter.yaml -------------------------------------------------------------------------------- /tests/tosca_interface_inheritance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_interface_inheritance.yaml -------------------------------------------------------------------------------- /tests/tosca_multiple_blockstorage_with_attachment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_multiple_blockstorage_with_attachment.yaml -------------------------------------------------------------------------------- /tests/tosca_nested_property_names_indexes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_nested_property_names_indexes.yaml -------------------------------------------------------------------------------- /tests/tosca_node_template_attributes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_node_template_attributes.yaml -------------------------------------------------------------------------------- /tests/tosca_nodejs_mongodb_two_instances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_nodejs_mongodb_two_instances.yaml -------------------------------------------------------------------------------- /tests/tosca_one_server_one_network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_one_server_one_network.yaml -------------------------------------------------------------------------------- /tests/tosca_properties_reflected_as_attributes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_properties_reflected_as_attributes.yaml -------------------------------------------------------------------------------- /tests/tosca_ref_abstract_db_node_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_ref_abstract_db_node_template.yaml -------------------------------------------------------------------------------- /tests/tosca_simple_constraint_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_simple_constraint_policy.yaml -------------------------------------------------------------------------------- /tests/tosca_single_instance_wordpress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_single_instance_wordpress.yaml -------------------------------------------------------------------------------- /tests/tosca_single_instance_wordpress_with_url_import.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_single_instance_wordpress_with_url_import.yaml -------------------------------------------------------------------------------- /tests/tosca_single_object_store.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_single_object_store.yaml -------------------------------------------------------------------------------- /tests/tosca_single_server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_single_server.yaml -------------------------------------------------------------------------------- /tests/tosca_single_server_with_defaults.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_single_server_with_defaults.yaml -------------------------------------------------------------------------------- /tests/tosca_software_component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_software_component.yaml -------------------------------------------------------------------------------- /tests/tosca_web_application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tests/tosca_web_application.yaml -------------------------------------------------------------------------------- /topology.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/topology.go -------------------------------------------------------------------------------- /tosca_data_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tosca_data_types.go -------------------------------------------------------------------------------- /tosca_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tosca_functions.go -------------------------------------------------------------------------------- /tosca_namespace_alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tosca_namespace_alias.go -------------------------------------------------------------------------------- /tosca_namespace_alias_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tosca_namespace_alias_test.go -------------------------------------------------------------------------------- /tosca_normative_values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tosca_normative_values.go -------------------------------------------------------------------------------- /tosca_reusable_modeling_definitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/tosca_reusable_modeling_definitions.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/utils.go -------------------------------------------------------------------------------- /utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/utils_test.go -------------------------------------------------------------------------------- /workflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owulveryck/toscalib/HEAD/workflow.go --------------------------------------------------------------------------------