X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=a1%2Fopenapi.yaml;h=9c90599372c7b3e83bb62d3ca552d5ad6e3c505b;hb=d7858cf453b4f74cd4dad0e13106218ea9a56785;hp=fed4b77546264cc8a390504dae725ca15060d81a;hpb=bfa46147cce23a46a49fb53dfae8a790b0fe34e4;p=ric-plt%2Fa1.git diff --git a/a1/openapi.yaml b/a1/openapi.yaml index fed4b77..9c90599 100644 --- a/a1/openapi.yaml +++ b/a1/openapi.yaml @@ -1,6 +1,6 @@ # ================================================================================== -# Copyright (c) 2019 Nokia -# Copyright (c) 2018-2019 AT&T Intellectual Property. +# Copyright (c) 2019-2020 Nokia +# Copyright (c) 2018-2020 AT&T Intellectual Property. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -16,7 +16,7 @@ # ================================================================================== openapi: 3.0.0 info: - version: 1.0.0 + version: 2.1.0 title: RIC A1 paths: '/a1-p/healthcheck': @@ -48,6 +48,8 @@ paths: items: "$ref": "#/components/schemas/policy_type_id" example: [20000, 20020] + 503: + description: "Potentially transient backend database error. Client should attempt to retry later." '/a1-p/policytypes/{policy_type_id}': parameters: @@ -72,6 +74,8 @@ paths: '404': description: > policy type not found + '503': + description: "Potentially transient backend database error. Client should attempt to retry later." delete: description: > Delete this policy type. Can only be performed if there are no instances of this type @@ -89,6 +93,8 @@ paths: '404': description: > policy type not found + '503': + description: "Potentially transient backend database error. Client should attempt to retry later." put: description: > Create a new policy type . @@ -137,6 +143,8 @@ paths: description: "policy type successfully created" '400': description: "illegal ID, or object already existed" + '503': + description: "Potentially transient backend database error. Client should attempt to retry later." '/a1-p/policytypes/{policy_type_id}/policies': parameters: @@ -160,6 +168,8 @@ paths: items: "$ref": "#/components/schemas/policy_instance_id" example: ["3d2157af-6a8f-4a7c-810f-38c2f824bf12", "06911bfc-c127-444a-8eb1-1bffad27cc3d"] + '503': + description: "Potentially transient backend database error. Client should attempt to retry later." '/a1-p/policytypes/{policy_type_id}/policies/{policy_instance_id}': @@ -195,6 +205,8 @@ paths: '404': description: > there is no policy instance with this policy_instance_id or there is no policy type with this policy_type_id + '503': + description: "Potentially transient backend database error. Client should attempt to retry later." delete: description: > @@ -209,8 +221,9 @@ paths: policy instance deletion initiated '404': description: > - there is no policy instance with this policy_instance_id - or there is no policy type with this policy_type_id + there is no policy instance with this policy_instance_id or there is no policy type with this policy_type_id + '503': + description: "Potentially transient backend database error. Client should attempt to retry later." put: description: > @@ -243,6 +256,8 @@ paths: '404': description: > There is no policy type with this policy_type_id + '503': + description: "Potentially transient backend database error. Client should attempt to retry later." '/a1-p/policytypes/{policy_type_id}/policies/{policy_instance_id}/status': parameters: @@ -273,15 +288,50 @@ paths: description: > successfully retrieved the status content: - text/plain: + application/json: schema: - type: string - enum: - - IN EFFECT - - NOT IN EFFECT + type: object + properties: + instance_status: + type: string + enum: + - IN EFFECT + - NOT IN EFFECT + has_been_deleted: + type: boolean + created_at: + type: string + format: date-time + '404': description: > there is no policy instance with this policy_instance_id or there is no policy type with this policy_type_id + '503': + description: "Potentially transient backend database error. Client should attempt to retry later." + + '/data-delivery': + + post: + description: > + Deliver data produced by data producer. + tags: + - A1 EI Data Delivery + operationId: a1.controller.data_delivery + requestBody: + content: + application/json: + schema: + type: object + description: > + object to represent data object + responses: + '200': + description: > + successfully delivered data from data producer + + '404': + description: > + no job id defined for this data delivery components: schemas: @@ -312,76 +362,11 @@ components: description: > represents a policy type identifier. Currently this is restricted to an integer range. type: integer - minimum: 20000 - maximum: 21023 + minimum: 1 + maximum: 2147483647 policy_instance_id: description: > represents a policy instance identifier. UUIDs are advisable but can be any string type: string example: "3d2157af-6a8f-4a7c-810f-38c2f824bf12" - - downstream_message_schema: - type: object - required: - - operation - - policy_type_id - - policy_instance_id - - payload - additionalProperties: false - properties: - operation: - description: the operation being performed - type: string - enum: - - CREATE - - DELETE - - UPDATE - - READ - policy_type_id: - "$ref": "#/components/schemas/policy_type_id" - policy_instance_id: - "$ref": "#/components/schemas/policy_instance_id" - payload: - description: payload for this operation - type: object - example: - operation: CREATE - policy_type_id: 12345678 - policy_instance_id: 3d2157af-6a8f-4a7c-810f-38c2f824bf12 - payload: - enforce: true - window_length: 10 - blocking_rate: 20 - trigger_threshold: 10 - - downstream_notification_schema: - type: object - required: - - policy_type_id - - policy_instance_id - - handler_id - - status - additionalProperties: false - properties: - policy_type_id: - "$ref": "#/components/schemas/policy_type_id" - policy_instance_id: - "$ref": "#/components/schemas/policy_instance_id" - handler_id: - description: > - id of the policy handler - type: string - status: - description: > - the status of this policy instance in this handler - type: string - enum: - - OK - - ERROR - - DELETED - example: - policy_type_id: 12345678 - policy_instance_id: 3d2157af-6a8f-4a7c-810f-38c2f824bf12 - handler_id: 1234-5678 - status: OK