com.pulumi.azure.storage.kotlin.outputs.AccountQueuePropertiesLogging.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.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property delete Indicates whether all delete requests should be logged.
* @property read Indicates whether all read requests should be logged.
* @property retentionPolicyDays Specifies the number of days that logs will be retained.
* @property version The version of storage analytics to configure.
* @property write Indicates whether all write requests should be logged.
*/
public data class AccountQueuePropertiesLogging(
public val delete: Boolean,
public val read: Boolean,
public val retentionPolicyDays: Int? = null,
public val version: String,
public val write: Boolean,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.storage.outputs.AccountQueuePropertiesLogging):
AccountQueuePropertiesLogging = AccountQueuePropertiesLogging(
delete = javaType.delete(),
read = javaType.read(),
retentionPolicyDays = javaType.retentionPolicyDays().map({ args0 -> args0 }).orElse(null),
version = javaType.version(),
write = javaType.write(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy