1 package org.onap.ccsdk.cds.blueprintsprocessor.functions.k8s.instance
3 import com.fasterxml.jackson.annotation.JsonProperty
5 class K8sConfigValueRequest {
7 @get:JsonProperty("template-name")
8 var templateName: String? = null
10 @get:JsonProperty("config-name")
11 var configName: String? = null
13 @get:JsonProperty("description")
14 var description: String? = null
16 @get:JsonProperty("values")
17 var values: Any? = null
19 override fun toString(): String {
20 return "$templateName:$configName:$description:$values"
23 override fun equals(other: Any?): Boolean {
24 if (this === other) return true
25 if (javaClass != other?.javaClass) return false
29 override fun hashCode(): Int {
30 return javaClass.hashCode()