commonMain.aws.sdk.kotlin.services.wafv2.model.GetIpSetResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wafv2-jvm Show documentation
Show all versions of wafv2-jvm Show documentation
The AWS Kotlin client for WAFV2
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.wafv2.model
import aws.smithy.kotlin.runtime.SdkDsl
public class GetIpSetResponse private constructor(builder: Builder) {
/**
*
*/
public val ipSet: aws.sdk.kotlin.services.wafv2.model.IpSet? = builder.ipSet
/**
* A token used for optimistic locking. WAF returns a token to your `get` and `list` requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like `update` and `delete`. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a `WAFOptimisticLockException`. If this happens, perform another `get`, and use the new token returned by that operation.
*/
public val lockToken: kotlin.String? = builder.lockToken
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.wafv2.model.GetIpSetResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetIpSetResponse(")
append("ipSet=$ipSet,")
append("lockToken=$lockToken")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = ipSet?.hashCode() ?: 0
result = 31 * result + (lockToken?.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 GetIpSetResponse
if (ipSet != other.ipSet) return false
if (lockToken != other.lockToken) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.wafv2.model.GetIpSetResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
*
*/
public var ipSet: aws.sdk.kotlin.services.wafv2.model.IpSet? = null
/**
* A token used for optimistic locking. WAF returns a token to your `get` and `list` requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like `update` and `delete`. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a `WAFOptimisticLockException`. If this happens, perform another `get`, and use the new token returned by that operation.
*/
public var lockToken: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.wafv2.model.GetIpSetResponse) : this() {
this.ipSet = x.ipSet
this.lockToken = x.lockToken
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.wafv2.model.GetIpSetResponse = GetIpSetResponse(this)
/**
* construct an [aws.sdk.kotlin.services.wafv2.model.IpSet] inside the given [block]
*/
public fun ipSet(block: aws.sdk.kotlin.services.wafv2.model.IpSet.Builder.() -> kotlin.Unit) {
this.ipSet = aws.sdk.kotlin.services.wafv2.model.IpSet.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy