summaryrefslogtreecommitdiffstats
path: root/src/test/resources/tosca/tca-policy-test.yaml
diff options
context:
space:
mode:
authorsebdet <sebastien.determe@intl.att.com>2020-06-02 18:38:05 +0200
committersebdet <sebastien.determe@intl.att.com>2020-06-03 11:12:55 +0200
commitcbd9d5262bc29f352732ff3d3f7fbf941e8d851f (patch)
treeddd399b14bf609725923fc527f347fbce7dc939e /src/test/resources/tosca/tca-policy-test.yaml
parent3770e219bd17fa033b940b56f323d6e796c4ce43 (diff)
Removal of useless test files
Removal of useless test files used by previous tests Issue-ID: CLAMP-854 Signed-off-by: sebdet <sebastien.determe@intl.att.com> Change-Id: I4172427046250fed52984c2b97532370727f0fa0
Diffstat (limited to 'src/test/resources/tosca/tca-policy-test.yaml')
-rw-r--r--src/test/resources/tosca/tca-policy-test.yaml80
1 files changed, 0 insertions, 80 deletions
diff --git a/src/test/resources/tosca/tca-policy-test.yaml b/src/test/resources/tosca/tca-policy-test.yaml
deleted file mode 100644
index 3c5afb01d..000000000
--- a/src/test/resources/tosca/tca-policy-test.yaml
+++ /dev/null
@@ -1,80 +0,0 @@
-tosca_definitions_version: tosca_simple_yaml_1_0_0
-node_types:
- policy.nodes.cdap.tca.hi.lo.app:
- derived_from: policy.nodes.Root
- properties:
- domain:
- type: string
- description: Domain
- constraints:
- - equal: measurementsForVfScaling
- functionalRole:
- type: string
- description: Function of the event source e.g., vnf1, vnf2, vnf3
- thresholds:
- type: list
- description: Thresholds
- entry_schema:
- type: policy.data.thresholds
-data_types:
- policy.data.thresholds:
- properties:
- closedLoopControlName:
- type: string
- description: A UNIQUE string identifying the Closed Loop ID this event is for.
- direction:
- type: string
- constraints:
- - valid_values: [ LESS, LESS_OR_EQUAL, GREATER, GREATER_OR_EQUAL]
- fieldPath:
- description: Field Path
- type: string
- severity:
- type: string
- description: event severity or priority
- constraints:
- - valid_values: [CRITICAL, MAJOR, MINOR, WARNING, NORMAL]
- thresholdValue:
- type: integer
- description: ThresholdValue
- default: 0
- constraints:
- - in_range: [ 0, 65535 ]
- version:
- type: string
- description: Version for the closed loop message
- constraints:
- - min_length: 1
- dummySignatures:
- type: list
- description: dummy Signatures
- required: true
- entry_schema:
- type: policy.data.dummySignatureTraversal
- policy.data.dummySignatureTraversal:
- derived_from: tosca.nodes.Root
- properties:
- signature:
- type: policy.data.DUMMY_Signature_FM
- required: true
- traversal:
- type: policy.data.traverse
- required: true
- policy.data.traverse:
- derived_from: tosca.nodes.Root
- properties:
- traversal:
- type: string
- description: Dummy Traverse
- required: true
- constraints:
- - valid_values: [ ONE, TWO, THREE ]
- policy.data.DUMMY_Signature_FM:
- derived_from: tosca.nodes.Root
- properties:
- filter_clause:
- type: string
- description: Filter Clause
- required: true
- constraints:
- - valid_values: [ OR, AND, NOT ]