com.pulumi.cloudflare.kotlin.outputs.GetAccountsResult.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 getAccounts.
* @property accounts
* @property id The provider-assigned unique ID for this managed resource.
* @property name The account name to target for the resource.
*/
public data class GetAccountsResult(
public val accounts: List,
public val id: String,
public val name: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.GetAccountsResult): GetAccountsResult = GetAccountsResult(
accounts = javaType.accounts().map({ args0 ->
args0.let({ args0 ->
com.pulumi.cloudflare.kotlin.outputs.GetAccountsAccount.Companion.toKotlin(args0)
})
}),
id = javaType.id(),
name = javaType.name().map({ args0 -> args0 }).orElse(null),
)
}
}