commonMain.aws.sdk.kotlin.services.deadline.model.UpdateStepRequest.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 UpdateStepRequest 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 task status to update the step's tasks to.
*/
public val targetTaskRunStatus: aws.sdk.kotlin.services.deadline.model.StepTargetTaskRunStatus? = builder.targetTaskRunStatus
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.deadline.model.UpdateStepRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateStepRequest(")
append("clientToken=$clientToken,")
append("farmId=$farmId,")
append("jobId=$jobId,")
append("queueId=$queueId,")
append("stepId=$stepId,")
append("targetTaskRunStatus=$targetTaskRunStatus")
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 + (targetTaskRunStatus?.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 UpdateStepRequest
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 (targetTaskRunStatus != other.targetTaskRunStatus) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.deadline.model.UpdateStepRequest = 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 task status to update the step's tasks to.
*/
public var targetTaskRunStatus: aws.sdk.kotlin.services.deadline.model.StepTargetTaskRunStatus? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.deadline.model.UpdateStepRequest) : this() {
this.clientToken = x.clientToken
this.farmId = x.farmId
this.jobId = x.jobId
this.queueId = x.queueId
this.stepId = x.stepId
this.targetTaskRunStatus = x.targetTaskRunStatus
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.deadline.model.UpdateStepRequest = UpdateStepRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}