Type Alias AlertingTaskPatchRequestCompliant

type AlertingTaskPatchRequestCompliant = {
    op: "replace";
    path:
        | "/ownerName"
        | "/ownerId"
        | "/conditionId"
        | "/enabledAction"
        | "/bookmarkId"
        | "/name"
        | "/description"
        | "/throttling"
        | "/triggerType"
        | "/scheduleOptions";
    value?: unknown;
}
Index

Properties

Properties

op: "replace"

The operation to be performed

path:
    | "/ownerName"
    | "/ownerId"
    | "/conditionId"
    | "/enabledAction"
    | "/bookmarkId"
    | "/name"
    | "/description"
    | "/throttling"
    | "/triggerType"
    | "/scheduleOptions"

A JSON Patch document as defined in https://datatracker.ietf.org/doc/html/rfc6902

value?: unknown

The value to be used for this operation.