com.pulumi.kubernetes.apiregistration.v1.kotlin.outputs.ServiceReference.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.apiregistration.v1.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
* @property namespace Namespace is the namespace of the 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 ServiceReference(
public val name: String? = null,
public val namespace: String? = null,
public val port: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.kubernetes.apiregistration.v1.outputs.ServiceReference): ServiceReference = ServiceReference(
name = javaType.name().map({ args0 -> args0 }).orElse(null),
namespace = javaType.namespace().map({ args0 -> args0 }).orElse(null),
port = javaType.port().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy