commonMain.aws.sdk.kotlin.services.grafana.model.CreateWorkspaceServiceAccountTokenResponse.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 CreateWorkspaceServiceAccountTokenResponse private constructor(builder: Builder) {
/**
* The ID of the service account where the token was created.
*/
public val serviceAccountId: kotlin.String = requireNotNull(builder.serviceAccountId) { "A non-null value must be provided for serviceAccountId" }
/**
* Information about the created token, including the key. Be sure to store the key securely.
*/
public val serviceAccountToken: aws.sdk.kotlin.services.grafana.model.ServiceAccountTokenSummaryWithKey? = builder.serviceAccountToken
/**
* The ID of the workspace where the token was created.
*/
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.CreateWorkspaceServiceAccountTokenResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateWorkspaceServiceAccountTokenResponse(")
append("serviceAccountId=$serviceAccountId,")
append("serviceAccountToken=$serviceAccountToken,")
append("workspaceId=$workspaceId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = serviceAccountId.hashCode()
result = 31 * result + (serviceAccountToken?.hashCode() ?: 0)
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 CreateWorkspaceServiceAccountTokenResponse
if (serviceAccountId != other.serviceAccountId) return false
if (serviceAccountToken != other.serviceAccountToken) return false
if (workspaceId != other.workspaceId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.grafana.model.CreateWorkspaceServiceAccountTokenResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ID of the service account where the token was created.
*/
public var serviceAccountId: kotlin.String? = null
/**
* Information about the created token, including the key. Be sure to store the key securely.
*/
public var serviceAccountToken: aws.sdk.kotlin.services.grafana.model.ServiceAccountTokenSummaryWithKey? = null
/**
* The ID of the workspace where the token was created.
*/
public var workspaceId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.grafana.model.CreateWorkspaceServiceAccountTokenResponse) : this() {
this.serviceAccountId = x.serviceAccountId
this.serviceAccountToken = x.serviceAccountToken
this.workspaceId = x.workspaceId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.grafana.model.CreateWorkspaceServiceAccountTokenResponse = CreateWorkspaceServiceAccountTokenResponse(this)
/**
* construct an [aws.sdk.kotlin.services.grafana.model.ServiceAccountTokenSummaryWithKey] inside the given [block]
*/
public fun serviceAccountToken(block: aws.sdk.kotlin.services.grafana.model.ServiceAccountTokenSummaryWithKey.Builder.() -> kotlin.Unit) {
this.serviceAccountToken = aws.sdk.kotlin.services.grafana.model.ServiceAccountTokenSummaryWithKey.invoke(block)
}
internal fun correctErrors(): Builder {
if (serviceAccountId == null) serviceAccountId = ""
if (workspaceId == null) workspaceId = ""
return this
}
}
}