Commit 577bb75f authored by Muhammad Hamza's avatar Muhammad Hamza
Browse files

fix minor issues

parent 0064268c
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -606,6 +606,7 @@ components:
      description: |
        This type provides information of an existing or proposed resource used by the application. Refer to clause 9.5.3.2 of ETSI GS NFV-SOL 003
        NOTE: This permitted value reflects the ETSI NFV interpretation of the cloud native workloads.
    
    Resource:
      title: Resource
      required:
+1 −0
Original line number Diff line number Diff line
@@ -2355,6 +2355,7 @@ components:
          items:
            type: string
            format: not-specified
    
    RequestedAdditionalCapabilityData:
      type: object
      required:
+2 −2
Original line number Diff line number Diff line
@@ -1491,7 +1491,7 @@
          },
          "terminateAppInstanceOpConfig": {
            "type": "string",
            "$ref": "#/components/schemas/terminateAppInstanceOpConfig"
            "$ref": "#/components/schemas/TerminateAppInstanceOpConfig"
          },
          "transportDependencies": {
            "type": "object",
@@ -1539,7 +1539,7 @@
          }
        }
      },
      "terminateAppInstanceOpConfig": {
      "TerminateAppInstanceOpConfig": {
        "type": "object",
        "description": "This information element defines attributes that affect the invocation of the TerminateVnf operation.\n",
        "required": ["minGracefulTerminationTimeout"],
+2 −2
Original line number Diff line number Diff line
@@ -1070,7 +1070,7 @@ components:
          description: Describes the descriptors of the software image to be used by the virtualisation container used to realize this MEC application. See note 5.
        terminateAppInstanceOpConfig:
          type: string
          $ref: '#/components/schemas/terminateAppInstanceOpConfig'
          $ref: '#/components/schemas/TerminateAppInstanceOpConfig'
        transportDependencies:
          type: object
          items:
@@ -1126,7 +1126,7 @@ components:
            Array of KVP requirements for VNF-specific parameters to be passed when invoking the
            OperateVnf operation. See note.

    terminateAppInstanceOpConfig:
    TerminateAppInstanceOpConfig:
      type: object
      description: >
        This information element defines attributes that affect the invocation of the TerminateVnf operation.
+46 −1
Original line number Diff line number Diff line
@@ -170,7 +170,7 @@
          "$ref": "#/definitions/SecurityInfo"
        },
        "type": {
          "type": "string"
          "$ref": "#/definitions/TransportTypes"
        },
        "version": {
          "type": "string",
@@ -182,6 +182,51 @@
        }
      }
    },
    "TransportTypes": {
      "x-etsi-ref": "8.1.6.4",
      "type": "string",
      "enum": [
        "REST_HTTP",
        "MB_TOPIC_BASED",
        "MB_ROUTING",
        "MB_PUBSUB",
        "RPC",
        "RPC_STREAMING",
        "WEBSOCKET"
      ],
      "description": "The enumeration TransportType represents types of transports.",
      "x-etsi-mec-extensible": true,
      "x-etsi-mec-enumeration-table": [
        {
          "value": "REST_HTTP",
          "description": "RESTful API using HTTP (as defined in IETF RFC 9110 [11])."
        },
        {
          "value": "MB_TOPIC_BASED",
          "description": "Topic-based message bus which routes messages to receivers based on subscriptions, if a pattern passed on subscription matches the topic of the message. EXAMPLE MQTT (see [i.4])."
        },
        {
          "value": "MB_ROUTING",
          "description": "Routing-based message bus which routes messages to receivers based on subscriptions, if a key passed on subscription is equal to the key of the message."
        },
        {
          "value": "MB_PUBSUB",
          "description": "Publish-subscribe based message bus which distributes messages to all subscribers."
        },
        {
          "value": "RPC",
          "description": "Remote procedure call. EXAMPLE GRPC (see [i.5])."
        },
        {
          "value": "RPC_STREAMING",
          "description": "Remote procedure call supporting streams of requests and responses. EXAMPLE GRPC (see [i.5])."
        },
        {
          "value": "WEBSOCKET",
          "description": "Websockets as defined in IETF RFC 6455 [12]."
        }
      ]
    },
    "SecurityInfo": {
      "type": "object",
      "properties": {
Loading