commonMain.aws.sdk.kotlin.services.tnb.model.UpdateSolNetworkModify.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tnb-jvm Show documentation
Show all versions of tnb-jvm Show documentation
The AWS SDK for Kotlin client for tnb
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.tnb.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.content.Document
/**
* Information parameters and/or the configurable properties for a network function.
*
* A network function instance is a function in a function package .
*/
public class UpdateSolNetworkModify private constructor(builder: Builder) {
/**
* Provides values for the configurable properties declared in the function package descriptor.
*/
public val vnfConfigurableProperties: aws.smithy.kotlin.runtime.content.Document? = builder.vnfConfigurableProperties
/**
* ID of the network function instance.
*
* A network function instance is a function in a function package .
*/
public val vnfInstanceId: kotlin.String = requireNotNull(builder.vnfInstanceId) { "A non-null value must be provided for vnfInstanceId" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.tnb.model.UpdateSolNetworkModify = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateSolNetworkModify(")
append("vnfConfigurableProperties=$vnfConfigurableProperties,")
append("vnfInstanceId=$vnfInstanceId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = vnfConfigurableProperties?.hashCode() ?: 0
result = 31 * result + (vnfInstanceId.hashCode())
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as UpdateSolNetworkModify
if (vnfConfigurableProperties != other.vnfConfigurableProperties) return false
if (vnfInstanceId != other.vnfInstanceId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.tnb.model.UpdateSolNetworkModify = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Provides values for the configurable properties declared in the function package descriptor.
*/
public var vnfConfigurableProperties: aws.smithy.kotlin.runtime.content.Document? = null
/**
* ID of the network function instance.
*
* A network function instance is a function in a function package .
*/
public var vnfInstanceId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.tnb.model.UpdateSolNetworkModify) : this() {
this.vnfConfigurableProperties = x.vnfConfigurableProperties
this.vnfInstanceId = x.vnfInstanceId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.tnb.model.UpdateSolNetworkModify = UpdateSolNetworkModify(this)
internal fun correctErrors(): Builder {
if (vnfInstanceId == null) vnfInstanceId = ""
return this
}
}
}