From 2a56cf71506081a7c2c08f46791fbf8132dfac31 Mon Sep 17 00:00:00 2001 From: PatrikBuhr Date: Tue, 28 Dec 2021 13:14:46 +0100 Subject: A1 Policy Management, Removal of deprecated API The V1 of the policy management API is removed from the code. Issue-ID: CCSDK-3559 Signed-off-by: PatrikBuhr Change-Id: I0b5cde71770fca3826ad18025094d1c8423f4cf3 --- a1-policy-management/api/pms-api.yaml | 641 +--------------------------------- 1 file changed, 16 insertions(+), 625 deletions(-) (limited to 'a1-policy-management/api/pms-api.yaml') diff --git a/a1-policy-management/api/pms-api.yaml b/a1-policy-management/api/pms-api.yaml index 453c4b1d..8aab618d 100644 --- a/a1-policy-management/api/pms-api.yaml +++ b/a1-policy-management/api/pms-api.yaml @@ -21,7 +21,7 @@ info: Each A1 policy is owned by a service. PMS can supervise each registerred service and will automatically remove policies for unavailable services.

license: - name: Copyright (C) 2020 Nordix Foundation. Licensed under the Apache License. + name: Copyright (C) 2020-2022 Nordix Foundation. Licensed under the Apache License. url: http://www.apache.org/licenses/LICENSE-2.0 version: 1.1.0 servers: @@ -29,12 +29,9 @@ servers: tags: - name: Service Registry and Supervision - name: A1 Policy Management -- name: A1 Policy Management V1.0 - name: NearRT-RIC Repository - name: Callbacks - name: Health Check -- name: A1 Policy Management V1.0 - description: (deprecated primitves) - name: Management of configuration - name: Actuator description: Monitor and interact @@ -42,36 +39,6 @@ tags: description: Spring Boot Actuator Web API Documentation url: https://docs.spring.io/spring-boot/docs/current/actuator-api/html/ paths: - /policy_types: - get: - tags: - - A1 Policy Management V1.0 - summary: Query policy type identities - operationId: getPolicyTypes - parameters: - - name: ric - in: query - description: The name of the Near-RT RIC to get types for. - required: false - style: form - explode: true - schema: - type: string - responses: - 200: - description: Policy type identities - content: - '*/*': - schema: - type: array - items: - type: string - 404: - description: Near-RT RIC is not found - content: - '*/*': - schema: - $ref: '#/components/schemas/error_information' /a1-policy/v2/policy-instances: get: tags: @@ -133,7 +100,7 @@ paths: tags: - Health Check summary: Returns status and statistics of this service - operationId: getStatus_1 + operationId: getStatus responses: 200: description: Service is living @@ -154,63 +121,6 @@ paths: '*/*': schema: type: object - /services: - get: - tags: - - A1 Policy Management V1.0 - summary: Returns service information - operationId: getServices - parameters: - - name: name - in: query - description: The name of the service - required: false - style: form - explode: true - schema: - type: string - responses: - 200: - description: OK - content: - '*/*': - schema: - type: array - items: - $ref: '#/components/schemas/service_status_v1' - 404: - description: Service is not found - content: - '*/*': - schema: - type: string - delete: - tags: - - A1 Policy Management V1.0 - summary: Unregister a service - operationId: deleteService - parameters: - - name: name - in: query - description: The name of the service - required: true - style: form - explode: true - schema: - type: string - responses: - 204: - description: Service unregistered - content: - '*/*': - schema: - $ref: '#/components/schemas/void' - 404: - description: Service not found - content: - '*/*': - schema: - type: string /a1-policy/v2/rics/ric: get: tags: @@ -219,7 +129,7 @@ paths: description: Either a Near-RT RIC identity or a Mananged Element identity can be specified.
The intention with Mananged Element identity is the ID used in O1 for accessing the traffical element (such as the ID of CU). - operationId: getRic_1 + operationId: getRic parameters: - name: managed_element_id in: query @@ -282,7 +192,7 @@ paths: tags: - A1 Policy Management summary: Query policy type identities - operationId: getPolicyTypes_1 + operationId: getPolicyTypes parameters: - name: ric_id in: query @@ -330,7 +240,7 @@ paths: tags: - A1 Policy Management summary: Returns a policy - operationId: getPolicy_1 + operationId: getPolicy parameters: - name: policy_id in: path @@ -356,7 +266,7 @@ paths: tags: - A1 Policy Management summary: Delete a policy - operationId: deletePolicy_1 + operationId: deletePolicy parameters: - name: policy_id in: path @@ -463,154 +373,6 @@ paths: '*/*': schema: $ref: '#/components/schemas/error_information' - /policy: - get: - tags: - - A1 Policy Management V1.0 - summary: Returns a policy configuration - operationId: getPolicy - parameters: - - name: id - in: query - description: The identity of the policy instance. - required: true - style: form - explode: true - schema: - type: string - responses: - 200: - description: Policy found - content: - '*/*': - schema: - type: object - 404: - description: Policy is not found - content: - '*/*': - schema: - $ref: '#/components/schemas/error_information' - put: - tags: - - A1 Policy Management V1.0 - summary: Put a policy - operationId: putPolicy - parameters: - - name: type - in: query - description: The name of the policy type. - required: false - style: form - explode: true - schema: - type: string - default: "" - - name: id - in: query - description: The identity of the policy instance. - required: true - style: form - explode: true - schema: - type: string - - name: ric - in: query - description: The name of the Near-RT RIC where the policy will be created. - required: true - style: form - explode: true - schema: - type: string - - name: service - in: query - description: The name of the service creating the policy. - required: true - style: form - explode: true - schema: - type: string - - name: transient - in: query - description: If the policy is transient or not (boolean defaulted to false). - A policy is transient if it will be forgotten when the service needs to - reconnect to the Near-RT RIC. - required: false - style: form - explode: true - schema: - type: boolean - default: false - requestBody: - content: - application/json: - schema: - type: object - required: true - responses: - 200: - description: Policy updated - content: - '*/*': - schema: - $ref: '#/components/schemas/void' - 201: - description: Policy created - content: - '*/*': - schema: - $ref: '#/components/schemas/void' - 423: - description: Near-RT RIC is not operational - content: - '*/*': - schema: - type: string - 404: - description: Near-RT RIC or policy type is not found - content: - '*/*': - schema: - type: string - delete: - tags: - - A1 Policy Management V1.0 - summary: Delete a policy - operationId: deletePolicy - parameters: - - name: id - in: query - description: The identity of the policy instance. - required: true - style: form - explode: true - schema: - type: string - responses: - 200: - description: Not used - content: - '*/*': - schema: - $ref: '#/components/schemas/void' - 423: - description: Near-RT RIC is not operational - content: - '*/*': - schema: - type: string - 204: - description: Policy deleted - content: - '*/*': - schema: - $ref: '#/components/schemas/void' - 404: - description: Policy is not found - content: - '*/*': - schema: - type: string /actuator: get: tags: @@ -628,52 +390,6 @@ paths: type: object additionalProperties: $ref: '#/components/schemas/Link' - /policies: - get: - tags: - - A1 Policy Management V1.0 - summary: Query policies - operationId: getPolicies - parameters: - - name: type - in: query - description: The name of the policy type to get policies for. - required: false - style: form - explode: true - schema: - type: string - - name: ric - in: query - description: The name of the Near-RT RIC to get policies for. - required: false - style: form - explode: true - schema: - type: string - - name: service - in: query - description: The name of the service to get policies for. - required: false - style: form - explode: true - schema: - type: string - responses: - 200: - description: Policies - content: - '*/*': - schema: - type: array - items: - $ref: '#/components/schemas/policy_info_v1' - 404: - description: Near-RT RIC or type not found - content: - '*/*': - schema: - type: string /actuator/loggers/{name}: get: tags: @@ -723,7 +439,7 @@ paths: description: A registerred service must call this in regular intervals to indicate that it is in operation. Absence of this call will lead to that teh service will be deregisterred and all its policies are removed. - operationId: keepAliveService_1 + operationId: keepAliveService parameters: - name: service_id in: path @@ -745,64 +461,6 @@ paths: '*/*': schema: $ref: '#/components/schemas/error_information' - /rics: - get: - tags: - - A1 Policy Management V1.0 - summary: Query Near-RT RIC information - operationId: getRics - parameters: - - name: policyType - in: query - description: The name of the policy type - required: false - style: form - explode: true - schema: - type: string - responses: - 200: - description: OK - content: - '*/*': - schema: - type: array - items: - $ref: '#/components/schemas/ric_info_v1' - 404: - description: Policy type is not found - content: - '*/*': - schema: - type: string - /policy_schema: - get: - tags: - - A1 Policy Management V1.0 - summary: Returns one policy type schema definition - operationId: getPolicySchema - parameters: - - name: id - in: query - description: The identity of the policy type to get the definition for. - required: true - style: form - explode: true - schema: - type: string - responses: - 200: - description: Policy schema - content: - '*/*': - schema: - type: object - 404: - description: The policy type is not found - content: - '*/*': - schema: - $ref: '#/components/schemas/error_information' /actuator/metrics: get: tags: @@ -816,34 +474,6 @@ paths: '*/*': schema: type: object - /policy_status: - get: - tags: - - A1 Policy Management V1.0 - summary: Returns a policy status - operationId: getPolicyStatus - parameters: - - name: id - in: query - description: The identity of the policy. - required: true - style: form - explode: true - schema: - type: string - responses: - 200: - description: Policy status - content: - '*/*': - schema: - type: object - 404: - description: Policy is not found - content: - '*/*': - schema: - type: string /a1-policy/v2/rics: get: tags: @@ -851,7 +481,7 @@ paths: summary: Query Near-RT RIC information description: The call returns all Near-RT RICs that supports a given policy type identity - operationId: getRics_1 + operationId: getRics parameters: - name: policytype_id in: query @@ -875,82 +505,6 @@ paths: application/json: schema: $ref: '#/components/schemas/error_information' - /policy_schemas: - get: - tags: - - A1 Policy Management V1.0 - summary: Returns policy type schema definitions - operationId: getPolicySchemas - parameters: - - name: ric - in: query - description: The name of the Near-RT RIC to get the definitions for. - required: false - style: form - explode: true - schema: - type: string - responses: - 200: - description: Policy schemas - content: - '*/*': - schema: - type: array - items: - type: object - 404: - description: Near-RT RIC is not found - content: - '*/*': - schema: - $ref: '#/components/schemas/error_information' - /policy_ids: - get: - tags: - - A1 Policy Management V1.0 - summary: Query policies, only policy identities returned - operationId: getPolicyIds - parameters: - - name: type - in: query - description: The name of the policy type to get policies for. - required: false - style: form - explode: true - schema: - type: string - - name: ric - in: query - description: The name of the Near-RT RIC to get policies for. - required: false - style: form - explode: true - schema: - type: string - - name: service - in: query - description: The name of the service to get policies for. - required: false - style: form - explode: true - schema: - type: string - responses: - 200: - description: Policy identitiess - content: - '*/*': - schema: - type: array - items: - type: string - 404: - description: Near-RT RIC or type not found - content: - '*/*': - schema: - type: string /a1-policy/v2/services: get: tags: @@ -958,7 +512,7 @@ paths: summary: Returns service information description: Either information about a registered service with given identity or all registered services are returned. - operationId: getServices_1 + operationId: getServices parameters: - name: service_id in: query @@ -988,7 +542,7 @@ paths: description: Registering a service is needed to: - operationId: putService_1 + operationId: putService requestBody: content: application/json: @@ -1027,68 +581,12 @@ paths: '*/*': schema: type: object - /ric: - get: - tags: - - A1 Policy Management V1.0 - summary: Returns the name of a RIC managing one Mananged Element - operationId: getRic - parameters: - - name: managedElementId - in: query - description: The identity of the Managed Element - required: true - style: form - explode: true - schema: - type: string - responses: - 200: - description: Near-RT RIC is found - content: - '*/*': - schema: - type: string - 404: - description: Near-RT RIC is not found - content: - '*/*': - schema: - type: string - /services/keepalive: - put: - tags: - - A1 Policy Management V1.0 - summary: Heartbeat from a service - operationId: keepAliveService - parameters: - - name: name - in: query - description: The name of the service - required: true - style: form - explode: true - schema: - type: string - responses: - 200: - description: Service supervision timer refreshed, OK - content: - '*/*': - schema: - type: string - 404: - description: The service is not found, needs re-registration - content: - '*/*': - schema: - type: string /status: get: tags: - - A1 Policy Management V1.0 + - Health Check summary: Returns status and statistics of this service - operationId: getStatus + operationId: getStatusV1 responses: 200: description: Service is living @@ -1157,7 +655,7 @@ paths: description: Returns a list of A1 policies matching given search criteria.
If several query parameters are defined, the policies matching all conditions are returned. - operationId: getPolicyIds_1 + operationId: getPolicyIds parameters: - name: policytype_id in: query @@ -1209,7 +707,7 @@ paths: tags: - A1 Policy Management summary: Create or update a policy - operationId: putPolicy_1 + operationId: putPolicy requestBody: content: application/json: @@ -1261,43 +759,12 @@ paths: application/json: schema: $ref: '#/components/schemas/void' - /service: - put: - tags: - - A1 Policy Management V1.0 - summary: Register a service - operationId: putService - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/service_registration_info_v1' - required: true - responses: - 200: - description: Service updated - content: - '*/*': - schema: - type: string - 201: - description: Service created - content: - '*/*': - schema: - type: string - 400: - description: The ServiceRegistrationInfo is not accepted - content: - '*/*': - schema: - type: string /a1-policy/v2/services/{service_id}: delete: tags: - Service Registry and Supervision summary: Unregister a service - operationId: deleteService_1 + operationId: deleteService parameters: - name: service_id in: path @@ -1330,7 +797,7 @@ paths: tags: - A1 Policy Management summary: Returns a policy status - operationId: getPolicyStatus_1 + operationId: getPolicyStatus parameters: - name: policy_id in: path @@ -1391,44 +858,6 @@ components: status: type: string description: status text - policy_info_v1: - type: object - properties: - service: - type: string - description: the name of the service owning the policy - json: - type: object - description: the configuration of the policy - id: - type: string - description: identity of the policy - lastModified: - type: string - description: timestamp, last modification time - type: - type: string - description: name of the policy type - ric: - type: string - description: identity of the target Near-RT RIC - service_registration_info_v1: - type: object - properties: - keepAliveIntervalSeconds: - type: integer - description: keep alive interval for the service. This is a heartbeat supervision - of the service, which in regular intevals must invoke a 'keepAlive' REST - call. When a service does not invoke this call within the given time, - it is considered unavailble. An unavailable service will be automatically - deregistered and its policies will be deleted. Value 0 means no timeout - supervision. - format: int64 - callbackUrl: - type: string - description: callback for notifying of RIC synchronization - serviceName: - type: string ric_info_v2: type: object properties: @@ -1486,44 +915,6 @@ components: items: $ref: '#/components/schemas/policy_info_v2' description: List of policy information - ric_info_v1: - type: object - properties: - managedElementIds: - type: array - description: O1 identities for managed entities - items: - type: string - description: O1 identities for managed entities - policyTypes: - type: array - description: supported policy types - items: - type: string - description: supported policy types - state: - type: string - description: state info - ricName: - type: string - description: identity of the Near-RT RIC - service_status_v1: - type: object - properties: - keepAliveIntervalSeconds: - type: integer - description: policy keep alive timeout - format: int64 - timeSinceLastActivitySeconds: - type: integer - description: time since last invocation by the service - format: int64 - callbackUrl: - type: string - description: callback for notifying of RIC synchronization - serviceName: - type: string - description: identity of the service policy_status_info_v2: type: object properties: -- cgit 1.2.3-korg