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

com.pulumi.azure.storage.kotlin.outputs.GetTableAcl.kt Maven / Gradle / Ivy

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

package com.pulumi.azure.storage.kotlin.outputs

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

/**
 *
 * @property accessPolicies
 * @property id The ID of the Storage Table.
 */
public data class GetTableAcl(
    public val accessPolicies: List,
    public val id: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.storage.outputs.GetTableAcl): GetTableAcl =
            GetTableAcl(
                accessPolicies = javaType.accessPolicies().map({ args0 ->
                    args0.let({ args0 ->
                        com.pulumi.azure.storage.kotlin.outputs.GetTableAclAccessPolicy.Companion.toKotlin(args0)
                    })
                }),
                id = javaType.id(),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy