da952c0348eb8567cd301451bbd6a955e8b5040a
[ccsdk/cds.git] /
1 /*
2  *  Copyright © 2019 IBM.
3  *
4  *  Licensed under the Apache License, Version 2.0 (the "License");
5  *  you may not use this file except in compliance with the License.
6  *  You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  */
16
17 package org.onap.ccsdk.cds.blueprintsprocessor.core.api.data
18
19 import com.fasterxml.jackson.databind.JsonNode
20 import java.util.*
21
22 enum class RemoteScriptType {
23     PYTHON, ANSIBLE, KOTLIN, SH
24 }
25
26 enum class StatusType {
27     SUCCESS, FAILURE
28 }
29
30 data class RemoteIdentifier(var blueprintName: String,
31                             var blueprintVersion: String)
32
33
34 data class RemoteScriptExecutionInput(var requestId: String,
35                                       var correlationId: String? = null,
36                                       var remoteIdentifier: RemoteIdentifier? = null,
37                                       var remoteScriptType: RemoteScriptType,
38                                       var command: String,
39                                       var timeOut: Long = 30,
40                                       var properties: MutableMap<String, JsonNode> = hashMapOf()
41 )
42
43
44 data class RemoteScriptExecutionOutput(var requestId: String,
45                                        var response: String,
46                                        var status: StatusType = StatusType.SUCCESS,
47                                        var timestamp: Date = Date())
48
49 data class PrepareRemoteEnvInput(var requestId: String,
50                                  var correlationId: String? = null,
51                                  var remoteIdentifier: RemoteIdentifier? = null,
52                                  var remoteScriptType: RemoteScriptType,
53                                  var packages: MutableList<String>?,
54                                  var timeOut: Long = 120,
55                                  var properties: MutableMap<String, JsonNode> = hashMapOf()
56 )