X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=Swagger%2FE2Manager_API.yaml;h=ab9ae5445ac874a64fac75bb9dd7e8062a9f4a13;hb=refs%2Fchanges%2F76%2F4376%2F1;hp=7e0dd20d30271bbc579fc56a4f4997e6dad4b4ed;hpb=13fff61e6062b16507c6419d3db7a293c50f6225;p=ric-plt%2Fe2mgr.git diff --git a/Swagger/E2Manager_API.yaml b/Swagger/E2Manager_API.yaml index 7e0dd20..ab9ae54 100644 --- a/Swagger/E2Manager_API.yaml +++ b/Swagger/E2Manager_API.yaml @@ -2,7 +2,7 @@ openapi: 3.0.0 info: title: E2 Manager Service description: E2 Manager Service APIs - version: 5.2.8 + version: 5.2.10 servers: - url: 'http://{apiRoot}/v1' variables: @@ -116,7 +116,44 @@ paths: application/problem+json: schema: $ref: '#/components/schemas/ErrorResponse' - + '/nodeb/enb/{ranName}': + delete: + tags: + - nodeb + summary: Delete ENB + operationId: DeleteEnb + parameters: + - name: ranName + in: path + required: true + description: Name of RAN to delete + schema: + type: string + responses: + '200': + description: Successful operation + content: + application/json: + schema: + $ref: '#/components/schemas/DeleteEnbResponse' + '400': + description: The specified RAN is not ENB + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + '404': + description: A RAN with the specified name was not found + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + '500': + description: Internal Error + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' /nodeb/shutdown: put: tags: @@ -277,6 +314,41 @@ components: additionalProperties: false type: object + DeleteEnbResponse: + properties: + connectionStatus: + oneOf: + - type: string + - type: integer + failureType: + oneOf: + - type: string + - type: integer + globalNbId: + properties: + nbId: + type: string + plmnId: + type: string + additionalProperties: false + type: object + enb: + $ref: '#/components/schemas/Enb' + ip: + type: string + nodeType: + oneOf: + - type: string + - type: integer + port: + type: integer + ranName: + type: string + setupFailure: + $ref: '#/components/schemas/SetupFailure' + additionalProperties: false + type: object + UpdateGnbRequest: type: object required: @@ -1027,4 +1099,4 @@ components: type: number sectorId: type: integer - type: object \ No newline at end of file + type: object