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

com.pulumi.cloudflare.kotlin.outputs.GetListResult.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.

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(),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy