aboutsummaryrefslogtreecommitdiffstats
path: root/ms/blueprintsprocessor/functions/restconf-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/restconf/executor/RestconfRequestType.kt
blob: 277f978149db8802da8e5cb089bbb5a3168c40bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.onap.ccsdk.cds.blueprintsprocessor.functions.restconf.executor

enum class RestconfRequestType {
    PUT,
    PATCH,
    POST,
    GET,
    DELETE
}

enum class RestconfRequestDatastore {
    CONFIG,
    OPERATIONAL
}