com.pulumi.kubernetes.admissionregistration.v1beta1.kotlin.outputs.ServiceReferencePatch.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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.kubernetes.admissionregistration.v1beta1.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
* ServiceReference holds a reference to Service.legacy.k8s.io
* @property name `name` is the name of the service. Required
* @property namespace `namespace` is the namespace of the service. Required
* @property path `path` is an optional URL path which will be sent in any request to this service.
* @property port If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).
*/
public data class ServiceReferencePatch(
public val name: String? = null,
public val namespace: String? = null,
public val path: String? = null,
public val port: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.kubernetes.admissionregistration.v1beta1.outputs.ServiceReferencePatch): ServiceReferencePatch = ServiceReferencePatch(
name = javaType.name().map({ args0 -> args0 }).orElse(null),
namespace = javaType.namespace().map({ args0 -> args0 }).orElse(null),
path = javaType.path().map({ args0 -> args0 }).orElse(null),
port = javaType.port().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy