commonMain.aws.sdk.kotlin.services.deadline.model.GetQueueFleetAssociationResponse.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
import aws.smithy.kotlin.runtime.time.Instant
public class GetQueueFleetAssociationResponse private constructor(builder: Builder) {
/**
* The date and time the resource was created.
*/
public val createdAt: aws.smithy.kotlin.runtime.time.Instant = requireNotNull(builder.createdAt) { "A non-null value must be provided for createdAt" }
/**
* The user or system that created this resource.
*/
public val createdBy: kotlin.String = requireNotNull(builder.createdBy) { "A non-null value must be provided for createdBy" }
/**
* The fleet ID for the queue-fleet association.
*/
public val fleetId: kotlin.String = requireNotNull(builder.fleetId) { "A non-null value must be provided for fleetId" }
/**
* The queue ID for the queue-fleet association.
*/
public val queueId: kotlin.String = requireNotNull(builder.queueId) { "A non-null value must be provided for queueId" }
/**
* The status of the queue-fleet association.
*/
public val status: aws.sdk.kotlin.services.deadline.model.QueueFleetAssociationStatus = requireNotNull(builder.status) { "A non-null value must be provided for status" }
/**
* The date and time the resource was updated.
*/
public val updatedAt: aws.smithy.kotlin.runtime.time.Instant? = builder.updatedAt
/**
* The user or system that updated this resource.
*/
public val updatedBy: kotlin.String? = builder.updatedBy
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.deadline.model.GetQueueFleetAssociationResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetQueueFleetAssociationResponse(")
append("createdAt=$createdAt,")
append("createdBy=$createdBy,")
append("fleetId=$fleetId,")
append("queueId=$queueId,")
append("status=$status,")
append("updatedAt=$updatedAt,")
append("updatedBy=$updatedBy")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = createdAt.hashCode()
result = 31 * result + (createdBy.hashCode())
result = 31 * result + (fleetId.hashCode())
result = 31 * result + (queueId.hashCode())
result = 31 * result + (status.hashCode())
result = 31 * result + (updatedAt?.hashCode() ?: 0)
result = 31 * result + (updatedBy?.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 GetQueueFleetAssociationResponse
if (createdAt != other.createdAt) return false
if (createdBy != other.createdBy) return false
if (fleetId != other.fleetId) return false
if (queueId != other.queueId) return false
if (status != other.status) return false
if (updatedAt != other.updatedAt) return false
if (updatedBy != other.updatedBy) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.deadline.model.GetQueueFleetAssociationResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The date and time the resource was created.
*/
public var createdAt: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The user or system that created this resource.
*/
public var createdBy: kotlin.String? = null
/**
* The fleet ID for the queue-fleet association.
*/
public var fleetId: kotlin.String? = null
/**
* The queue ID for the queue-fleet association.
*/
public var queueId: kotlin.String? = null
/**
* The status of the queue-fleet association.
*/
public var status: aws.sdk.kotlin.services.deadline.model.QueueFleetAssociationStatus? = null
/**
* The date and time the resource was updated.
*/
public var updatedAt: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The user or system that updated this resource.
*/
public var updatedBy: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.deadline.model.GetQueueFleetAssociationResponse) : this() {
this.createdAt = x.createdAt
this.createdBy = x.createdBy
this.fleetId = x.fleetId
this.queueId = x.queueId
this.status = x.status
this.updatedAt = x.updatedAt
this.updatedBy = x.updatedBy
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.deadline.model.GetQueueFleetAssociationResponse = GetQueueFleetAssociationResponse(this)
internal fun correctErrors(): Builder {
if (createdAt == null) createdAt = Instant.fromEpochSeconds(0)
if (createdBy == null) createdBy = ""
if (fleetId == null) fleetId = ""
if (queueId == null) queueId = ""
if (status == null) status = QueueFleetAssociationStatus.SdkUnknown("no value provided")
return this
}
}
}