All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.dns.kotlin.outputs.GetKeysResult.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.12.0.0
Show newest version
@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