com.pulumi.kubernetes.extensions.v1beta1.kotlin.outputs.HTTPIngressRuleValuePatch.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-kubernetes-kotlin Show documentation
Show all versions of pulumi-kubernetes-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.kubernetes.extensions.v1beta1.kotlin.outputs
import kotlin.Suppress
import kotlin.collections.List
/**
* HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http:///? -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.
* @property paths A collection of paths that map requests to backends.
*/
public data class HTTPIngressRuleValuePatch(
public val paths: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.kubernetes.extensions.v1beta1.outputs.HTTPIngressRuleValuePatch): HTTPIngressRuleValuePatch = HTTPIngressRuleValuePatch(
paths = javaType.paths().map({ args0 ->
args0.let({ args0 ->
com.pulumi.kubernetes.extensions.v1beta1.kotlin.outputs.HTTPIngressPathPatch.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy