com.pulumi.cloudflare.kotlin.outputs.GetListResult.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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.cloudflare.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getList.
* @property accountId The account identifier to target for the resource.
* @property description List description.
* @property id The provider-assigned unique ID for this managed resource.
* @property kind List kind.
* @property name The list name to target for the resource.
* @property numitems Number of items in list.
*/
public data class GetListResult(
public val accountId: String,
public val description: String,
public val id: String,
public val kind: String,
public val name: String,
public val numitems: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.GetListResult): GetListResult =
GetListResult(
accountId = javaType.accountId(),
description = javaType.description(),
id = javaType.id(),
kind = javaType.kind(),
name = javaType.name(),
numitems = javaType.numitems(),
)
}
}