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

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

There is a newer version: 1.4.2
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 UpdateRuleGroupRequest private constructor(builder: Builder) {
    /**
     * The value returned by the most recent call to GetChangeToken.
     */
    public val changeToken: kotlin.String? = builder.changeToken
    /**
     * The `RuleGroupId` of the RuleGroup that you want to update. `RuleGroupId` is returned by CreateRuleGroup and by ListRuleGroups.
     */
    public val ruleGroupId: kotlin.String? = builder.ruleGroupId
    /**
     * An array of `RuleGroupUpdate` objects that you want to insert into or delete from a RuleGroup.
     *
     * You can only insert `REGULAR` rules into a rule group.
     *
     * `ActivatedRule|OverrideAction` applies only when updating or adding a `RuleGroup` to a `WebACL`. In this case you do not use `ActivatedRule|Action`. For all other update requests, `ActivatedRule|Action` is used instead of `ActivatedRule|OverrideAction`.
     */
    public val updates: List? = builder.updates

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

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

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

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

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.waf.model.UpdateRuleGroupRequest = 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 `RuleGroupId` of the RuleGroup that you want to update. `RuleGroupId` is returned by CreateRuleGroup and by ListRuleGroups.
         */
        public var ruleGroupId: kotlin.String? = null
        /**
         * An array of `RuleGroupUpdate` objects that you want to insert into or delete from a RuleGroup.
         *
         * You can only insert `REGULAR` rules into a rule group.
         *
         * `ActivatedRule|OverrideAction` applies only when updating or adding a `RuleGroup` to a `WebACL`. In this case you do not use `ActivatedRule|Action`. For all other update requests, `ActivatedRule|Action` is used instead of `ActivatedRule|OverrideAction`.
         */
        public var updates: List? = null

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy