com.pulumi.azure.storage.kotlin.outputs.GetShareAclAccessPolicy.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 time at which this Access Policy should be valid until, in [ISO8601](https://en.wikipedia.org/wiki/ISO_8601) format.
* @property permissions The permissions which should be associated with this Shared Identifier. Possible value is combination of `r` (read), `w` (write), `d` (delete), and `l` (list).
* @property start The time at which this Access Policy should be valid from, in [ISO8601](https://en.wikipedia.org/wiki/ISO_8601) format.
*/
public data class GetShareAclAccessPolicy(
public val expiry: String,
public val permissions: String,
public val start: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.storage.outputs.GetShareAclAccessPolicy): GetShareAclAccessPolicy = GetShareAclAccessPolicy(
expiry = javaType.expiry(),
permissions = javaType.permissions(),
start = javaType.start(),
)
}
}