commonMain.aws.sdk.kotlin.services.deadline.model.UpdateWorkerRequest.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
public class UpdateWorkerRequest private constructor(builder: Builder) {
/**
* The worker capabilities to update.
*/
public val capabilities: aws.sdk.kotlin.services.deadline.model.WorkerCapabilities? = builder.capabilities
/**
* The farm ID to update.
*/
public val farmId: kotlin.String? = builder.farmId
/**
* The fleet ID to update.
*/
public val fleetId: kotlin.String? = builder.fleetId
/**
* The host properties to update.
*/
public val hostProperties: aws.sdk.kotlin.services.deadline.model.HostPropertiesRequest? = builder.hostProperties
/**
* The worker status to update.
*/
public val status: aws.sdk.kotlin.services.deadline.model.UpdatedWorkerStatus? = builder.status
/**
* The worker ID to update.
*/
public val workerId: kotlin.String? = builder.workerId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.deadline.model.UpdateWorkerRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateWorkerRequest(")
append("capabilities=$capabilities,")
append("farmId=$farmId,")
append("fleetId=$fleetId,")
append("hostProperties=$hostProperties,")
append("status=$status,")
append("workerId=$workerId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = capabilities?.hashCode() ?: 0
result = 31 * result + (farmId?.hashCode() ?: 0)
result = 31 * result + (fleetId?.hashCode() ?: 0)
result = 31 * result + (hostProperties?.hashCode() ?: 0)
result = 31 * result + (status?.hashCode() ?: 0)
result = 31 * result + (workerId?.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 UpdateWorkerRequest
if (capabilities != other.capabilities) return false
if (farmId != other.farmId) return false
if (fleetId != other.fleetId) return false
if (hostProperties != other.hostProperties) return false
if (status != other.status) return false
if (workerId != other.workerId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.deadline.model.UpdateWorkerRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The worker capabilities to update.
*/
public var capabilities: aws.sdk.kotlin.services.deadline.model.WorkerCapabilities? = null
/**
* The farm ID to update.
*/
public var farmId: kotlin.String? = null
/**
* The fleet ID to update.
*/
public var fleetId: kotlin.String? = null
/**
* The host properties to update.
*/
public var hostProperties: aws.sdk.kotlin.services.deadline.model.HostPropertiesRequest? = null
/**
* The worker status to update.
*/
public var status: aws.sdk.kotlin.services.deadline.model.UpdatedWorkerStatus? = null
/**
* The worker ID to update.
*/
public var workerId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.deadline.model.UpdateWorkerRequest) : this() {
this.capabilities = x.capabilities
this.farmId = x.farmId
this.fleetId = x.fleetId
this.hostProperties = x.hostProperties
this.status = x.status
this.workerId = x.workerId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.deadline.model.UpdateWorkerRequest = UpdateWorkerRequest(this)
/**
* construct an [aws.sdk.kotlin.services.deadline.model.WorkerCapabilities] inside the given [block]
*/
public fun capabilities(block: aws.sdk.kotlin.services.deadline.model.WorkerCapabilities.Builder.() -> kotlin.Unit) {
this.capabilities = aws.sdk.kotlin.services.deadline.model.WorkerCapabilities.invoke(block)
}
/**
* construct an [aws.sdk.kotlin.services.deadline.model.HostPropertiesRequest] inside the given [block]
*/
public fun hostProperties(block: aws.sdk.kotlin.services.deadline.model.HostPropertiesRequest.Builder.() -> kotlin.Unit) {
this.hostProperties = aws.sdk.kotlin.services.deadline.model.HostPropertiesRequest.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}