com.pulumi.gcp.kms.kotlin.outputs.GetCryptoKeysResult.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.kms.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getCryptoKeys.
* @property filter
* @property id The provider-assigned unique ID for this managed resource.
* @property keyRing
* @property keys A list of all the retrieved keys from the provided key ring. This list is influenced by the provided filter argument.
*/
public data class GetCryptoKeysResult(
public val filter: String? = null,
public val id: String,
public val keyRing: String,
public val keys: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.kms.outputs.GetCryptoKeysResult): GetCryptoKeysResult = GetCryptoKeysResult(
filter = javaType.filter().map({ args0 -> args0 }).orElse(null),
id = javaType.id(),
keyRing = javaType.keyRing(),
keys = javaType.keys().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.kms.kotlin.outputs.GetCryptoKeysKey.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy