commonMain.aws.sdk.kotlin.services.deadline.model.VCpuCountRange.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deadline-jvm Show documentation
Show all versions of deadline-jvm Show documentation
The AWS SDK for Kotlin client for deadline
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.deadline.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* The allowable range of vCPU processing power for the fleet.
*/
public class VCpuCountRange private constructor(builder: Builder) {
/**
* The maximum amount of vCPU.
*/
public val max: kotlin.Int? = builder.max
/**
* The minimum amount of vCPU.
*/
public val min: kotlin.Int = requireNotNull(builder.min) { "A non-null value must be provided for min" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.deadline.model.VCpuCountRange = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("VCpuCountRange(")
append("max=$max,")
append("min=$min")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = max ?: 0
result = 31 * result + (min)
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 VCpuCountRange
if (max != other.max) return false
if (min != other.min) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.deadline.model.VCpuCountRange = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The maximum amount of vCPU.
*/
public var max: kotlin.Int? = null
/**
* The minimum amount of vCPU.
*/
public var min: kotlin.Int? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.deadline.model.VCpuCountRange) : this() {
this.max = x.max
this.min = x.min
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.deadline.model.VCpuCountRange = VCpuCountRange(this)
internal fun correctErrors(): Builder {
if (min == null) min = 0
return this
}
}
}