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

commonMain.aws.sdk.kotlin.services.codebuild.model.BatchGetFleetsResponse.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.codebuild.model

import aws.smithy.kotlin.runtime.SdkDsl

public class BatchGetFleetsResponse private constructor(builder: Builder) {
    /**
     * Information about the requested compute fleets.
     */
    public val fleets: List? = builder.fleets
    /**
     * The names of compute fleets for which information could not be found.
     */
    public val fleetsNotFound: List? = builder.fleetsNotFound

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

    override fun toString(): kotlin.String = buildString {
        append("BatchGetFleetsResponse(")
        append("fleets=$fleets,")
        append("fleetsNotFound=$fleetsNotFound")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = fleets?.hashCode() ?: 0
        result = 31 * result + (fleetsNotFound?.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 BatchGetFleetsResponse

        if (fleets != other.fleets) return false
        if (fleetsNotFound != other.fleetsNotFound) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * Information about the requested compute fleets.
         */
        public var fleets: List? = null
        /**
         * The names of compute fleets for which information could not be found.
         */
        public var fleetsNotFound: List? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.codebuild.model.BatchGetFleetsResponse) : this() {
            this.fleets = x.fleets
            this.fleetsNotFound = x.fleetsNotFound
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy