summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/resources/import/tosca/nfv-types/asdInNsd/asdInNsd.yml
blob: fa48ca5edad67b416fd8952950e888b483b47f6d (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
48
49
50
51
52
53
54
tosca_definitions_version: tosca_simple_yaml_1_3
node_types:
  tosca.nodes.asdInNsd:
    derived_from: tosca.nodes.nfv.VNF
    description: "The generic ASD node types for NS requirements. Optional properties are not list here."
    version: 0.1
    properties:
      descriptor_id:
        type: string # UUID
        description: Identifier of an ASD. It is in UUID format as specified in RFC 4122
        required: true
      descriptor_version:
        type: string
        description: Identifies the version of the ASD.
        required: true
        default: ""
      provider:
        type: string
        description: Identifies the provider of the ASD
        required: true
        default: ""
      product_name:
        type: string
        description: Please use the application_name property
        required: true
        default: ""
      software_version:
        type: string
        description: Please use the application_version property
        required: true
        default: ""
      flavour_id:
        type: string
        required: true
        constraints: [ equal: "simple" ]
        default: "simple"
      flavour_description:
        type: string
        required: true
        default: ""
      vnfm_info:
        type: list
        required: true
        entry_schema:
          type: string
    requirements:
      - virtual_link:
          capability: tosca.capabilities.nfv.VirtualLinkable
          relationship: tosca.relationships.nfv.VirtualLinkableTo
          occurrences: [ 0,0 ]
      - virtual_links:
          capability: tosca.capabilities.nfv.VirtualLinkable
          relationship: tosca.relationships.nfv.VirtualLinkableTo
          occurrences: [ 0,UNBOUNDED ]