Commit 8cacdc1a authored by Kevin Di Lallo's avatar Kevin Di Lallo
Browse files

updated automation type description in gis-engine REST API + regenerated code

parent f1241b3d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ To see how to make this your own, look here:
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)

- API version: 0.0.1
- Build date: 2020-06-01T10:16:40.050-04:00
- Build date: 2020-06-08T15:05:49.636-04:00


### Running the server
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ To see how to make this your own, look here:
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)

- API version: 0.0.1
- Build date: 2020-06-01T10:16:41.518-04:00
- Build date: 2020-06-08T15:05:51.024-04:00


### Running the server
+18 −6
Original line number Diff line number Diff line
@@ -48,8 +48,12 @@ paths:
      parameters:
      - name: "type"
        in: "path"
        description: "Automation type (e.g. mobility, movement, net-char, poa-in-range,\
          \ etc.)"
        description: "Automation type.<br> Automation loop evaluates enabled automation\
          \ types once every second.<br>\n<p>Supported Types: <li>MOBILITY - Sends\
          \ Mobility events to Sanbox Controller when UE changes POA. <li>MOVEMENT\
          \ - Advances UEs along configured paths using previous position & velocity\
          \ as inputs. <li>POAS-IN-RANGE - Sends POAS-IN-RANGE events to Sanbox Controller\
          \ when list of POAs in range changes."
        required: true
        type: "string"
        x-exportParamName: "Type_"
@@ -71,8 +75,12 @@ paths:
      parameters:
      - name: "type"
        in: "path"
        description: "Automation type (e.g. mobility, movement, net-char, poa-in-range,\
          \ etc.)"
        description: "Automation type.<br> Automation loop evaluates enabled automation\
          \ types once every second.<br>\n<p>Supported Types: <li>MOBILITY - Sends\
          \ Mobility events to Sanbox Controller when UE changes POA. <li>MOVEMENT\
          \ - Advances UEs along configured paths using previous position & velocity\
          \ as inputs. <li>POAS-IN-RANGE - Sends POAS-IN-RANGE events to Sanbox Controller\
          \ when list of POAs in range changes"
        required: true
        type: "string"
        x-exportParamName: "Type_"
@@ -203,8 +211,12 @@ definitions:
    properties:
      type:
        type: "string"
        description: "Automation feature type (e.g. mobility, movement, net-char,\
          \ poa-in-range, etc.)"
        description: "Automation type.<br> Automation loop evaluates enabled automation\
          \ types once every second.<br>\n<p>Supported Types: <li>MOBILITY - Sends\
          \ Mobility events to Sanbox Controller when UE changes POA. <li>MOVEMENT\
          \ - Advances UEs along configured paths using previous position & velocity\
          \ as inputs. <li>POAS-IN-RANGE - Sends POAS-IN-RANGE events to Sanbox Controller\
          \ when list of POAs in range changes"
      active:
        type: "boolean"
        description: "Automation feature state"
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ To see how to make this your own, look here:
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)

- API version: 1.0.0
- Build date: 2020-06-01T10:16:33.404-04:00
- Build date: 2020-06-08T15:05:43.537-04:00


### Running the server
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ package server

type AutomationState struct {

	// Automation feature type (e.g. mobility, movement, net-char, poa-in-range, etc.)
	// Automation type.<br> Automation loop evaluates enabled automation types once every second.<br> <p>Supported Types: <li>MOBILITY - Sends Mobility events to Sanbox Controller when UE changes POA. <li>MOVEMENT - Advances UEs along configured paths using previous position & velocity as inputs. <li>POAS-IN-RANGE - Sends POAS-IN-RANGE events to Sanbox Controller when list of POAs in range changes
	Type_ string `json:"type,omitempty"`

	// Automation feature state
Loading