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

com.pulumi.azurenative.documentdb.kotlin.outputs.PermissionResponse.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.documentdb.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 * The set of data plane operations permitted through this Role Definition.
 * @property dataActions An array of data actions that are allowed.
 * @property notDataActions An array of data actions that are denied.
 */
public data class PermissionResponse(
    public val dataActions: List? = null,
    public val notDataActions: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.documentdb.outputs.PermissionResponse): PermissionResponse = PermissionResponse(
            dataActions = javaType.dataActions().map({ args0 -> args0 }),
            notDataActions = javaType.notDataActions().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy