commonMain.aws.sdk.kotlin.services.codegurusecurity.model.BatchGetFindingsResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codegurusecurity-jvm Show documentation
Show all versions of codegurusecurity-jvm Show documentation
The AWS SDK for Kotlin client for CodeGuru Security
// 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
}
}
}