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

com.pulumi.googlenative.dialogflow.v3.kotlin.outputs.GoogleCloudDialogflowCxV3ExperimentDefinitionResponse.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.v3.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * Definition of the experiment.
 * @property condition The condition defines which subset of sessions are selected for this experiment. If not specified, all sessions are eligible. E.g. "query_input.language_code=en" See the [conditions reference](https://cloud.google.com/dialogflow/cx/docs/reference/condition).
 * @property versionVariants The flow versions as the variants of this experiment.
 */
public data class GoogleCloudDialogflowCxV3ExperimentDefinitionResponse(
    public val condition: String,
    public val versionVariants: GoogleCloudDialogflowCxV3VersionVariantsResponse,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.dialogflow.v3.outputs.GoogleCloudDialogflowCxV3ExperimentDefinitionResponse): GoogleCloudDialogflowCxV3ExperimentDefinitionResponse =
            GoogleCloudDialogflowCxV3ExperimentDefinitionResponse(
                condition = javaType.condition(),
                versionVariants = javaType.versionVariants().let({ args0 ->
                    com.pulumi.googlenative.dialogflow.v3.kotlin.outputs.GoogleCloudDialogflowCxV3VersionVariantsResponse.Companion.toKotlin(args0)
                }),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy