All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.deadline.model.ServiceQuotaExceededException.kt Maven / Gradle / Ivy

There is a newer version: 1.3.34
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.deadline.model

import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.ServiceErrorMetadata

/**
 * You exceeded your service quota. Service quotas, also referred to as limits, are the maximum number of service resources or operations for your Amazon Web Services account.
 */
public class ServiceQuotaExceededException private constructor(builder: Builder) : DeadlineException(builder.message) {

    /**
     * Information about the resources in use when the exception was thrown.
     */
    public val context: Map? = builder.context
    /**
     * Identifies the quota that has been exceeded.
     */
    public val quotaCode: kotlin.String = requireNotNull(builder.quotaCode) { "A non-null value must be provided for quotaCode" }
    /**
     * A string that describes the reason the quota was exceeded.
     */
    public val reason: aws.sdk.kotlin.services.deadline.model.ServiceQuotaExceededExceptionReason = requireNotNull(builder.reason) { "A non-null value must be provided for reason" }
    /**
     * The identifier of the affected resource.
     */
    public val resourceId: kotlin.String? = builder.resourceId
    /**
     * The type of the affected resource
     */
    public val resourceType: kotlin.String = requireNotNull(builder.resourceType) { "A non-null value must be provided for resourceType" }
    /**
     * Identifies the service that exceeded the quota.
     */
    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.deadline.model.ServiceQuotaExceededException = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("ServiceQuotaExceededException(")
        append("context=$context,")
        append("message=$message,")
        append("quotaCode=$quotaCode,")
        append("reason=$reason,")
        append("resourceId=$resourceId,")
        append("resourceType=$resourceType,")
        append("serviceCode=$serviceCode")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = context?.hashCode() ?: 0
        result = 31 * result + (message.hashCode())
        result = 31 * result + (quotaCode.hashCode())
        result = 31 * result + (reason.hashCode())
        result = 31 * result + (resourceId?.hashCode() ?: 0)
        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 (context != other.context) return false
        if (message != other.message) return false
        if (quotaCode != other.quotaCode) return false
        if (reason != other.reason) 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.deadline.model.ServiceQuotaExceededException = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * Information about the resources in use when the exception was thrown.
         */
        public var context: Map? = null
        public var message: kotlin.String? = null
        /**
         * Identifies the quota that has been exceeded.
         */
        public var quotaCode: kotlin.String? = null
        /**
         * A string that describes the reason the quota was exceeded.
         */
        public var reason: aws.sdk.kotlin.services.deadline.model.ServiceQuotaExceededExceptionReason? = null
        /**
         * The identifier of the affected resource.
         */
        public var resourceId: kotlin.String? = null
        /**
         * The type of the affected resource
         */
        public var resourceType: kotlin.String? = null
        /**
         * Identifies the service that exceeded the quota.
         */
        public var serviceCode: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.deadline.model.ServiceQuotaExceededException) : this() {
            this.context = x.context
            this.message = x.message
            this.quotaCode = x.quotaCode
            this.reason = x.reason
            this.resourceId = x.resourceId
            this.resourceType = x.resourceType
            this.serviceCode = x.serviceCode
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.deadline.model.ServiceQuotaExceededException = ServiceQuotaExceededException(this)

        internal fun correctErrors(): Builder {
            if (message == null) message = ""
            if (quotaCode == null) quotaCode = ""
            if (reason == null) reason = ServiceQuotaExceededExceptionReason.SdkUnknown("no value provided")
            if (resourceType == null) resourceType = ""
            if (serviceCode == null) serviceCode = ""
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy