![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.storage.kotlin.outputs.GetAccountSASPermissions.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.outputs
import kotlin.Boolean
import kotlin.Suppress
/**
*
* @property add Should Add permissions be enabled for this SAS?
* @property create Should Create permissions be enabled for this SAS?
* @property delete Should Delete permissions be enabled for this SAS?
* @property filter Should Filter by Index Tags permissions be enabled for this SAS?
* Refer to the [SAS creation reference from Azure](https://docs.microsoft.com/rest/api/storageservices/constructing-an-account-sas)
* for additional details on the fields above.
* @property list Should List permissions be enabled for this SAS?
* @property process Should Process permissions be enabled for this SAS?
* @property read Should Read permissions be enabled for this SAS?
* @property tag Should Get / Set Index Tags permissions be enabled for this SAS?
* @property update Should Update permissions be enabled for this SAS?
* @property write Should Write permissions be enabled for this SAS?
*/
public data class GetAccountSASPermissions(
public val add: Boolean,
public val create: Boolean,
public val delete: Boolean,
public val filter: Boolean,
public val list: Boolean,
public val process: Boolean,
public val read: Boolean,
public val tag: Boolean,
public val update: Boolean,
public val write: Boolean,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.storage.outputs.GetAccountSASPermissions): GetAccountSASPermissions = GetAccountSASPermissions(
add = javaType.add(),
create = javaType.create(),
delete = javaType.delete(),
filter = javaType.filter(),
list = javaType.list(),
process = javaType.process(),
read = javaType.read(),
tag = javaType.tag(),
update = javaType.update(),
write = javaType.write(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy