com.pulumi.gcp.compute.kotlin.outputs.RegionUrlMapTest.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.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 A reference to expected RegionBackendService resource the given URL should be mapped to.
*/
public data class RegionUrlMapTest(
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.RegionUrlMapTest): RegionUrlMapTest = RegionUrlMapTest(
description = javaType.description().map({ args0 -> args0 }).orElse(null),
host = javaType.host(),
path = javaType.path(),
service = javaType.service(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy