com.pulumi.azure.storage.kotlin.outputs.TableAclAccessPolicy.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.storage.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property expiry The ISO8061 UTC time at which this Access Policy should be valid until.
* @property permissions The permissions which should associated with this Shared Identifier.
* @property start The ISO8061 UTC time at which this Access Policy should be valid from.
*/
public data class TableAclAccessPolicy(
public val expiry: String,
public val permissions: String,
public val start: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.storage.outputs.TableAclAccessPolicy): TableAclAccessPolicy = TableAclAccessPolicy(
expiry = javaType.expiry(),
permissions = javaType.permissions(),
start = javaType.start(),
)
}
}