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

commonMain.aws.sdk.kotlin.services.opensearchserverless.model.UpdateCollectionRequest.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.opensearchserverless.model



public class UpdateCollectionRequest private constructor(builder: Builder) {
    /**
     * Unique, case-sensitive identifier to ensure idempotency of the request.
     */
    public val clientToken: kotlin.String? = builder.clientToken
    /**
     * A description of the collection.
     */
    public val description: kotlin.String? = builder.description
    /**
     * The unique identifier of the collection.
     */
    public val id: kotlin.String = requireNotNull(builder.id) { "A non-null value must be provided for id" }

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

    override fun toString(): kotlin.String = buildString {
        append("UpdateCollectionRequest(")
        append("clientToken=$clientToken,")
        append("description=$description,")
        append("id=$id")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = clientToken?.hashCode() ?: 0
        result = 31 * result + (description?.hashCode() ?: 0)
        result = 31 * result + (id.hashCode())
        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 UpdateCollectionRequest

        if (clientToken != other.clientToken) return false
        if (description != other.description) return false
        if (id != other.id) return false

        return true
    }

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

    public class Builder {
        /**
         * Unique, case-sensitive identifier to ensure idempotency of the request.
         */
        public var clientToken: kotlin.String? = null
        /**
         * A description of the collection.
         */
        public var description: kotlin.String? = null
        /**
         * The unique identifier of the collection.
         */
        public var id: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.opensearchserverless.model.UpdateCollectionRequest) : this() {
            this.clientToken = x.clientToken
            this.description = x.description
            this.id = x.id
        }

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

        internal fun correctErrors(): Builder {
            if (id == null) id = ""
            return this
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy