Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-03-20 | [A1P] Chart Cleanup from TLS/AAF | 6 | -62/+40 | ||
Update the charts and remove all TLS/AAF related entries Issue-ID: OOM-3112 Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de> Change-Id: I50dc3aea3360ee0d593942481edcb7ff7b572cbd | |||||
2023-02-28 | [PMS] Removal of usage of DMaaP | 3 | -24/+6 | ||
Usage of DMaap is removed from PMS. This commit removes DMaaP from configuration files. Issue-ID: CCSDK-3852 Signed-off-by: PatrikBuhr <patrik.buhr@est.tech> Change-Id: I836f5275ba174d757b940b6442d9d5143d6a3cb1 | |||||
2022-11-10 | [COMMON] Bump ONAP version | 1 | -5/{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "urn:cps:org.onap.cps.ncmp.events:subscription-event-outcome-schema:1.0.0",
"$ref": "#/definitions/SubscriptionEventOutcome",
"definitions": {
"SubscriptionEventOutcome": {
"description": "The payload for avc subscription event outcome message.",
"type": "object",
"javaType": "org.onap.cps.ncmp.events.avcsubscription1_0_0.ncmp_to_client.SubscriptionEventOutcome",
"additionalProperties": false,
"properties": {
"data": {
"$ref": "#/definitions/data"
}
},
"required": [
"data"
]
},
"data": {
"type": "object",
"description": "The actual data containing information about the pending and rejected targets",
"additionalProperties": false,
"properties": {
"statusCode": {
"type": "integer"
},
"statusMessage": {
"type": "string"
},
"additionalInfo": {
"type": "object",
"additionalProperties": false,
"properties": {
"rejected": {
"$ref": "#/definitions/additionalInfoDetails"
},
"pending": {
"$ref": "#/definitions/additionalInfoDetails"
}
}
}
},
"required": [
"statusCode",
"statusMessage"
]
},
"additionalInfoDetails": {
"type": "array",
"items": {
"type": "object",
"description": "Details for the target cmhandles",
"additionalProperties": false,
"properties": {
"details": {
"type": "string"
},
"targets": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}
|