Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagetext
titleSample Filter Threshold Policy
linenumberstrue
collapsetrue
{
    "service": "filterPolicythresholdPolicy",
    "policyName": "OSDF_FRANKFURT.filterPolicythresholdPolicy_NS_URLLC",
    "description": "filterPolicythresholdPolicy",
    "templateVersion": "OpenSource.version.1",
    "version": "oofFrankfurt",
    "priority": "6",
    "riskType": "test",
    "riskLevel": "3",
    "guard": "False",
    "content": {
        "identity": "urllc_core_cap",
        "policyScope": [
            "URLLC-test",
            "URLLC-Core-test",
        ],
        "policyType": "filterPolicythresholdPolicy",
        "resources": ["URLLC-Core-test"],
        "vnfPropertiesthresholdProperties": [{
            "attribute":"latency",
            "constraint":"lte",
            "threshold":"5",
            "unit":"ms"
        },
        {   
            "attribute":"reliability",
            "constraint":"gte",
            "threshold":"99.999",
            "unit":""
        }]
    }
}

...

Code Block
languagetext
titleSample Bound Optimization Policy
linenumberstrue
collapsetrue
{
    "service": "boundOptimizationPolicy",
    "policyName": "OSDF_FRANKFURT.boundOptimizationPolicy_NS_URLLC",
    "description": "boundOptimizationPolicy",
    "templateVersion": "OpenSource.version.1",
    "version": "oofFrankfurt",
    "priority": "6",
    "riskType": "test",
    "riskLevel": "3",
    "guard": "False",
    "content": {
        "identity": "urllc_across_dem",
        "policyScope": [
            "URLLC-test",
            "URLLC-Core-test",
        ],
        "policyType": "boundOptimizationPolicy",
        "resources": ["URLLC-Core-test","URLLC-Ran-test","URLLC-Trans-test"],
        "vnfPropertiesboundOptimizationProperties": [{
            "attribute":"latency",
            "constraint":"lte",
            "threshold":{
                "get_param": "latency"
            },
            "unit":"ms",
            "operationOnDemands":"sum"
        },
        {   
            "attribute":"expDataRateUL",
            "constraint":"gte",
            "threshold":{
                "get_param": "expDataRateUL"
            },
            "unit":"Mbps",
            "operationOnDemands":"min"
        }]
    }
}

...