diff options
author | agileone <serge@agilitae.com> | 2019-03-14 20:41:53 -0700 |
---|---|---|
committer | Ofir Sonsino <ofir.sonsino@intl.att.com> | 2019-03-22 14:53:22 +0000 |
commit | b8cef3d6fe5ee531bcb13ec13f2e8a5b23b383ea (patch) | |
tree | 478154676bf3010bde00a552abf21e1ddd829b22 /catalog-be/src | |
parent | f4dd8f797c68740b968c1abdda390f24224d4424 (diff) |
Add CDS Model Properties for VNF and PNF
Issue-ID: SDC-2172
Adds properties to the GenericVF and GenericPNF entity definitions.
Change-Id: I936cb5bc141424dcdc86a246e051cd5d37b81b44
Signed-off-by: agileone <serge@agilitae.com>
Diffstat (limited to 'catalog-be/src')
-rw-r--r-- | catalog-be/src/main/resources/import/tosca/heat-types/Generic_PNF/Generic_PNF.yml | 13 | ||||
-rw-r--r-- | catalog-be/src/main/resources/import/tosca/heat-types/Generic_VF/Generic_VF.yml | 14 |
2 files changed, 25 insertions, 2 deletions
diff --git a/catalog-be/src/main/resources/import/tosca/heat-types/Generic_PNF/Generic_PNF.yml b/catalog-be/src/main/resources/import/tosca/heat-types/Generic_PNF/Generic_PNF.yml index 8adfa78635..fb662e6c76 100644 --- a/catalog-be/src/main/resources/import/tosca/heat-types/Generic_PNF/Generic_PNF.yml +++ b/catalog-be/src/main/resources/import/tosca/heat-types/Generic_PNF/Generic_PNF.yml @@ -12,4 +12,15 @@ node_types: software_versions: type: list entry_schema: - type: string
\ No newline at end of file + type: string + sdnc_model_name: + type: string + sdnc_model_version: + type: string + sdnc_artifact_name: + type: string + skip_post_instantiation_configuration: + type: boolean + default: true + constraints: + - valid_values: [true,false] diff --git a/catalog-be/src/main/resources/import/tosca/heat-types/Generic_VF/Generic_VF.yml b/catalog-be/src/main/resources/import/tosca/heat-types/Generic_VF/Generic_VF.yml index 667ed7484b..d224b0a9be 100644 --- a/catalog-be/src/main/resources/import/tosca/heat-types/Generic_VF/Generic_VF.yml +++ b/catalog-be/src/main/resources/import/tosca/heat-types/Generic_VF/Generic_VF.yml @@ -25,4 +25,16 @@ node_types: type: integer multi_stage_design: type: boolean - default: false
\ No newline at end of file + default: false + type: string + sdnc_model_name: + type: string + sdnc_model_version: + type: string + sdnc_artifact_name: + type: string + skip_post_instantiation_configuration: + type: boolean + default: true + constraints: + - valid_values: [true,false] |