Add basic auth header
[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:
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     truststorePath : /path/path
101     truststorePassword : 123123
102     keySpaces:
103         - { name: sdcaudit, replicationStrategy: SimpleStrategy, replicationInfo: ['1']}
104         - { name: sdcartifact, replicationStrategy: SimpleStrategy, replicationInfo: ['1']}
105         - { name: sdccomponent, replicationStrategy: SimpleStrategy, replicationInfo: ['1']}
106         - { name: sdcrepository, replicationStrategy: SimpleStrategy, replicationInfo: ['1']}
107
108 licenseTypes:
109    - User
110    - Installation
111    - CPU
112
113 #Deployment artifacts placeHolder
114 resourceTypes: &allResourceTypes
115   - VFC
116   - CP
117   - VL
118   - VF
119   - CR
120   - VFCMT
121   - Abstract
122   - CVFC
123   - Configuration
124   - ServiceProxy
125   - PNF
126
127 componentAllowedInstanceTypes:
128   Resource:
129     VF:
130       - VFC
131       - VF
132       - CR
133       - CP
134       - PNF
135       - CVFC
136       - VL
137       - Configuration
138       - ServiceProxy
139       - Abstract
140     CVFC:
141       - VFC
142       - VF
143       - CR
144       - CP
145       - PNF
146       - CVFC
147       - VL
148       - ServiceProxy
149       - Abstract
150     PNF:
151       - VF
152       - CR
153       - CP
154       - PNF
155       - CVFC
156       - VL
157       - Configuration
158       - ServiceProxy
159       - Abstract
160     CR:
161       - VF
162       - CR
163       - CP
164       - PNF
165       - CVFC
166       - VL
167       - Configuration
168       - ServiceProxy
169       - Abstract
170     VL:
171       - VL
172   Service:
173     "*":
174       - VF
175       - CR
176       - CP
177       - PNF
178       - CVFC
179       - VL
180       - Configuration
181       - ServiceProxy
182       - Abstract
183
184 # validForResourceTypes usage
185 #     validForResourceTypes:
186 #        - VF
187 #        - VL
188 deploymentResourceArtifacts:
189 #  heat:
190 #      displayName: "Base HEAT Template"
191 #      type: HEAT
192 #      validForResourceTypes: *allResourceTypes
193 #  heatVol:
194 #      displayName: "Volume HEAT Template"
195 #      type: HEAT_VOL
196 #      validForResourceTypes: *allResourceTypes
197 #  heatNet:
198 #      displayName: "Network HEAT Template"
199 #      type: HEAT_NET
200 #      validForResourceTypes: *allResourceTypes
201
202 deploymentResourceInstanceArtifacts:
203   heatEnv:
204       displayName: "HEAT ENV"
205       type: HEAT_ENV
206       description: "Auto-generated HEAT Environment deployment artifact"
207       fileExtension: "env"
208   VfHeatEnv:
209       displayName: "VF HEAT ENV"
210       type: HEAT_ENV
211       description: "VF Auto-generated HEAT Environment deployment artifact"
212       fileExtension: "env"
213
214 #tosca artifacts placeholders
215 toscaArtifacts:
216   assetToscaTemplate:
217       artifactName: -template.yml
218       displayName: Tosca Template
219       type: TOSCA_TEMPLATE
220       description: TOSCA representation of the asset
221   assetToscaCsar:
222       artifactName: -csar.csar
223       displayName: Tosca Model
224       type: TOSCA_CSAR
225       description: TOSCA definition package of the asset
226
227
228 #Informational artifacts placeHolder
229 excludeResourceCategory:
230   - Generic
231 excludeResourceType:
232   - PNF
233 informationalResourceArtifacts:
234   features:
235       displayName: Features
236       type: OTHER
237   capacity:
238       displayName: Capacity
239       type: OTHER
240   vendorTestResult:
241       displayName: Vendor Test Result
242       type: OTHER
243   testScripts:
244       displayName: Test Scripts
245       type: OTHER
246   CloudQuestionnaire:
247       displayName: Cloud Questionnaire (completed)
248       type: OTHER
249   HEATTemplateFromVendor:
250       displayName: HEAT Template from Vendor
251       type: HEAT
252   resourceSecurityTemplate:
253       displayName: Resource Security Template
254       type: OTHER
255
256 excludeServiceCategory:
257
258 informationalServiceArtifacts:
259   serviceArtifactPlan:
260       displayName: Service Artifact Plan
261       type: OTHER
262   summaryOfImpactsToECOMPElements:
263       displayName: Summary of impacts to ECOMP elements,OSSs, BSSs
264       type: OTHER
265   controlLoopFunctions:
266       displayName: Control Loop Functions
267       type: OTHER
268   dimensioningInfo:
269       displayName: Dimensioning Info
270       type: OTHER
271   affinityRules:
272       displayName: Affinity Rules
273       type: OTHER
274   operationalPolicies:
275       displayName: Operational Policies
276       type: OTHER
277   serviceSpecificPolicies:
278       displayName: Service-specific Policies
279       type: OTHER
280   engineeringRules:
281       displayName: Engineering Rules (ERD)
282       type: OTHER
283   distributionInstructions:
284       displayName: Distribution Instructions
285       type: OTHER
286   certificationTestResults:
287       displayName: TD Certification Test Results
288       type: OTHER
289   deploymentVotingRecord:
290       displayName: Deployment Voting Record
291       type: OTHER
292   serviceQuestionnaire:
293       displayName: Service Questionnaire
294       type: OTHER
295   serviceSecurityTemplate:
296       displayName: Service Security Template
297       type: OTHER
298
299 serviceApiArtifacts:
300   configuration:
301       displayName: Configuration
302       type: OTHER
303   instantiation:
304       displayName: Instantiation
305       type: OTHER
306   monitoring:
307       displayName: Monitoring
308       type: OTHER
309   reporting:
310       displayName: Reporting
311       type: OTHER
312   logging:
313       displayName: Logging
314       type: OTHER
315   testing:
316       displayName: Testing
317       type: OTHER
318
319 additionalInformationMaxNumberOfKeys: 50
320
321 systemMonitoring:
322     enabled: false
323     isProxy: false
324     probeIntervalInSeconds: 15
325
326 heatArtifactDeploymentTimeout:
327   defaultMinutes: 30
328   minMinutes: 1
329   maxMinutes: 120
330
331 unLoggedUrls:
332    - /sdc2/rest/healthCheck
333
334 cleanComponentsConfiguration:
335     cleanIntervalInMinutes: 1440
336     componentsToClean:
337        - Resource
338        - Service
339
340 artifactsIndex: resources
341
342 heatEnvArtifactHeader: ""
343 heatEnvArtifactFooter: ""
344
345 onboarding:
346     protocol: http
347     host: localhost
348     port: 8080
349     downloadCsarUri: "/onboarding-api/v1.0/vendor-software-products/packages"
350     healthCheckUri: "/onboarding-api/v1.0/healthcheck"
351
352 dcae:
353     protocol: http
354     host: 127.0.0.1
355     port: 8080
356     healthCheckUri: "/dcae/healthCheck"
357
358 ecompPortal:
359     protocol: https
360     host: ecomp-portal-web-tdevn2.mtn23a.ecomp.cci.att.com
361     port: 8443
362     healthCheckUri: "/ecompui/portalApi/healthCheck"
363
364 switchoverDetector:
365     gBeFqdn: AIO-BE.ecomp.idns.cip.com
366     gFeFqdn: AIO-FE.ecomp.idns.cip.com
367     beVip: 0.0.0.0
368     feVip: 0.0.0.0
369     beResolveAttempts: 3
370     feResolveAttempts: 3
371     enabled: false
372     interval: 60
373     changePriorityUser: sdc
374     changePriorityPassword: changeme
375     publishNetworkUrl: "http://xxx.com/crt/CipDomain.ECOMP-ASDC-DEVST/config/update_network?user=root"
376     publishNetworkBody: '{"note":"publish network"}'
377     groups:
378       beSet: { changePriorityUrl: "http://xxx.com/crt/CipDomain.ECOMP-ASDC-DEVST/config/sites/AIO-BE.ecomp.idns.com?user=root",
379                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"}'}
380       feSet: { changePriorityUrl: "http://xxx.com/crt/CipDomain.ECOMP-ASDC-DEVST/config/sites/AIO-FE.ecomp.idns.com?user=root",
381                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"}'}
382
383 applicationL1Cache:
384     datatypes:
385         enabled: true
386         firstRunDelay: 10
387         pollIntervalInSec: 60
388
389 applicationL2Cache:
390     enabled: true
391     catalogL1Cache:
392         enabled: true
393         resourcesSizeInCache: 300
394         servicesSizeInCache: 200
395         productsSizeInCache: 100
396     queue:
397         syncIntervalInSecondes: 43200
398         waitOnShutDownInMinutes: 10
399         numberOfCacheWorkers: 4
400
401 toscaValidators:
402     stringMaxLength: 2500
403
404 disableAudit: false
405
406 vfModuleProperties:
407     min_vf_module_instances:
408         forBaseModule: 1
409         forNonBaseModule: 0
410     max_vf_module_instances:
411         forBaseModule: 1
412         forNonBaseModule:
413     initial_count:
414         forBaseModule: 1
415         forNonBaseModule: 0
416     vf_module_type:
417         forBaseModule: Base
418         forNonBaseModule: Expansion
419
420 genericAssetNodeTypes:
421   VFC: org.openecomp.resource.abstract.nodes.VFC
422   CVFC: org.openecomp.resource.abstract.nodes.VFC
423   VF : org.openecomp.resource.abstract.nodes.VF
424   PNF: org.openecomp.resource.abstract.nodes.PNF
425   Service: org.openecomp.resource.abstract.nodes.service
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     aftDme2ClientKeystore: /opt/app/jetty/base/be/config/.truststore
478     aftDme2ClientKeystorePassword: XyCUPhFx9u70aklYGo6OiA==
479     aftDme2ClientSslCertAlias: certman
480
481 dmaapProducerConfiguration:
482     active: true
483     hosts: dmaap.onap.com:3904
484     consumerGroup: asdc
485     consumerId: mama #mama - in Order To Consume Remove This String And Replace It With -> mama
486     timeoutMs: 15000
487     limit: 1
488     pollingInterval: 2
489     topic: com.att.sdc.23911-msfacadesdc-v1
490     latitude: 32.109333
491     longitude: 34.855499
492     version: 1.0
493     serviceName: dmaap-v1.onap.org/events
494     environment: TEST
495     partner: BOT_R
496     routeOffer: MR1
497     protocol: http
498     contenttype: application/json
499     dme2TraceOn: true
500     aftEnvironment: AFTUAT
501     aftDme2ConnectionTimeoutMs: 15000
502     aftDme2RoundtripTimeoutMs: 240000
503     aftDme2ReadTimeoutMs: 50000
504     dme2preferredRouterFilePath: DME2preferredRouter.txt
505     timeLimitForNotificationHandleMs: 120000
506     credential:
507         username: sdc@sdc.com
508         password: XyCUPhFx9u70aklYGo6OiA==
509
510 dmeConfiguration:
511     lookupUriFormat: "http://DME2RESOLVE/service=%s/version=1.0.0/envContext=%s/routeOffer=DEFAULT"
512
513 excludedPolicyTypesMapping:
514     SERVICE:
515       - a.b.c
516     VF:
517       - c.d.e
518     VFC:
519       - c.d.e
520
521 excludedGroupTypesMapping:
522     CR:
523        - org.openecomp.groups.VfModule
524        - org.openecomp.groups.heat.HeatStack
525        - tosca.groups.Root
526     VF:
527        - org.openecomp.groups.VfModule
528        - org.openecomp.groups.heat.HeatStack
529        - tosca.groups.Root
530     Service:
531        - org.openecomp.groups.VfModule
532        - org.openecomp.groups.heat.HeatStack
533        - tosca.groups.Root
534 healthStatusExclude:
535    - DE
536    - ES
537    - DMAAP
538
539 aafNamespace: com.att.sdc
540
541 aafAuthNeeded:            false
542
543 cadiFilterParams:
544     AFT_LATITUDE:  "32.780140"
545     AFT_LONGITUDE: "-96.800451"
546     hostname:                 192.168.33.10
547     aaf_id:                   aaf@sdc.onap.org
548     aaf_env:                  TEST
549     aaf_url:                  https://aaftest.onap.org/locate/
550     csp_domain:               PROD
551     cadi_keyfile:             /opt/app/jetty/base/be/etc/keyfile
552     aaf_password:             enc:uI_J4jBL4YUcIZZa5uZKj3QMUC63hbS8TmDn5PSp5nO
553     cadi_loglevel:            DEBUG
554     AFT_ENVIRONMENT:          AFTUAT
555     cadiX509Issuers:          CN=intermediateCA_1, OU=OSAAF, O=ONAP, C=US
556     cadi_truststore:          /opt/app/jetty/base/be/etc/cadi_truststore.jks
557     cadi_truststore_password: changeit
558
559 # This configuration entry lists all node type names prefix that shall be allowed on SDC.
560 definedResourceNamespace:
561   - org.openecomp.resource.
562
563 # This configuration entry lists all Directives values that shall be allowed on SDC.
564 directives:
565   - select
566   - selectable
567   - substitute
568   - substitutable
569
570 artifacts:
571   - type: CONTROLLER_BLUEPRINT_ARCHIVE
572     categories:
573       - DEPLOYMENT
574     componentTypes:
575       - SERVICE
576       - RESOURCE
577     resourceTypes:
578       - VF
579       - PNF
580     acceptedTypes:
581       - zip
582   - type: HELM
583     categories:
584       - DEPLOYMENT
585     componentTypes:
586       - SERVICE
587       - RESOURCE
588     resourceTypes: *allResourceTypes
589     acceptedTypes:
590       - tgz
591   - type: YANG_XML
592     categories:
593       - DEPLOYMENT
594       - INFORMATIONAL
595     componentTypes:
596       - SERVICE
597       - RESOURCE
598     resourceTypes: *allResourceTypes
599     acceptedTypes:
600       - xml
601   - type: VNF_CATALOG
602     categories:
603       - DEPLOYMENT
604     componentTypes:
605       - SERVICE
606     resourceTypes:
607     acceptedTypes:
608       - xml
609   - type: MODEL_INVENTORY_PROFILE
610     categories:
611       - DEPLOYMENT
612     componentTypes:
613       - SERVICE
614     resourceTypes:
615     acceptedTypes:
616       - xml
617   - type: MODEL_QUERY_SPEC
618     categories:
619       - DEPLOYMENT
620     componentTypes:
621       - SERVICE
622     resourceTypes:
623     acceptedTypes:
624       - xml
625   - type: UCPE_LAYER_2_CONFIGURATION
626     categories:
627       - DEPLOYMENT
628     componentTypes:
629       - SERVICE
630     resourceTypes:
631     acceptedTypes:
632       - xml
633   #AAI Artifacts
634   - type: AAI_SERVICE_MODEL
635     categories:
636       - DEPLOYMENT
637     componentTypes:
638       - SERVICE
639     resourceTypes:
640     acceptedTypes:
641       - xml
642   - type: AAI_VF_MODULE_MODEL
643     categories:
644       - DEPLOYMENT
645     componentTypes:
646       - SERVICE
647     resourceTypes:
648     acceptedTypes:
649       - xml
650   - type: AAI_VF_INSTANCE_MODEL
651     categories:
652       - DEPLOYMENT
653     componentTypes:
654       - SERVICE
655     resourceTypes:
656     acceptedTypes:
657       - xml
658   #Plan
659   - type: PLAN
660     categories:
661       - DEPLOYMENT
662     componentTypes:
663       - SERVICE
664       - RESOURCE
665       - RESOURCE_INSTANCE
666     resourceTypes:
667       - VF
668       - VFC
669     acceptedTypes:
670       - xml
671   - type: WORKFLOW
672     categories:
673       - DEPLOYMENT
674     componentTypes:
675       - SERVICE
676     resourceTypes:
677       - VFC
678       - CP
679       - VL
680       - VF
681       - CR
682       - VFCMT
683       - Abstract
684       - CVFC
685       - PNF
686     acceptedTypes:
687       - xml
688   - type: HEAT
689     categories:
690       - DEPLOYMENT
691       - INFORMATIONAL
692     componentTypes:
693       - RESOURCE
694     resourceTypes: *allResourceTypes
695     acceptedTypes:
696       - yaml
697       - yml
698   - type: HEAT_VOL
699     categories:
700       - DEPLOYMENT
701     componentTypes:
702       - RESOURCE
703     resourceTypes: *allResourceTypes
704     acceptedTypes:
705       - yaml
706       - yml
707   - type: HEAT_NET
708     categories:
709       - DEPLOYMENT
710     componentTypes:
711       - RESOURCE
712     resourceTypes: *allResourceTypes
713     acceptedTypes:
714       - yaml
715       - yml
716   - type: HEAT_NESTED
717     categories:
718       - DEPLOYMENT
719     componentTypes:
720       - RESOURCE
721     resourceTypes: *allResourceTypes
722     acceptedTypes:
723       - yaml
724       - yml
725   - type: HEAT_ARTIFACT
726     categories:
727       - DEPLOYMENT
728     componentTypes:
729       - RESOURCE
730     resourceTypes: *allResourceTypes
731     acceptedTypes:
732   - type: CLOUD_TECHNOLOGY_SPECIFIC_ARTIFACT
733     categories:
734       - DEPLOYMENT
735     componentTypes:
736       - RESOURCE
737     resourceTypes: *allResourceTypes
738     acceptedTypes:
739       - zip
740       - tgz
741       - csar
742   - type: VNF_CATALOG
743     categories:
744       - DEPLOYMENT
745     componentTypes:
746       - RESOURCE
747     resourceTypes: *allResourceTypes
748     acceptedTypes:
749       - xml
750   - type: VF_LICENSE
751     categories:
752       - DEPLOYMENT
753     componentTypes:
754       - RESOURCE
755     resourceTypes: *allResourceTypes
756     acceptedTypes:
757       - xml
758   - type: VENDOR_LICENSE
759     categories:
760       - DEPLOYMENT
761     componentTypes:
762       - RESOURCE
763     resourceTypes: *allResourceTypes
764     acceptedTypes:
765       - xml
766   - type: MODEL_INVENTORY_PROFILE
767     categories:
768       - DEPLOYMENT
769     componentTypes:
770       - RESOURCE
771     resourceTypes: *allResourceTypes
772     acceptedTypes:
773       - xml
774   - type: MODEL_QUERY_SPEC
775     categories:
776       - DEPLOYMENT
777     componentTypes:
778       - RESOURCE
779     resourceTypes: *allResourceTypes
780     acceptedTypes:
781       - xml
782   - type: LIFECYCLE_OPERATIONS
783     categories:
784       - DEPLOYMENT
785     componentTypes:
786       - RESOURCE
787     resourceTypes:
788       - VF
789       - VFC
790     acceptedTypes:
791       - yaml
792       - yml
793   - type: VES_EVENTS
794     categories:
795       - DEPLOYMENT
796     componentTypes:
797       - RESOURCE
798       - RESOURCE_INSTANCE
799     resourceTypes:
800       - VFC
801       - CP
802       - VL
803       - VF
804       - CR
805       - VFCMT
806       - Abstract
807       - CVFC
808       - PNF
809     acceptedTypes:
810       - yaml
811       - yml
812   - type: PERFORMANCE_COUNTER
813     categories:
814       - DEPLOYMENT
815     componentTypes:
816       - RESOURCE
817       - RESOURCE_INSTANCE
818     resourceTypes: *allResourceTypes
819     acceptedTypes:
820       - csv
821   - type: APPC_CONFIG
822     categories:
823       - DEPLOYMENT
824     componentTypes:
825       - RESOURCE
826     resourceTypes:
827       - VF
828     acceptedTypes:
829   - type: DCAE_TOSCA
830     categories:
831       - DEPLOYMENT
832     componentTypes:
833       - RESOURCE
834     resourceTypes:
835       - VF
836       - VFCMT
837     acceptedTypes:
838       - yml
839       - yaml
840   - type: DCAE_JSON
841     categories:
842       - DEPLOYMENT
843     componentTypes:
844       - RESOURCE
845     resourceTypes:
846       - VF
847       - VFCMT
848     acceptedTypes:
849       - json
850   - type: DCAE_POLICY
851     categories:
852       - DEPLOYMENT
853     componentTypes:
854       - RESOURCE
855     resourceTypes:
856       - VF
857       - VFCMT
858     acceptedTypes:
859       - emf
860   - type: DCAE_DOC
861     categories:
862       - DEPLOYMENT
863     componentTypes:
864       - RESOURCE
865     resourceTypes:
866       - VF
867       - VFCMT
868     acceptedTypes:
869   - type: DCAE_EVENT
870     categories:
871       - DEPLOYMENT
872     componentTypes:
873       - RESOURCE
874     resourceTypes:
875       - VF
876       - VFCMT
877     acceptedTypes:
878   - type: AAI_VF_MODEL
879     categories:
880       - DEPLOYMENT
881     componentTypes:
882       - RESOURCE
883     resourceTypes:
884       - VF
885     acceptedTypes:
886       - xml
887   - type: AAI_VF_MODULE_MODEL
888     categories:
889       - DEPLOYMENT
890     componentTypes:
891       - RESOURCE
892     resourceTypes:
893       - VF
894     acceptedTypes:
895       - xml
896   - type: OTHER
897     categories:
898       - DEPLOYMENT
899       - INFORMATIONAL
900     componentTypes:
901       - RESOURCE
902     resourceTypes:
903       - VFC
904       - CVFC
905       - CP
906       - VL
907       - VF
908       - VFCMT
909       - Abstract
910       - PNF
911     acceptedTypes:
912   - type: SNMP_POLL
913     categories:
914       - DEPLOYMENT
915       - INFORMATIONAL
916     componentTypes:
917       - RESOURCE
918       - RESOURCE_INSTANCE
919     resourceTypes: *allResourceTypes
920     acceptedTypes:
921   - type: SNMP_TRAP
922     categories:
923       - DEPLOYMENT
924       - INFORMATIONAL
925     componentTypes:
926       - RESOURCE
927       - RESOURCE_INSTANCE
928     resourceTypes: *allResourceTypes
929     acceptedTypes:
930   - type: PM_DICTIONARY
931     categories:
932       - DEPLOYMENT
933     componentTypes:
934       - RESOURCE
935     resourceTypes:
936       - VF
937       - PNF
938     acceptedTypes:
939       - yaml
940       - yml
941   - type: YANG_MODULE
942     categories:
943       - DEPLOYMENT
944     componentTypes:
945       - RESOURCE
946     resourceTypes:
947       - VF
948       - PNF
949     acceptedTypes:
950       - yang
951   - type: ANSIBLE_PLAYBOOK
952     categories:
953       - DEPLOYMENT
954     componentTypes:
955       - RESOURCE
956     resourceTypes:
957       - VF
958       - PNF
959     acceptedTypes:
960       - yaml
961       - yml
962   - type: ONBOARDED_PACKAGE
963     categories:
964       - DEPLOYMENT
965     componentTypes:
966       - RESOURCE
967     resourceTypes:
968       - VF
969       - PNF
970     acceptedTypes:
971       - csar
972       - zip
973   - type: ETSI_PACKAGE
974     categories:
975       - DEPLOYMENT
976     componentTypes:
977       - RESOURCE
978     resourceTypes:
979       - VF
980       - PNF
981     acceptedTypes:
982       - csar
983       - zip
984   - type: HEAT_ENV
985     categories:
986       - DEPLOYMENT
987     componentTypes:
988       - RESOURCE_INSTANCE
989     resourceTypes:
990     acceptedTypes:
991       - env
992   - type: VF_MODULES_METADATA
993     categories:
994       - DEPLOYMENT
995     componentTypes:
996       - RESOURCE_INSTANCE
997     resourceTypes:
998     acceptedTypes:
999       - json
1000   - type: DCAE_INVENTORY_TOSCA
1001     categories:
1002       - DEPLOYMENT
1003     componentTypes:
1004       - RESOURCE_INSTANCE
1005     resourceTypes:
1006     acceptedTypes:
1007       - yml
1008       - yaml
1009   - type: DCAE_INVENTORY_JSON
1010     categories:
1011       - DEPLOYMENT
1012     componentTypes:
1013       - RESOURCE_INSTANCE
1014     resourceTypes:
1015     acceptedTypes:
1016       - json
1017   - type: DCAE_INVENTORY_POLICY
1018     categories:
1019       - DEPLOYMENT
1020     componentTypes:
1021       - RESOURCE_INSTANCE
1022     resourceTypes:
1023     acceptedTypes:
1024       - emf
1025   - type: DCAE_INVENTORY_DOC
1026     categories:
1027       - DEPLOYMENT
1028     componentTypes:
1029       - RESOURCE_INSTANCE
1030     resourceTypes:
1031     acceptedTypes:
1032   - type: DCAE_INVENTORY_BLUEPRINT
1033     categories:
1034       - DEPLOYMENT
1035     componentTypes:
1036       - RESOURCE_INSTANCE
1037     resourceTypes:
1038     acceptedTypes:
1039   - type: DCAE_INVENTORY_EVENT
1040     categories:
1041       - DEPLOYMENT
1042     componentTypes:
1043       - RESOURCE_INSTANCE
1044     resourceTypes:
1045     acceptedTypes:
1046   - type: CHEF
1047     categories:
1048       - INFORMATIONAL
1049     componentTypes:
1050       - RESOURCE
1051     resourceTypes: *allResourceTypes
1052     acceptedTypes:
1053   - type: PUPPET
1054     categories:
1055       - INFORMATIONAL
1056     componentTypes:
1057       - RESOURCE
1058     resourceTypes: *allResourceTypes
1059     acceptedTypes:
1060   - type: SHELL
1061     categories:
1062       - INFORMATIONAL
1063     componentTypes:
1064       - RESOURCE
1065     resourceTypes: *allResourceTypes
1066     acceptedTypes:
1067   - type: YANG
1068     categories:
1069       - INFORMATIONAL
1070     componentTypes:
1071       - RESOURCE
1072     resourceTypes: *allResourceTypes
1073     acceptedTypes:
1074   - type: BPEL
1075     categories:
1076       - INFORMATIONAL
1077     componentTypes:
1078       - RESOURCE
1079     resourceTypes: *allResourceTypes
1080     acceptedTypes:
1081   - type: DG_XML
1082     categories:
1083       - INFORMATIONAL
1084     componentTypes:
1085       - RESOURCE
1086     resourceTypes: *allResourceTypes
1087     acceptedTypes:
1088   - type: MURANO_PKG
1089     categories:
1090       - INFORMATIONAL
1091     componentTypes:
1092       - RESOURCE
1093     resourceTypes: *allResourceTypes
1094     acceptedTypes:
1095   - type: PNF_SW_INFORMATION
1096     categories:
1097       - INFORMATIONAL
1098     componentTypes:
1099       - RESOURCE
1100     resourceTypes:
1101       - PNF
1102     acceptedTypes:
1103       - yaml
1104       - yml
1105   - type: GUIDE
1106     categories:
1107       - INFORMATIONAL
1108     componentTypes:
1109       - RESOURCE
1110     resourceTypes:
1111       - VF
1112       - VFC
1113       - CVFC
1114       - PNF
1115     acceptedTypes:
1116       - yaml
1117       - yml
1118   - type: FLOW
1119     categories:
1120       - DEPLOYMENT
1121     componentTypes:
1122       - SERVICE
1123     resourceTypes: *allResourceTypes
1124     acceptedTypes:
1125   - type: SHELL_SCRIPT
1126     categories:
1127       - DEPLOYMENT
1128     componentTypes:
1129       - SERVICE
1130       - SERVICE_INSTANCE
1131       - RESOURCE
1132       - RESOURCE_INSTANCE
1133     resourceTypes: *allResourceTypes
1134     acceptedTypes:
1135       - sh
1136   - type: TOSCA_CSAR
1137     categories:
1138       - TOSCA
1139     componentTypes:
1140     resourceTypes:
1141     acceptedTypes:
1142       - csar
1143   - type: TOSCA_TEMPLATE
1144     categories:
1145       - TOSCA
1146     componentTypes:
1147     resourceTypes:
1148     acceptedTypes:
1149       - yml
1150       - yaml
1151   - type: NETWORK_CALL_FLOW
1152     categories:
1153     componentTypes:
1154     resourceTypes:
1155     acceptedTypes:
1156   - type: ICON
1157     categories:
1158     componentTypes:
1159     resourceTypes:
1160     acceptedTypes: