
com.pulumi.azurenative.app.kotlin.outputs.DynamicPoolConfigurationResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.app.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
* Dynamic pool configuration.
* @property cooldownPeriodInSeconds The cooldown period of a session in seconds.
* @property executionType The execution type of the session pool.
*/
public data class DynamicPoolConfigurationResponse(
public val cooldownPeriodInSeconds: Int? = null,
public val executionType: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.app.outputs.DynamicPoolConfigurationResponse): DynamicPoolConfigurationResponse = DynamicPoolConfigurationResponse(
cooldownPeriodInSeconds = javaType.cooldownPeriodInSeconds().map({ args0 -> args0 }).orElse(null),
executionType = javaType.executionType().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy