JobSampleArgs

data class JobSampleArgs(val mode: Output<JobSampleMode>? = null, val size: Output<Int>? = null) : ConvertibleToJava<JobSampleArgs>

Job Sample

Constructors

Link copied to clipboard
constructor(mode: Output<JobSampleMode>? = null, size: Output<Int>? = null)

Properties

Link copied to clipboard
val mode: Output<JobSampleMode>? = null

A value that determines whether the profile job is run on the entire dataset or a specified number of rows. This value must be one of the following:

Link copied to clipboard
val size: Output<Int>? = null

The Size parameter is only required when the mode is CUSTOM_ROWS. The profile job is run on the specified number of rows. The maximum value for size is Long.MAX_VALUE. Long.MAX_VALUE = 9223372036854775807

Functions

Link copied to clipboard
open override fun toJava(): JobSampleArgs