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

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

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

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



public class DeleteDataSourceResponse private constructor(builder: Builder) {
    /**
     * The unique identifier of the data source that was deleted.
     */
    public val dataSourceId: kotlin.String = requireNotNull(builder.dataSourceId) { "A non-null value must be provided for dataSourceId" }
    /**
     * The unique identifier of the knowledge base to which the data source that was deleted belonged.
     */
    public val knowledgeBaseId: kotlin.String = requireNotNull(builder.knowledgeBaseId) { "A non-null value must be provided for knowledgeBaseId" }
    /**
     * The status of the data source.
     */
    public val status: aws.sdk.kotlin.services.bedrockagent.model.DataSourceStatus = requireNotNull(builder.status) { "A non-null value must be provided for status" }

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

    override fun toString(): kotlin.String = buildString {
        append("DeleteDataSourceResponse(")
        append("dataSourceId=$dataSourceId,")
        append("knowledgeBaseId=$knowledgeBaseId,")
        append("status=$status")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = dataSourceId.hashCode()
        result = 31 * result + (knowledgeBaseId.hashCode())
        result = 31 * result + (status.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 DeleteDataSourceResponse

        if (dataSourceId != other.dataSourceId) return false
        if (knowledgeBaseId != other.knowledgeBaseId) return false
        if (status != other.status) return false

        return true
    }

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

    public class Builder {
        /**
         * The unique identifier of the data source that was deleted.
         */
        public var dataSourceId: kotlin.String? = null
        /**
         * The unique identifier of the knowledge base to which the data source that was deleted belonged.
         */
        public var knowledgeBaseId: kotlin.String? = null
        /**
         * The status of the data source.
         */
        public var status: aws.sdk.kotlin.services.bedrockagent.model.DataSourceStatus? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.bedrockagent.model.DeleteDataSourceResponse) : this() {
            this.dataSourceId = x.dataSourceId
            this.knowledgeBaseId = x.knowledgeBaseId
            this.status = x.status
        }

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

        internal fun correctErrors(): Builder {
            if (dataSourceId == null) dataSourceId = ""
            if (knowledgeBaseId == null) knowledgeBaseId = ""
            if (status == null) status = DataSourceStatus.SdkUnknown("no value provided")
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy