Commit dceeb672 authored by piscione's avatar piscione
Browse files

SOL003_25: new datamodel: VipCpInfo

parent 80ef86e4
Loading
Loading
Loading
Loading
+58 −1
Original line number Diff line number Diff line
@@ -1064,3 +1064,60 @@ definitions:
              - ADDED
              - REMOVED
              - MODIFIED





  VipCpInfo:
    description: >
      This type provides information related to virtual IP (VIP) CP.
    type: object
    required:
      - cpInstanceId
      - cpdId
    properties:
      cpInstanceId:
        description: >
          Identifier of this VIP CP instance and of this VipCpInfo information element.
        $ref: "SOL002SOL003_def.yaml#/definitions/IdentifierInVnf"

      cpdId:
        description: >
          Identifier of the VIP Connection Point Descriptor, VipCpd, in the VNFD.
        $ref: "SOL002SOL003_def.yaml#/definitions/IdentifierInVnfd"

      vnfExtCpId:
        description: >
          When the VIP CP is exposed as external CP of the VNF, the identifier of this external VNF CP instance.
        $ref: "SOL002SOL003_def.yaml#/definitions/IdentifierInVnf"

      cpProtocolInfo:
        description: >
          Protocol information for this CP. There shall be one cpProtocolInfo for layer 3.
          There may be one cpProtocolInfo for layer 2.
        type: array
        item:
          $ref: "#/definitions/CpProtocolInfo"

      associatedVnfcCpIds:
        description: >
          Identifiers of the VnfcCps that share the virtual IP addresses allocated to the VIP CP instance.
          It is possible that there is no associated VnfcCp because the VIP CP is available but not associated yet.
        type: array
        items:
          $ref: "SOL002SOL003_def.yaml#/definitions/IdentifierInVnf"

      vnfLinkPortId:
        description: >
          Identifier of the "VnfLinkPortInfo" structure in the "VnfVirtualLinkResourceInfo" or
          "ExtManagedVirtualLinkInfo" structure. Shall be present if the CP is associated to a
          link port on an internal VL (including externally-managed internal VL).
        $ref: "SOL002SOL003_def.yaml#/definitions/IdentifierInVnf"

      metadata:
        description: >
          Metadata about this VIP CP.
        type: array
        items:
         $ref: "SOL002SOL003_def.yaml#/definitions/KeyValuePairs"