![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.storage.kotlin.inputs.AccountQueuePropertiesArgs.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.inputs
import com.pulumi.azure.storage.inputs.AccountQueuePropertiesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property corsRules A `cors_rule` block as defined above.
* @property hourMetrics A `hour_metrics` block as defined below.
* @property logging A `logging` block as defined below.
* @property minuteMetrics A `minute_metrics` block as defined below.
*/
public data class AccountQueuePropertiesArgs(
public val corsRules: Output>? = null,
public val hourMetrics: Output? = null,
public val logging: Output? = null,
public val minuteMetrics: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.storage.inputs.AccountQueuePropertiesArgs =
com.pulumi.azure.storage.inputs.AccountQueuePropertiesArgs.builder()
.corsRules(
corsRules?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.hourMetrics(hourMetrics?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.logging(logging?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.minuteMetrics(minuteMetrics?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [AccountQueuePropertiesArgs].
*/
@PulumiTagMarker
public class AccountQueuePropertiesArgsBuilder internal constructor() {
private var corsRules: Output>? = null
private var hourMetrics: Output? = null
private var logging: Output? = null
private var minuteMetrics: Output? = null
/**
* @param value A `cors_rule` block as defined above.
*/
@JvmName("jacqjshudgyncnso")
public suspend fun corsRules(`value`: Output>) {
this.corsRules = value
}
@JvmName("lctwvpyausllqjob")
public suspend fun corsRules(vararg values: Output) {
this.corsRules = Output.all(values.asList())
}
/**
* @param values A `cors_rule` block as defined above.
*/
@JvmName("yibivccknibjards")
public suspend fun corsRules(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy