
com.pulumi.azurenative.iotoperations.kotlin.outputs.SubscriberQueueLimitResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.iotoperations.kotlin.outputs
import kotlin.Double
import kotlin.String
import kotlin.Suppress
/**
* The settings of Subscriber Queue Limit.
* @property length The maximum length of the queue before messages start getting dropped.
* @property strategy The strategy to use for dropping messages from the queue.
*/
public data class SubscriberQueueLimitResponse(
public val length: Double? = null,
public val strategy: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.iotoperations.outputs.SubscriberQueueLimitResponse): SubscriberQueueLimitResponse = SubscriberQueueLimitResponse(
length = javaType.length().map({ args0 -> args0 }).orElse(null),
strategy = javaType.strategy().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy