aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/resources/import
diff options
context:
space:
mode:
authorAtif Husain <atif.husain@team.telstra.com>2019-12-04 16:40:38 +1100
committerOfir Sonsino <ofir.sonsino@intl.att.com>2019-12-11 12:14:00 +0000
commit78be848fcf71bf970cf4de16e22a37e09edeaaa7 (patch)
tree072b63ae47bd2844f2b26837613b3c11a9444fc8 /catalog-be/src/main/resources/import
parentc2a53cb447789e15e85663ae253ab2d90b972934 (diff)
Added datatypes for 3rd Party Partners
Issue-ID: SDC-2385 Change-Id: Iedc5d5b9b30e7cccd3654a1b6e84514643b6d62f Signed-off-by: Atif Husain <atif.husain@team.telstra.com>
Diffstat (limited to 'catalog-be/src/main/resources/import')
-rw-r--r--catalog-be/src/main/resources/import/tosca/data-types/dataTypes.yml149
1 files changed, 149 insertions, 0 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 f1dab7d360..3e90362166 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
@@ -2549,3 +2549,152 @@ onap.datatypes.monitoring.rcc_event_details:
description: The user specific data
required: false
+##### Partner service domain datatypes ######
+
+onap.datatypes.partner.access_details:
+ derived_from: tosca.datatypes.Root
+ properties:
+ addressId:
+ type: string
+ description: id of the site
+ required: true
+ dsl_stability_profile:
+ type: string
+ description: profile of stability
+ required: false
+ default: standard
+ constraints:
+ - valid_values:
+ - standard
+ - stable
+ partner_priorty_assist:
+ type: boolean
+ description: assistance flag
+ required: false
+ default: true
+ battery_backup:
+ type: boolean
+ description: backup requirement flag
+ required: false
+ default: true
+ central_splitter:
+ type: boolean
+ description: applicable to FTTN service
+ required: false
+ default: true
+ service_restoration_sla:
+ type: string
+ description: This is the service restoration SLA from an partner perspective.
+ required: false
+ default: Standard
+ constraints:
+ - valid_values:
+ - Standard
+ - Enhanced
+
+onap.datatypes.partner.bandwidth:
+ derived_from: tosca.datatypes.Root
+ properties:
+ bandwidth_type:
+ type: string
+ description: type of bandwidth
+ required: true
+ default: standard
+ constraints:
+ - valid_values:
+ - standard
+ - guaranteed
+ downstream:
+ type: string
+ description: down speed
+ required: true
+ constraints:
+ - valid_values:
+ - 128
+ - 512
+ - 1
+ - 2
+ - 5
+ - 10
+ - 20
+ - 25
+ - 30
+ - 40
+ - 50
+ - 100
+ - 250
+ - 500
+ - 1000
+ upstream:
+ type: string
+ description: up speed
+ required: false
+ constraints:
+ - valid_values:
+ - 128
+ - 512
+ - 1
+ - 2
+ - 5
+ - 10
+ - 20
+ - 25
+ - 30
+ - 40
+ - 50
+ - 100
+ - 250
+ - 500
+ - 1000
+ units:
+ type: string
+ description: unit of speed
+ required: true
+ constraints:
+ - valid_values:
+ - k
+ - M
+ service_alias:
+ type: string
+ description: 16 digit id
+ required: false
+
+onap.datatypes.partner.service_details:
+ derived_from: tosca.datatypes.Root
+ properties:
+ bandwidth:
+ type: onap.datatypes.partner.bandwidth
+ description: bandwidth details for access
+ required: false
+ line_of_business:
+ type: string
+ description: LOB
+ required: false
+ constraints:
+ - valid_values:
+ - CONSUMER
+ - WHOLESALE
+ - BUSINESS
+ access_details:
+ type: onap.datatypes.partner.access_details
+ required: false
+
+onap.datatypes.partner.sppartner_details:
+ derived_from: tosca.datatypes.Root
+ properties:
+ partner_url:
+ type: string
+ description: Partner URL to access and provision the service
+ required: false
+ uuid:
+ type: string
+ description: UUID of the service definition defined in the partner catalog
+ required: false
+ auth_user:
+ type: string
+ description: Authentication details to access the Service URL
+ required: false
+ auth_password:
+ type: string
+ description: Authentication details to access the Service URL
+ required: false