All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.grafana.model.RoleValues.kt Maven / Gradle / Ivy

There is a newer version: 1.3.35
Show newest version
// 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
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy