commonMain.aws.sdk.kotlin.services.deadline.model.UpdateSessionRequest.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 UpdateSessionRequest private constructor(builder: Builder) {
/**
* The unique token which the server uses to recognize retries of the same request.
*/
public val clientToken: kotlin.String? = builder.clientToken
/**
* The farm ID to update in the session.
*/
public val farmId: kotlin.String? = builder.farmId
/**
* The job ID to update in the session.
*/
public val jobId: kotlin.String? = builder.jobId
/**
* The queue ID to update in the session.
*/
public val queueId: kotlin.String? = builder.queueId
/**
* The session ID to update.
*/
public val sessionId: kotlin.String? = builder.sessionId
/**
* The life cycle status to update in the session.
*/
public val targetLifecycleStatus: aws.sdk.kotlin.services.deadline.model.SessionLifecycleTargetStatus? = builder.targetLifecycleStatus
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.deadline.model.UpdateSessionRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateSessionRequest(")
append("clientToken=$clientToken,")
append("farmId=$farmId,")
append("jobId=$jobId,")
append("queueId=$queueId,")
append("sessionId=$sessionId,")
append("targetLifecycleStatus=$targetLifecycleStatus")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = clientToken?.hashCode() ?: 0
result = 31 * result + (farmId?.hashCode() ?: 0)
result = 31 * result + (jobId?.hashCode() ?: 0)
result = 31 * result + (queueId?.hashCode() ?: 0)
result = 31 * result + (sessionId?.hashCode() ?: 0)
result = 31 * result + (targetLifecycleStatus?.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 UpdateSessionRequest
if (clientToken != other.clientToken) return false
if (farmId != other.farmId) return false
if (jobId != other.jobId) return false
if (queueId != other.queueId) return false
if (sessionId != other.sessionId) return false
if (targetLifecycleStatus != other.targetLifecycleStatus) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.deadline.model.UpdateSessionRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The unique token which the server uses to recognize retries of the same request.
*/
public var clientToken: kotlin.String? = null
/**
* The farm ID to update in the session.
*/
public var farmId: kotlin.String? = null
/**
* The job ID to update in the session.
*/
public var jobId: kotlin.String? = null
/**
* The queue ID to update in the session.
*/
public var queueId: kotlin.String? = null
/**
* The session ID to update.
*/
public var sessionId: kotlin.String? = null
/**
* The life cycle status to update in the session.
*/
public var targetLifecycleStatus: aws.sdk.kotlin.services.deadline.model.SessionLifecycleTargetStatus? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.deadline.model.UpdateSessionRequest) : this() {
this.clientToken = x.clientToken
this.farmId = x.farmId
this.jobId = x.jobId
this.queueId = x.queueId
this.sessionId = x.sessionId
this.targetLifecycleStatus = x.targetLifecycleStatus
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.deadline.model.UpdateSessionRequest = UpdateSessionRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}