commonMain.aws.sdk.kotlin.services.codebuild.model.BatchGetReportGroupsResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codebuild-jvm Show documentation
Show all versions of codebuild-jvm Show documentation
The AWS SDK for Kotlin client for CodeBuild
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.codebuild.model
import aws.smithy.kotlin.runtime.SdkDsl
public class BatchGetReportGroupsResponse private constructor(builder: Builder) {
/**
* The array of report groups returned by `BatchGetReportGroups`.
*/
public val reportGroups: List? = builder.reportGroups
/**
* An array of ARNs passed to `BatchGetReportGroups` that are not associated with a `ReportGroup`.
*/
public val reportGroupsNotFound: List? = builder.reportGroupsNotFound
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.codebuild.model.BatchGetReportGroupsResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("BatchGetReportGroupsResponse(")
append("reportGroups=$reportGroups,")
append("reportGroupsNotFound=$reportGroupsNotFound")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = reportGroups?.hashCode() ?: 0
result = 31 * result + (reportGroupsNotFound?.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 BatchGetReportGroupsResponse
if (reportGroups != other.reportGroups) return false
if (reportGroupsNotFound != other.reportGroupsNotFound) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.codebuild.model.BatchGetReportGroupsResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The array of report groups returned by `BatchGetReportGroups`.
*/
public var reportGroups: List? = null
/**
* An array of ARNs passed to `BatchGetReportGroups` that are not associated with a `ReportGroup`.
*/
public var reportGroupsNotFound: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.codebuild.model.BatchGetReportGroupsResponse) : this() {
this.reportGroups = x.reportGroups
this.reportGroupsNotFound = x.reportGroupsNotFound
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.codebuild.model.BatchGetReportGroupsResponse = BatchGetReportGroupsResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}