com.pulumi.gcp.memcache.kotlin.outputs.InstanceMemcacheParameters.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.memcache.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
*
* @property id (Output)
* This is a unique ID associated with this set of parameters.
* @property params User-defined set of parameters to use in the memcache process.
*/
public data class InstanceMemcacheParameters(
public val id: String? = null,
public val params: Map? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.memcache.outputs.InstanceMemcacheParameters): InstanceMemcacheParameters = InstanceMemcacheParameters(
id = javaType.id().map({ args0 -> args0 }).orElse(null),
params = javaType.params().map({ args0 -> args0.key.to(args0.value) }).toMap(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy