Scott Baker | 619de67 | 2016-06-20 12:49:38 -0700 | [diff] [blame] | 1 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 2 | |
| 3 | # compile this with "m4 exampleservice.m4 > exampleservice.yaml" |
| 4 | |
| 5 | # include macros |
| 6 | include(macros.m4) |
| 7 | |
| 8 | node_types: |
| 9 | tosca.nodes.ExampleService: |
| 10 | derived_from: tosca.nodes.Root |
| 11 | description: > |
| 12 | Example Service |
| 13 | capabilities: |
| 14 | xos_base_service_caps |
| 15 | properties: |
| 16 | xos_base_props |
| 17 | xos_base_service_props |
| 18 | service_message: |
| 19 | type: string |
| 20 | required: false |
| 21 | |
| 22 | tosca.nodes.ExampleTenant: |
| 23 | derived_from: tosca.nodes.Root |
| 24 | description: > |
| 25 | A Tenant of the example service |
| 26 | properties: |
| 27 | xos_base_tenant_props |
| 28 | tenant_message: |
| 29 | type: string |
| 30 | required: false |
| 31 | |