ShardingOptionArgs

data class ShardingOptionArgs(val manualSharding: Output<ManualShardingArgs>? = null, val smartSharding: Output<SmartShardingArgs>? = null, val uniformSharding: Output<UniformShardingArgs>? = null) : ConvertibleToJava<ShardingOptionArgs>

Options for enabling sharding.

Constructors

Link copied to clipboard
constructor(manualSharding: Output<ManualShardingArgs>? = null, smartSharding: Output<SmartShardingArgs>? = null, uniformSharding: Output<UniformShardingArgs>? = null)

Properties

Link copied to clipboard
val manualSharding: Output<ManualShardingArgs>? = null

Shards test cases into the specified groups of packages, classes, and/or methods.

Link copied to clipboard
val smartSharding: Output<SmartShardingArgs>? = null

Shards test based on previous test case timing records.

Link copied to clipboard

Uniformly shards test cases given a total number of shards.

Functions

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