com.pulumi.azure.storage.kotlin.outputs.GetTableEntitiesItem.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.storage.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
*
* @property partitionKey Partition Key of the Entity.
* @property properties A map of any additional properties in key-value format.
* @property rowKey Row Key of the Entity.
*/
public data class GetTableEntitiesItem(
public val partitionKey: String,
public val properties: Map,
public val rowKey: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.storage.outputs.GetTableEntitiesItem): GetTableEntitiesItem = GetTableEntitiesItem(
partitionKey = javaType.partitionKey(),
properties = javaType.properties().map({ args0 -> args0.key.to(args0.value) }).toMap(),
rowKey = javaType.rowKey(),
)
}
}