aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/mso/model/CloudConfiguration.kt
blob: d603e5b87f06156b4434594de27057fe907ee340 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.onap.vid.mso.model

import com.fasterxml.jackson.annotation.JsonInclude

@JsonInclude(JsonInclude.Include.NON_EMPTY)
//tenantId and might be null for supporting create configuration API (port mirroring)
//cloudOwner might because MSO enable it and it might be used in some flows (default value in MSO "irma-aic")
data class CloudConfiguration @JvmOverloads constructor(
        var lcpCloudRegionId: String? = null,
        var tenantId:String? = null,
        var cloudOwner: String? = null
)