aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-enrichment-lib/openecomp-sdc-enrichment-core/src/test/resources/extractServiceComposition/toscaGlobalServiceTemplates/AbstractSubstituteGlobalTypesServiceTemplate.yaml
blob: 8813b0abf6a4b46b2c9899813a6e81bef860148c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
tosca_definitions_version: tosca_simple_yaml_1_0_0
metadata:
  template_name: AbstractSubstituteGlobalTypes
  template_version: 1.0.0
description: Abstract Substitute Global Types
imports:
  common_definitions:
    file: CommonGlobalTypesServiceTemplate.yaml
data_types:
  org.openecomp.datatypes.heat.substitution.SubstitutionFilter:
    derived_from: tosca.datatypes.Root
    description: Substitution Filter
    properties:
      substitute_service_template:
        type: string
        description: Substitute Service Template
        required: true
        status: SUPPORTED
      index_variable:
        type: string
        description: Index variable
        required: false
        default: '%index%'
        status: SUPPORTED
        constraints:
        - min_length: 3
      count:
        type: string
        description: Count
        required: false
        default: 1
        status: SUPPORTED
      mandatory:
        type: boolean
        description: Mandatory
        required: false
        default: true
        status: SUPPORTED
node_types:
  org.openecomp.resource.abstract.nodes.AbstractSubstitute:
    derived_from: tosca.nodes.Root
    properties:
      service_template_filter:
        type: org.openecomp.datatypes.heat.substitution.SubstitutionFilter
        description: Substitution Filter
        required: true
        status: SUPPORTED