commonMain.aws.sdk.kotlin.services.bedrockagent.model.DataSourceSummary.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bedrockagent-jvm Show documentation
Show all versions of bedrockagent-jvm Show documentation
The AWS SDK for Kotlin client for Bedrock Agent
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.bedrockagent.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.time.Instant
/**
* Contains details about a data source.
*/
public class DataSourceSummary private constructor(builder: Builder) {
/**
* 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" }
/**
* 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" }
/**
* 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" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.bedrockagent.model.DataSourceSummary = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DataSourceSummary(")
append("dataSourceId=$dataSourceId,")
append("description=$description,")
append("knowledgeBaseId=$knowledgeBaseId,")
append("name=$name,")
append("status=$status,")
append("updatedAt=$updatedAt")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = dataSourceId.hashCode()
result = 31 * result + (description?.hashCode() ?: 0)
result = 31 * result + (knowledgeBaseId.hashCode())
result = 31 * result + (name.hashCode())
result = 31 * result + (status.hashCode())
result = 31 * result + (updatedAt.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 DataSourceSummary
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 (status != other.status) return false
if (updatedAt != other.updatedAt) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.bedrockagent.model.DataSourceSummary = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* 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
/**
* The status of the data source.
*/
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
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.bedrockagent.model.DataSourceSummary) : this() {
this.dataSourceId = x.dataSourceId
this.description = x.description
this.knowledgeBaseId = x.knowledgeBaseId
this.name = x.name
this.status = x.status
this.updatedAt = x.updatedAt
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.bedrockagent.model.DataSourceSummary = DataSourceSummary(this)
internal fun correctErrors(): Builder {
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
}
}
}