com.pulumi.azure.cosmosdb.kotlin.outputs.CassandraTableSchemaPartitionKey.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.cosmosdb.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property name Name of the column to partition by.
*/
public data class CassandraTableSchemaPartitionKey(
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.cosmosdb.outputs.CassandraTableSchemaPartitionKey): CassandraTableSchemaPartitionKey = CassandraTableSchemaPartitionKey(
name = javaType.name(),
)
}
}