1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
{
"configs": {
"dmaap": {
"dmaapConsumerConfiguration": {
"dmaapHostName": "localhost",
"dmaapPortNumber": 8904,
"dmaapTopicName": "events/unauthenticated.VES_PNFREG_OUTPUT",
"dmaapProtocol": "http",
"dmaapUserName": "admin",
"dmaapUserPassword": "admin",
"dmaapContentType": "application/json",
"consumerId": "c12",
"consumerGroup": "OpenDcae-c12",
"timeoutMs": -1,
"messageLimit": 1
},
"dmaapProducerConfiguration": {
"dmaapHostName": "localhost",
"dmaapPortNumber": 8904,
"dmaapTopicName": "events/unauthenticated.PNF_READY",
"dmaapProtocol": "http",
"dmaapUserName": "admin",
"dmaapUserPassword": "admin",
"dmaapContentType": "application/json"
},
"dmaapUpdateProducerConfiguration": {
"dmaapHostName": "localhost",
"dmaapPortNumber": 8904,
"dmaapTopicName": "events/unauthenticated.PNF_UPDATE",
"dmaapProtocol": "http",
"dmaapUserName": "admin",
"dmaapUserPassword": "admin",
"dmaapContentType": "application/json"
}
},
"aai": {
"aaiClientConfiguration": {
"aaiHost": "localhost",
"aaiPort": 8443,
"aaiProtocol": "https",
"aaiUserName": "AAI",
"aaiUserPassword": "AAI",
"aaiIgnoreSslCertificateErrors": true,
"aaiBasePath": "/aai/v12",
"aaiPnfPath": "/network/pnfs/pnf",
"aaiServiceInstancePath": "/business/customers/customer/${customer}/service-subscriptions/service-subscription/${serviceType}/service-instances/service-instance/${serviceInstanceId}",
"aaiHeaders": {
"X-FromAppId": "prh",
"X-TransactionId": "9999",
"Accept": "application/json",
"Real-Time": "true",
"Authorization": "Basic QUFJOkFBSQ=="
}
}
},
"security": {
"trustStorePath" : "change it",
"trustStorePasswordPath" : "change it",
"keyStorePath" : "change it",
"keyStorePasswordPath" : "change it",
"enableAaiCertAuth" : "false",
"enableDmaapCertAuth" : "false"
}
}
}
|