Commit a60e387b authored by piscione's avatar piscione
Browse files

SOL003_14: new enumaration data model called LcmCoordResultType

parent bb18b8f1
Loading
Loading
Loading
Loading
+18 −1
Original line number Original line Diff line number Diff line
@@ -952,3 +952,20 @@ definitions:
              The token endpoint from which the access token can be obtained.
              The token endpoint from which the access token can be obtained.
              Shall be present if it has not been provisioned out of band.
              Shall be present if it has not been provisioned out of band.
            $ref: "#/definitions/Uri"
            $ref: "#/definitions/Uri"
  LcmCoordResultType:
    description: >
      The enumeration LcmCoordResultType defines the permitted values
      to represent the result of executing an LCM coordination action.
      The coordination result also implies the action to be performed by
      the VNFM as the follow-up to this coordination.
      Value | Description
      ------|------------
      CONTINUE | The related LCM operation shall be continued, staying in the state "PROCESSING".
      ABORT | The related LCM operation shall be aborted by transitioning into the state "FAILED_TEMP".
      CANCELLED | The coordination action has been cancelled upon request of the API consumer, i.e. the VNFM.
      The related LCM operation shall be aborted by transitioning into the state "FAILED_TEMP".
    type: string
    enum:
      - CONTINUE
      - ABORT
      - CANCELLED