All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.storage.kotlin.outputs.AccountQueuePropertiesLogging.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.14.0.0
Show newest version
@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