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

commonMain.aws.sdk.kotlin.services.datapipeline.model.ReportTaskProgressRequest.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.datapipeline.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Contains the parameters for ReportTaskProgress.
 */
public class ReportTaskProgressRequest private constructor(builder: Builder) {
    /**
     * Key-value pairs that define the properties of the ReportTaskProgressInput object.
     */
    public val fields: List? = builder.fields
    /**
     * The ID of the task assigned to the task runner. This value is provided in the response for PollForTask.
     */
    public val taskId: kotlin.String? = builder.taskId

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

    override fun toString(): kotlin.String = buildString {
        append("ReportTaskProgressRequest(")
        append("fields=$fields,")
        append("taskId=$taskId")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = fields?.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 ReportTaskProgressRequest

        if (fields != other.fields) return false
        if (taskId != other.taskId) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * Key-value pairs that define the properties of the ReportTaskProgressInput object.
         */
        public var fields: List? = null
        /**
         * The ID of the task assigned to the task runner. This value is provided in the response for PollForTask.
         */
        public var taskId: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.datapipeline.model.ReportTaskProgressRequest) : this() {
            this.fields = x.fields
            this.taskId = x.taskId
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy