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

com.pulumi.gcp.bigquery.kotlin.outputs.TableRangePartitioningRange.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.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.bigquery.kotlin.outputs

import kotlin.Int
import kotlin.Suppress

/**
 *
 * @property end End of the range partitioning, exclusive.
 * @property interval The width of each range within the partition.
 * @property start Start of the range partitioning, inclusive.
 */
public data class TableRangePartitioningRange(
    public val end: Int,
    public val interval: Int,
    public val start: Int,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.bigquery.outputs.TableRangePartitioningRange): TableRangePartitioningRange = TableRangePartitioningRange(
            end = javaType.end(),
            interval = javaType.interval(),
            start = javaType.start(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy