commonMain.aws.sdk.kotlin.services.glue.model.UpdateJobRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glue-jvm Show documentation
Show all versions of glue-jvm Show documentation
The AWS SDK for Kotlin client for Glue
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glue.model
public class UpdateJobRequest private constructor(builder: Builder) {
/**
* The name of the job definition to update.
*/
public val jobName: kotlin.String? = builder.jobName
/**
* Specifies the values with which to update the job definition. Unspecified configuration is removed or reset to default values.
*/
public val jobUpdate: aws.sdk.kotlin.services.glue.model.JobUpdate? = builder.jobUpdate
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.UpdateJobRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateJobRequest(")
append("jobName=$jobName,")
append("jobUpdate=$jobUpdate")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = jobName?.hashCode() ?: 0
result = 31 * result + (jobUpdate?.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 UpdateJobRequest
if (jobName != other.jobName) return false
if (jobUpdate != other.jobUpdate) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.UpdateJobRequest = Builder(this).apply(block).build()
public class Builder {
/**
* The name of the job definition to update.
*/
public var jobName: kotlin.String? = null
/**
* Specifies the values with which to update the job definition. Unspecified configuration is removed or reset to default values.
*/
public var jobUpdate: aws.sdk.kotlin.services.glue.model.JobUpdate? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.UpdateJobRequest) : this() {
this.jobName = x.jobName
this.jobUpdate = x.jobUpdate
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.UpdateJobRequest = UpdateJobRequest(this)
/**
* construct an [aws.sdk.kotlin.services.glue.model.JobUpdate] inside the given [block]
*/
public fun jobUpdate(block: aws.sdk.kotlin.services.glue.model.JobUpdate.Builder.() -> kotlin.Unit) {
this.jobUpdate = aws.sdk.kotlin.services.glue.model.JobUpdate.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}