commonMain.aws.sdk.kotlin.services.grafana.model.RoleValues.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
/**
* This structure defines which groups defined in the SAML assertion attribute are to be mapped to the Grafana `Admin` and `Editor` roles in the workspace. SAML authenticated users not part of `Admin` or `Editor` role groups have `Viewer` permission over the workspace.
*/
public class RoleValues private constructor(builder: Builder) {
/**
* A list of groups from the SAML assertion attribute to grant the Grafana `Admin` role to.
*/
public val admin: List? = builder.admin
/**
* A list of groups from the SAML assertion attribute to grant the Grafana `Editor` role to.
*/
public val editor: List? = builder.editor
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.grafana.model.RoleValues = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("RoleValues(")
append("admin=*** Sensitive Data Redacted ***,")
append("editor=*** Sensitive Data Redacted ***")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = admin?.hashCode() ?: 0
result = 31 * result + (editor?.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 RoleValues
if (admin != other.admin) return false
if (editor != other.editor) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.grafana.model.RoleValues = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A list of groups from the SAML assertion attribute to grant the Grafana `Admin` role to.
*/
public var admin: List? = null
/**
* A list of groups from the SAML assertion attribute to grant the Grafana `Editor` role to.
*/
public var editor: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.grafana.model.RoleValues) : this() {
this.admin = x.admin
this.editor = x.editor
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.grafana.model.RoleValues = RoleValues(this)
internal fun correctErrors(): Builder {
return this
}
}
}