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

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

The 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 GetTableOptimizerRequest private constructor(builder: Builder) {
    /**
     * The Catalog ID of the table.
     */
    public val catalogId: kotlin.String? = builder.catalogId
    /**
     * The name of the database in the catalog in which the table resides.
     */
    public val databaseName: kotlin.String? = builder.databaseName
    /**
     * The name of the table.
     */
    public val tableName: kotlin.String? = builder.tableName
    /**
     * The type of table optimizer.
     */
    public val type: aws.sdk.kotlin.services.glue.model.TableOptimizerType? = builder.type

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

    override fun toString(): kotlin.String = buildString {
        append("GetTableOptimizerRequest(")
        append("catalogId=$catalogId,")
        append("databaseName=$databaseName,")
        append("tableName=$tableName,")
        append("type=$type")
        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 + (type?.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 GetTableOptimizerRequest

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

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The Catalog ID of the table.
         */
        public var catalogId: kotlin.String? = null
        /**
         * The name of the database in the catalog in which the table resides.
         */
        public var databaseName: kotlin.String? = null
        /**
         * The name of the table.
         */
        public var tableName: kotlin.String? = null
        /**
         * The type of table optimizer.
         */
        public var type: aws.sdk.kotlin.services.glue.model.TableOptimizerType? = null

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy