commonMain.aws.sdk.kotlin.services.codebuild.model.BatchGetFleetsResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codebuild-jvm Show documentation
Show all versions of codebuild-jvm Show documentation
The AWS SDK for Kotlin client for CodeBuild
// 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
}
}
}