All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.deadline.model.GetTaskRequest.kt Maven / Gradle / Ivy

The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.deadline.model

import aws.smithy.kotlin.runtime.SdkDsl

public class GetTaskRequest private constructor(builder: Builder) {
    /**
     * The farm ID of the farm connected to the task.
     */
    public val farmId: kotlin.String? = builder.farmId
    /**
     * The job ID of the job connected to the task.
     */
    public val jobId: kotlin.String? = builder.jobId
    /**
     * The queue ID for the queue connected to the task.
     */
    public val queueId: kotlin.String? = builder.queueId
    /**
     * The step ID for the step connected to the task.
     */
    public val stepId: kotlin.String? = builder.stepId
    /**
     * The task ID.
     */
    public val taskId: kotlin.String? = builder.taskId

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.deadline.model.GetTaskRequest = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("GetTaskRequest(")
        append("farmId=$farmId,")
        append("jobId=$jobId,")
        append("queueId=$queueId,")
        append("stepId=$stepId,")
        append("taskId=$taskId")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var 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 + (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 GetTaskRequest

        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 (taskId != other.taskId) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.deadline.model.GetTaskRequest = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The farm ID of the farm connected to the task.
         */
        public var farmId: kotlin.String? = null
        /**
         * The job ID of the job connected to the task.
         */
        public var jobId: kotlin.String? = null
        /**
         * The queue ID for the queue connected to the task.
         */
        public var queueId: kotlin.String? = null
        /**
         * The step ID for the step connected to the task.
         */
        public var stepId: kotlin.String? = null
        /**
         * The task ID.
         */
        public var taskId: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.deadline.model.GetTaskRequest) : this() {
            this.farmId = x.farmId
            this.jobId = x.jobId
            this.queueId = x.queueId
            this.stepId = x.stepId
            this.taskId = x.taskId
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.deadline.model.GetTaskRequest = GetTaskRequest(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy