[SDC] update configuration template in chef os
[sdc.git] / catalog-fe / src / test / resources / CI / originalResources / normative-types-database.yml
1 tosca_definitions_version: tosca_simple_yaml_1_0_0_wd03
2
3 template_name: tosca-normative-types-database
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-DBMS:1.0.0.wd03-SNAPSHOT"
11
12 node_types:
13   tosca.nodes.Database:
14     derived_from: tosca.nodes.Root
15     description: >
16       Base type for the schema and content associated with a DBMS.
17       The TOSCA Database node represents a logical database that can be managed and hosted by a TOSCA DBMS node.
18     tags:
19       icon: /images/relational_db.png
20     properties:
21       db_user:
22         type: string
23         required: false
24         description: The special user account used for database administration.
25       db_password:
26         type: string
27         required: false
28         description: The password associated with the user account provided in the ‘db_user’ property.
29       db_port:
30         type: integer
31         required: false
32         description: The port on which the underlying database service will listen to data.
33       db_name:
34         type: string
35         required: false
36         description: The logical name of the database.
37     requirements:
38       - host: tosca.nodes.DBMS
39         relationship_type: tosca.relationships.HostedOn
40     capabilities:
41       database_endpoint: tosca.capabilities.DatabaseEndpoint