
com.pulumi.googlenative.dlp.v2.kotlin.enums.GooglePrivacyDlpV2BigQueryOptionsSampleMethod.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-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.googlenative.dlp.v2.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
public enum class GooglePrivacyDlpV2BigQueryOptionsSampleMethod(
public val javaValue: com.pulumi.googlenative.dlp.v2.enums.GooglePrivacyDlpV2BigQueryOptionsSampleMethod,
) :
ConvertibleToJava {
SampleMethodUnspecified(com.pulumi.googlenative.dlp.v2.enums.GooglePrivacyDlpV2BigQueryOptionsSampleMethod.SampleMethodUnspecified),
/**
* Scan groups of rows in the order BigQuery provides (default). Multiple groups of rows may be scanned in parallel, so results may not appear in the same order the rows are read.
*/
Top(com.pulumi.googlenative.dlp.v2.enums.GooglePrivacyDlpV2BigQueryOptionsSampleMethod.Top),
/**
* Randomly pick groups of rows to scan.
*/
RandomStart(com.pulumi.googlenative.dlp.v2.enums.GooglePrivacyDlpV2BigQueryOptionsSampleMethod.RandomStart),
;
override fun toJava(): com.pulumi.googlenative.dlp.v2.enums.GooglePrivacyDlpV2BigQueryOptionsSampleMethod = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.dlp.v2.enums.GooglePrivacyDlpV2BigQueryOptionsSampleMethod): GooglePrivacyDlpV2BigQueryOptionsSampleMethod =
GooglePrivacyDlpV2BigQueryOptionsSampleMethod.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy