Commit 49451acb authored by Kevin Di Lallo's avatar Kevin Di Lallo
Browse files

updated net char update event enum of supported types

parent 1a410b1e
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -876,12 +876,10 @@ definitions:
        type: "string"
        description: "Type of the network element to be updated"
        enum:
        - "SCENARIO"
        - "OPERATOR"
        - "ZONE"
        - "POA"
        - "SCENARIO"
        - "ZONE-INTER-EDGE"
        - "ZONE-INTER-FOG"
        - "ZONE-EDGE-FOG"
        - "EDGE"
        - "FOG"
        - "UE"
+2 −4
Original line number Diff line number Diff line
@@ -876,12 +876,10 @@ definitions:
        type: "string"
        description: "Type of the network element to be updated"
        enum:
        - "SCENARIO"
        - "OPERATOR"
        - "ZONE"
        - "POA"
        - "SCENARIO"
        - "ZONE-INTER-EDGE"
        - "ZONE-INTER-FOG"
        - "ZONE-EDGE-FOG"
        - "EDGE"
        - "FOG"
        - "UE"
+2 −4
Original line number Diff line number Diff line
@@ -165,12 +165,10 @@ definitions:
        type: string
        description: Type of the network element to be updated
        enum:
          - SCENARIO
          - OPERATOR
          - ZONE
          - POA
          - SCENARIO
          - ZONE-INTER-EDGE
          - ZONE-INTER-FOG
          - ZONE-EDGE-FOG
          - EDGE
          - FOG
          - UE
+3 −7
Original line number Diff line number Diff line
@@ -15,17 +15,13 @@ Name | Type | Description | Notes
## Enum: ElementTypeEnum


* `OPERATOR` (value: `"OPERATOR"`)

* `POA` (value: `"POA"`)

* `SCENARIO` (value: `"SCENARIO"`)

* `ZONE_INTER_EDGE` (value: `"ZONE-INTER-EDGE"`)
* `OPERATOR` (value: `"OPERATOR"`)

* `ZONE_INTER_FOG` (value: `"ZONE-INTER-FOG"`)
* `ZONE` (value: `"ZONE"`)

* `ZONE_EDGE_FOG` (value: `"ZONE-EDGE-FOG"`)
* `POA` (value: `"POA"`)

* `EDGE` (value: `"EDGE"`)

+6 −18
Original line number Diff line number Diff line
@@ -129,18 +129,6 @@
   * @readonly
   */
  exports.ElementTypeEnum = {
    /**
     * value: "OPERATOR"
     * @const
     */
    OPERATOR: "OPERATOR",

    /**
     * value: "POA"
     * @const
     */
    POA: "POA",

    /**
     * value: "SCENARIO"
     * @const
@@ -148,22 +136,22 @@
    SCENARIO: "SCENARIO",

    /**
     * value: "ZONE-INTER-EDGE"
     * value: "OPERATOR"
     * @const
     */
    ZONE_INTER_EDGE: "ZONE-INTER-EDGE",
    OPERATOR: "OPERATOR",

    /**
     * value: "ZONE-INTER-FOG"
     * value: "ZONE"
     * @const
     */
    ZONE_INTER_FOG: "ZONE-INTER-FOG",
    ZONE: "ZONE",

    /**
     * value: "ZONE-EDGE-FOG"
     * value: "POA"
     * @const
     */
    ZONE_EDGE_FOG: "ZONE-EDGE-FOG",
    POA: "POA",

    /**
     * value: "EDGE"
Loading