com.pulumi.gcp.diagflow.kotlin.outputs.CxTestCaseTestConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.diagflow.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property flow Flow name to start the test case with.
* Format: projects//locations//agents//flows/.
* Only one of flow and page should be set to indicate the starting point of the test case. If neither is set, the test case will start with start page on the default start flow.
* @property page The page to start the test case with.
* Format: projects//locations//agents//flows//pages/.
* Only one of flow and page should be set to indicate the starting point of the test case. If neither is set, the test case will start with start page on the default start flow.
* @property trackingParameters Session parameters to be compared when calculating differences.
*/
public data class CxTestCaseTestConfig(
public val flow: String? = null,
public val page: String? = null,
public val trackingParameters: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.diagflow.outputs.CxTestCaseTestConfig): CxTestCaseTestConfig = CxTestCaseTestConfig(
flow = javaType.flow().map({ args0 -> args0 }).orElse(null),
page = javaType.page().map({ args0 -> args0 }).orElse(null),
trackingParameters = javaType.trackingParameters().map({ args0 -> args0 }),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy