commonMain.aws.sdk.kotlin.services.deadline.model.UpdateWorkerResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deadline-jvm Show documentation
Show all versions of deadline-jvm Show documentation
The AWS SDK for Kotlin client for deadline
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.deadline.model
import aws.smithy.kotlin.runtime.SdkDsl
public class UpdateWorkerResponse private constructor(builder: Builder) {
/**
* The worker log to update.
*/
public val log: aws.sdk.kotlin.services.deadline.model.LogConfiguration? = builder.log
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.deadline.model.UpdateWorkerResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateWorkerResponse(")
append("log=$log")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = log?.hashCode() ?: 0
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 UpdateWorkerResponse
if (log != other.log) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.deadline.model.UpdateWorkerResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The worker log to update.
*/
public var log: aws.sdk.kotlin.services.deadline.model.LogConfiguration? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.deadline.model.UpdateWorkerResponse) : this() {
this.log = x.log
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.deadline.model.UpdateWorkerResponse = UpdateWorkerResponse(this)
/**
* construct an [aws.sdk.kotlin.services.deadline.model.LogConfiguration] inside the given [block]
*/
public fun log(block: aws.sdk.kotlin.services.deadline.model.LogConfiguration.Builder.() -> kotlin.Unit) {
this.log = aws.sdk.kotlin.services.deadline.model.LogConfiguration.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}