commonMain.aws.sdk.kotlin.services.tnb.model.UpdateNsMetadata.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
/**
* Metadata related to the configuration properties used during update of a network instance.
*/
public class UpdateNsMetadata private constructor(builder: Builder) {
/**
* The configurable properties used during update.
*/
public val additionalParamsForNs: aws.smithy.kotlin.runtime.content.Document? = builder.additionalParamsForNs
/**
* The network service descriptor used for updating the network instance.
*/
public val nsdInfoId: kotlin.String = requireNotNull(builder.nsdInfoId) { "A non-null value must be provided for nsdInfoId" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.tnb.model.UpdateNsMetadata = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateNsMetadata(")
append("additionalParamsForNs=$additionalParamsForNs,")
append("nsdInfoId=$nsdInfoId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = additionalParamsForNs?.hashCode() ?: 0
result = 31 * result + (nsdInfoId.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 UpdateNsMetadata
if (additionalParamsForNs != other.additionalParamsForNs) return false
if (nsdInfoId != other.nsdInfoId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.tnb.model.UpdateNsMetadata = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The configurable properties used during update.
*/
public var additionalParamsForNs: aws.smithy.kotlin.runtime.content.Document? = null
/**
* The network service descriptor used for updating the network instance.
*/
public var nsdInfoId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.tnb.model.UpdateNsMetadata) : this() {
this.additionalParamsForNs = x.additionalParamsForNs
this.nsdInfoId = x.nsdInfoId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.tnb.model.UpdateNsMetadata = UpdateNsMetadata(this)
internal fun correctErrors(): Builder {
if (nsdInfoId == null) nsdInfoId = ""
return this
}
}
}