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

com.pulumi.googlenative.dialogflow.v3beta1.kotlin.outputs.GoogleCloudDialogflowCxV3beta1ExperimentResultResponse.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.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.dialogflow.v3beta1.kotlin.outputs

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

/**
 * The inference result which includes an objective metric to optimize and the confidence interval.
 * @property lastUpdateTime The last time the experiment's stats data was updated. Will have default value if stats have never been computed for this experiment.
 * @property versionMetrics Version variants and metrics.
 */
public data class GoogleCloudDialogflowCxV3beta1ExperimentResultResponse(
    public val lastUpdateTime: String,
    public val versionMetrics: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.dialogflow.v3beta1.outputs.GoogleCloudDialogflowCxV3beta1ExperimentResultResponse): GoogleCloudDialogflowCxV3beta1ExperimentResultResponse =
            GoogleCloudDialogflowCxV3beta1ExperimentResultResponse(
                lastUpdateTime = javaType.lastUpdateTime(),
                versionMetrics = javaType.versionMetrics().map({ args0 ->
                    args0.let({ args0 ->
                        com.pulumi.googlenative.dialogflow.v3beta1.kotlin.outputs.GoogleCloudDialogflowCxV3beta1ExperimentResultVersionMetricsResponse.Companion.toKotlin(args0)
                    })
                }),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy