Fix for radio buttons
[sdc.git] / asdc-tests / src / test / resources / CI / components / normativeTypes / DBMS / normative-types-DBMS.yml
1 tosca_definitions_version: tosca_simple_yaml_1_0_0_wd03
2
3 template_name: tosca-normative-types-DBMS
4 template_author: TOSCA TC
5 template_version: 1.0.0.wd03-SNAPSHOT
6
7 description: Contains the normative types definition.
8 imports:
9   - "tosca-normative-types-root:1.0.0.wd03-SNAPSHOT"
10   - "tosca-normative-types-softwareComponent:1.0.0.wd03-SNAPSHOT"
11   
12 node_types:
13   tosca.nodes.DBMS:
14     abstract: true
15     derived_from: tosca.nodes.SoftwareComponent
16     description: >
17       The TOSCA DBMS node represents a typical relational, SQL Database Management System software component or service.
18     tags:
19       icon: /images/relational_db.png
20     properties:
21       dbms_root_password:
22         type: string
23         required: false
24         description: the root password for the DBMS service.
25       dbms_port:
26         type: integer
27         required: false
28         description: the port the DBMS service will listen to for data and requests
29     capabilities:
30       host:
31         type: tosca.capabilities.Container
32         properties:
33           valid_node_types: [tosca.nodes.Database]
34       endpoint:
35         type: tosca.capabilities.DatabaseEndpoint
36