Implant vid-app-common org.onap.vid.job (main and test)
[vid.git] / vid-app-common / src / main / java / org / onap / vid / mso / model / CloudConfiguration.kt
1 package org.onap.vid.mso.model
2
3 import com.fasterxml.jackson.annotation.JsonInclude
4
5 @JsonInclude(JsonInclude.Include.NON_EMPTY)
6 //tenantId and might be null for supporting create configuration API (port mirroring)
7 //cloudOwner might because MSO enable it and it might be used in some flows (default value in MSO "irma-aic")
8 data class CloudConfiguration @JvmOverloads constructor(
9         var lcpCloudRegionId: String? = null,
10         var tenantId:String? = null,
11         var cloudOwner: String? = null
12 )