commonMain.aws.sdk.kotlin.services.deadline.model.WorkerAmountCapability.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 details of the worker amount capability.
*/
public class WorkerAmountCapability private constructor(builder: Builder) {
/**
* The name of the worker amount capability.
*/
public val name: kotlin.String = requireNotNull(builder.name) { "A non-null value must be provided for name" }
/**
* The value of the worker amount capability.
*/
public val value: kotlin.Float = requireNotNull(builder.value) { "A non-null value must be provided for value" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.deadline.model.WorkerAmountCapability = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("WorkerAmountCapability(")
append("name=$name,")
append("value=$value")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = name.hashCode()
result = 31 * result + (value.hashCode())
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 WorkerAmountCapability
if (name != other.name) return false
if (!(value?.equals(other.value) ?: (other.value == null))) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.deadline.model.WorkerAmountCapability = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the worker amount capability.
*/
public var name: kotlin.String? = null
/**
* The value of the worker amount capability.
*/
public var value: kotlin.Float? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.deadline.model.WorkerAmountCapability) : this() {
this.name = x.name
this.value = x.value
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.deadline.model.WorkerAmountCapability = WorkerAmountCapability(this)
internal fun correctErrors(): Builder {
if (name == null) name = ""
if (value == null) value = 0f
return this
}
}
}