[SDC] update configuration template in chef os
[sdc.git] / catalog-fe / src / test / resources / CI / originalResources / normative-types-objectStorage.yml
1 tosca_definitions_version: tosca_simple_yaml_1_0_0_wd03
2
3 template_name: tosca-normative-types-objectStorage
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
11 node_types:
12   tosca.nodes.ObjectStorage:
13     abstract: true
14     derived_from: tosca.nodes.Root
15     description: >
16       The TOSCA ObjectStorage node represents storage that provides the ability to store data as objects (or BLOBs of data)
17       without consideration for the underlying filesystem or devices.
18     tags:
19       icon: /images/objectstore.png
20     properties:
21       store_name:
22         type: string
23         description: The logical name of the object store (or container).
24       store_size:
25         type: integer
26         required: false
27         constraints:
28           - greater_or_equal: 0
29         description: The requested initial storage size in Gigabytes.
30       store_maxsize:
31         type: integer
32         required: false
33         constraints:
34           - greater_than: 0
35         description: The requested maximum storage size in Gigabytes.