![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.cloudflare.kotlin.outputs.GetZonesResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-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.cloudflare.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getZones.
* @property filter One or more values used to look up zone records. If more than one value is given all values must match in order to be included.
* @property id The provider-assigned unique ID for this managed resource.
* @property zones A list of zone objects.
*/
public data class GetZonesResult(
public val filter: GetZonesFilter,
public val id: String,
public val zones: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.GetZonesResult): GetZonesResult =
GetZonesResult(
filter = javaType.filter().let({ args0 ->
com.pulumi.cloudflare.kotlin.outputs.GetZonesFilter.Companion.toKotlin(args0)
}),
id = javaType.id(),
zones = javaType.zones().map({ args0 ->
args0.let({ args0 ->
com.pulumi.cloudflare.kotlin.outputs.GetZonesZone.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy