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

commonMain.aws.sdk.kotlin.services.opensearch.model.DescribeDomainChangeProgressRequest.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.opensearch.model



/**
 * Container for the parameters to the `DescribeDomainChangeProgress` operation.
 */
public class DescribeDomainChangeProgressRequest private constructor(builder: Builder) {
    /**
     * The specific change ID for which you want to get progress information. If omitted, the request returns information about the most recent configuration change.
     */
    public val changeId: kotlin.String? = builder.changeId
    /**
     * The name of the domain to get progress information for.
     */
    public val domainName: kotlin.String? = builder.domainName

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

    override fun toString(): kotlin.String = buildString {
        append("DescribeDomainChangeProgressRequest(")
        append("changeId=$changeId,")
        append("domainName=$domainName")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = changeId?.hashCode() ?: 0
        result = 31 * result + (domainName?.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 DescribeDomainChangeProgressRequest

        if (changeId != other.changeId) return false
        if (domainName != other.domainName) return false

        return true
    }

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

    public class Builder {
        /**
         * The specific change ID for which you want to get progress information. If omitted, the request returns information about the most recent configuration change.
         */
        public var changeId: kotlin.String? = null
        /**
         * The name of the domain to get progress information for.
         */
        public var domainName: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.opensearch.model.DescribeDomainChangeProgressRequest) : this() {
            this.changeId = x.changeId
            this.domainName = x.domainName
        }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy