Unverified Commit b55de4a3 authored by Kevin Di Lallo's avatar Kevin Di Lallo Committed by GitHub
Browse files

Merge pull request #147 from pastorsx/sp_dev_rnis_v2_only

RNIS transition to v2 using OAS3.0 specs
parents c851dd15 363b835c
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -290,7 +290,6 @@ repo:
          - sandbox.go-apps.meep-gis-engine
          - sandbox.go-apps.meep-loc-serv
          - sandbox.go-apps.meep-rnis
          - packages.go-packages.meep-rnis-notification-client
          - sandbox.go-apps.meep-wais
          - packages.go-packages.meep-wais-notification-client
          - sandbox.go-apps.meep-metrics-engine
@@ -723,13 +722,6 @@ repo:
        src: go-packages/meep-rnis-client
        # supports linting
        lint: false
      meep-rnis-notification-client:
        # location of source code
        src: go-packages/meep-rnis-notification-client
        # supports linting
        lint: false
        # location of API specification
        api: go-packages/meep-rnis-notification-client/api/swagger.yaml
      meep-sandbox-ctrl-client:
        # location of source code
        src: go-packages/meep-sandbox-ctrl-client
+10 −10
Original line number Diff line number Diff line
@@ -1644,51 +1644,51 @@ components:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/InlineProblemDetails'
            $ref: '#/components/schemas/ProblemDetails'
    401:
      description: 'Unauthorized :  used when the client did not submit credentials.'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/InlineProblemDetails'
            $ref: '#/components/schemas/ProblemDetails'
    403:
      description: 'Forbidden :  operation is not allowed given the current status of the resource.'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/InlineProblemDetailsRequired'
            $ref: '#/components/schemas/ProblemDetails'
    404:
      description: 'Not Found :  used when a client provided a URI that cannot be mapped to a valid resource URI.'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/InlineProblemDetails'
            $ref: '#/components/schemas/ProblemDetails'
    406:
      description: 'Not Acceptable : used to indicate that the server cannot provide the any of the content formats supported by the client.'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/InlineProblemDetails'
            $ref: '#/components/schemas/ProblemDetails'
    412:
      description: 'Precondition failed :  used when a condition has failed during conditional requests, e.g. when
        using ETags to avoid write conflicts when using PUT'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/InlineProblemDetails'
            $ref: '#/components/schemas/ProblemDetails'
    414:
      description: 'URI Too Long : used to indicate that the server is refusing to process the request because the request URI is
        longer than the server is willing or able to process.'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/InlineProblemDetails'
            $ref: '#/components/schemas/ProblemDetails'
    415:
      description: 'Unsupported Media Type :  used to indicate that the server or the client does not support the content type of the entity body.'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/InlineProblemDetails'
            $ref: '#/components/schemas/ProblemDetails'
    422:
      description: 'Unprocessable Entity : used to indicate that the server understands the content type of the request entity and that the
        syntax of the request entity is correct but that the server is unable to process the contained instructions. This error condition can occur if an
@@ -1697,7 +1697,7 @@ components:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/InlineProblemDetails'
            $ref: '#/components/schemas/ProblemDetails'
          example:
            application/problem+json:
              ProblemDetails:
@@ -1711,7 +1711,7 @@ components:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/InlineProblemDetails'
            $ref: '#/components/schemas/ProblemDetails'
  parameters:
    Path.AccessPointId:
      name: accessPointId
+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: 2.1.1
- Build date: 2020-11-11T10:24:27.480-05:00[America/New_York]
- Build date: 2020-11-12T19:08:39.089-05:00[America/New_York]


### Running the server
+3544 −4125

File changed.

Preview size limit exceeded, changes collapsed.

+0 −2
Original line number Diff line number Diff line
@@ -13,7 +13,6 @@ require (
	github.com/InterDigitalInc/AdvantEDGE/go-packages/meep-mq v0.0.0
	github.com/InterDigitalInc/AdvantEDGE/go-packages/meep-redis v0.0.0
	github.com/InterDigitalInc/AdvantEDGE/go-packages/meep-rnis-client v0.0.0 // indirect
	github.com/InterDigitalInc/AdvantEDGE/go-packages/meep-rnis-notification-client v0.0.0
	github.com/InterDigitalInc/AdvantEDGE/go-packages/meep-sessions v0.0.0
	github.com/antihax/optional v1.0.0 // indirect
	github.com/gorilla/handlers v1.4.0
@@ -33,6 +32,5 @@ replace (
	github.com/InterDigitalInc/AdvantEDGE/go-packages/meep-mq => ../../go-packages/meep-mq
	github.com/InterDigitalInc/AdvantEDGE/go-packages/meep-redis => ../../go-packages/meep-redis
	github.com/InterDigitalInc/AdvantEDGE/go-packages/meep-rnis-client => ../../go-packages/meep-rnis-client
	github.com/InterDigitalInc/AdvantEDGE/go-packages/meep-rnis-notification-client => ../../go-packages/meep-rnis-notification-client
	github.com/InterDigitalInc/AdvantEDGE/go-packages/meep-sessions => ../../go-packages/meep-sessions
)
Loading