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

commonMain.aws.sdk.kotlin.services.grafana.model.AssociateLicenseRequest.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.grafana.model

import aws.smithy.kotlin.runtime.SdkDsl

public class AssociateLicenseRequest private constructor(builder: Builder) {
    /**
     * A token from Grafana Labs that ties your Amazon Web Services account with a Grafana Labs account. For more information, see [Link your account with Grafana Labs](https://docs.aws.amazon.com/grafana/latest/userguide/upgrade-to-Grafana-Enterprise.html#AMG-workspace-register-enterprise).
     */
    public val grafanaToken: kotlin.String? = builder.grafanaToken
    /**
     * The type of license to associate with the workspace.
     *
     * Amazon Managed Grafana workspaces no longer support Grafana Enterprise free trials.
     */
    public val licenseType: aws.sdk.kotlin.services.grafana.model.LicenseType = requireNotNull(builder.licenseType) { "A non-null value must be provided for licenseType" }
    /**
     * The ID of the workspace to associate the license with.
     */
    public val workspaceId: kotlin.String = requireNotNull(builder.workspaceId) { "A non-null value must be provided for workspaceId" }

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.grafana.model.AssociateLicenseRequest = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("AssociateLicenseRequest(")
        append("grafanaToken=$grafanaToken,")
        append("licenseType=$licenseType,")
        append("workspaceId=$workspaceId")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = grafanaToken?.hashCode() ?: 0
        result = 31 * result + (licenseType.hashCode())
        result = 31 * result + (workspaceId.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 AssociateLicenseRequest

        if (grafanaToken != other.grafanaToken) return false
        if (licenseType != other.licenseType) return false
        if (workspaceId != other.workspaceId) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.grafana.model.AssociateLicenseRequest = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * A token from Grafana Labs that ties your Amazon Web Services account with a Grafana Labs account. For more information, see [Link your account with Grafana Labs](https://docs.aws.amazon.com/grafana/latest/userguide/upgrade-to-Grafana-Enterprise.html#AMG-workspace-register-enterprise).
         */
        public var grafanaToken: kotlin.String? = null
        /**
         * The type of license to associate with the workspace.
         *
         * Amazon Managed Grafana workspaces no longer support Grafana Enterprise free trials.
         */
        public var licenseType: aws.sdk.kotlin.services.grafana.model.LicenseType? = null
        /**
         * The ID of the workspace to associate the license with.
         */
        public var workspaceId: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.grafana.model.AssociateLicenseRequest) : this() {
            this.grafanaToken = x.grafanaToken
            this.licenseType = x.licenseType
            this.workspaceId = x.workspaceId
        }

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

        internal fun correctErrors(): Builder {
            if (licenseType == null) licenseType = LicenseType.SdkUnknown("no value provided")
            if (workspaceId == null) workspaceId = ""
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy