From dcdf9d8f98b6f472b37a264d93ede2845e39853c Mon Sep 17 00:00:00 2001 From: Ankitkumar Patel Date: Mon, 26 Mar 2018 12:34:28 -0400 Subject: Inserted policy tosca models and examples Uploaded the policy tosca models and policy examples for HAS. Issue-ID: OPTFRA-27 Change-Id: I96ae70c5fe34ce7f40f461801e149d81afa52ea3 Signed-off-by: Ankitkumar Patel --- .../placement/tosca/distancePolicy-v20180326.yml | 78 ++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 osdf/models/policy/placement/tosca/distancePolicy-v20180326.yml (limited to 'osdf/models/policy/placement/tosca/distancePolicy-v20180326.yml') diff --git a/osdf/models/policy/placement/tosca/distancePolicy-v20180326.yml b/osdf/models/policy/placement/tosca/distancePolicy-v20180326.yml new file mode 100644 index 0000000..53d15dd --- /dev/null +++ b/osdf/models/policy/placement/tosca/distancePolicy-v20180326.yml @@ -0,0 +1,78 @@ +tosca_definitions_version: tosca_simple_yaml_1_0_0 +node_types: + policy.nodes.distancePolicy: + derived_from: policy.nodes.Root + properties: + policyScope: + type: list + description: scope where the policy is applicable + required: true + matchable: true + entry_schema: + type: string + policyType: + type: list + description: type of a policy + required: true + matchable: true + entry_schema: + type: string + consraints: + - valid_values: + - distancePolicy + identity: + type: string + required: true + resources: + type: list + required: true + entry_schema: + type: string + applicableResources: + type: list + required: true + entry_schema: + type: string + constraints: + - valid_values: + - any + - all + distanceProperties: + type: policy.data.distanceProperties_properties + required: true +data_types: + policy.data.distanceProperties_properties: + derived_from: tosca.nodes.Root + properties: + locationInfo: + type: string + required: true + distance: + type: policy.data.distance_properties + required: true + policy.data.distance_properties: + derived_from: tosca.nodes.Root + properties: + value: + type: string + required: true + operator: + type: list + required: true + entry_schema: + type: string + constraints: + - valid_values: + - < + - <= + - '>' + - '>=' + - '=' + unit: + type: list + required: true + entry_schema: + type: string + constraints: + - valid_values: + - km -- cgit 1.2.3-korg