com.pulumi.gcp.compute.kotlin.outputs.URLMapTest.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.compute.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property description Description of this test case.
* @property host Host portion of the URL.
* @property path Path portion of the URL.
* @property service The backend service or backend bucket link that should be matched by this test.
*/
public data class URLMapTest(
public val description: String? = null,
public val host: String,
public val path: String,
public val service: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.URLMapTest): URLMapTest =
URLMapTest(
description = javaType.description().map({ args0 -> args0 }).orElse(null),
host = javaType.host(),
path = javaType.path(),
service = javaType.service(),
)
}
}