├── .gitignore ├── .goreleaser.yml ├── FAQ.md ├── LICENSE ├── NOTICE ├── README.md ├── TODO ├── TUTORIAL.md ├── _config.yml ├── assets ├── media │ └── download.png └── tosca │ └── profiles │ ├── cloudify │ └── 5.0.5 │ │ ├── data.yaml │ │ ├── js │ │ └── functions │ │ │ ├── concat.js │ │ │ ├── get_attribute.js │ │ │ ├── get_capability.js │ │ │ ├── get_input.js │ │ │ ├── get_property.js │ │ │ └── get_secret.js │ │ └── profile.yaml │ ├── common │ └── 1.0 │ │ └── js │ │ ├── RESOLUTION.md │ │ ├── coerce.js │ │ ├── diff.js │ │ ├── lib │ │ ├── traversal.js │ │ └── utils.js │ │ ├── outputs.js │ │ ├── resolve.js │ │ └── visualize.js │ ├── hot │ └── 1.0 │ │ └── js │ │ ├── constraints │ │ ├── allowed_pattern.js │ │ ├── allowed_values.js │ │ ├── custom_constraint.js │ │ ├── length.js │ │ ├── modulo.js │ │ └── range.js │ │ └── functions │ │ ├── and.js │ │ ├── contains.js │ │ ├── digest.js │ │ ├── equals.js │ │ ├── filter.js │ │ ├── get_attr.js │ │ ├── get_file.js │ │ ├── get_param.js │ │ ├── get_resource.js │ │ ├── if.js │ │ ├── list_concat.js │ │ ├── list_concat_unique.js │ │ ├── list_join.js │ │ ├── make_url.js │ │ ├── map_merge.js │ │ ├── map_replace.js │ │ ├── not.js │ │ ├── or.js │ │ ├── repeat.js │ │ ├── resource_facade.js │ │ ├── str_replace.js │ │ ├── str_replace_strict.js │ │ ├── str_replace_vstrict.js │ │ ├── str_split.js │ │ └── yaql.js │ ├── implicit │ ├── 1.0 │ │ └── data.yaml │ ├── 1.1 │ │ └── data.yaml │ ├── 1.2 │ │ └── data.yaml │ ├── 1.3 │ │ └── data.yaml │ └── 2.0 │ │ ├── data.yaml │ │ ├── js │ │ ├── comparers │ │ │ └── version.js │ │ ├── constraints │ │ │ ├── $format.js │ │ │ ├── and.js │ │ │ ├── contains.js │ │ │ ├── equal.js │ │ │ ├── greater_or_equal.js │ │ │ ├── greater_than.js │ │ │ ├── has_all_entries.js │ │ │ ├── has_all_keys.js │ │ │ ├── has_any_entry.js │ │ │ ├── has_any_key.js │ │ │ ├── has_entry.js │ │ │ ├── has_key.js │ │ │ ├── has_prefix.js │ │ │ ├── has_suffix.js │ │ │ ├── in_range.js │ │ │ ├── less_or_equal.js │ │ │ ├── less_than.js │ │ │ ├── matches.js │ │ │ ├── max_length.js │ │ │ ├── min_length.js │ │ │ ├── not.js │ │ │ ├── or.js │ │ │ ├── pattern.js │ │ │ ├── schema.js │ │ │ ├── valid_values.js │ │ │ └── xor.js │ │ └── functions │ │ │ ├── $get_target_name.js │ │ │ ├── $node_index.js │ │ │ ├── ceil.js │ │ │ ├── concat.js │ │ │ ├── difference.js │ │ │ ├── floor.js │ │ │ ├── get_artifact.js │ │ │ ├── get_attribute.js │ │ │ ├── get_input.js │ │ │ ├── get_nodes_of_type.js │ │ │ ├── get_operation_output.js │ │ │ ├── get_property.js │ │ │ ├── intersection.js │ │ │ ├── join.js │ │ │ ├── length.js │ │ │ ├── product.js │ │ │ ├── quotient.js │ │ │ ├── remainder.js │ │ │ ├── round.js │ │ │ ├── sum.js │ │ │ ├── token.js │ │ │ └── union.js │ │ └── profile.yaml │ ├── profiles.go │ ├── simple-for-nfv │ └── 1.0 │ │ ├── artifacts.yaml │ │ ├── capabilities.yaml │ │ ├── data.yaml │ │ ├── nodes.yaml │ │ ├── profile.yaml │ │ └── relationships.yaml │ └── simple │ ├── 1.0 │ ├── artifacts.yaml │ ├── capabilities.yaml │ ├── data.yaml │ ├── groups.yaml │ ├── interfaces.yaml │ ├── nodes.yaml │ ├── policies.yaml │ ├── profile.yaml │ └── relationships.yaml │ ├── 1.1 │ ├── artifacts.yaml │ ├── capabilities.yaml │ ├── data.yaml │ ├── groups.yaml │ ├── interfaces.yaml │ ├── nodes.yaml │ ├── policies.yaml │ ├── profile.yaml │ └── relationships.yaml │ ├── 1.2 │ ├── artifacts.yaml │ ├── capabilities.yaml │ ├── data.yaml │ ├── groups.yaml │ ├── interfaces.yaml │ ├── nodes.yaml │ ├── policies.yaml │ ├── profile.yaml │ └── relationships.yaml │ ├── 1.3 │ ├── artifacts.yaml │ ├── capabilities.yaml │ ├── data.yaml │ ├── groups.yaml │ ├── interfaces.yaml │ ├── nodes.yaml │ ├── policies.yaml │ ├── profile.yaml │ └── relationships.yaml │ └── 2.0 │ ├── TOSCA.meta │ ├── artifact_types.yaml │ ├── capability_types.yaml │ ├── data_types.yaml │ ├── group_types.yaml │ ├── interface_types.yaml │ ├── node_types.yaml │ ├── policy_types.yaml │ ├── profile.yaml │ └── relationship_types.yaml ├── clout ├── README.md ├── clout.go ├── common.go ├── edge.go ├── entity.go ├── js │ ├── clout-api.go │ ├── clout-context.go │ ├── coercible-function-call.go │ ├── coercible-value.go │ ├── coercible.go │ ├── common.go │ ├── environment.go │ ├── error.go │ ├── exec-context.go │ ├── execution-context.go │ ├── list.go │ ├── map.go │ ├── scriptlets.go │ ├── transcribe-api.go │ └── validators.go ├── key.go ├── load.go ├── read.go ├── unpack.go ├── util │ ├── list.go │ ├── map.go │ └── tosca.go └── vertex.go ├── examples ├── 1.3 │ ├── README.md │ ├── artifacts.yaml │ ├── attributes.yaml │ ├── copy.yaml │ ├── data-types.yaml │ ├── descriptions.yaml │ ├── dsl-definitions.yaml │ ├── functions.yaml │ ├── imports │ │ ├── mongodb.yaml │ │ ├── nginx.yaml │ │ └── super-load-balancer.yaml │ ├── inputs-and-outputs.yaml │ ├── interfaces.yaml │ ├── metadata.yaml │ ├── namespaces.yaml │ ├── policies-and-groups.yaml │ ├── requirements-and-capabilities.yaml │ ├── simple-for-nfv.yaml │ ├── source-and-target.yaml │ ├── substitution-mapping-client.yaml │ ├── substitution-mapping.yaml │ ├── unicode.yaml │ └── workflows.yaml ├── 2.0 │ ├── README.md │ ├── artifacts.yaml │ ├── attributes.yaml │ ├── copy.yaml │ ├── data-types.yaml │ ├── descriptions.yaml │ ├── dsl-definitions.yaml │ ├── functions.yaml │ ├── future │ │ └── _tosca_2_0.yaml │ ├── imports │ │ ├── cloud.yaml │ │ ├── mongodb.yaml │ │ ├── nginx.yaml │ │ └── super-load-balancer.yaml │ ├── inputs-and-outputs.yaml │ ├── interfaces.yaml │ ├── metadata.yaml │ ├── namespaces.yaml │ ├── policies-and-groups.yaml │ ├── requirements-and-capabilities.yaml │ ├── source-and-target.yaml │ ├── substitution-mapping-client.yaml │ ├── substitution-mapping.yaml │ ├── unicode.yaml │ └── workflows.yaml ├── README.md ├── ansible │ ├── README.md │ ├── ansible-playbook │ ├── hosts │ │ ├── README.md │ │ ├── ansible.cfg │ │ ├── inventory.yaml │ │ ├── playbook.yaml │ │ └── tosca.yaml │ ├── service.yaml │ └── tasks │ │ ├── README.md │ │ ├── ansible.cfg │ │ ├── inventory.yaml │ │ └── playbook.yaml ├── bpmn │ ├── README.md │ ├── open-loop-with-diagram.bpmn2 │ ├── open-loop.yaml │ └── profile │ │ ├── js │ │ └── generate.js │ │ ├── policies.yaml │ │ └── profile.yaml ├── cloudify │ ├── advanced-blueprint-example.yaml │ └── example.yaml ├── csar │ ├── cloud │ │ └── profile.yaml │ ├── main.yaml │ ├── other 1.yaml │ └── other 2.yaml ├── dgraph │ ├── .gitignore │ ├── README.md │ ├── dgraph │ ├── dgraph.js │ └── export ├── hot │ ├── hello-world.yaml │ └── parameters │ │ └── single-server-with-existing-floating-ip.yaml ├── java │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── example │ │ └── Compile.java ├── javascript │ ├── README.md │ ├── artifacts.yaml │ ├── artifacts │ │ └── deploy.sh │ ├── constraints.yaml │ ├── converters.yaml │ ├── define.yaml │ ├── exec.yaml │ ├── functions.yaml │ └── imports │ │ ├── define.js │ │ ├── double.js │ │ ├── endpoints.js │ │ └── extract.js ├── legacy │ ├── tosca_1_0.yaml │ ├── tosca_1_1.yaml │ └── tosca_1_2.yaml ├── neo4j │ ├── .gitignore │ ├── README.md │ ├── export │ └── neo4j.js ├── openstack │ ├── README.md │ ├── hello-world.yaml │ ├── profile │ │ ├── capabilities.yaml │ │ ├── data.yaml │ │ ├── js │ │ │ └── generate.js │ │ ├── nodes.yaml │ │ ├── profile.yaml │ │ └── relationships.yaml │ └── scripts │ │ ├── build-playbook │ │ └── install-ansible ├── python │ ├── README.md │ └── compile.py └── ruby │ ├── README.md │ └── compile.rb ├── executables ├── puccini-clout │ ├── README.md │ ├── commands │ │ ├── common.go │ │ ├── root.go │ │ ├── scriptlet-exec.go │ │ ├── scriptlet-get.go │ │ ├── scriptlet-list.go │ │ ├── scriptlet-put.go │ │ ├── scriptlet.go │ │ └── version.go │ ├── default.pgo │ └── main.go ├── puccini-csar │ ├── README.md │ ├── commands │ │ ├── common.go │ │ ├── create.go │ │ ├── meta.go │ │ ├── root.go │ │ └── version.go │ ├── default.pgo │ └── main.go └── puccini-tosca │ ├── README.md │ ├── commands │ ├── common.go │ ├── compile.go │ ├── parse.go │ ├── root.go │ ├── validate.go │ └── version.go │ ├── default.pgo │ └── main.go ├── go.mod ├── go.sum ├── library ├── default.pgo ├── library.go └── main.go ├── normal ├── README.md ├── artifact.go ├── capability.go ├── common.go ├── compile.go ├── entity-type.go ├── function-call.go ├── group.go ├── interface.go ├── list.go ├── location.go ├── map.go ├── node-template.go ├── notification.go ├── operation.go ├── pointer.go ├── policy.go ├── primitive.go ├── relationship.go ├── requirement.go ├── service-template.go ├── substitution.go ├── value-meta.go ├── value.go └── workflow.go ├── puccini_test.go ├── scripts ├── README.md ├── _env ├── _functions ├── _start-http-server ├── benchmark ├── benchmark-all ├── build ├── build-csars ├── build-library ├── build-tinygo ├── build-wasm ├── build-windows ├── build-wrapper-ansible ├── build-wrapper-java ├── build-wrapper-python ├── build-wrapper-ruby ├── csar ├── docs ├── format ├── generate-pgo ├── install-bash-completion ├── refresh-mod ├── release ├── test ├── test-all ├── test-ansible ├── test-archive-url ├── test-archive-url-http ├── test-csar ├── test-csar-http-url ├── test-formats ├── test-git-url ├── test-https-url ├── test-java ├── test-js ├── test-parse ├── test-python ├── test-ruby ├── test-visualize ├── test-wasi └── test-wasm ├── tosca ├── csar │ ├── common.go │ ├── format.go │ ├── meta.go │ ├── paths.go │ ├── url.go │ └── version.go ├── grammars │ ├── cloudify_v1_3 │ │ ├── blueprint.go │ │ ├── common.go │ │ ├── data-type.go │ │ ├── dsl-resource.go │ │ ├── entity.go │ │ ├── file.go │ │ ├── functions.go │ │ ├── group-policy-trigger.go │ │ ├── group-policy.go │ │ ├── group.go │ │ ├── import.go │ │ ├── input.go │ │ ├── interface-assignment.go │ │ ├── interface-definition.go │ │ ├── metadata.go │ │ ├── node-template-capability.go │ │ ├── node-template-instances.go │ │ ├── node-template.go │ │ ├── node-type.go │ │ ├── operation-assignment.go │ │ ├── operation-definition.go │ │ ├── parameter-definition.go │ │ ├── plugin.go │ │ ├── policy-trigger-type.go │ │ ├── policy-type.go │ │ ├── policy.go │ │ ├── property-definition.go │ │ ├── relationship-assignment.go │ │ ├── relationship-type.go │ │ ├── type.go │ │ ├── upload-resources.go │ │ ├── value-definition.go │ │ ├── value.go │ │ └── workflow.go │ ├── common.go │ ├── hot │ │ ├── common.go │ │ ├── condition-definition.go │ │ ├── condition.go │ │ ├── constraint.go │ │ ├── data.go │ │ ├── entity.go │ │ ├── functions.go │ │ ├── output.go │ │ ├── parameter-group.go │ │ ├── parameter.go │ │ ├── resource.go │ │ ├── template.go │ │ ├── types.go │ │ └── value.go │ ├── init.go │ ├── parse.go │ ├── tosca_v1_0 │ │ ├── attribute-definition.go │ │ ├── capability-definition.go │ │ ├── common.go │ │ ├── data-type.go │ │ ├── group.go │ │ ├── node-template.go │ │ ├── policy-type.go │ │ ├── policy.go │ │ ├── property-definition.go │ │ ├── relationship-template.go │ │ ├── relationship-type.go │ │ └── service-template.go │ ├── tosca_v1_1 │ │ ├── attribute-definition.go │ │ ├── capability-definition.go │ │ ├── common.go │ │ ├── data-type.go │ │ ├── file.go │ │ ├── interface-implementation.go │ │ ├── property-definition.go │ │ ├── relationship-type.go │ │ ├── service-file.go │ │ └── substitution-mappings.go │ ├── tosca_v1_2 │ │ ├── artifact-definition.go │ │ ├── artifact.go │ │ ├── attribute-definition.go │ │ ├── capability-assignment.go │ │ ├── capability-definition.go │ │ ├── common.go │ │ ├── data-type.go │ │ ├── file.go │ │ ├── group-type.go │ │ ├── group.go │ │ ├── interface-assignment.go │ │ ├── interface-definition.go │ │ ├── interface-type.go │ │ ├── operation-assignment.go │ │ ├── operation-definition.go │ │ ├── property-definition.go │ │ ├── relationship-type.go │ │ ├── requirement-assignment.go │ │ ├── schema.go │ │ ├── service-file.go │ │ ├── substitution-mappings.go │ │ ├── trigger-definition.go │ │ └── workflow-activity-call-operation.go │ ├── tosca_v1_3 │ │ ├── attribute-definition.go │ │ ├── capability-definition.go │ │ ├── common.go │ │ ├── condition-clause.go │ │ ├── constraint-clause.go │ │ ├── data-type.go │ │ ├── file.go │ │ ├── import.go │ │ ├── interface-mapping.go │ │ ├── node-template.go │ │ ├── parameter-definition.go │ │ ├── property-definition.go │ │ ├── property-filter.go │ │ ├── relationship-type.go │ │ ├── requirement-assignment.go │ │ ├── requirement-definition.go │ │ ├── scalar-unit.go │ │ ├── schema.go │ │ ├── service-file.go │ │ ├── substitution-mappings.go │ │ ├── trigger-definition.go │ │ └── value.go │ └── tosca_v2_0 │ │ ├── artifact-definition.go │ │ ├── artifact-type.go │ │ ├── artifact.go │ │ ├── attribute-definition.go │ │ ├── attribute-mapping.go │ │ ├── bytes.go │ │ ├── capability-assignment.go │ │ ├── capability-definition.go │ │ ├── capability-filter.go │ │ ├── capability-mapping.go │ │ ├── capability-type.go │ │ ├── common.go │ │ ├── condition-clause.go │ │ ├── copy.go │ │ ├── data-definition.go │ │ ├── data-type.go │ │ ├── entity.go │ │ ├── event-filter.go │ │ ├── file.go │ │ ├── functions.go │ │ ├── group-type.go │ │ ├── group.go │ │ ├── import.go │ │ ├── interface-assignment.go │ │ ├── interface-definition.go │ │ ├── interface-implementation.go │ │ ├── interface-mapping.go │ │ ├── interface-type.go │ │ ├── metadata.go │ │ ├── node-filter.go │ │ ├── node-template.go │ │ ├── node-type.go │ │ ├── notification-assignment.go │ │ ├── notification-definition.go │ │ ├── operation-assignment.go │ │ ├── operation-definition.go │ │ ├── output-mapping.go │ │ ├── parameter-definition.go │ │ ├── policy-type.go │ │ ├── policy.go │ │ ├── property-definition.go │ │ ├── property-filter.go │ │ ├── property-mapping.go │ │ ├── range.go │ │ ├── relationship-assignment.go │ │ ├── relationship-definition.go │ │ ├── relationship-template.go │ │ ├── relationship-type.go │ │ ├── repository.go │ │ ├── requirement-assignment.go │ │ ├── requirement-definition.go │ │ ├── requirement-mapping.go │ │ ├── scalar.go │ │ ├── schema.go │ │ ├── service-file.go │ │ ├── service-template.go │ │ ├── substitution-mappings.go │ │ ├── timestamp.go │ │ ├── trigger-definition-condition.go │ │ ├── trigger-definition.go │ │ ├── type.go │ │ ├── validation-clause.go │ │ ├── value-collections.go │ │ ├── value.go │ │ ├── version.go │ │ ├── workflow-activity-call-operation.go │ │ ├── workflow-activity-definition.go │ │ ├── workflow-definition.go │ │ ├── workflow-precondition-definition.go │ │ └── workflow-step-definition.go ├── parser │ ├── README.md │ ├── TAGS.md │ ├── common.go │ ├── context.go │ ├── file.go │ ├── gather.go │ ├── inputs.go │ ├── parse.go │ ├── parser.go │ ├── phase1-read.go │ ├── phase2.1-namespaces.go │ ├── phase2.2-lookup.go │ ├── phase3-hierarchies.go │ ├── phase4-inheritance.go │ ├── phase5-rendering.go │ ├── phase6-normalization.go │ ├── tasks.go │ ├── traverse.go │ └── yaml.go └── parsing │ ├── QUIRKS.md │ ├── common.go │ ├── context.go │ ├── entity-pointers.go │ ├── function-call.go │ ├── grammars.go │ ├── imports.go │ ├── inheritance.go │ ├── inputs.go │ ├── maps.go │ ├── metadata.go │ ├── namespaces.go │ ├── quirks.go │ ├── reading.go │ ├── rendering.go │ ├── reporting.go │ ├── scriptlets.go │ └── validation.go └── wrappers ├── ansible ├── README.md └── ansible_collections │ └── puccini │ └── tosca │ ├── README.md │ ├── galaxy.yml │ └── plugins │ ├── inventory │ └── nodes.py │ └── modules │ └── compile.py ├── java ├── .gitignore ├── README.md ├── java │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── cloud │ │ └── puccini │ │ ├── Problems.java │ │ ├── SnakeYAML.java │ │ └── TOSCA.java ├── native │ ├── pom.xml │ └── src │ │ └── main │ │ └── c │ │ └── cloud_puccini_TOSCA.c └── pom.xml ├── python ├── MANIFEST.in ├── README.md ├── description.md ├── puccini │ ├── go.py │ └── tosca.py └── setup.py └── ruby ├── README.md ├── lib ├── .gitignore └── puccini.rb └── puccini.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/TODO -------------------------------------------------------------------------------- /TUTORIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/TUTORIAL.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/media/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/media/download.png -------------------------------------------------------------------------------- /assets/tosca/profiles/cloudify/5.0.5/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/cloudify/5.0.5/data.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/cloudify/5.0.5/js/functions/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/cloudify/5.0.5/js/functions/concat.js -------------------------------------------------------------------------------- /assets/tosca/profiles/cloudify/5.0.5/js/functions/get_attribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/cloudify/5.0.5/js/functions/get_attribute.js -------------------------------------------------------------------------------- /assets/tosca/profiles/cloudify/5.0.5/js/functions/get_capability.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/cloudify/5.0.5/js/functions/get_capability.js -------------------------------------------------------------------------------- /assets/tosca/profiles/cloudify/5.0.5/js/functions/get_input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/cloudify/5.0.5/js/functions/get_input.js -------------------------------------------------------------------------------- /assets/tosca/profiles/cloudify/5.0.5/js/functions/get_property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/cloudify/5.0.5/js/functions/get_property.js -------------------------------------------------------------------------------- /assets/tosca/profiles/cloudify/5.0.5/js/functions/get_secret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/cloudify/5.0.5/js/functions/get_secret.js -------------------------------------------------------------------------------- /assets/tosca/profiles/cloudify/5.0.5/profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/cloudify/5.0.5/profile.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/common/1.0/js/RESOLUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/common/1.0/js/RESOLUTION.md -------------------------------------------------------------------------------- /assets/tosca/profiles/common/1.0/js/coerce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/common/1.0/js/coerce.js -------------------------------------------------------------------------------- /assets/tosca/profiles/common/1.0/js/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/common/1.0/js/diff.js -------------------------------------------------------------------------------- /assets/tosca/profiles/common/1.0/js/lib/traversal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/common/1.0/js/lib/traversal.js -------------------------------------------------------------------------------- /assets/tosca/profiles/common/1.0/js/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/common/1.0/js/lib/utils.js -------------------------------------------------------------------------------- /assets/tosca/profiles/common/1.0/js/outputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/common/1.0/js/outputs.js -------------------------------------------------------------------------------- /assets/tosca/profiles/common/1.0/js/resolve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/common/1.0/js/resolve.js -------------------------------------------------------------------------------- /assets/tosca/profiles/common/1.0/js/visualize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/common/1.0/js/visualize.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/constraints/allowed_pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/constraints/allowed_pattern.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/constraints/allowed_values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/constraints/allowed_values.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/constraints/custom_constraint.js: -------------------------------------------------------------------------------- 1 | 2 | exports.validate = function() { 3 | // TODO 4 | return true; 5 | }; 6 | -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/constraints/length.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/constraints/length.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/constraints/modulo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/constraints/modulo.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/constraints/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/constraints/range.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/and.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/and.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/contains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/contains.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/digest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/digest.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/equals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/equals.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/filter.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/get_attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/get_attr.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/get_file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/get_file.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/get_param.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/get_param.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/get_resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/get_resource.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/if.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/if.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/list_concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/list_concat.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/list_concat_unique.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/list_concat_unique.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/list_join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/list_join.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/make_url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/make_url.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/map_merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/map_merge.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/map_replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/map_replace.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/not.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/not.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/or.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/or.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/repeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/repeat.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/resource_facade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/resource_facade.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/str_replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/str_replace.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/str_replace_strict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/str_replace_strict.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/str_replace_vstrict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/str_replace_vstrict.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/str_split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/str_split.js -------------------------------------------------------------------------------- /assets/tosca/profiles/hot/1.0/js/functions/yaql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/hot/1.0/js/functions/yaql.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/1.0/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/1.0/data.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/1.1/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/1.1/data.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/1.2/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/1.2/data.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/1.3/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/1.3/data.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/data.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/comparers/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/comparers/version.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/$format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/$format.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/and.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/and.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/contains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/contains.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/equal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/equal.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/greater_or_equal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/greater_or_equal.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/greater_than.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/greater_than.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/has_all_entries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/has_all_entries.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/has_all_keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/has_all_keys.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/has_any_entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/has_any_entry.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/has_any_key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/has_any_key.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/has_entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/has_entry.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/has_key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/has_key.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/has_prefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/has_prefix.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/has_suffix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/has_suffix.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/in_range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/in_range.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/less_or_equal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/less_or_equal.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/less_than.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/less_than.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/matches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/matches.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/max_length.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/max_length.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/min_length.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/min_length.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/not.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/not.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/or.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/or.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/pattern.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/schema.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/valid_values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/valid_values.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/constraints/xor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/constraints/xor.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/$get_target_name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/$get_target_name.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/$node_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/$node_index.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/ceil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/ceil.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/concat.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/difference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/difference.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/floor.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/get_artifact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/get_artifact.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/get_attribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/get_attribute.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/get_input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/get_input.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/get_nodes_of_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/get_nodes_of_type.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/get_operation_output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/get_operation_output.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/get_property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/get_property.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/intersection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/intersection.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/join.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/length.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/length.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/product.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/quotient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/quotient.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/remainder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/remainder.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/round.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/round.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/sum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/sum.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/token.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/js/functions/union.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/js/functions/union.js -------------------------------------------------------------------------------- /assets/tosca/profiles/implicit/2.0/profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/implicit/2.0/profile.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/profiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/profiles.go -------------------------------------------------------------------------------- /assets/tosca/profiles/simple-for-nfv/1.0/artifacts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple-for-nfv/1.0/artifacts.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple-for-nfv/1.0/capabilities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple-for-nfv/1.0/capabilities.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple-for-nfv/1.0/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple-for-nfv/1.0/data.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple-for-nfv/1.0/nodes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple-for-nfv/1.0/nodes.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple-for-nfv/1.0/profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple-for-nfv/1.0/profile.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple-for-nfv/1.0/relationships.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple-for-nfv/1.0/relationships.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.0/artifacts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.0/artifacts.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.0/capabilities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.0/capabilities.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.0/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.0/data.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.0/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.0/groups.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.0/interfaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.0/interfaces.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.0/nodes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.0/nodes.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.0/policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.0/policies.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.0/profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.0/profile.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.0/relationships.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.0/relationships.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.1/artifacts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.1/artifacts.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.1/capabilities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.1/capabilities.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.1/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.1/data.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.1/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.1/groups.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.1/interfaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.1/interfaces.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.1/nodes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.1/nodes.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.1/policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.1/policies.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.1/profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.1/profile.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.1/relationships.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.1/relationships.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.2/artifacts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.2/artifacts.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.2/capabilities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.2/capabilities.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.2/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.2/data.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.2/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.2/groups.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.2/interfaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.2/interfaces.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.2/nodes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.2/nodes.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.2/policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.2/policies.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.2/profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.2/profile.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.2/relationships.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.2/relationships.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.3/artifacts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.3/artifacts.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.3/capabilities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.3/capabilities.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.3/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.3/data.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.3/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.3/groups.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.3/interfaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.3/interfaces.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.3/nodes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.3/nodes.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.3/policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.3/policies.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.3/profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.3/profile.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/1.3/relationships.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/1.3/relationships.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/2.0/TOSCA.meta: -------------------------------------------------------------------------------- 1 | CSAR-Version: 2.0 2 | Created-By: OASIS TOSCA TC 3 | Entry-Definitions: profile.yaml 4 | -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/2.0/artifact_types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/2.0/artifact_types.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/2.0/capability_types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/2.0/capability_types.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/2.0/data_types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/2.0/data_types.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/2.0/group_types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/2.0/group_types.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/2.0/interface_types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/2.0/interface_types.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/2.0/node_types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/2.0/node_types.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/2.0/policy_types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/2.0/policy_types.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/2.0/profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/2.0/profile.yaml -------------------------------------------------------------------------------- /assets/tosca/profiles/simple/2.0/relationship_types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/assets/tosca/profiles/simple/2.0/relationship_types.yaml -------------------------------------------------------------------------------- /clout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/README.md -------------------------------------------------------------------------------- /clout/clout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/clout.go -------------------------------------------------------------------------------- /clout/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/common.go -------------------------------------------------------------------------------- /clout/edge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/edge.go -------------------------------------------------------------------------------- /clout/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/entity.go -------------------------------------------------------------------------------- /clout/js/clout-api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/js/clout-api.go -------------------------------------------------------------------------------- /clout/js/clout-context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/js/clout-context.go -------------------------------------------------------------------------------- /clout/js/coercible-function-call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/js/coercible-function-call.go -------------------------------------------------------------------------------- /clout/js/coercible-value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/js/coercible-value.go -------------------------------------------------------------------------------- /clout/js/coercible.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/js/coercible.go -------------------------------------------------------------------------------- /clout/js/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/js/common.go -------------------------------------------------------------------------------- /clout/js/environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/js/environment.go -------------------------------------------------------------------------------- /clout/js/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/js/error.go -------------------------------------------------------------------------------- /clout/js/exec-context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/js/exec-context.go -------------------------------------------------------------------------------- /clout/js/execution-context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/js/execution-context.go -------------------------------------------------------------------------------- /clout/js/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/js/list.go -------------------------------------------------------------------------------- /clout/js/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/js/map.go -------------------------------------------------------------------------------- /clout/js/scriptlets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/js/scriptlets.go -------------------------------------------------------------------------------- /clout/js/transcribe-api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/js/transcribe-api.go -------------------------------------------------------------------------------- /clout/js/validators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/js/validators.go -------------------------------------------------------------------------------- /clout/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/key.go -------------------------------------------------------------------------------- /clout/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/load.go -------------------------------------------------------------------------------- /clout/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/read.go -------------------------------------------------------------------------------- /clout/unpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/unpack.go -------------------------------------------------------------------------------- /clout/util/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/util/list.go -------------------------------------------------------------------------------- /clout/util/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/util/map.go -------------------------------------------------------------------------------- /clout/util/tosca.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/util/tosca.go -------------------------------------------------------------------------------- /clout/vertex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/clout/vertex.go -------------------------------------------------------------------------------- /examples/1.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/README.md -------------------------------------------------------------------------------- /examples/1.3/artifacts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/artifacts.yaml -------------------------------------------------------------------------------- /examples/1.3/attributes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/attributes.yaml -------------------------------------------------------------------------------- /examples/1.3/copy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/copy.yaml -------------------------------------------------------------------------------- /examples/1.3/data-types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/data-types.yaml -------------------------------------------------------------------------------- /examples/1.3/descriptions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/descriptions.yaml -------------------------------------------------------------------------------- /examples/1.3/dsl-definitions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/dsl-definitions.yaml -------------------------------------------------------------------------------- /examples/1.3/functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/functions.yaml -------------------------------------------------------------------------------- /examples/1.3/imports/mongodb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/imports/mongodb.yaml -------------------------------------------------------------------------------- /examples/1.3/imports/nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/imports/nginx.yaml -------------------------------------------------------------------------------- /examples/1.3/imports/super-load-balancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/imports/super-load-balancer.yaml -------------------------------------------------------------------------------- /examples/1.3/inputs-and-outputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/inputs-and-outputs.yaml -------------------------------------------------------------------------------- /examples/1.3/interfaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/interfaces.yaml -------------------------------------------------------------------------------- /examples/1.3/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/metadata.yaml -------------------------------------------------------------------------------- /examples/1.3/namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/namespaces.yaml -------------------------------------------------------------------------------- /examples/1.3/policies-and-groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/policies-and-groups.yaml -------------------------------------------------------------------------------- /examples/1.3/requirements-and-capabilities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/requirements-and-capabilities.yaml -------------------------------------------------------------------------------- /examples/1.3/simple-for-nfv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/simple-for-nfv.yaml -------------------------------------------------------------------------------- /examples/1.3/source-and-target.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/source-and-target.yaml -------------------------------------------------------------------------------- /examples/1.3/substitution-mapping-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/substitution-mapping-client.yaml -------------------------------------------------------------------------------- /examples/1.3/substitution-mapping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/substitution-mapping.yaml -------------------------------------------------------------------------------- /examples/1.3/unicode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/unicode.yaml -------------------------------------------------------------------------------- /examples/1.3/workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/1.3/workflows.yaml -------------------------------------------------------------------------------- /examples/2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/README.md -------------------------------------------------------------------------------- /examples/2.0/artifacts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/artifacts.yaml -------------------------------------------------------------------------------- /examples/2.0/attributes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/attributes.yaml -------------------------------------------------------------------------------- /examples/2.0/copy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/copy.yaml -------------------------------------------------------------------------------- /examples/2.0/data-types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/data-types.yaml -------------------------------------------------------------------------------- /examples/2.0/descriptions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/descriptions.yaml -------------------------------------------------------------------------------- /examples/2.0/dsl-definitions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/dsl-definitions.yaml -------------------------------------------------------------------------------- /examples/2.0/functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/functions.yaml -------------------------------------------------------------------------------- /examples/2.0/future/_tosca_2_0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/future/_tosca_2_0.yaml -------------------------------------------------------------------------------- /examples/2.0/imports/cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/imports/cloud.yaml -------------------------------------------------------------------------------- /examples/2.0/imports/mongodb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/imports/mongodb.yaml -------------------------------------------------------------------------------- /examples/2.0/imports/nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/imports/nginx.yaml -------------------------------------------------------------------------------- /examples/2.0/imports/super-load-balancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/imports/super-load-balancer.yaml -------------------------------------------------------------------------------- /examples/2.0/inputs-and-outputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/inputs-and-outputs.yaml -------------------------------------------------------------------------------- /examples/2.0/interfaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/interfaces.yaml -------------------------------------------------------------------------------- /examples/2.0/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/metadata.yaml -------------------------------------------------------------------------------- /examples/2.0/namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/namespaces.yaml -------------------------------------------------------------------------------- /examples/2.0/policies-and-groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/policies-and-groups.yaml -------------------------------------------------------------------------------- /examples/2.0/requirements-and-capabilities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/requirements-and-capabilities.yaml -------------------------------------------------------------------------------- /examples/2.0/source-and-target.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/source-and-target.yaml -------------------------------------------------------------------------------- /examples/2.0/substitution-mapping-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/substitution-mapping-client.yaml -------------------------------------------------------------------------------- /examples/2.0/substitution-mapping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/substitution-mapping.yaml -------------------------------------------------------------------------------- /examples/2.0/unicode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/unicode.yaml -------------------------------------------------------------------------------- /examples/2.0/workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/2.0/workflows.yaml -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/ansible/README.md -------------------------------------------------------------------------------- /examples/ansible/ansible-playbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/ansible/ansible-playbook -------------------------------------------------------------------------------- /examples/ansible/hosts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/ansible/hosts/README.md -------------------------------------------------------------------------------- /examples/ansible/hosts/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/ansible/hosts/ansible.cfg -------------------------------------------------------------------------------- /examples/ansible/hosts/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/ansible/hosts/inventory.yaml -------------------------------------------------------------------------------- /examples/ansible/hosts/playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/ansible/hosts/playbook.yaml -------------------------------------------------------------------------------- /examples/ansible/hosts/tosca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/ansible/hosts/tosca.yaml -------------------------------------------------------------------------------- /examples/ansible/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/ansible/service.yaml -------------------------------------------------------------------------------- /examples/ansible/tasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/ansible/tasks/README.md -------------------------------------------------------------------------------- /examples/ansible/tasks/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/ansible/tasks/ansible.cfg -------------------------------------------------------------------------------- /examples/ansible/tasks/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/ansible/tasks/inventory.yaml -------------------------------------------------------------------------------- /examples/ansible/tasks/playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/ansible/tasks/playbook.yaml -------------------------------------------------------------------------------- /examples/bpmn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/bpmn/README.md -------------------------------------------------------------------------------- /examples/bpmn/open-loop-with-diagram.bpmn2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/bpmn/open-loop-with-diagram.bpmn2 -------------------------------------------------------------------------------- /examples/bpmn/open-loop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/bpmn/open-loop.yaml -------------------------------------------------------------------------------- /examples/bpmn/profile/js/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/bpmn/profile/js/generate.js -------------------------------------------------------------------------------- /examples/bpmn/profile/policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/bpmn/profile/policies.yaml -------------------------------------------------------------------------------- /examples/bpmn/profile/profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/bpmn/profile/profile.yaml -------------------------------------------------------------------------------- /examples/cloudify/advanced-blueprint-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/cloudify/advanced-blueprint-example.yaml -------------------------------------------------------------------------------- /examples/cloudify/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/cloudify/example.yaml -------------------------------------------------------------------------------- /examples/csar/cloud/profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/csar/cloud/profile.yaml -------------------------------------------------------------------------------- /examples/csar/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/csar/main.yaml -------------------------------------------------------------------------------- /examples/csar/other 1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/csar/other 1.yaml -------------------------------------------------------------------------------- /examples/csar/other 2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/csar/other 2.yaml -------------------------------------------------------------------------------- /examples/dgraph/.gitignore: -------------------------------------------------------------------------------- 1 | tosca.json 2 | data/ 3 | logs/ 4 | -------------------------------------------------------------------------------- /examples/dgraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/dgraph/README.md -------------------------------------------------------------------------------- /examples/dgraph/dgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/dgraph/dgraph -------------------------------------------------------------------------------- /examples/dgraph/dgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/dgraph/dgraph.js -------------------------------------------------------------------------------- /examples/dgraph/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/dgraph/export -------------------------------------------------------------------------------- /examples/hot/hello-world.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/hot/hello-world.yaml -------------------------------------------------------------------------------- /examples/hot/parameters/single-server-with-existing-floating-ip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/hot/parameters/single-server-with-existing-floating-ip.yaml -------------------------------------------------------------------------------- /examples/java/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /examples/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/java/README.md -------------------------------------------------------------------------------- /examples/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/java/pom.xml -------------------------------------------------------------------------------- /examples/java/src/main/java/example/Compile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/java/src/main/java/example/Compile.java -------------------------------------------------------------------------------- /examples/javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/javascript/README.md -------------------------------------------------------------------------------- /examples/javascript/artifacts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/javascript/artifacts.yaml -------------------------------------------------------------------------------- /examples/javascript/artifacts/deploy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo Deploy! 4 | -------------------------------------------------------------------------------- /examples/javascript/constraints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/javascript/constraints.yaml -------------------------------------------------------------------------------- /examples/javascript/converters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/javascript/converters.yaml -------------------------------------------------------------------------------- /examples/javascript/define.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/javascript/define.yaml -------------------------------------------------------------------------------- /examples/javascript/exec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/javascript/exec.yaml -------------------------------------------------------------------------------- /examples/javascript/functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/javascript/functions.yaml -------------------------------------------------------------------------------- /examples/javascript/imports/define.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/javascript/imports/define.js -------------------------------------------------------------------------------- /examples/javascript/imports/double.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/javascript/imports/double.js -------------------------------------------------------------------------------- /examples/javascript/imports/endpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/javascript/imports/endpoints.js -------------------------------------------------------------------------------- /examples/javascript/imports/extract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/javascript/imports/extract.js -------------------------------------------------------------------------------- /examples/legacy/tosca_1_0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/legacy/tosca_1_0.yaml -------------------------------------------------------------------------------- /examples/legacy/tosca_1_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/legacy/tosca_1_1.yaml -------------------------------------------------------------------------------- /examples/legacy/tosca_1_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/legacy/tosca_1_2.yaml -------------------------------------------------------------------------------- /examples/neo4j/.gitignore: -------------------------------------------------------------------------------- 1 | data/ 2 | -------------------------------------------------------------------------------- /examples/neo4j/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/neo4j/README.md -------------------------------------------------------------------------------- /examples/neo4j/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/neo4j/export -------------------------------------------------------------------------------- /examples/neo4j/neo4j.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/neo4j/neo4j.js -------------------------------------------------------------------------------- /examples/openstack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/openstack/README.md -------------------------------------------------------------------------------- /examples/openstack/hello-world.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/openstack/hello-world.yaml -------------------------------------------------------------------------------- /examples/openstack/profile/capabilities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/openstack/profile/capabilities.yaml -------------------------------------------------------------------------------- /examples/openstack/profile/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/openstack/profile/data.yaml -------------------------------------------------------------------------------- /examples/openstack/profile/js/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/openstack/profile/js/generate.js -------------------------------------------------------------------------------- /examples/openstack/profile/nodes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/openstack/profile/nodes.yaml -------------------------------------------------------------------------------- /examples/openstack/profile/profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/openstack/profile/profile.yaml -------------------------------------------------------------------------------- /examples/openstack/profile/relationships.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/openstack/profile/relationships.yaml -------------------------------------------------------------------------------- /examples/openstack/scripts/build-playbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/openstack/scripts/build-playbook -------------------------------------------------------------------------------- /examples/openstack/scripts/install-ansible: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/openstack/scripts/install-ansible -------------------------------------------------------------------------------- /examples/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/python/README.md -------------------------------------------------------------------------------- /examples/python/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/python/compile.py -------------------------------------------------------------------------------- /examples/ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/ruby/README.md -------------------------------------------------------------------------------- /examples/ruby/compile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/examples/ruby/compile.rb -------------------------------------------------------------------------------- /executables/puccini-clout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-clout/README.md -------------------------------------------------------------------------------- /executables/puccini-clout/commands/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-clout/commands/common.go -------------------------------------------------------------------------------- /executables/puccini-clout/commands/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-clout/commands/root.go -------------------------------------------------------------------------------- /executables/puccini-clout/commands/scriptlet-exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-clout/commands/scriptlet-exec.go -------------------------------------------------------------------------------- /executables/puccini-clout/commands/scriptlet-get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-clout/commands/scriptlet-get.go -------------------------------------------------------------------------------- /executables/puccini-clout/commands/scriptlet-list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-clout/commands/scriptlet-list.go -------------------------------------------------------------------------------- /executables/puccini-clout/commands/scriptlet-put.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-clout/commands/scriptlet-put.go -------------------------------------------------------------------------------- /executables/puccini-clout/commands/scriptlet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-clout/commands/scriptlet.go -------------------------------------------------------------------------------- /executables/puccini-clout/commands/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-clout/commands/version.go -------------------------------------------------------------------------------- /executables/puccini-clout/default.pgo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-clout/default.pgo -------------------------------------------------------------------------------- /executables/puccini-clout/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-clout/main.go -------------------------------------------------------------------------------- /executables/puccini-csar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-csar/README.md -------------------------------------------------------------------------------- /executables/puccini-csar/commands/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-csar/commands/common.go -------------------------------------------------------------------------------- /executables/puccini-csar/commands/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-csar/commands/create.go -------------------------------------------------------------------------------- /executables/puccini-csar/commands/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-csar/commands/meta.go -------------------------------------------------------------------------------- /executables/puccini-csar/commands/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-csar/commands/root.go -------------------------------------------------------------------------------- /executables/puccini-csar/commands/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-csar/commands/version.go -------------------------------------------------------------------------------- /executables/puccini-csar/default.pgo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-csar/default.pgo -------------------------------------------------------------------------------- /executables/puccini-csar/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-csar/main.go -------------------------------------------------------------------------------- /executables/puccini-tosca/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-tosca/README.md -------------------------------------------------------------------------------- /executables/puccini-tosca/commands/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-tosca/commands/common.go -------------------------------------------------------------------------------- /executables/puccini-tosca/commands/compile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-tosca/commands/compile.go -------------------------------------------------------------------------------- /executables/puccini-tosca/commands/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-tosca/commands/parse.go -------------------------------------------------------------------------------- /executables/puccini-tosca/commands/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-tosca/commands/root.go -------------------------------------------------------------------------------- /executables/puccini-tosca/commands/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-tosca/commands/validate.go -------------------------------------------------------------------------------- /executables/puccini-tosca/commands/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-tosca/commands/version.go -------------------------------------------------------------------------------- /executables/puccini-tosca/default.pgo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-tosca/default.pgo -------------------------------------------------------------------------------- /executables/puccini-tosca/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/executables/puccini-tosca/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/go.sum -------------------------------------------------------------------------------- /library/default.pgo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/library/default.pgo -------------------------------------------------------------------------------- /library/library.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/library/library.go -------------------------------------------------------------------------------- /library/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/library/main.go -------------------------------------------------------------------------------- /normal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/README.md -------------------------------------------------------------------------------- /normal/artifact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/artifact.go -------------------------------------------------------------------------------- /normal/capability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/capability.go -------------------------------------------------------------------------------- /normal/common.go: -------------------------------------------------------------------------------- 1 | package normal 2 | 3 | const VERSION = "1.0" 4 | -------------------------------------------------------------------------------- /normal/compile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/compile.go -------------------------------------------------------------------------------- /normal/entity-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/entity-type.go -------------------------------------------------------------------------------- /normal/function-call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/function-call.go -------------------------------------------------------------------------------- /normal/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/group.go -------------------------------------------------------------------------------- /normal/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/interface.go -------------------------------------------------------------------------------- /normal/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/list.go -------------------------------------------------------------------------------- /normal/location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/location.go -------------------------------------------------------------------------------- /normal/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/map.go -------------------------------------------------------------------------------- /normal/node-template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/node-template.go -------------------------------------------------------------------------------- /normal/notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/notification.go -------------------------------------------------------------------------------- /normal/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/operation.go -------------------------------------------------------------------------------- /normal/pointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/pointer.go -------------------------------------------------------------------------------- /normal/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/policy.go -------------------------------------------------------------------------------- /normal/primitive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/primitive.go -------------------------------------------------------------------------------- /normal/relationship.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/relationship.go -------------------------------------------------------------------------------- /normal/requirement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/requirement.go -------------------------------------------------------------------------------- /normal/service-template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/service-template.go -------------------------------------------------------------------------------- /normal/substitution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/substitution.go -------------------------------------------------------------------------------- /normal/value-meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/value-meta.go -------------------------------------------------------------------------------- /normal/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/value.go -------------------------------------------------------------------------------- /normal/workflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/normal/workflow.go -------------------------------------------------------------------------------- /puccini_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/puccini_test.go -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/_env -------------------------------------------------------------------------------- /scripts/_functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/_functions -------------------------------------------------------------------------------- /scripts/_start-http-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/_start-http-server -------------------------------------------------------------------------------- /scripts/benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/benchmark -------------------------------------------------------------------------------- /scripts/benchmark-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/benchmark-all -------------------------------------------------------------------------------- /scripts/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/build -------------------------------------------------------------------------------- /scripts/build-csars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/build-csars -------------------------------------------------------------------------------- /scripts/build-library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/build-library -------------------------------------------------------------------------------- /scripts/build-tinygo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/build-tinygo -------------------------------------------------------------------------------- /scripts/build-wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/build-wasm -------------------------------------------------------------------------------- /scripts/build-windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/build-windows -------------------------------------------------------------------------------- /scripts/build-wrapper-ansible: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/build-wrapper-ansible -------------------------------------------------------------------------------- /scripts/build-wrapper-java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/build-wrapper-java -------------------------------------------------------------------------------- /scripts/build-wrapper-python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/build-wrapper-python -------------------------------------------------------------------------------- /scripts/build-wrapper-ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/build-wrapper-ruby -------------------------------------------------------------------------------- /scripts/csar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/csar -------------------------------------------------------------------------------- /scripts/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/docs -------------------------------------------------------------------------------- /scripts/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/format -------------------------------------------------------------------------------- /scripts/generate-pgo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/generate-pgo -------------------------------------------------------------------------------- /scripts/install-bash-completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/install-bash-completion -------------------------------------------------------------------------------- /scripts/refresh-mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/refresh-mod -------------------------------------------------------------------------------- /scripts/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/release -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/test -------------------------------------------------------------------------------- /scripts/test-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/test-all -------------------------------------------------------------------------------- /scripts/test-ansible: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/test-ansible -------------------------------------------------------------------------------- /scripts/test-archive-url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/test-archive-url -------------------------------------------------------------------------------- /scripts/test-archive-url-http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/test-archive-url-http -------------------------------------------------------------------------------- /scripts/test-csar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/test-csar -------------------------------------------------------------------------------- /scripts/test-csar-http-url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/test-csar-http-url -------------------------------------------------------------------------------- /scripts/test-formats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/test-formats -------------------------------------------------------------------------------- /scripts/test-git-url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/test-git-url -------------------------------------------------------------------------------- /scripts/test-https-url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/test-https-url -------------------------------------------------------------------------------- /scripts/test-java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/test-java -------------------------------------------------------------------------------- /scripts/test-js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/test-js -------------------------------------------------------------------------------- /scripts/test-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/test-parse -------------------------------------------------------------------------------- /scripts/test-python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/test-python -------------------------------------------------------------------------------- /scripts/test-ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/test-ruby -------------------------------------------------------------------------------- /scripts/test-visualize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/test-visualize -------------------------------------------------------------------------------- /scripts/test-wasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/test-wasi -------------------------------------------------------------------------------- /scripts/test-wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/scripts/test-wasm -------------------------------------------------------------------------------- /tosca/csar/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/csar/common.go -------------------------------------------------------------------------------- /tosca/csar/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/csar/format.go -------------------------------------------------------------------------------- /tosca/csar/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/csar/meta.go -------------------------------------------------------------------------------- /tosca/csar/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/csar/paths.go -------------------------------------------------------------------------------- /tosca/csar/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/csar/url.go -------------------------------------------------------------------------------- /tosca/csar/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/csar/version.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/blueprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/blueprint.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/common.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/data-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/data-type.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/dsl-resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/dsl-resource.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/entity.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/file.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/functions.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/group-policy-trigger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/group-policy-trigger.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/group-policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/group-policy.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/group.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/import.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/input.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/interface-assignment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/interface-assignment.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/interface-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/interface-definition.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/metadata.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/node-template-capability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/node-template-capability.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/node-template-instances.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/node-template-instances.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/node-template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/node-template.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/node-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/node-type.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/operation-assignment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/operation-assignment.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/operation-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/operation-definition.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/parameter-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/parameter-definition.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/plugin.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/policy-trigger-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/policy-trigger-type.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/policy-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/policy-type.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/policy.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/property-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/property-definition.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/relationship-assignment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/relationship-assignment.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/relationship-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/relationship-type.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/type.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/upload-resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/upload-resources.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/value-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/value-definition.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/value.go -------------------------------------------------------------------------------- /tosca/grammars/cloudify_v1_3/workflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/cloudify_v1_3/workflow.go -------------------------------------------------------------------------------- /tosca/grammars/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/common.go -------------------------------------------------------------------------------- /tosca/grammars/hot/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/hot/common.go -------------------------------------------------------------------------------- /tosca/grammars/hot/condition-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/hot/condition-definition.go -------------------------------------------------------------------------------- /tosca/grammars/hot/condition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/hot/condition.go -------------------------------------------------------------------------------- /tosca/grammars/hot/constraint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/hot/constraint.go -------------------------------------------------------------------------------- /tosca/grammars/hot/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/hot/data.go -------------------------------------------------------------------------------- /tosca/grammars/hot/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/hot/entity.go -------------------------------------------------------------------------------- /tosca/grammars/hot/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/hot/functions.go -------------------------------------------------------------------------------- /tosca/grammars/hot/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/hot/output.go -------------------------------------------------------------------------------- /tosca/grammars/hot/parameter-group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/hot/parameter-group.go -------------------------------------------------------------------------------- /tosca/grammars/hot/parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/hot/parameter.go -------------------------------------------------------------------------------- /tosca/grammars/hot/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/hot/resource.go -------------------------------------------------------------------------------- /tosca/grammars/hot/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/hot/template.go -------------------------------------------------------------------------------- /tosca/grammars/hot/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/hot/types.go -------------------------------------------------------------------------------- /tosca/grammars/hot/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/hot/value.go -------------------------------------------------------------------------------- /tosca/grammars/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/init.go -------------------------------------------------------------------------------- /tosca/grammars/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/parse.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_0/attribute-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_0/attribute-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_0/capability-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_0/capability-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_0/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_0/common.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_0/data-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_0/data-type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_0/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_0/group.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_0/node-template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_0/node-template.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_0/policy-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_0/policy-type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_0/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_0/policy.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_0/property-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_0/property-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_0/relationship-template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_0/relationship-template.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_0/relationship-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_0/relationship-type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_0/service-template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_0/service-template.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_1/attribute-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_1/attribute-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_1/capability-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_1/capability-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_1/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_1/common.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_1/data-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_1/data-type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_1/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_1/file.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_1/interface-implementation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_1/interface-implementation.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_1/property-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_1/property-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_1/relationship-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_1/relationship-type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_1/service-file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_1/service-file.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_1/substitution-mappings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_1/substitution-mappings.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/artifact-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/artifact-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/artifact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/artifact.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/attribute-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/attribute-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/capability-assignment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/capability-assignment.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/capability-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/capability-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/common.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/data-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/data-type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/file.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/group-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/group-type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/group.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/interface-assignment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/interface-assignment.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/interface-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/interface-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/interface-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/interface-type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/operation-assignment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/operation-assignment.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/operation-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/operation-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/property-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/property-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/relationship-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/relationship-type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/requirement-assignment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/requirement-assignment.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/schema.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/service-file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/service-file.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/substitution-mappings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/substitution-mappings.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/trigger-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/trigger-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_2/workflow-activity-call-operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_2/workflow-activity-call-operation.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/attribute-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/attribute-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/capability-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/capability-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/common.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/condition-clause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/condition-clause.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/constraint-clause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/constraint-clause.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/data-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/data-type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/file.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/import.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/interface-mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/interface-mapping.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/node-template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/node-template.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/parameter-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/parameter-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/property-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/property-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/property-filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/property-filter.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/relationship-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/relationship-type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/requirement-assignment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/requirement-assignment.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/requirement-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/requirement-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/scalar-unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/scalar-unit.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/schema.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/service-file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/service-file.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/substitution-mappings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/substitution-mappings.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/trigger-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/trigger-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v1_3/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v1_3/value.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/artifact-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/artifact-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/artifact-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/artifact-type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/artifact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/artifact.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/attribute-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/attribute-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/attribute-mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/attribute-mapping.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/bytes.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/capability-assignment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/capability-assignment.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/capability-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/capability-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/capability-filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/capability-filter.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/capability-mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/capability-mapping.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/capability-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/capability-type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/common.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/condition-clause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/condition-clause.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/copy.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/data-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/data-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/data-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/data-type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/entity.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/event-filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/event-filter.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/file.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/functions.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/group-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/group-type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/group.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/import.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/interface-assignment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/interface-assignment.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/interface-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/interface-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/interface-implementation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/interface-implementation.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/interface-mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/interface-mapping.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/interface-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/interface-type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/metadata.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/node-filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/node-filter.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/node-template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/node-template.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/node-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/node-type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/notification-assignment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/notification-assignment.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/notification-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/notification-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/operation-assignment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/operation-assignment.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/operation-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/operation-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/output-mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/output-mapping.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/parameter-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/parameter-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/policy-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/policy-type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/policy.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/property-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/property-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/property-filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/property-filter.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/property-mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/property-mapping.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/range.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/relationship-assignment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/relationship-assignment.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/relationship-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/relationship-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/relationship-template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/relationship-template.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/relationship-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/relationship-type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/repository.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/requirement-assignment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/requirement-assignment.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/requirement-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/requirement-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/requirement-mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/requirement-mapping.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/scalar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/scalar.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/schema.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/service-file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/service-file.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/service-template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/service-template.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/substitution-mappings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/substitution-mappings.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/timestamp.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/trigger-definition-condition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/trigger-definition-condition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/trigger-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/trigger-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/type.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/validation-clause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/validation-clause.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/value-collections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/value-collections.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/value.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/version.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/workflow-activity-call-operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/workflow-activity-call-operation.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/workflow-activity-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/workflow-activity-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/workflow-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/workflow-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/workflow-precondition-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/workflow-precondition-definition.go -------------------------------------------------------------------------------- /tosca/grammars/tosca_v2_0/workflow-step-definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/grammars/tosca_v2_0/workflow-step-definition.go -------------------------------------------------------------------------------- /tosca/parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parser/README.md -------------------------------------------------------------------------------- /tosca/parser/TAGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parser/TAGS.md -------------------------------------------------------------------------------- /tosca/parser/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parser/common.go -------------------------------------------------------------------------------- /tosca/parser/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parser/context.go -------------------------------------------------------------------------------- /tosca/parser/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parser/file.go -------------------------------------------------------------------------------- /tosca/parser/gather.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parser/gather.go -------------------------------------------------------------------------------- /tosca/parser/inputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parser/inputs.go -------------------------------------------------------------------------------- /tosca/parser/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parser/parse.go -------------------------------------------------------------------------------- /tosca/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parser/parser.go -------------------------------------------------------------------------------- /tosca/parser/phase1-read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parser/phase1-read.go -------------------------------------------------------------------------------- /tosca/parser/phase2.1-namespaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parser/phase2.1-namespaces.go -------------------------------------------------------------------------------- /tosca/parser/phase2.2-lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parser/phase2.2-lookup.go -------------------------------------------------------------------------------- /tosca/parser/phase3-hierarchies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parser/phase3-hierarchies.go -------------------------------------------------------------------------------- /tosca/parser/phase4-inheritance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parser/phase4-inheritance.go -------------------------------------------------------------------------------- /tosca/parser/phase5-rendering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parser/phase5-rendering.go -------------------------------------------------------------------------------- /tosca/parser/phase6-normalization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parser/phase6-normalization.go -------------------------------------------------------------------------------- /tosca/parser/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parser/tasks.go -------------------------------------------------------------------------------- /tosca/parser/traverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parser/traverse.go -------------------------------------------------------------------------------- /tosca/parser/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parser/yaml.go -------------------------------------------------------------------------------- /tosca/parsing/QUIRKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parsing/QUIRKS.md -------------------------------------------------------------------------------- /tosca/parsing/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parsing/common.go -------------------------------------------------------------------------------- /tosca/parsing/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parsing/context.go -------------------------------------------------------------------------------- /tosca/parsing/entity-pointers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parsing/entity-pointers.go -------------------------------------------------------------------------------- /tosca/parsing/function-call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parsing/function-call.go -------------------------------------------------------------------------------- /tosca/parsing/grammars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parsing/grammars.go -------------------------------------------------------------------------------- /tosca/parsing/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parsing/imports.go -------------------------------------------------------------------------------- /tosca/parsing/inheritance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parsing/inheritance.go -------------------------------------------------------------------------------- /tosca/parsing/inputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parsing/inputs.go -------------------------------------------------------------------------------- /tosca/parsing/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parsing/maps.go -------------------------------------------------------------------------------- /tosca/parsing/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parsing/metadata.go -------------------------------------------------------------------------------- /tosca/parsing/namespaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parsing/namespaces.go -------------------------------------------------------------------------------- /tosca/parsing/quirks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parsing/quirks.go -------------------------------------------------------------------------------- /tosca/parsing/reading.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parsing/reading.go -------------------------------------------------------------------------------- /tosca/parsing/rendering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parsing/rendering.go -------------------------------------------------------------------------------- /tosca/parsing/reporting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parsing/reporting.go -------------------------------------------------------------------------------- /tosca/parsing/scriptlets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parsing/scriptlets.go -------------------------------------------------------------------------------- /tosca/parsing/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/tosca/parsing/validation.go -------------------------------------------------------------------------------- /wrappers/ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/ansible/README.md -------------------------------------------------------------------------------- /wrappers/ansible/ansible_collections/puccini/tosca/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/ansible/ansible_collections/puccini/tosca/README.md -------------------------------------------------------------------------------- /wrappers/ansible/ansible_collections/puccini/tosca/galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/ansible/ansible_collections/puccini/tosca/galaxy.yml -------------------------------------------------------------------------------- /wrappers/ansible/ansible_collections/puccini/tosca/plugins/inventory/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/ansible/ansible_collections/puccini/tosca/plugins/inventory/nodes.py -------------------------------------------------------------------------------- /wrappers/ansible/ansible_collections/puccini/tosca/plugins/modules/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/ansible/ansible_collections/puccini/tosca/plugins/modules/compile.py -------------------------------------------------------------------------------- /wrappers/java/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /wrappers/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/java/README.md -------------------------------------------------------------------------------- /wrappers/java/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/java/java/pom.xml -------------------------------------------------------------------------------- /wrappers/java/java/src/main/java/cloud/puccini/Problems.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/java/java/src/main/java/cloud/puccini/Problems.java -------------------------------------------------------------------------------- /wrappers/java/java/src/main/java/cloud/puccini/SnakeYAML.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/java/java/src/main/java/cloud/puccini/SnakeYAML.java -------------------------------------------------------------------------------- /wrappers/java/java/src/main/java/cloud/puccini/TOSCA.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/java/java/src/main/java/cloud/puccini/TOSCA.java -------------------------------------------------------------------------------- /wrappers/java/native/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/java/native/pom.xml -------------------------------------------------------------------------------- /wrappers/java/native/src/main/c/cloud_puccini_TOSCA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/java/native/src/main/c/cloud_puccini_TOSCA.c -------------------------------------------------------------------------------- /wrappers/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/java/pom.xml -------------------------------------------------------------------------------- /wrappers/python/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/python/MANIFEST.in -------------------------------------------------------------------------------- /wrappers/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/python/README.md -------------------------------------------------------------------------------- /wrappers/python/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/python/description.md -------------------------------------------------------------------------------- /wrappers/python/puccini/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/python/puccini/go.py -------------------------------------------------------------------------------- /wrappers/python/puccini/tosca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/python/puccini/tosca.py -------------------------------------------------------------------------------- /wrappers/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/python/setup.py -------------------------------------------------------------------------------- /wrappers/ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/ruby/README.md -------------------------------------------------------------------------------- /wrappers/ruby/lib/.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | -------------------------------------------------------------------------------- /wrappers/ruby/lib/puccini.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/ruby/lib/puccini.rb -------------------------------------------------------------------------------- /wrappers/ruby/puccini.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tliron/go-puccini/HEAD/wrappers/ruby/puccini.gemspec --------------------------------------------------------------------------------