All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.waf.model.UpdateRuleRequest.kt Maven / Gradle / Ivy

There is a newer version: 1.3.76
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.waf.model

import aws.smithy.kotlin.runtime.SdkDsl

public class UpdateRuleRequest private constructor(builder: Builder) {
    /**
     * The value returned by the most recent call to GetChangeToken.
     */
    public val changeToken: kotlin.String? = builder.changeToken
    /**
     * The `RuleId` of the `Rule` that you want to update. `RuleId` is returned by `CreateRule` and by ListRules.
     */
    public val ruleId: kotlin.String? = builder.ruleId
    /**
     * An array of `RuleUpdate` objects that you want to insert into or delete from a Rule. For more information, see the applicable data types:
     * + RuleUpdate: Contains `Action` and `Predicate`
     * + Predicate: Contains `DataId`, `Negated`, and `Type`
     * + FieldToMatch: Contains `Data` and `Type`
     */
    public val updates: List? = builder.updates

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.waf.model.UpdateRuleRequest = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("UpdateRuleRequest(")
        append("changeToken=$changeToken,")
        append("ruleId=$ruleId,")
        append("updates=$updates")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = changeToken?.hashCode() ?: 0
        result = 31 * result + (ruleId?.hashCode() ?: 0)
        result = 31 * result + (updates?.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 UpdateRuleRequest

        if (changeToken != other.changeToken) return false
        if (ruleId != other.ruleId) return false
        if (updates != other.updates) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.waf.model.UpdateRuleRequest = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The value returned by the most recent call to GetChangeToken.
         */
        public var changeToken: kotlin.String? = null
        /**
         * The `RuleId` of the `Rule` that you want to update. `RuleId` is returned by `CreateRule` and by ListRules.
         */
        public var ruleId: kotlin.String? = null
        /**
         * An array of `RuleUpdate` objects that you want to insert into or delete from a Rule. For more information, see the applicable data types:
         * + RuleUpdate: Contains `Action` and `Predicate`
         * + Predicate: Contains `DataId`, `Negated`, and `Type`
         * + FieldToMatch: Contains `Data` and `Type`
         */
        public var updates: List? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.waf.model.UpdateRuleRequest) : this() {
            this.changeToken = x.changeToken
            this.ruleId = x.ruleId
            this.updates = x.updates
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.waf.model.UpdateRuleRequest = UpdateRuleRequest(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy