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

commonMain.aws.sdk.kotlin.services.glue.model.GetTableVersionRequest.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.glue.model

import aws.smithy.kotlin.runtime.SdkDsl

public class GetTableVersionRequest private constructor(builder: Builder) {
    /**
     * The ID of the Data Catalog where the tables reside. If none is provided, the Amazon Web Services account ID is used by default.
     */
    public val catalogId: kotlin.String? = builder.catalogId
    /**
     * The database in the catalog in which the table resides. For Hive compatibility, this name is entirely lowercase.
     */
    public val databaseName: kotlin.String? = builder.databaseName
    /**
     * The name of the table. For Hive compatibility, this name is entirely lowercase.
     */
    public val tableName: kotlin.String? = builder.tableName
    /**
     * The ID value of the table version to be retrieved. A `VersionID` is a string representation of an integer. Each version is incremented by 1.
     */
    public val versionId: kotlin.String? = builder.versionId

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

    override fun toString(): kotlin.String = buildString {
        append("GetTableVersionRequest(")
        append("catalogId=$catalogId,")
        append("databaseName=$databaseName,")
        append("tableName=$tableName,")
        append("versionId=$versionId")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = catalogId?.hashCode() ?: 0
        result = 31 * result + (databaseName?.hashCode() ?: 0)
        result = 31 * result + (tableName?.hashCode() ?: 0)
        result = 31 * result + (versionId?.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 GetTableVersionRequest

        if (catalogId != other.catalogId) return false
        if (databaseName != other.databaseName) return false
        if (tableName != other.tableName) return false
        if (versionId != other.versionId) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The ID of the Data Catalog where the tables reside. If none is provided, the Amazon Web Services account ID is used by default.
         */
        public var catalogId: kotlin.String? = null
        /**
         * The database in the catalog in which the table resides. For Hive compatibility, this name is entirely lowercase.
         */
        public var databaseName: kotlin.String? = null
        /**
         * The name of the table. For Hive compatibility, this name is entirely lowercase.
         */
        public var tableName: kotlin.String? = null
        /**
         * The ID value of the table version to be retrieved. A `VersionID` is a string representation of an integer. Each version is incremented by 1.
         */
        public var versionId: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.glue.model.GetTableVersionRequest) : this() {
            this.catalogId = x.catalogId
            this.databaseName = x.databaseName
            this.tableName = x.tableName
            this.versionId = x.versionId
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy