com.pulumi.cloudflare.kotlin.outputs.GetDlpDatasetsResult.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.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getDlpDatasets.
* @property accountId The account ID to fetch DLP Datasets from.
* @property datasets A list of DLP Datasets.
* @property id The provider-assigned unique ID for this managed resource.
*/
public data class GetDlpDatasetsResult(
public val accountId: String,
public val datasets: List,
public val id: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.GetDlpDatasetsResult): GetDlpDatasetsResult = GetDlpDatasetsResult(
accountId = javaType.accountId(),
datasets = javaType.datasets().map({ args0 ->
args0.let({ args0 ->
com.pulumi.cloudflare.kotlin.outputs.GetDlpDatasetsDataset.Companion.toKotlin(args0)
})
}),
id = javaType.id(),
)
}
}