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

commonMain.aws.sdk.kotlin.services.autoscalingplans.model.DescribeScalingPlanResourcesRequest.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.autoscalingplans.model



public class DescribeScalingPlanResourcesRequest private constructor(builder: Builder) {
    /**
     * The maximum number of scalable resources to return. The value must be between 1 and 50. The default value is 50.
     */
    public val maxResults: kotlin.Int? = builder.maxResults
    /**
     * The token for the next set of results.
     */
    public val nextToken: kotlin.String? = builder.nextToken
    /**
     * The name of the scaling plan.
     */
    public val scalingPlanName: kotlin.String? = builder.scalingPlanName
    /**
     * The version number of the scaling plan. Currently, the only valid value is `1`.
     */
    public val scalingPlanVersion: kotlin.Long? = builder.scalingPlanVersion

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

    override fun toString(): kotlin.String = buildString {
        append("DescribeScalingPlanResourcesRequest(")
        append("maxResults=$maxResults,")
        append("nextToken=$nextToken,")
        append("scalingPlanName=$scalingPlanName,")
        append("scalingPlanVersion=$scalingPlanVersion")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = maxResults ?: 0
        result = 31 * result + (nextToken?.hashCode() ?: 0)
        result = 31 * result + (scalingPlanName?.hashCode() ?: 0)
        result = 31 * result + (scalingPlanVersion?.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 DescribeScalingPlanResourcesRequest

        if (maxResults != other.maxResults) return false
        if (nextToken != other.nextToken) return false
        if (scalingPlanName != other.scalingPlanName) return false
        if (scalingPlanVersion != other.scalingPlanVersion) return false

        return true
    }

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

    public class Builder {
        /**
         * The maximum number of scalable resources to return. The value must be between 1 and 50. The default value is 50.
         */
        public var maxResults: kotlin.Int? = null
        /**
         * The token for the next set of results.
         */
        public var nextToken: kotlin.String? = null
        /**
         * The name of the scaling plan.
         */
        public var scalingPlanName: kotlin.String? = null
        /**
         * The version number of the scaling plan. Currently, the only valid value is `1`.
         */
        public var scalingPlanVersion: kotlin.Long? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.autoscalingplans.model.DescribeScalingPlanResourcesRequest) : this() {
            this.maxResults = x.maxResults
            this.nextToken = x.nextToken
            this.scalingPlanName = x.scalingPlanName
            this.scalingPlanVersion = x.scalingPlanVersion
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.autoscalingplans.model.DescribeScalingPlanResourcesRequest = DescribeScalingPlanResourcesRequest(this)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy