Skip to content
Snippets Groups Projects
ResourceConnectionGroups.py 1.25 KiB
Newer Older
# Copyright 2022-2025 ETSI SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# REST-API resource implementing minimal support for "IETF YANG Data Model for Transport Network Client Signals".
# Ref: https://www.ietf.org/archive/id/draft-ietf-ccamp-client-signal-yang-10.html

from flask import jsonify, make_response, request
from flask_restful import Resource

CONNECTION_GROUPS = []


class ConnectionGroup(Resource):
    def get(self, slice_id: str, connection_group_id: str):
        return make_response(jsonify(CONNECTION_GROUPS), 200)

    def put(self, slice_id: str, connection_group_id: str):
        json_request = request.get_json()
        CONNECTION_GROUPS.append(json_request)
        return make_response(jsonify({}), 200)