summaryrefslogtreecommitdiffstats
path: root/lcm/lcm/nf_pm/serializers/threshold.py
diff options
context:
space:
mode:
authoryangyan <yangyanyj@chinamobile.com>2019-11-28 09:56:33 +0800
committeryangyan <yangyanyj@chinamobile.com>2019-11-28 10:26:31 +0800
commit3ee9298ba721307c226d0f9af8d36a1dc982d226 (patch)
treede4d9b7da80c09e68feb826a95734e2dc61a5d3e /lcm/lcm/nf_pm/serializers/threshold.py
parent92a787ea2788c91670760cd33950d9a20f42be62 (diff)
Update nf_pm serializer in vnflcm
Change-Id: Icaa588d6a9f72274b65e258ab23c19d0c4f74773 Issue-ID: VFC-1590 Signed-off-by: yangyan <yangyanyj@chinamobile.com>
Diffstat (limited to 'lcm/lcm/nf_pm/serializers/threshold.py')
-rw-r--r--lcm/lcm/nf_pm/serializers/threshold.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/lcm/lcm/nf_pm/serializers/threshold.py b/lcm/lcm/nf_pm/serializers/threshold.py
new file mode 100644
index 00000000..1fc87fb9
--- /dev/null
+++ b/lcm/lcm/nf_pm/serializers/threshold.py
@@ -0,0 +1,28 @@
+# Copyright (c) 2019, CMCC Technologies Co., Ltd.
+#
+# 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.
+
+from rest_framework import serializers
+
+from lcm.nf_pm.serializers.Link import LinkSerializer
+from lcm.nf_pm.serializers.create_thresho_id_request import ThresholdCriteriaSerializer
+
+
+class ThresholdSerializer(serializers.Serializer):
+ id = serializers.CharField(help_text="Identifier of this threshold resource.",
+ required=True, allow_null=False)
+ objectInstanceId = serializers.CharField(help_text="Identifier of the VNF instance associated with the"
+ "threshold.", required=True, allow_null=False)
+ criteria = ThresholdCriteriaSerializer(help_text="Criteria that define this threshold.",
+ required=True, allow_null=False)
+ _links = LinkSerializer(help_text="Links for this resource.", required=True, allow_null=False)