commonMain.aws.sdk.kotlin.services.wafv2.model.GetRuleGroupResponse.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 GetRuleGroupResponse private constructor(builder: Builder) {
/**
* 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 val ruleGroup: aws.sdk.kotlin.services.wafv2.model.RuleGroup? = builder.ruleGroup
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.wafv2.model.GetRuleGroupResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetRuleGroupResponse(")
append("lockToken=$lockToken,")
append("ruleGroup=$ruleGroup")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = lockToken?.hashCode() ?: 0
result = 31 * result + (ruleGroup?.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 GetRuleGroupResponse
if (lockToken != other.lockToken) return false
if (ruleGroup != other.ruleGroup) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.wafv2.model.GetRuleGroupResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* 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
/**
*
*/
public var ruleGroup: aws.sdk.kotlin.services.wafv2.model.RuleGroup? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.wafv2.model.GetRuleGroupResponse) : this() {
this.lockToken = x.lockToken
this.ruleGroup = x.ruleGroup
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.wafv2.model.GetRuleGroupResponse = GetRuleGroupResponse(this)
/**
* construct an [aws.sdk.kotlin.services.wafv2.model.RuleGroup] inside the given [block]
*/
public fun ruleGroup(block: aws.sdk.kotlin.services.wafv2.model.RuleGroup.Builder.() -> kotlin.Unit) {
this.ruleGroup = aws.sdk.kotlin.services.wafv2.model.RuleGroup.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy