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

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

There is a newer version: 1.3.77
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

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

import aws.smithy.kotlin.runtime.SdkDsl

public class UpdateAgentKnowledgeBaseRequest private constructor(builder: Builder) {
    /**
     * The unique identifier of the agent associated with the knowledge base that you want to update.
     */
    public val agentId: kotlin.String? = builder.agentId
    /**
     * The version of the agent associated with the knowledge base that you want to update.
     */
    public val agentVersion: kotlin.String? = builder.agentVersion
    /**
     * Specifies a new description for the knowledge base associated with an agent.
     */
    public val description: kotlin.String? = builder.description
    /**
     * The unique identifier of the knowledge base that has been associated with an agent.
     */
    public val knowledgeBaseId: kotlin.String? = builder.knowledgeBaseId
    /**
     * Specifies whether the agent uses the knowledge base or not when sending an [InvokeAgent](https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_InvokeAgent.html) request.
     */
    public val knowledgeBaseState: aws.sdk.kotlin.services.bedrockagent.model.KnowledgeBaseState? = builder.knowledgeBaseState

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

    override fun toString(): kotlin.String = buildString {
        append("UpdateAgentKnowledgeBaseRequest(")
        append("agentId=$agentId,")
        append("agentVersion=$agentVersion,")
        append("description=$description,")
        append("knowledgeBaseId=$knowledgeBaseId,")
        append("knowledgeBaseState=$knowledgeBaseState")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = agentId?.hashCode() ?: 0
        result = 31 * result + (agentVersion?.hashCode() ?: 0)
        result = 31 * result + (description?.hashCode() ?: 0)
        result = 31 * result + (knowledgeBaseId?.hashCode() ?: 0)
        result = 31 * result + (knowledgeBaseState?.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 UpdateAgentKnowledgeBaseRequest

        if (agentId != other.agentId) return false
        if (agentVersion != other.agentVersion) return false
        if (description != other.description) return false
        if (knowledgeBaseId != other.knowledgeBaseId) return false
        if (knowledgeBaseState != other.knowledgeBaseState) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The unique identifier of the agent associated with the knowledge base that you want to update.
         */
        public var agentId: kotlin.String? = null
        /**
         * The version of the agent associated with the knowledge base that you want to update.
         */
        public var agentVersion: kotlin.String? = null
        /**
         * Specifies a new description for the knowledge base associated with an agent.
         */
        public var description: kotlin.String? = null
        /**
         * The unique identifier of the knowledge base that has been associated with an agent.
         */
        public var knowledgeBaseId: kotlin.String? = null
        /**
         * Specifies whether the agent uses the knowledge base or not when sending an [InvokeAgent](https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_InvokeAgent.html) request.
         */
        public var knowledgeBaseState: aws.sdk.kotlin.services.bedrockagent.model.KnowledgeBaseState? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.bedrockagent.model.UpdateAgentKnowledgeBaseRequest) : this() {
            this.agentId = x.agentId
            this.agentVersion = x.agentVersion
            this.description = x.description
            this.knowledgeBaseId = x.knowledgeBaseId
            this.knowledgeBaseState = x.knowledgeBaseState
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy