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

commonMain.aws.sdk.kotlin.services.resiliencehub.model.ConfigRecommendation.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.resiliencehub.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Defines a recommendation configuration.
 */
public class ConfigRecommendation private constructor(builder: Builder) {
    /**
     * Name of the Application Component.
     */
    public val appComponentName: kotlin.String? = builder.appComponentName
    /**
     * The current compliance against the resiliency policy before applying the configuration change.
     */
    public val compliance: Map? = builder.compliance
    /**
     * The cost for the application.
     */
    public val cost: aws.sdk.kotlin.services.resiliencehub.model.Cost? = builder.cost
    /**
     * The optional description for an app.
     */
    public val description: kotlin.String? = builder.description
    /**
     * The architecture type.
     */
    public val haArchitecture: aws.sdk.kotlin.services.resiliencehub.model.HaArchitecture? = builder.haArchitecture
    /**
     * The name of the recommendation configuration.
     */
    public val name: kotlin.String = requireNotNull(builder.name) { "A non-null value must be provided for name" }
    /**
     * The type of optimization.
     */
    public val optimizationType: aws.sdk.kotlin.services.resiliencehub.model.ConfigRecommendationOptimizationType = requireNotNull(builder.optimizationType) { "A non-null value must be provided for optimizationType" }
    /**
     * The expected compliance against the resiliency policy after applying the configuration change.
     */
    public val recommendationCompliance: Map? = builder.recommendationCompliance
    /**
     * Reference identifier for the recommendation configuration.
     */
    public val referenceId: kotlin.String = requireNotNull(builder.referenceId) { "A non-null value must be provided for referenceId" }
    /**
     * List of the suggested configuration changes.
     */
    public val suggestedChanges: List? = builder.suggestedChanges

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

    override fun toString(): kotlin.String = buildString {
        append("ConfigRecommendation(")
        append("appComponentName=$appComponentName,")
        append("compliance=$compliance,")
        append("cost=$cost,")
        append("description=$description,")
        append("haArchitecture=$haArchitecture,")
        append("name=$name,")
        append("optimizationType=$optimizationType,")
        append("recommendationCompliance=$recommendationCompliance,")
        append("referenceId=$referenceId,")
        append("suggestedChanges=$suggestedChanges")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = appComponentName?.hashCode() ?: 0
        result = 31 * result + (compliance?.hashCode() ?: 0)
        result = 31 * result + (cost?.hashCode() ?: 0)
        result = 31 * result + (description?.hashCode() ?: 0)
        result = 31 * result + (haArchitecture?.hashCode() ?: 0)
        result = 31 * result + (name.hashCode())
        result = 31 * result + (optimizationType.hashCode())
        result = 31 * result + (recommendationCompliance?.hashCode() ?: 0)
        result = 31 * result + (referenceId.hashCode())
        result = 31 * result + (suggestedChanges?.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 ConfigRecommendation

        if (appComponentName != other.appComponentName) return false
        if (compliance != other.compliance) return false
        if (cost != other.cost) return false
        if (description != other.description) return false
        if (haArchitecture != other.haArchitecture) return false
        if (name != other.name) return false
        if (optimizationType != other.optimizationType) return false
        if (recommendationCompliance != other.recommendationCompliance) return false
        if (referenceId != other.referenceId) return false
        if (suggestedChanges != other.suggestedChanges) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * Name of the Application Component.
         */
        public var appComponentName: kotlin.String? = null
        /**
         * The current compliance against the resiliency policy before applying the configuration change.
         */
        public var compliance: Map? = null
        /**
         * The cost for the application.
         */
        public var cost: aws.sdk.kotlin.services.resiliencehub.model.Cost? = null
        /**
         * The optional description for an app.
         */
        public var description: kotlin.String? = null
        /**
         * The architecture type.
         */
        public var haArchitecture: aws.sdk.kotlin.services.resiliencehub.model.HaArchitecture? = null
        /**
         * The name of the recommendation configuration.
         */
        public var name: kotlin.String? = null
        /**
         * The type of optimization.
         */
        public var optimizationType: aws.sdk.kotlin.services.resiliencehub.model.ConfigRecommendationOptimizationType? = null
        /**
         * The expected compliance against the resiliency policy after applying the configuration change.
         */
        public var recommendationCompliance: Map? = null
        /**
         * Reference identifier for the recommendation configuration.
         */
        public var referenceId: kotlin.String? = null
        /**
         * List of the suggested configuration changes.
         */
        public var suggestedChanges: List? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.resiliencehub.model.ConfigRecommendation) : this() {
            this.appComponentName = x.appComponentName
            this.compliance = x.compliance
            this.cost = x.cost
            this.description = x.description
            this.haArchitecture = x.haArchitecture
            this.name = x.name
            this.optimizationType = x.optimizationType
            this.recommendationCompliance = x.recommendationCompliance
            this.referenceId = x.referenceId
            this.suggestedChanges = x.suggestedChanges
        }

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

        /**
         * construct an [aws.sdk.kotlin.services.resiliencehub.model.Cost] inside the given [block]
         */
        public fun cost(block: aws.sdk.kotlin.services.resiliencehub.model.Cost.Builder.() -> kotlin.Unit) {
            this.cost = aws.sdk.kotlin.services.resiliencehub.model.Cost.invoke(block)
        }

        internal fun correctErrors(): Builder {
            if (name == null) name = ""
            if (optimizationType == null) optimizationType = ConfigRecommendationOptimizationType.SdkUnknown("no value provided")
            if (referenceId == null) referenceId = ""
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy