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

commonMain.aws.sdk.kotlin.services.codegurusecurity.model.BatchGetFindingsResponse.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.codegurusecurity.model

import aws.smithy.kotlin.runtime.SdkDsl

public class BatchGetFindingsResponse private constructor(builder: Builder) {
    /**
     * A list of errors for individual findings which were not fetched. Each BatchGetFindingsError contains the `scanName`, `findingId`, `errorCode` and error `message`.
     */
    public val failedFindings: List = requireNotNull(builder.failedFindings) { "A non-null value must be provided for failedFindings" }
    /**
     * A list of all findings which were successfully fetched.
     */
    public val findings: List = requireNotNull(builder.findings) { "A non-null value must be provided for findings" }

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

    override fun toString(): kotlin.String = buildString {
        append("BatchGetFindingsResponse(")
        append("failedFindings=$failedFindings,")
        append("findings=$findings")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = failedFindings.hashCode()
        result = 31 * result + (findings.hashCode())
        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 BatchGetFindingsResponse

        if (failedFindings != other.failedFindings) return false
        if (findings != other.findings) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * A list of errors for individual findings which were not fetched. Each BatchGetFindingsError contains the `scanName`, `findingId`, `errorCode` and error `message`.
         */
        public var failedFindings: List? = null
        /**
         * A list of all findings which were successfully fetched.
         */
        public var findings: List? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.codegurusecurity.model.BatchGetFindingsResponse) : this() {
            this.failedFindings = x.failedFindings
            this.findings = x.findings
        }

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

        internal fun correctErrors(): Builder {
            if (failedFindings == null) failedFindings = emptyList()
            if (findings == null) findings = emptyList()
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy