commonMain.aws.sdk.kotlin.services.grafana.model.DisassociateLicenseRequest.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
public class DisassociateLicenseRequest private constructor(builder: Builder) {
/**
* The type of license to remove from the workspace.
*/
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 remove the Grafana Enterprise license from.
*/
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.DisassociateLicenseRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DisassociateLicenseRequest(")
append("licenseType=$licenseType,")
append("workspaceId=$workspaceId")
append(")")
}
override fun hashCode(): kotlin.Int {
var 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 DisassociateLicenseRequest
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.DisassociateLicenseRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The type of license to remove from the workspace.
*/
public var licenseType: aws.sdk.kotlin.services.grafana.model.LicenseType? = null
/**
* The ID of the workspace to remove the Grafana Enterprise license from.
*/
public var workspaceId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.grafana.model.DisassociateLicenseRequest) : this() {
this.licenseType = x.licenseType
this.workspaceId = x.workspaceId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.grafana.model.DisassociateLicenseRequest = DisassociateLicenseRequest(this)
internal fun correctErrors(): Builder {
if (licenseType == null) licenseType = LicenseType.SdkUnknown("no value provided")
if (workspaceId == null) workspaceId = ""
return this
}
}
}