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

commonMain.aws.sdk.kotlin.services.bedrockagent.model.UpdateAgentResponse.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.bedrockagent.model

import aws.smithy.kotlin.runtime.SdkDsl

public class UpdateAgentResponse private constructor(builder: Builder) {
    /**
     * Contains details about the agent that was updated.
     */
    public val agent: aws.sdk.kotlin.services.bedrockagent.model.Agent? = builder.agent

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

    override fun toString(): kotlin.String = buildString {
        append("UpdateAgentResponse(")
        append("agent=$agent")
        append(")")
    }

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

        if (agent != other.agent) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * Contains details about the agent that was updated.
         */
        public var agent: aws.sdk.kotlin.services.bedrockagent.model.Agent? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.bedrockagent.model.UpdateAgentResponse) : this() {
            this.agent = x.agent
        }

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

        /**
         * construct an [aws.sdk.kotlin.services.bedrockagent.model.Agent] inside the given [block]
         */
        public fun agent(block: aws.sdk.kotlin.services.bedrockagent.model.Agent.Builder.() -> kotlin.Unit) {
            this.agent = aws.sdk.kotlin.services.bedrockagent.model.Agent.invoke(block)
        }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy