All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.kubernetes.apiregistration.v1.kotlin.inputs.ServiceReferenceArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 4.18.2.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.kubernetes.apiregistration.v1.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kubernetes.apiregistration.v1.inputs.ServiceReferenceArgs.builder
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * 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 ServiceReferenceArgs(
    public val name: Output? = null,
    public val namespace: Output? = null,
    public val port: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.kubernetes.apiregistration.v1.inputs.ServiceReferenceArgs =
        com.pulumi.kubernetes.apiregistration.v1.inputs.ServiceReferenceArgs.builder()
            .name(name?.applyValue({ args0 -> args0 }))
            .namespace(namespace?.applyValue({ args0 -> args0 }))
            .port(port?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ServiceReferenceArgs].
 */
@PulumiTagMarker
public class ServiceReferenceArgsBuilder internal constructor() {
    private var name: Output? = null

    private var namespace: Output? = null

    private var port: Output? = null

    /**
     * @param value Name is the name of the service
     */
    @JvmName("nnslxahsppvymogx")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value Namespace is the namespace of the service
     */
    @JvmName("olxfdlrppibwajmf")
    public suspend fun namespace(`value`: Output) {
        this.namespace = value
    }

    /**
     * @param value 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).
     */
    @JvmName("llfwssouucirsqjr")
    public suspend fun port(`value`: Output) {
        this.port = value
    }

    /**
     * @param value Name is the name of the service
     */
    @JvmName("ugpfbjrqmmhixjct")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value Namespace is the namespace of the service
     */
    @JvmName("wacemgjqkoytulno")
    public suspend fun namespace(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.namespace = mapped
    }

    /**
     * @param value 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).
     */
    @JvmName("dxodhnguvylplpvi")
    public suspend fun port(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.port = mapped
    }

    internal fun build(): ServiceReferenceArgs = ServiceReferenceArgs(
        name = name,
        namespace = namespace,
        port = port,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy