commonMain.aws.sdk.kotlin.services.deadline.model.UpdateTaskRequest.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 UpdateTaskRequest 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.
*/
public val farmId: kotlin.String? = builder.farmId
/**
* The job ID to update.
*/
public val jobId: kotlin.String? = builder.jobId
/**
* The queue ID to update.
*/
public val queueId: kotlin.String? = builder.queueId
/**
* The step ID to update.
*/
public val stepId: kotlin.String? = builder.stepId
/**
* The run status with which to start the task.
*/
public val targetRunStatus: aws.sdk.kotlin.services.deadline.model.TaskTargetRunStatus? = builder.targetRunStatus
/**
* The task ID to update.
*/
public val taskId: kotlin.String? = builder.taskId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.deadline.model.UpdateTaskRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateTaskRequest(")
append("clientToken=$clientToken,")
append("farmId=$farmId,")
append("jobId=$jobId,")
append("queueId=$queueId,")
append("stepId=$stepId,")
append("targetRunStatus=$targetRunStatus,")
append("taskId=$taskId")
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 + (stepId?.hashCode() ?: 0)
result = 31 * result + (targetRunStatus?.hashCode() ?: 0)
result = 31 * result + (taskId?.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 UpdateTaskRequest
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 (stepId != other.stepId) return false
if (targetRunStatus != other.targetRunStatus) return false
if (taskId != other.taskId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.deadline.model.UpdateTaskRequest = 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.
*/
public var farmId: kotlin.String? = null
/**
* The job ID to update.
*/
public var jobId: kotlin.String? = null
/**
* The queue ID to update.
*/
public var queueId: kotlin.String? = null
/**
* The step ID to update.
*/
public var stepId: kotlin.String? = null
/**
* The run status with which to start the task.
*/
public var targetRunStatus: aws.sdk.kotlin.services.deadline.model.TaskTargetRunStatus? = null
/**
* The task ID to update.
*/
public var taskId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.deadline.model.UpdateTaskRequest) : this() {
this.clientToken = x.clientToken
this.farmId = x.farmId
this.jobId = x.jobId
this.queueId = x.queueId
this.stepId = x.stepId
this.targetRunStatus = x.targetRunStatus
this.taskId = x.taskId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.deadline.model.UpdateTaskRequest = UpdateTaskRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}