commonMain.aws.sdk.kotlin.services.backup.model.UpdateRestoreTestingPlanRequest.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.backup.model
import aws.smithy.kotlin.runtime.SdkDsl
public class UpdateRestoreTestingPlanRequest private constructor(builder: Builder) {
/**
* Specifies the body of a restore testing plan.
*/
public val restoreTestingPlan: aws.sdk.kotlin.services.backup.model.RestoreTestingPlanForUpdate? = builder.restoreTestingPlan
/**
* This is the restore testing plan name you wish to update.
*/
public val restoreTestingPlanName: kotlin.String? = builder.restoreTestingPlanName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.backup.model.UpdateRestoreTestingPlanRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateRestoreTestingPlanRequest(")
append("restoreTestingPlan=$restoreTestingPlan,")
append("restoreTestingPlanName=$restoreTestingPlanName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = restoreTestingPlan?.hashCode() ?: 0
result = 31 * result + (restoreTestingPlanName?.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 UpdateRestoreTestingPlanRequest
if (restoreTestingPlan != other.restoreTestingPlan) return false
if (restoreTestingPlanName != other.restoreTestingPlanName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.backup.model.UpdateRestoreTestingPlanRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Specifies the body of a restore testing plan.
*/
public var restoreTestingPlan: aws.sdk.kotlin.services.backup.model.RestoreTestingPlanForUpdate? = null
/**
* This is the restore testing plan name you wish to update.
*/
public var restoreTestingPlanName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.backup.model.UpdateRestoreTestingPlanRequest) : this() {
this.restoreTestingPlan = x.restoreTestingPlan
this.restoreTestingPlanName = x.restoreTestingPlanName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.backup.model.UpdateRestoreTestingPlanRequest = UpdateRestoreTestingPlanRequest(this)
/**
* construct an [aws.sdk.kotlin.services.backup.model.RestoreTestingPlanForUpdate] inside the given [block]
*/
public fun restoreTestingPlan(block: aws.sdk.kotlin.services.backup.model.RestoreTestingPlanForUpdate.Builder.() -> kotlin.Unit) {
this.restoreTestingPlan = aws.sdk.kotlin.services.backup.model.RestoreTestingPlanForUpdate.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}