summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/resources/import/tosca/nfv-types/vduCompute/vduCompute.yml
blob: a1c4b486b6e2d20728fa185c0eee908b8c9e1456 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
tosca_definitions_version: tosca_simple_yaml_1_0_0
node_types:
  tosca.nodes.nfv.VDU.Compute:
    derived_from: tosca.nodes.Root
    properties:
      configurable_properties:
        type: map
        required: true
        status: SUPPORTED
        entry_schema:
          type: tosca.datatypes.nfv.VnfcConfigurableProperties
      name:
        type: string
        required: true
        status: SUPPORTED
      nfvi_constraints:
        type: list
        required: false
        status: SUPPORTED
        entry_schema:
          type: string
      descrption:
        type: string
        required: true
        status: SUPPORTED
      boot_order:
        type: list
        required: false
        status: SUPPORTED
        entry_schema:
          type: string
    attributes:
      private_address:
        type: string
        status: SUPPORTED
      public_address:
        type: string
        status: SUPPORTED
      networks:
        type: string
        status: SUPPORTED
      ports:
        type: string
        status: SUPPORTED
    requirements:
    - local_storage:
        capability: tosca.capabilities.Attachment
        occurrences:
        - 0
        - UNBOUNDED
    - virtual_storage:
        capability: tosca.capabilities.nfv.VirtualStorage
        occurrences:
        - 0
        - UNBOUNDED
    capabilities:
      scalable:
        type: tosca.capabilities.Scalable
        occurrences:
        - 1
        - UNBOUNDED
      virtual_compute:
        type: tosca.capabilities.nfv.VirtualCompute
        occurrences:
        - 1
        - UNBOUNDED
      endpoint:
        type: tosca.capabilities.Endpoint.Admin
        occurrences:
        - 1
        - UNBOUNDED
      os:
        type: tosca.capabilities.OperatingSystem
        occurrences:
        - 1
        - UNBOUNDED
      virtual_binding:
        type: tosca.capabilities.nfv.VirtualBindable
        occurrences:
        - 1
        - UNBOUNDED
      host:
        type: tosca.capabilities.Container
        occurrences:
        - 1
        - UNBOUNDED
      binding:
        type: tosca.capabilities.network.Bindable
        occurrences:
        - 1
        - UNBOUNDED
      monitoring_parameter:
        type: tosca.capabilities.nfv.Metric
        occurrences:
        - 1
        - UNBOUNDED