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

com.pulumi.gcp.vertex.kotlin.outputs.GetAiIndexResult.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.13.1.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.vertex.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map

/**
 * A collection of values returned by getAiIndex.
 * @property createTime
 * @property deployedIndexes
 * @property description
 * @property displayName
 * @property effectiveLabels
 * @property etag
 * @property id The provider-assigned unique ID for this managed resource.
 * @property indexStats
 * @property indexUpdateMethod
 * @property labels
 * @property metadataSchemaUri
 * @property metadatas
 * @property name
 * @property project
 * @property pulumiLabels
 * @property region
 * @property updateTime
 */
public data class GetAiIndexResult(
    public val createTime: String,
    public val deployedIndexes: List,
    public val description: String,
    public val displayName: String,
    public val effectiveLabels: Map,
    public val etag: String,
    public val id: String,
    public val indexStats: List,
    public val indexUpdateMethod: String,
    public val labels: Map,
    public val metadataSchemaUri: String,
    public val metadatas: List,
    public val name: String,
    public val project: String? = null,
    public val pulumiLabels: Map,
    public val region: String,
    public val updateTime: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.vertex.outputs.GetAiIndexResult): GetAiIndexResult = GetAiIndexResult(
            createTime = javaType.createTime(),
            deployedIndexes = javaType.deployedIndexes().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.vertex.kotlin.outputs.GetAiIndexDeployedIndex.Companion.toKotlin(args0)
                })
            }),
            description = javaType.description(),
            displayName = javaType.displayName(),
            effectiveLabels = javaType.effectiveLabels().map({ args0 -> args0.key.to(args0.value) }).toMap(),
            etag = javaType.etag(),
            id = javaType.id(),
            indexStats = javaType.indexStats().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.vertex.kotlin.outputs.GetAiIndexIndexStat.Companion.toKotlin(args0)
                })
            }),
            indexUpdateMethod = javaType.indexUpdateMethod(),
            labels = javaType.labels().map({ args0 -> args0.key.to(args0.value) }).toMap(),
            metadataSchemaUri = javaType.metadataSchemaUri(),
            metadatas = javaType.metadatas().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.vertex.kotlin.outputs.GetAiIndexMetadata.Companion.toKotlin(args0)
                })
            }),
            name = javaType.name(),
            project = javaType.project().map({ args0 -> args0 }).orElse(null),
            pulumiLabels = javaType.pulumiLabels().map({ args0 -> args0.key.to(args0.value) }).toMap(),
            region = javaType.region(),
            updateTime = javaType.updateTime(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy