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

commonMain.aws.sdk.kotlin.services.bedrockagent.model.DataSource.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

import aws.smithy.kotlin.runtime.time.Instant

/**
 * Contains details about a data source.
 */
public class DataSource private constructor(builder: Builder) {
    /**
     * The time at which the data source was created.
     */
    public val createdAt: aws.smithy.kotlin.runtime.time.Instant = requireNotNull(builder.createdAt) { "A non-null value must be provided for createdAt" }
    /**
     * Contains details about how the data source is stored.
     */
    public val dataSourceConfiguration: aws.sdk.kotlin.services.bedrockagent.model.DataSourceConfiguration? = builder.dataSourceConfiguration
    /**
     * The unique identifier of the data source.
     */
    public val dataSourceId: kotlin.String = requireNotNull(builder.dataSourceId) { "A non-null value must be provided for dataSourceId" }
    /**
     * The description of the data source.
     */
    public val description: kotlin.String? = builder.description
    /**
     * The unique identifier of the knowledge base to which the data source belongs.
     */
    public val knowledgeBaseId: kotlin.String = requireNotNull(builder.knowledgeBaseId) { "A non-null value must be provided for knowledgeBaseId" }
    /**
     * The name of the data source.
     */
    public val name: kotlin.String = requireNotNull(builder.name) { "A non-null value must be provided for name" }
    /**
     * Contains details about the configuration of the server-side encryption.
     */
    public val serverSideEncryptionConfiguration: aws.sdk.kotlin.services.bedrockagent.model.ServerSideEncryptionConfiguration? = builder.serverSideEncryptionConfiguration
    /**
     * The status of the data source. The following statuses are possible:
     * + Available – The data source has been created and is ready for ingestion into the knowledge base.
     * + Deleting – The data source is being deleted.
     */
    public val status: aws.sdk.kotlin.services.bedrockagent.model.DataSourceStatus = requireNotNull(builder.status) { "A non-null value must be provided for status" }
    /**
     * The time at which the data source was last updated.
     */
    public val updatedAt: aws.smithy.kotlin.runtime.time.Instant = requireNotNull(builder.updatedAt) { "A non-null value must be provided for updatedAt" }
    /**
     * Contains details about how to ingest the documents in the data source.
     */
    public val vectorIngestionConfiguration: aws.sdk.kotlin.services.bedrockagent.model.VectorIngestionConfiguration? = builder.vectorIngestionConfiguration

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

    override fun toString(): kotlin.String = buildString {
        append("DataSource(")
        append("createdAt=$createdAt,")
        append("dataSourceConfiguration=$dataSourceConfiguration,")
        append("dataSourceId=$dataSourceId,")
        append("description=$description,")
        append("knowledgeBaseId=$knowledgeBaseId,")
        append("name=$name,")
        append("serverSideEncryptionConfiguration=$serverSideEncryptionConfiguration,")
        append("status=$status,")
        append("updatedAt=$updatedAt,")
        append("vectorIngestionConfiguration=$vectorIngestionConfiguration")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = createdAt.hashCode()
        result = 31 * result + (dataSourceConfiguration?.hashCode() ?: 0)
        result = 31 * result + (dataSourceId.hashCode())
        result = 31 * result + (description?.hashCode() ?: 0)
        result = 31 * result + (knowledgeBaseId.hashCode())
        result = 31 * result + (name.hashCode())
        result = 31 * result + (serverSideEncryptionConfiguration?.hashCode() ?: 0)
        result = 31 * result + (status.hashCode())
        result = 31 * result + (updatedAt.hashCode())
        result = 31 * result + (vectorIngestionConfiguration?.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 DataSource

        if (createdAt != other.createdAt) return false
        if (dataSourceConfiguration != other.dataSourceConfiguration) return false
        if (dataSourceId != other.dataSourceId) return false
        if (description != other.description) return false
        if (knowledgeBaseId != other.knowledgeBaseId) return false
        if (name != other.name) return false
        if (serverSideEncryptionConfiguration != other.serverSideEncryptionConfiguration) return false
        if (status != other.status) return false
        if (updatedAt != other.updatedAt) return false
        if (vectorIngestionConfiguration != other.vectorIngestionConfiguration) return false

        return true
    }

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

    public class Builder {
        /**
         * The time at which the data source was created.
         */
        public var createdAt: aws.smithy.kotlin.runtime.time.Instant? = null
        /**
         * Contains details about how the data source is stored.
         */
        public var dataSourceConfiguration: aws.sdk.kotlin.services.bedrockagent.model.DataSourceConfiguration? = null
        /**
         * The unique identifier of the data source.
         */
        public var dataSourceId: kotlin.String? = null
        /**
         * The description of the data source.
         */
        public var description: kotlin.String? = null
        /**
         * The unique identifier of the knowledge base to which the data source belongs.
         */
        public var knowledgeBaseId: kotlin.String? = null
        /**
         * The name of the data source.
         */
        public var name: kotlin.String? = null
        /**
         * Contains details about the configuration of the server-side encryption.
         */
        public var serverSideEncryptionConfiguration: aws.sdk.kotlin.services.bedrockagent.model.ServerSideEncryptionConfiguration? = null
        /**
         * The status of the data source. The following statuses are possible:
         * + Available – The data source has been created and is ready for ingestion into the knowledge base.
         * + Deleting – The data source is being deleted.
         */
        public var status: aws.sdk.kotlin.services.bedrockagent.model.DataSourceStatus? = null
        /**
         * The time at which the data source was last updated.
         */
        public var updatedAt: aws.smithy.kotlin.runtime.time.Instant? = null
        /**
         * Contains details about how to ingest the documents in the data source.
         */
        public var vectorIngestionConfiguration: aws.sdk.kotlin.services.bedrockagent.model.VectorIngestionConfiguration? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.bedrockagent.model.DataSource) : this() {
            this.createdAt = x.createdAt
            this.dataSourceConfiguration = x.dataSourceConfiguration
            this.dataSourceId = x.dataSourceId
            this.description = x.description
            this.knowledgeBaseId = x.knowledgeBaseId
            this.name = x.name
            this.serverSideEncryptionConfiguration = x.serverSideEncryptionConfiguration
            this.status = x.status
            this.updatedAt = x.updatedAt
            this.vectorIngestionConfiguration = x.vectorIngestionConfiguration
        }

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy