2 * Copyright © 2019 IBM.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package org.onap.ccsdk.cds.blueprintsprocessor.core.api.data
19 import com.fasterxml.jackson.databind.JsonNode
22 enum class RemoteScriptType {
23 PYTHON, ANSIBLE, KOTLIN, SH
26 enum class StatusType {
30 data class RemoteIdentifier(var blueprintName: String,
31 var blueprintVersion: String)
34 data class RemoteScriptExecutionInput(var requestId: String,
35 var correlationId: String? = null,
36 var remoteIdentifier: RemoteIdentifier? = null,
37 var remoteScriptType: RemoteScriptType,
39 var timeOut: Long = 30,
40 var properties: MutableMap<String, JsonNode> = hashMapOf()
44 data class RemoteScriptExecutionOutput(var requestId: String,
46 var status: StatusType = StatusType.SUCCESS,
47 var timestamp: Date = Date())
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()