diff options
author | liamfallon <liam.fallon@est.tech> | 2022-11-09 18:10:03 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2022-11-09 18:10:09 +0000 |
commit | aa4d2f4e49b45db5198604a0765f64b99426826c (patch) | |
tree | c447cb5587f974644c077b33692c94ab84cbb141 /runtime/src/test/resources/tosca/new-converter/constraints.yaml | |
parent | b14259f6fa9b3bee8d9038a5d03c0c09b4f96ca9 (diff) |
Remove clamp-backend url forwarding support
The functionality to forward the requests from the UI to the other
microservices has been moved to the gui-server microservice.
Issue-ID: POLICY-4138
Change-Id: I3120e54894ab51194b20098c4c4d63679c15b06f
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'runtime/src/test/resources/tosca/new-converter/constraints.yaml')
-rw-r--r-- | runtime/src/test/resources/tosca/new-converter/constraints.yaml | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/runtime/src/test/resources/tosca/new-converter/constraints.yaml b/runtime/src/test/resources/tosca/new-converter/constraints.yaml deleted file mode 100644 index b711f35c8..000000000 --- a/runtime/src/test/resources/tosca/new-converter/constraints.yaml +++ /dev/null @@ -1,60 +0,0 @@ -tosca_definitions_version: tosca_simple_yaml_1_0_0 -policy_types: - onap.policies.controlloop.operational.common.Drools: - derived_from: onap.policies.controlloop.operational.Common - type_version: 1.0.0 - version: 1.0.0 - description: Operational policies for Drools PDP - properties: - controllerName: - type: String - description: Drools controller properties - required: true -data_types: - onap.datatype.controlloop.Operation: - derived_from: tosca.datatypes.Root - description: An operation supported by an actor - properties: - id: - type: String - description: Unique identifier for the operation - required: true - constraints: - - length: 8 - description: - type: Array - description: A user-friendly description of the intent for the operation - required: false - constraints: - - min_length: 5 - - max_length: 7 - test: - type: Integer - description: | - Overall timeout for executing all the operations. This timeout should equal or exceed the total - timeout for each operation listed. - required: true - constraints: - - greater_than: 7 - - greater_or_equal: 1 - - less_than: 7 - - less_or_equal: 1 - timeout: - type: Integer - description: The amount of time for the actor to perform the operation. - required: true - constraints: - - valid_values: [3,4,5.5,6,10] - retries: - type: Integer - description: The number of retries the actor should attempt to perform the operation. - required: true - default: 0 - constraints: - - equal: 5 - success: - type: String - description: Points to the operation to invoke on success. A value of "final_success" indicates and end to the operation. - required: false - constraints: - - valid_values: [VALID,TERMINATED] |