Fix for radio buttons
[sdc.git] / asdc-tests / src / test / resources / CI / importResource / database / normative-types-new-database.yml
1 tosca_definitions_version: tosca_simple_yaml_1_0_0
2 node_types: 
3   tosca.nodes.Database:
4     derived_from: tosca.nodes.Root
5     properties:
6       name:
7         type: string
8         description: the logical name of the database
9       port:
10         type: integer
11         description: the port the underlying database service will listen to for data
12       user:
13         type: string
14         description: the optional user account name for DB administration
15         required: false
16       password:
17         type: string
18         description: the optional password for the DB user account
19         required: false
20     requirements:
21       - host:
22           capability: tosca.capabilities.Container
23           node: tosca.nodes.DBMS
24           relationship: tosca.relationships.HostedOn
25     capabilities:
26       database_endpoint: 
27         type: tosca.capabilities.Endpoint.Database