commonMain.aws.sdk.kotlin.services.grafana.model.SamlAuthentication.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
/**
* A structure containing information about how this workspace works with SAML.
*/
public class SamlAuthentication private constructor(builder: Builder) {
/**
* A structure containing details about how this workspace works with SAML.
*/
public val configuration: aws.sdk.kotlin.services.grafana.model.SamlConfiguration? = builder.configuration
/**
* Specifies whether the workspace's SAML configuration is complete.
*/
public val status: aws.sdk.kotlin.services.grafana.model.SamlConfigurationStatus = requireNotNull(builder.status) { "A non-null value must be provided for status" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.grafana.model.SamlAuthentication = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("SamlAuthentication(")
append("configuration=$configuration,")
append("status=$status")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = configuration?.hashCode() ?: 0
result = 31 * result + (status.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 SamlAuthentication
if (configuration != other.configuration) return false
if (status != other.status) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.grafana.model.SamlAuthentication = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A structure containing details about how this workspace works with SAML.
*/
public var configuration: aws.sdk.kotlin.services.grafana.model.SamlConfiguration? = null
/**
* Specifies whether the workspace's SAML configuration is complete.
*/
public var status: aws.sdk.kotlin.services.grafana.model.SamlConfigurationStatus? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.grafana.model.SamlAuthentication) : this() {
this.configuration = x.configuration
this.status = x.status
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.grafana.model.SamlAuthentication = SamlAuthentication(this)
/**
* construct an [aws.sdk.kotlin.services.grafana.model.SamlConfiguration] inside the given [block]
*/
public fun configuration(block: aws.sdk.kotlin.services.grafana.model.SamlConfiguration.Builder.() -> kotlin.Unit) {
this.configuration = aws.sdk.kotlin.services.grafana.model.SamlConfiguration.invoke(block)
}
internal fun correctErrors(): Builder {
if (status == null) status = SamlConfigurationStatus.SdkUnknown("no value provided")
return this
}
}
}