commonMain.aws.sdk.kotlin.services.grafana.model.ConflictException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grafana-jvm Show documentation
Show all versions of grafana-jvm Show documentation
The AWS SDK for Kotlin client for grafana
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.grafana.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.ServiceErrorMetadata
/**
* A resource was in an inconsistent state during an update or a deletion.
*/
public class ConflictException private constructor(builder: Builder) : GrafanaException(builder.message) {
/**
* The ID of the resource that is associated with the error.
*/
public val resourceId: kotlin.String = requireNotNull(builder.resourceId) { "A non-null value must be provided for resourceId" }
/**
* The type of the resource that is associated with the error.
*/
public val resourceType: kotlin.String = requireNotNull(builder.resourceType) { "A non-null value must be provided for resourceType" }
init {
sdkErrorMetadata.attributes[ServiceErrorMetadata.ErrorType] = ErrorType.Client
}
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.grafana.model.ConflictException = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ConflictException(")
append("message=$message,")
append("resourceId=$resourceId,")
append("resourceType=$resourceType")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = message.hashCode()
result = 31 * result + (resourceId.hashCode())
result = 31 * result + (resourceType.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 ConflictException
if (message != other.message) return false
if (resourceId != other.resourceId) return false
if (resourceType != other.resourceType) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.grafana.model.ConflictException = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A description of the error.
*/
public var message: kotlin.String? = null
/**
* The ID of the resource that is associated with the error.
*/
public var resourceId: kotlin.String? = null
/**
* The type of the resource that is associated with the error.
*/
public var resourceType: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.grafana.model.ConflictException) : this() {
this.message = x.message
this.resourceId = x.resourceId
this.resourceType = x.resourceType
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.grafana.model.ConflictException = ConflictException(this)
internal fun correctErrors(): Builder {
if (message == null) message = ""
if (resourceId == null) resourceId = ""
if (resourceType == null) resourceType = ""
return this
}
}
}