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

commonMain.aws.sdk.kotlin.services.devopsguru.model.InsightHealth.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.devopsguru.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Information about the number of open reactive and proactive insights that can be used to gauge the health of your system.
 */
public class InsightHealth private constructor(builder: Builder) {
    /**
     * The Meant Time to Recover (MTTR) for the insight.
     */
    public val meanTimeToRecoverInMilliseconds: kotlin.Long? = builder.meanTimeToRecoverInMilliseconds
    /**
     * The number of open proactive insights.
     */
    public val openProactiveInsights: kotlin.Int = builder.openProactiveInsights
    /**
     * The number of open reactive insights.
     */
    public val openReactiveInsights: kotlin.Int = builder.openReactiveInsights

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

    override fun toString(): kotlin.String = buildString {
        append("InsightHealth(")
        append("meanTimeToRecoverInMilliseconds=$meanTimeToRecoverInMilliseconds,")
        append("openProactiveInsights=$openProactiveInsights,")
        append("openReactiveInsights=$openReactiveInsights")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = meanTimeToRecoverInMilliseconds?.hashCode() ?: 0
        result = 31 * result + (openProactiveInsights)
        result = 31 * result + (openReactiveInsights)
        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 InsightHealth

        if (meanTimeToRecoverInMilliseconds != other.meanTimeToRecoverInMilliseconds) return false
        if (openProactiveInsights != other.openProactiveInsights) return false
        if (openReactiveInsights != other.openReactiveInsights) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The Meant Time to Recover (MTTR) for the insight.
         */
        public var meanTimeToRecoverInMilliseconds: kotlin.Long? = null
        /**
         * The number of open proactive insights.
         */
        public var openProactiveInsights: kotlin.Int = 0
        /**
         * The number of open reactive insights.
         */
        public var openReactiveInsights: kotlin.Int = 0

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.devopsguru.model.InsightHealth) : this() {
            this.meanTimeToRecoverInMilliseconds = x.meanTimeToRecoverInMilliseconds
            this.openProactiveInsights = x.openProactiveInsights
            this.openReactiveInsights = x.openReactiveInsights
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy