![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.storage.kotlin.inputs.ShareAclArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.storage.kotlin.inputs
import com.pulumi.azure.storage.inputs.ShareAclArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property accessPolicies An `access_policy` block as defined below.
* @property id The ID which should be used for this Shared Identifier.
*/
public data class ShareAclArgs(
public val accessPolicies: Output>? = null,
public val id: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.storage.inputs.ShareAclArgs =
com.pulumi.azure.storage.inputs.ShareAclArgs.builder()
.accessPolicies(
accessPolicies?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.id(id.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ShareAclArgs].
*/
@PulumiTagMarker
public class ShareAclArgsBuilder internal constructor() {
private var accessPolicies: Output>? = null
private var id: Output? = null
/**
* @param value An `access_policy` block as defined below.
*/
@JvmName("dqpnpycibtqhusrq")
public suspend fun accessPolicies(`value`: Output>) {
this.accessPolicies = value
}
@JvmName("edikmuualhkhfaed")
public suspend fun accessPolicies(vararg values: Output) {
this.accessPolicies = Output.all(values.asList())
}
/**
* @param values An `access_policy` block as defined below.
*/
@JvmName("polceyhngverbmtj")
public suspend fun accessPolicies(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy