From e048559eccbc8b995000429d89df70abd97027ed Mon Sep 17 00:00:00 2001 From: Samir Medjiah Date: Wed, 10 Apr 2019 03:03:35 +0200 Subject: [PATCH] SOL005_92: Added a new data type : "CpPairInfo" (NS LCM) --- .../SOL005NSLifecycleManagement_def.yaml | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/src/SOL005/NSLifecycleManagement/definitions/SOL005NSLifecycleManagement_def.yaml b/src/SOL005/NSLifecycleManagement/definitions/SOL005NSLifecycleManagement_def.yaml index ae68b3b..a3b6081 100644 --- a/src/SOL005/NSLifecycleManagement/definitions/SOL005NSLifecycleManagement_def.yaml +++ b/src/SOL005/NSLifecycleManagement/definitions/SOL005NSLifecycleManagement_def.yaml @@ -844,6 +844,43 @@ definitions: a load balancing algorithm and criteria). $ref: "#/definitions/ForwardingBehaviourInputParameters" + cpPairInfo: + description: > + This type represents describes a pair of ingress and egress CPs or SAPs which + the NFP passes by. It shall comply with the provisions defined in Table 6.5.3.72-1. + type: object + properties: + vnfExtCpIds: + description: > + Identifier(s) of the VNF CP(s) which form the pair. + The presence of a single vnfExpCpId, pnfExtCpId, or sapId occurrence indicates + that the CP or SAP is used both as an ingress and egress port at a particular + NFP position. + type: array + maxItems: 2 + items: + $ref: "SOL005_def.yaml#/definitions/IdentifierInVnf" + pnfExtCpIds: + description: > + Identifier(s) of the PNF CP(s) which form the pair. + The presence of a single vnfExpCpId, pnfExtCpId, or sapId occurrence indicates + that the CP or SAP is used both as an ingress and egress port at a particular + NFP position. + type: array + maxItems: 2 + items: + $ref: "SOL005_def.yaml#/definitions/IdentifierInPnf" + sapIds: + description: > + Identifier(s) of the SAP(s) which form the pair. + The presence of a single vnfExpCpId, pnfExtCpId, or sapId occurrence indicates + that the CP or SAP is used both as an ingress and egress port at a particular + NFP position. + type: array + maxItems: 2 + items: + $ref: "SOL005_def.yaml#/definitions/IdentifierInNs" + CpProtocolInfo: description: > This type describes the protocol layer(s) that a CP or SAP uses together with protocol-related information, like -- GitLab