commonMain.aws.sdk.kotlin.services.grafana.model.DeleteWorkspaceServiceAccountTokenRequest.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 DeleteWorkspaceServiceAccountTokenRequest private constructor(builder: Builder) {
/**
* The ID of the service account from which to delete the token.
*/
public val serviceAccountId: kotlin.String? = builder.serviceAccountId
/**
* The ID of the token to delete.
*/
public val tokenId: kotlin.String? = builder.tokenId
/**
* The ID of the workspace from which to delete the token.
*/
public val workspaceId: kotlin.String? = builder.workspaceId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.grafana.model.DeleteWorkspaceServiceAccountTokenRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteWorkspaceServiceAccountTokenRequest(")
append("serviceAccountId=$serviceAccountId,")
append("tokenId=$tokenId,")
append("workspaceId=$workspaceId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = serviceAccountId?.hashCode() ?: 0
result = 31 * result + (tokenId?.hashCode() ?: 0)
result = 31 * result + (workspaceId?.hashCode() ?: 0)
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 DeleteWorkspaceServiceAccountTokenRequest
if (serviceAccountId != other.serviceAccountId) return false
if (tokenId != other.tokenId) return false
if (workspaceId != other.workspaceId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.grafana.model.DeleteWorkspaceServiceAccountTokenRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ID of the service account from which to delete the token.
*/
public var serviceAccountId: kotlin.String? = null
/**
* The ID of the token to delete.
*/
public var tokenId: kotlin.String? = null
/**
* The ID of the workspace from which to delete the token.
*/
public var workspaceId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.grafana.model.DeleteWorkspaceServiceAccountTokenRequest) : this() {
this.serviceAccountId = x.serviceAccountId
this.tokenId = x.tokenId
this.workspaceId = x.workspaceId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.grafana.model.DeleteWorkspaceServiceAccountTokenRequest = DeleteWorkspaceServiceAccountTokenRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}