com.pulumi.gcp.dns.kotlin.outputs.GetKeysResult.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.dns.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getKeys.
* @property id The provider-assigned unique ID for this managed resource.
* @property keySigningKeys A list of Key-signing key (KSK) records. Structure is documented below. Additionally, the DS record is provided:
* @property managedZone
* @property project
* @property zoneSigningKeys A list of Zone-signing key (ZSK) records. Structure is documented below.
*/
public data class GetKeysResult(
public val id: String,
public val keySigningKeys: List,
public val managedZone: String,
public val project: String,
public val zoneSigningKeys: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.dns.outputs.GetKeysResult): GetKeysResult =
GetKeysResult(
id = javaType.id(),
keySigningKeys = javaType.keySigningKeys().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.dns.kotlin.outputs.GetKeysKeySigningKey.Companion.toKotlin(args0)
})
}),
managedZone = javaType.managedZone(),
project = javaType.project(),
zoneSigningKeys = javaType.zoneSigningKeys().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.dns.kotlin.outputs.GetKeysZoneSigningKey.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy