commonMain.aws.sdk.kotlin.services.grafana.model.ServiceQuotaExceededException.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
/**
* The request would cause a service quota to be exceeded.
*/
public class ServiceQuotaExceededException private constructor(builder: Builder) : GrafanaException(builder.message) {
/**
* The ID of the service quota that was exceeded.
*/
public val quotaCode: kotlin.String = requireNotNull(builder.quotaCode) { "A non-null value must be provided for quotaCode" }
/**
* 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" }
/**
* The value of a parameter in the request caused an error.
*/
public val serviceCode: kotlin.String = requireNotNull(builder.serviceCode) { "A non-null value must be provided for serviceCode" }
init {
sdkErrorMetadata.attributes[ServiceErrorMetadata.ErrorType] = ErrorType.Client
}
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.grafana.model.ServiceQuotaExceededException = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ServiceQuotaExceededException(")
append("message=$message,")
append("quotaCode=$quotaCode,")
append("resourceId=$resourceId,")
append("resourceType=$resourceType,")
append("serviceCode=$serviceCode")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = message.hashCode()
result = 31 * result + (quotaCode.hashCode())
result = 31 * result + (resourceId.hashCode())
result = 31 * result + (resourceType.hashCode())
result = 31 * result + (serviceCode.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 ServiceQuotaExceededException
if (message != other.message) return false
if (quotaCode != other.quotaCode) return false
if (resourceId != other.resourceId) return false
if (resourceType != other.resourceType) return false
if (serviceCode != other.serviceCode) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.grafana.model.ServiceQuotaExceededException = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A description of the error.
*/
public var message: kotlin.String? = null
/**
* The ID of the service quota that was exceeded.
*/
public var quotaCode: 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
/**
* The value of a parameter in the request caused an error.
*/
public var serviceCode: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.grafana.model.ServiceQuotaExceededException) : this() {
this.message = x.message
this.quotaCode = x.quotaCode
this.resourceId = x.resourceId
this.resourceType = x.resourceType
this.serviceCode = x.serviceCode
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.grafana.model.ServiceQuotaExceededException = ServiceQuotaExceededException(this)
internal fun correctErrors(): Builder {
if (message == null) message = ""
if (quotaCode == null) quotaCode = ""
if (resourceId == null) resourceId = ""
if (resourceType == null) resourceType = ""
if (serviceCode == null) serviceCode = ""
return this
}
}
}