Remove legacy certificate handling
[sdc.git] / catalog-be / src / test / resources / config / catalog-be / configuration.yaml
1 identificationHeaderFields:
2    - HTTP_IV_USER
3    - HTTP_CSP_FIRSTNAME
4    - HTTP_CSP_LASTNAME
5    - HTTP_IV_REMOTE_ADDRESS
6    - HTTP_CSP_WSTYPE
7
8 # catalog backend hostname
9 beFqdn: localhost
10 # sdccatalog.com
11
12 # catalog backend http port
13 beHttpPort: 8080
14
15 # catalog backend http context
16 beContext: /sdc/rest/config/get
17
18 # catalog backend protocol
19 beProtocol: http
20
21 # catalog backend ssl port
22 beSslPort: 8443
23
24 version: 1.1.0
25 released: 2012-11-30
26 toscaConformanceLevel: 8.0
27 minToscaConformanceLevel: 3.0
28
29 janusGraphCfgFile: /home/vagrant/catalog-be/config/catalog-be/janusgraph.properties
30 janusGraphInMemoryGraph: false
31 janusGraphLockTimeout: 1800
32
33 # The interval to try and reconnect to janusgraph DB when it is down during ASDC startup:
34 janusGraphReconnectIntervalInSeconds: 3
35
36 # The read timeout towards JanusGraph DB when health check is invoked:
37 janusGraphHealthCheckReadTimeout: 1
38
39 uebHealthCheckReconnectIntervalInSeconds: 15
40 uebHealthCheckReadTimeout: 4
41
42 # Protocols
43 protocols:
44    - http
45    - https
46
47 # Default imports
48 defaultImports:
49    - nodes:
50         file: nodes.yml
51    - datatypes:
52         file: data.yml
53    - capabilities:
54         file: capabilities.yml
55    - relationships:
56         file: relationships.yml
57    - groups:
58         file: groups.yml
59    - policies:
60         file: policies.yml
61
62 # Global CSAR Import Files
63 globalCsarImports:
64   - annotations.yml
65   - artifacts.yml
66   - capabilities.yml
67   - data.yml
68   - groups.yml
69   - interfaces.yml
70   - nodes.yml
71   - policies.yml
72   - relationships.yml
73
74 # Users
75 users:
76     tom: passwd
77     bob: passwd
78
79 neo4j:
80     host: neo4jhost
81     port: 7474
82     user: neo4j
83     password: "12345"
84
85 basicAuth:
86   enabled: false
87   userName: test
88   userPass: test
89   excludedUrls: '/test1'
90
91 cassandraConfig:
92     cassandraHosts: ['localhost']
93     cassandraPort: 9042
94     localDataCenter: datacenter1
95     reconnectTimeout : 30000
96     authenticate: false
97     username: koko
98     password: bobo
99     ssl: false
100     keySpaces:
101         - { name: sdcaudit, replicationStrategy: SimpleStrategy, replicationInfo: ['1']}
102         - { name: sdcartifact, replicationStrategy: SimpleStrategy, replicationInfo: ['1']}
103         - { name: sdccomponent, replicationStrategy: SimpleStrategy, replicationInfo: ['1']}
104         - { name: sdcrepository, replicationStrategy: SimpleStrategy, replicationInfo: ['1']}
105
106 licenseTypes:
107    - User
108    - Installation
109    - CPU
110
111 #Deployment artifacts placeHolder
112 resourceTypes: &allResourceTypes
113   - VFC
114   - CP
115   - VL
116   - VF
117   - CR
118   - VFCMT
119   - Abstract
120   - CVFC
121   - Configuration
122   - ServiceProxy
123   - PNF
124
125 componentAllowedInstanceTypes:
126   Resource:
127     VF:
128       - VFC
129       - VF
130       - CR
131       - CP
132       - PNF
133       - CVFC
134       - VL
135       - Configuration
136       - ServiceProxy
137       - Abstract
138     CVFC:
139       - VFC
140       - VF
141       - CR
142       - CP
143       - PNF
144       - CVFC
145       - VL
146       - ServiceProxy
147       - Abstract
148     PNF:
149       - VF
150       - CR
151       - CP
152       - PNF
153       - CVFC
154       - VL
155       - Configuration
156       - ServiceProxy
157       - Abstract
158     CR:
159       - VF
160       - CR
161       - CP
162       - PNF
163       - CVFC
164       - VL
165       - Configuration
166       - ServiceProxy
167       - Abstract
168     VL:
169       - VL
170   Service:
171     "*":
172       - VF
173       - CR
174       - CP
175       - PNF
176       - CVFC
177       - VL
178       - Configuration
179       - ServiceProxy
180       - Abstract
181
182 # validForResourceTypes usage
183 #     validForResourceTypes:
184 #        - VF
185 #        - VL
186 deploymentResourceArtifacts:
187 #  heat:
188 #      displayName: "Base HEAT Template"
189 #      type: HEAT
190 #      validForResourceTypes: *allResourceTypes
191 #  heatVol:
192 #      displayName: "Volume HEAT Template"
193 #      type: HEAT_VOL
194 #      validForResourceTypes: *allResourceTypes
195 #  heatNet:
196 #      displayName: "Network HEAT Template"
197 #      type: HEAT_NET
198 #      validForResourceTypes: *allResourceTypes
199
200 deploymentResourceInstanceArtifacts:
201   heatEnv:
202       displayName: "HEAT ENV"
203       type: HEAT_ENV
204       description: "Auto-generated HEAT Environment deployment artifact"
205       fileExtension: "env"
206   VfHeatEnv:
207       displayName: "VF HEAT ENV"
208       type: HEAT_ENV
209       description: "VF Auto-generated HEAT Environment deployment artifact"
210       fileExtension: "env"
211
212 #tosca artifacts placeholders
213 toscaArtifacts:
214   assetToscaTemplate:
215       artifactName: -template.yml
216       displayName: Tosca Template
217       type: TOSCA_TEMPLATE
218       description: TOSCA representation of the asset
219   assetToscaCsar:
220       artifactName: -csar.csar
221       displayName: Tosca Model
222       type: TOSCA_CSAR
223       description: TOSCA definition package of the asset
224
225
226 #Informational artifacts placeHolder
227 excludeResourceCategory:
228   - Generic
229 excludeResourceType:
230   - PNF
231 informationalResourceArtifacts:
232   features:
233       displayName: Features
234       type: OTHER
235   capacity:
236       displayName: Capacity
237       type: OTHER
238   vendorTestResult:
239       displayName: Vendor Test Result
240       type: OTHER
241   testScripts:
242       displayName: Test Scripts
243       type: OTHER
244   CloudQuestionnaire:
245       displayName: Cloud Questionnaire (completed)
246       type: OTHER
247   HEATTemplateFromVendor:
248       displayName: HEAT Template from Vendor
249       type: HEAT
250   resourceSecurityTemplate:
251       displayName: Resource Security Template
252       type: OTHER
253
254 excludeServiceCategory:
255
256 informationalServiceArtifacts:
257   serviceArtifactPlan:
258       displayName: Service Artifact Plan
259       type: OTHER
260   summaryOfImpactsToECOMPElements:
261       displayName: Summary of impacts to ECOMP elements,OSSs, BSSs
262       type: OTHER
263   automationCompositionFunctions:
264       displayName: Automation Composition Functions
265       type: OTHER
266   dimensioningInfo:
267       displayName: Dimensioning Info
268       type: OTHER
269   affinityRules:
270       displayName: Affinity Rules
271       type: OTHER
272   operationalPolicies:
273       displayName: Operational Policies
274       type: OTHER
275   serviceSpecificPolicies:
276       displayName: Service-specific Policies
277       type: OTHER
278   engineeringRules:
279       displayName: Engineering Rules (ERD)
280       type: OTHER
281   distributionInstructions:
282       displayName: Distribution Instructions
283       type: OTHER
284   certificationTestResults:
285       displayName: TD Certification Test Results
286       type: OTHER
287   deploymentVotingRecord:
288       displayName: Deployment Voting Record
289       type: OTHER
290   serviceQuestionnaire:
291       displayName: Service Questionnaire
292       type: OTHER
293   serviceSecurityTemplate:
294       displayName: Service Security Template
295       type: OTHER
296
297 serviceApiArtifacts:
298   configuration:
299       displayName: Configuration
300       type: OTHER
301   instantiation:
302       displayName: Instantiation
303       type: OTHER
304   monitoring:
305       displayName: Monitoring
306       type: OTHER
307   reporting:
308       displayName: Reporting
309       type: OTHER
310   logging:
311       displayName: Logging
312       type: OTHER
313   testing:
314       displayName: Testing
315       type: OTHER
316
317 additionalInformationMaxNumberOfKeys: 50
318
319 systemMonitoring:
320     enabled: false
321     isProxy: false
322     probeIntervalInSeconds: 15
323
324 heatArtifactDeploymentTimeout:
325   defaultMinutes: 30
326   minMinutes: 1
327   maxMinutes: 120
328
329 unLoggedUrls:
330    - /sdc2/rest/healthCheck
331
332 cleanComponentsConfiguration:
333     cleanIntervalInMinutes: 1440
334     componentsToClean:
335        - Resource
336        - Service
337
338 artifactsIndex: resources
339
340 heatEnvArtifactHeader: ""
341 heatEnvArtifactFooter: ""
342
343 onboarding:
344     protocol: http
345     host: localhost
346     port: 8080
347     healthCheckUri: "/onboarding-api/v1.0/healthcheck"
348
349 ecompPortal:
350     protocol: https
351     host: ecomp-portal-web-tdevn2.mtn23a.ecomp.cci.att.com
352     port: 8443
353     healthCheckUri: "/ecompui/portalApi/healthCheck"
354
355 switchoverDetector:
356     gBeFqdn: AIO-BE.ecomp.idns.cip.com
357     gFeFqdn: AIO-FE.ecomp.idns.cip.com
358     beVip: 0.0.0.0
359     feVip: 0.0.0.0
360     beResolveAttempts: 3
361     feResolveAttempts: 3
362     enabled: false
363     interval: 60
364     changePriorityUser: sdc
365     changePriorityPassword: changeme
366     publishNetworkUrl: "http://xxx.com/crt/CipDomain.ECOMP-ASDC-DEVST/config/update_network?user=root"
367     publishNetworkBody: '{"note":"publish network"}'
368     groups:
369       beSet: { changePriorityUrl: "http://xxx.com/crt/CipDomain.ECOMP-ASDC-DEVST/config/sites/AIO-BE.ecomp.idns.com?user=root",
370                changePriorityBody: '{"name":"AIO-BE.ecomp.idns.com","uri":"/crt/CipDomain.ECOMP-ASDC-DEVST/config/sites/AIO-BE.ecomp.idns.com","no_ad_redirection":false,"v4groups":{"failover_groups":["/crt/CipDomain.ECOMP-ASDC-DEVST/config/groups/group_mg_be","/crt/CipDomain.ECOMP-ASDC-DEVST/config/groups/group_bs_be"],"failover_policy":["FAILALL"]},"comment":"AIO BE G-fqdn","intended_app_proto":"DNS"}'}
371       feSet: { changePriorityUrl: "http://xxx.com/crt/CipDomain.ECOMP-ASDC-DEVST/config/sites/AIO-FE.ecomp.idns.com?user=root",
372                changePriorityBody: '{"comment":"AIO G-fqdn","name":"AIO-FE.ecomp.idns.com","v4groups":{"failover_groups":["/crt/CipDomain.ECOMP-ASDC-DEVST/config/groups/group_mg_fe","/crt/CipDomain.ECOMP-ASDC-DEVST/config/groups/group_bs_fe"],"failover_policy":["FAILALL"]},"no_ad_redirection":false,"intended_app_proto":"DNS","uri":"/crt/CipDomain.ECOMP-ASDC-DEVST/config/sites/AIO-FE.ecomp.idns.com"}'}
373
374 applicationL1Cache:
375     datatypes:
376         enabled: true
377         firstRunDelay: 10
378         pollIntervalInSec: 60
379
380 applicationL2Cache:
381     enabled: true
382     catalogL1Cache:
383         enabled: true
384         resourcesSizeInCache: 300
385         servicesSizeInCache: 200
386         productsSizeInCache: 100
387     queue:
388         syncIntervalInSecondes: 43200
389         waitOnShutDownInMinutes: 10
390         numberOfCacheWorkers: 4
391
392 toscaValidators:
393     stringMaxLength: 2500
394
395 disableAudit: false
396
397 vfModuleProperties:
398     min_vf_module_instances:
399         forBaseModule: 1
400         forNonBaseModule: 0
401     max_vf_module_instances:
402         forBaseModule: 1
403         forNonBaseModule:
404     initial_count:
405         forBaseModule: 1
406         forNonBaseModule: 0
407     vf_module_type:
408         forBaseModule: Base
409         forNonBaseModule: Expansion
410
411 genericAssetNodeTypes:
412   VFC: org.openecomp.resource.abstract.nodes.VFC
413   CVFC: org.openecomp.resource.abstract.nodes.VFC
414   VF : org.openecomp.resource.abstract.nodes.VF
415   PNF: org.openecomp.resource.abstract.nodes.PNF
416   Service: org.openecomp.resource.abstract.nodes.service
417
418 # Defines the base types for Services
419 # <category name>:
420 #   required: <boolean> //if the base type is mandatory or not
421 #   baseTypes: <list of TOSCA types> //the base types. Required if the base type is required.
422 #                                      If not provided, the category will have no base type.
423 serviceBaseNodeTypes:
424   cat_name:
425     required: false
426
427 workloadContext: Production
428
429 environmentContext:
430     defaultValue: General_Revenue-Bearing
431     validValues:
432        - Critical_Revenue-Bearing
433        - Vital_Revenue-Bearing
434        - Essential_Revenue-Bearing
435        - Important_Revenue-Bearing
436        - Needed_Revenue-Bearing
437        - Useful_Revenue-Bearing
438        - General_Revenue-Bearing
439        - Critical_Non-Revenue
440        - Vital_Non-Revenue
441        - Essential_Non-Revenue
442        - Important_Non-Revenue
443        - Needed_Non-Revenue
444        - Useful_Non-Revenue
445        - General_Non-Revenue
446
447 dmaapConsumerConfiguration:
448     active: true
449     hosts: olsd004.wnsnet.com:3905
450     consumerGroup: sdc
451     consumerId: invalidMamaUser #mama - in Order To Consume Remove This String And Replace It With -> mama
452     timeoutMs: 15000
453     limit: 1
454     pollingInterval: 2
455     topic: com.sdc.23911-SDCforTestDev-v001
456     latitude: 32.109333
457     longitude: 34.855499
458     version: 1.0
459     serviceName: dmaap.onap.org/events
460     environment: TEST
461     partner: BOT_R
462     routeOffer: MR1
463     protocol: https
464     contenttype: application/json
465     dme2TraceOn: true
466     aftEnvironment: AFTUAT
467     aftDme2ConnectionTimeoutMs: 15000
468     aftDme2RoundtripTimeoutMs: 240000
469     aftDme2ReadTimeoutMs: 50000
470     dme2preferredRouterFilePath: DME2preferredRouter.txt
471     timeLimitForNotificationHandleMs: 0
472     credential:
473         username: sdc@sdc.com
474         password: XyCUPhFx9u70aklYGo6OiA==
475     aftDme2SslEnable: true
476     aftDme2ClientIgnoreSslConfig: false
477     aftDme2ClientSslCertAlias: certman
478
479 dmaapProducerConfiguration:
480     active: true
481     hosts: dmaap.onap.com:3904
482     consumerGroup: asdc
483     consumerId: mama #mama - in Order To Consume Remove This String And Replace It With -> mama
484     timeoutMs: 15000
485     limit: 1
486     pollingInterval: 2
487     topic: com.att.sdc.23911-msfacadesdc-v1
488     latitude: 32.109333
489     longitude: 34.855499
490     version: 1.0
491     serviceName: dmaap-v1.onap.org/events
492     environment: TEST
493     partner: BOT_R
494     routeOffer: MR1
495     protocol: http
496     contenttype: application/json
497     dme2TraceOn: true
498     aftEnvironment: AFTUAT
499     aftDme2ConnectionTimeoutMs: 15000
500     aftDme2RoundtripTimeoutMs: 240000
501     aftDme2ReadTimeoutMs: 50000
502     dme2preferredRouterFilePath: DME2preferredRouter.txt
503     timeLimitForNotificationHandleMs: 120000
504     credential:
505         username: sdc@sdc.com
506         password: XyCUPhFx9u70aklYGo6OiA==
507
508 dmeConfiguration:
509     lookupUriFormat: "http://DME2RESOLVE/service=%s/version=1.0.0/envContext=%s/routeOffer=DEFAULT"
510
511 excludedPolicyTypesMapping:
512     SERVICE:
513       - a.b.c
514     VF:
515       - c.d.e
516     VFC:
517       - c.d.e
518
519 excludedGroupTypesMapping:
520     CR:
521        - org.openecomp.groups.VfModule
522        - org.openecomp.groups.heat.HeatStack
523        - tosca.groups.Root
524     VF:
525        - org.openecomp.groups.VfModule
526        - org.openecomp.groups.heat.HeatStack
527        - tosca.groups.Root
528     Service:
529        - org.openecomp.groups.VfModule
530        - org.openecomp.groups.heat.HeatStack
531        - tosca.groups.Root
532 healthStatusExclude:
533    - DE
534    - ES
535    - DMAAP
536
537 # This configuration entry lists all node type names prefix that shall be allowed on SDC.
538 definedResourceNamespace:
539   - org.openecomp.resource.
540
541 # This configuration entry lists all Directives values that shall be allowed on SDC.
542 directives:
543   - select
544   - selectable
545   - substitute
546   - substitutable
547
548 artifacts:
549   - type: CONTROLLER_BLUEPRINT_ARCHIVE
550     categories:
551       - DEPLOYMENT
552     componentTypes:
553       - SERVICE
554       - RESOURCE
555     resourceTypes:
556       - VF
557       - PNF
558     acceptedTypes:
559       - zip
560   - type: HELM
561     categories:
562       - DEPLOYMENT
563     componentTypes:
564       - SERVICE
565       - RESOURCE
566     resourceTypes: *allResourceTypes
567     acceptedTypes:
568       - tgz
569   - type: YANG_XML
570     categories:
571       - DEPLOYMENT
572       - INFORMATIONAL
573     componentTypes:
574       - SERVICE
575       - RESOURCE
576     resourceTypes: *allResourceTypes
577     acceptedTypes:
578       - xml
579   - type: VNF_CATALOG
580     categories:
581       - DEPLOYMENT
582     componentTypes:
583       - SERVICE
584     resourceTypes:
585     acceptedTypes:
586       - xml
587   - type: MODEL_INVENTORY_PROFILE
588     categories:
589       - DEPLOYMENT
590     componentTypes:
591       - SERVICE
592     resourceTypes:
593     acceptedTypes:
594       - xml
595   - type: MODEL_QUERY_SPEC
596     categories:
597       - DEPLOYMENT
598     componentTypes:
599       - SERVICE
600     resourceTypes:
601     acceptedTypes:
602       - xml
603   - type: UCPE_LAYER_2_CONFIGURATION
604     categories:
605       - DEPLOYMENT
606     componentTypes:
607       - SERVICE
608     resourceTypes:
609     acceptedTypes:
610       - xml
611   #AAI Artifacts
612   - type: AAI_SERVICE_MODEL
613     categories:
614       - DEPLOYMENT
615     componentTypes:
616       - SERVICE
617     resourceTypes:
618     acceptedTypes:
619       - xml
620   - type: AAI_VF_MODULE_MODEL
621     categories:
622       - DEPLOYMENT
623     componentTypes:
624       - SERVICE
625     resourceTypes:
626     acceptedTypes:
627       - xml
628   - type: AAI_VF_INSTANCE_MODEL
629     categories:
630       - DEPLOYMENT
631     componentTypes:
632       - SERVICE
633     resourceTypes:
634     acceptedTypes:
635       - xml
636   #Plan
637   - type: PLAN
638     categories:
639       - DEPLOYMENT
640     componentTypes:
641       - SERVICE
642       - RESOURCE
643       - RESOURCE_INSTANCE
644     resourceTypes:
645       - VF
646       - VFC
647     acceptedTypes:
648       - xml
649   - type: WORKFLOW
650     categories:
651       - DEPLOYMENT
652     componentTypes:
653       - SERVICE
654     resourceTypes:
655       - VFC
656       - CP
657       - VL
658       - VF
659       - CR
660       - VFCMT
661       - Abstract
662       - CVFC
663       - PNF
664     acceptedTypes:
665       - xml
666   - type: HEAT
667     categories:
668       - DEPLOYMENT
669       - INFORMATIONAL
670     componentTypes:
671       - RESOURCE
672     resourceTypes: *allResourceTypes
673     acceptedTypes:
674       - yaml
675       - yml
676   - type: HEAT_VOL
677     categories:
678       - DEPLOYMENT
679     componentTypes:
680       - RESOURCE
681     resourceTypes: *allResourceTypes
682     acceptedTypes:
683       - yaml
684       - yml
685   - type: HEAT_NET
686     categories:
687       - DEPLOYMENT
688     componentTypes:
689       - RESOURCE
690     resourceTypes: *allResourceTypes
691     acceptedTypes:
692       - yaml
693       - yml
694   - type: HEAT_NESTED
695     categories:
696       - DEPLOYMENT
697     componentTypes:
698       - RESOURCE
699     resourceTypes: *allResourceTypes
700     acceptedTypes:
701       - yaml
702       - yml
703   - type: HEAT_ARTIFACT
704     categories:
705       - DEPLOYMENT
706     componentTypes:
707       - RESOURCE
708     resourceTypes: *allResourceTypes
709     acceptedTypes:
710   - type: CLOUD_TECHNOLOGY_SPECIFIC_ARTIFACT
711     categories:
712       - DEPLOYMENT
713     componentTypes:
714       - RESOURCE
715     resourceTypes: *allResourceTypes
716     acceptedTypes:
717       - zip
718       - tgz
719       - csar
720   - type: VNF_CATALOG
721     categories:
722       - DEPLOYMENT
723     componentTypes:
724       - RESOURCE
725     resourceTypes: *allResourceTypes
726     acceptedTypes:
727       - xml
728   - type: VF_LICENSE
729     categories:
730       - DEPLOYMENT
731     componentTypes:
732       - RESOURCE
733     resourceTypes: *allResourceTypes
734     acceptedTypes:
735       - xml
736   - type: VENDOR_LICENSE
737     categories:
738       - DEPLOYMENT
739     componentTypes:
740       - RESOURCE
741     resourceTypes: *allResourceTypes
742     acceptedTypes:
743       - xml
744   - type: MODEL_INVENTORY_PROFILE
745     categories:
746       - DEPLOYMENT
747     componentTypes:
748       - RESOURCE
749     resourceTypes: *allResourceTypes
750     acceptedTypes:
751       - xml
752   - type: MODEL_QUERY_SPEC
753     categories:
754       - DEPLOYMENT
755     componentTypes:
756       - RESOURCE
757     resourceTypes: *allResourceTypes
758     acceptedTypes:
759       - xml
760   - type: LIFECYCLE_OPERATIONS
761     categories:
762       - DEPLOYMENT
763     componentTypes:
764       - RESOURCE
765     resourceTypes:
766       - VF
767       - VFC
768     acceptedTypes:
769       - yaml
770       - yml
771   - type: VES_EVENTS
772     categories:
773       - DEPLOYMENT
774     componentTypes:
775       - RESOURCE
776       - RESOURCE_INSTANCE
777     resourceTypes:
778       - VFC
779       - CP
780       - VL
781       - VF
782       - CR
783       - VFCMT
784       - Abstract
785       - CVFC
786       - PNF
787     acceptedTypes:
788       - yaml
789       - yml
790   - type: PERFORMANCE_COUNTER
791     categories:
792       - DEPLOYMENT
793     componentTypes:
794       - RESOURCE
795       - RESOURCE_INSTANCE
796     resourceTypes: *allResourceTypes
797     acceptedTypes:
798       - csv
799   - type: APPC_CONFIG
800     categories:
801       - DEPLOYMENT
802     componentTypes:
803       - RESOURCE
804     resourceTypes:
805       - VF
806     acceptedTypes:
807   - type: DCAE_TOSCA
808     categories:
809       - DEPLOYMENT
810     componentTypes:
811       - RESOURCE
812     resourceTypes:
813       - VF
814       - VFCMT
815     acceptedTypes:
816       - yml
817       - yaml
818   - type: DCAE_JSON
819     categories:
820       - DEPLOYMENT
821     componentTypes:
822       - RESOURCE
823     resourceTypes:
824       - VF
825       - VFCMT
826     acceptedTypes:
827       - json
828   - type: DCAE_POLICY
829     categories:
830       - DEPLOYMENT
831     componentTypes:
832       - RESOURCE
833     resourceTypes:
834       - VF
835       - VFCMT
836     acceptedTypes:
837       - emf
838   - type: DCAE_DOC
839     categories:
840       - DEPLOYMENT
841     componentTypes:
842       - RESOURCE
843     resourceTypes:
844       - VF
845       - VFCMT
846     acceptedTypes:
847   - type: DCAE_EVENT
848     categories:
849       - DEPLOYMENT
850     componentTypes:
851       - RESOURCE
852     resourceTypes:
853       - VF
854       - VFCMT
855     acceptedTypes:
856   - type: AAI_VF_MODEL
857     categories:
858       - DEPLOYMENT
859     componentTypes:
860       - RESOURCE
861     resourceTypes:
862       - VF
863     acceptedTypes:
864       - xml
865   - type: AAI_VF_MODULE_MODEL
866     categories:
867       - DEPLOYMENT
868     componentTypes:
869       - RESOURCE
870     resourceTypes:
871       - VF
872     acceptedTypes:
873       - xml
874   - type: OTHER
875     categories:
876       - DEPLOYMENT
877       - INFORMATIONAL
878     componentTypes:
879       - RESOURCE
880     resourceTypes:
881       - VFC
882       - CVFC
883       - CP
884       - VL
885       - VF
886       - VFCMT
887       - Abstract
888       - PNF
889     acceptedTypes:
890   - type: SNMP_POLL
891     categories:
892       - DEPLOYMENT
893       - INFORMATIONAL
894     componentTypes:
895       - RESOURCE
896       - RESOURCE_INSTANCE
897     resourceTypes: *allResourceTypes
898     acceptedTypes:
899   - type: SNMP_TRAP
900     categories:
901       - DEPLOYMENT
902       - INFORMATIONAL
903     componentTypes:
904       - RESOURCE
905       - RESOURCE_INSTANCE
906     resourceTypes: *allResourceTypes
907     acceptedTypes:
908   - type: PM_DICTIONARY
909     categories:
910       - DEPLOYMENT
911     componentTypes:
912       - RESOURCE
913     resourceTypes:
914       - VF
915       - PNF
916     acceptedTypes:
917       - yaml
918       - yml
919   - type: YANG_MODULE
920     categories:
921       - DEPLOYMENT
922     componentTypes:
923       - RESOURCE
924     resourceTypes:
925       - VF
926       - PNF
927     acceptedTypes:
928       - yang
929   - type: ANSIBLE_PLAYBOOK
930     categories:
931       - DEPLOYMENT
932     componentTypes:
933       - RESOURCE
934     resourceTypes:
935       - VF
936       - PNF
937     acceptedTypes:
938       - yaml
939       - yml
940   - type: ONBOARDED_PACKAGE
941     categories:
942       - DEPLOYMENT
943     componentTypes:
944       - RESOURCE
945     resourceTypes:
946       - VF
947       - PNF
948     acceptedTypes:
949       - csar
950       - zip
951   - type: ETSI_PACKAGE
952     categories:
953       - DEPLOYMENT
954     componentTypes:
955       - RESOURCE
956     resourceTypes:
957       - VF
958       - PNF
959     acceptedTypes:
960       - csar
961       - zip
962   - type: HEAT_ENV
963     categories:
964       - DEPLOYMENT
965     componentTypes:
966       - RESOURCE_INSTANCE
967     resourceTypes:
968     acceptedTypes:
969       - env
970   - type: VF_MODULES_METADATA
971     categories:
972       - DEPLOYMENT
973     componentTypes:
974       - RESOURCE_INSTANCE
975     resourceTypes:
976     acceptedTypes:
977       - json
978   - type: DCAE_INVENTORY_TOSCA
979     categories:
980       - DEPLOYMENT
981     componentTypes:
982       - RESOURCE_INSTANCE
983     resourceTypes:
984     acceptedTypes:
985       - yml
986       - yaml
987   - type: DCAE_INVENTORY_JSON
988     categories:
989       - DEPLOYMENT
990     componentTypes:
991       - RESOURCE_INSTANCE
992     resourceTypes:
993     acceptedTypes:
994       - json
995   - type: DCAE_INVENTORY_POLICY
996     categories:
997       - DEPLOYMENT
998     componentTypes:
999       - RESOURCE_INSTANCE
1000     resourceTypes:
1001     acceptedTypes:
1002       - emf
1003   - type: DCAE_INVENTORY_DOC
1004     categories:
1005       - DEPLOYMENT
1006     componentTypes:
1007       - RESOURCE_INSTANCE
1008     resourceTypes:
1009     acceptedTypes:
1010   - type: DCAE_INVENTORY_BLUEPRINT
1011     categories:
1012       - DEPLOYMENT
1013     componentTypes:
1014       - RESOURCE_INSTANCE
1015     resourceTypes:
1016     acceptedTypes:
1017   - type: DCAE_INVENTORY_EVENT
1018     categories:
1019       - DEPLOYMENT
1020     componentTypes:
1021       - RESOURCE_INSTANCE
1022     resourceTypes:
1023     acceptedTypes:
1024   - type: CHEF
1025     categories:
1026       - INFORMATIONAL
1027     componentTypes:
1028       - RESOURCE
1029     resourceTypes: *allResourceTypes
1030     acceptedTypes:
1031   - type: PUPPET
1032     categories:
1033       - INFORMATIONAL
1034     componentTypes:
1035       - RESOURCE
1036     resourceTypes: *allResourceTypes
1037     acceptedTypes:
1038   - type: SHELL
1039     categories:
1040       - INFORMATIONAL
1041     componentTypes:
1042       - RESOURCE
1043     resourceTypes: *allResourceTypes
1044     acceptedTypes:
1045   - type: YANG
1046     categories:
1047       - INFORMATIONAL
1048     componentTypes:
1049       - RESOURCE
1050     resourceTypes: *allResourceTypes
1051     acceptedTypes:
1052   - type: BPEL
1053     categories:
1054       - INFORMATIONAL
1055     componentTypes:
1056       - RESOURCE
1057     resourceTypes: *allResourceTypes
1058     acceptedTypes:
1059   - type: DG_XML
1060     categories:
1061       - INFORMATIONAL
1062     componentTypes:
1063       - RESOURCE
1064     resourceTypes: *allResourceTypes
1065     acceptedTypes:
1066   - type: MURANO_PKG
1067     categories:
1068       - INFORMATIONAL
1069     componentTypes:
1070       - RESOURCE
1071     resourceTypes: *allResourceTypes
1072     acceptedTypes:
1073   - type: PNF_SW_INFORMATION
1074     categories:
1075       - INFORMATIONAL
1076     componentTypes:
1077       - RESOURCE
1078     resourceTypes:
1079       - PNF
1080     acceptedTypes:
1081       - yaml
1082       - yml
1083   - type: GUIDE
1084     categories:
1085       - INFORMATIONAL
1086     componentTypes:
1087       - RESOURCE
1088     resourceTypes:
1089       - VF
1090       - VFC
1091       - CVFC
1092       - PNF
1093     acceptedTypes:
1094       - yaml
1095       - yml
1096   - type: FLOW
1097     categories:
1098       - DEPLOYMENT
1099     componentTypes:
1100       - SERVICE
1101     resourceTypes: *allResourceTypes
1102     acceptedTypes:
1103   - type: SHELL_SCRIPT
1104     categories:
1105       - DEPLOYMENT
1106     componentTypes:
1107       - SERVICE
1108       - SERVICE_INSTANCE
1109       - RESOURCE
1110       - RESOURCE_INSTANCE
1111     resourceTypes: *allResourceTypes
1112     acceptedTypes:
1113       - sh
1114   - type: TOSCA_CSAR
1115     categories:
1116       - TOSCA
1117     componentTypes:
1118     resourceTypes:
1119     acceptedTypes:
1120       - csar
1121   - type: TOSCA_TEMPLATE
1122     categories:
1123       - TOSCA
1124     componentTypes:
1125     resourceTypes:
1126     acceptedTypes:
1127       - yml
1128       - yaml
1129   - type: NETWORK_CALL_FLOW
1130     categories:
1131     componentTypes:
1132     resourceTypes:
1133     acceptedTypes:
1134   - type: ICON
1135     categories:
1136     componentTypes:
1137     resourceTypes:
1138     acceptedTypes: