commonMain.aws.sdk.kotlin.services.backup.model.UpdateRestoreTestingSelectionRequest.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 UpdateRestoreTestingSelectionRequest private constructor(builder: Builder) {
/**
* The restore testing plan name is required to update the indicated testing plan.
*/
public val restoreTestingPlanName: kotlin.String? = builder.restoreTestingPlanName
/**
* To update your restore testing selection, you can use either protected resource ARNs or conditions, but not both. That is, if your selection has `ProtectedResourceArns`, requesting an update with the parameter `ProtectedResourceConditions` will be unsuccessful.
*/
public val restoreTestingSelection: aws.sdk.kotlin.services.backup.model.RestoreTestingSelectionForUpdate? = builder.restoreTestingSelection
/**
* This is the required restore testing selection name of the restore testing selection you wish to update.
*/
public val restoreTestingSelectionName: kotlin.String? = builder.restoreTestingSelectionName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.backup.model.UpdateRestoreTestingSelectionRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateRestoreTestingSelectionRequest(")
append("restoreTestingPlanName=$restoreTestingPlanName,")
append("restoreTestingSelection=$restoreTestingSelection,")
append("restoreTestingSelectionName=$restoreTestingSelectionName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = restoreTestingPlanName?.hashCode() ?: 0
result = 31 * result + (restoreTestingSelection?.hashCode() ?: 0)
result = 31 * result + (restoreTestingSelectionName?.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 UpdateRestoreTestingSelectionRequest
if (restoreTestingPlanName != other.restoreTestingPlanName) return false
if (restoreTestingSelection != other.restoreTestingSelection) return false
if (restoreTestingSelectionName != other.restoreTestingSelectionName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.backup.model.UpdateRestoreTestingSelectionRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The restore testing plan name is required to update the indicated testing plan.
*/
public var restoreTestingPlanName: kotlin.String? = null
/**
* To update your restore testing selection, you can use either protected resource ARNs or conditions, but not both. That is, if your selection has `ProtectedResourceArns`, requesting an update with the parameter `ProtectedResourceConditions` will be unsuccessful.
*/
public var restoreTestingSelection: aws.sdk.kotlin.services.backup.model.RestoreTestingSelectionForUpdate? = null
/**
* This is the required restore testing selection name of the restore testing selection you wish to update.
*/
public var restoreTestingSelectionName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.backup.model.UpdateRestoreTestingSelectionRequest) : this() {
this.restoreTestingPlanName = x.restoreTestingPlanName
this.restoreTestingSelection = x.restoreTestingSelection
this.restoreTestingSelectionName = x.restoreTestingSelectionName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.backup.model.UpdateRestoreTestingSelectionRequest = UpdateRestoreTestingSelectionRequest(this)
/**
* construct an [aws.sdk.kotlin.services.backup.model.RestoreTestingSelectionForUpdate] inside the given [block]
*/
public fun restoreTestingSelection(block: aws.sdk.kotlin.services.backup.model.RestoreTestingSelectionForUpdate.Builder.() -> kotlin.Unit) {
this.restoreTestingSelection = aws.sdk.kotlin.services.backup.model.RestoreTestingSelectionForUpdate.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}