
commonMain.aws.sdk.kotlin.services.ssm.model.OpsEntity.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.ssm.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* The result of the query.
*/
public class OpsEntity private constructor(builder: Builder) {
/**
* The data returned by the query.
*/
public val data: Map? = builder.data
/**
* The query ID.
*/
public val id: kotlin.String? = builder.id
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.ssm.model.OpsEntity = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("OpsEntity(")
append("data=$data,")
append("id=$id")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = data?.hashCode() ?: 0
result = 31 * result + (id?.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 OpsEntity
if (data != other.data) return false
if (id != other.id) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.ssm.model.OpsEntity = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The data returned by the query.
*/
public var data: Map? = null
/**
* The query ID.
*/
public var id: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.ssm.model.OpsEntity) : this() {
this.data = x.data
this.id = x.id
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.ssm.model.OpsEntity = OpsEntity(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy