diff options
author | dfarrelly <david.farrelly@est.tech> | 2019-08-14 16:06:20 +0000 |
---|---|---|
committer | Ofir Sonsino <ofir.sonsino@intl.att.com> | 2019-08-19 07:34:25 +0000 |
commit | fdbb48ac5f7278586f66032c3fd16fd714aaae68 (patch) | |
tree | 5b4d3ce2c554c3e8081d4f5fa29754ff78947c0d /catalog-be/src/main | |
parent | a61abdd7a41ba5f4da8fa5ff8588fd009fc10dbe (diff) |
Update PM Mapper Data Type
*Update PM Mapper Data Type to include full filter schema
Issue-ID: DCAEGEN2-1605
Change-Id: I5aea43ddef798d14b445ee0ab4275370db08e011
Signed-off-by: dfarrelly <david.farrelly@est.tech>
Diffstat (limited to 'catalog-be/src/main')
-rw-r--r-- | catalog-be/src/main/resources/import/tosca/data-types/dataTypes.yml | 31 |
1 files changed, 29 insertions, 2 deletions
diff --git a/catalog-be/src/main/resources/import/tosca/data-types/dataTypes.yml b/catalog-be/src/main/resources/import/tosca/data-types/dataTypes.yml index 759bba4d7c..e527b7a938 100644 --- a/catalog-be/src/main/resources/import/tosca/data-types/dataTypes.yml +++ b/catalog-be/src/main/resources/import/tosca/data-types/dataTypes.yml @@ -2264,9 +2264,36 @@ tosca.datatypes.nfv.SwImageData: onap.datatypes.monitoring.pm-mapper-filter: derived_from: tosca.datatypes.Root properties: - filter_configuration: + filters: + type: list + description: Filter configuration + default: [] + required: true + entry_schema: + type: onap.datatypes.monitoring.filters + +onap.datatypes.monitoring.filters: + derived_from: tosca.datatypes.Root + properties: + pmDefVsn: + type: string + description: PM Dictionary version + required: true + nfType: type: string - description: Filter configuration needs to be applied + description: NF type + required: true + vendor: + type: string + description: Vendor name + required: true + measTypes: + type: list + description: Measurement types to collect + default: [] + required: true + entry_schema: + type: string ### Data types used by Policy TCA model for closed loop ### |