Multi Set Parameter

Multi Set Parameter

Sets the value of multiple parameters for multiple cells.

Note: This operation is for testing only and should not be relied upon when developing rApps. Use jobs mediated through the data management service instead.

Request
URI
POST
https://{api_host}/v0alpha1/cmdata
COPY
Request Body

The set of configuration changes to be made, and their policy.

MultiSet of type(s) application/json
Required
{
    "values": [
        {
            "cell_id": "string",
            "parameter_name": "string",
            "parameter_type": "string",
            "operation": "string"
        }
    ],
    "mo_type": "string",
    "policy": "string"
}
array of CMValue
values
Required

values

string
mo_type
Optional

Managed Object type. If it starts with "ericsson", "nokia", "samsung", "stub" or "viavi", then this is considered as a pass-through job and the vendor-specific messages are in the values and will be sent to the southbound entity untouched.

string
policy
Optional

For future use to define an error handling or rollback policy for this set of changes. If no policy is provided NON_TRANSACTION is the default.

Possible values are : TRANSACTION, NON_TRANSACTION,
Responses
200

The update was successful.

Returns Array of CMMultiResult of type(s) application/json
[
    {
        "result": {
            "cell_id": "string",
            "parameter_name": "string",
            "parameter_type": "string",
            "operation": "string"
        },
        "status": "string",
        "detail": "string"
    }
]

400

The request is of the correct content-type but is either incorrectly formed in some fashion or one or more of the changes requested failed. In the latter case the response indicates which succeeded and which failed (and why).

Returns Array of CMMultiResult of type(s) application/json
[
    {
        "result": {
            "cell_id": "string",
            "parameter_name": "string",
            "parameter_type": "string",
            "operation": "string"
        },
        "status": "string",
        "detail": "string"
    }
]