com.pulumi.azure.redis.kotlin.outputs.EnterpriseDatabaseModule.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.redis.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property args Configuration options for the module (e.g. `ERROR_RATE 0.00 INITIAL_SIZE 400`). Changing this forces a new resource to be created. Defaults to `""`.
* @property name The name which should be used for this module. Possible values are `RedisBloom`, `RedisTimeSeries`, `RediSearch` and `RedisJSON`. Changing this forces a new Redis Enterprise Database to be created.
* @property version
*/
public data class EnterpriseDatabaseModule(
public val args: String? = null,
public val name: String,
public val version: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.redis.outputs.EnterpriseDatabaseModule):
EnterpriseDatabaseModule = EnterpriseDatabaseModule(
args = javaType.args().map({ args0 -> args0 }).orElse(null),
name = javaType.name(),
version = javaType.version().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy