com.pulumi.gcp.vertex.kotlin.outputs.AiIndexIndexStat.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.vertex.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property shardsCount (Output)
* The number of shards in the Index.
* @property vectorsCount (Output)
* The number of vectors in the Index.
*/
public data class AiIndexIndexStat(
public val shardsCount: Int? = null,
public val vectorsCount: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.vertex.outputs.AiIndexIndexStat): AiIndexIndexStat = AiIndexIndexStat(
shardsCount = javaType.shardsCount().map({ args0 -> args0 }).orElse(null),
vectorsCount = javaType.vectorsCount().map({ args0 -> args0 }).orElse(null),
)
}
}