com.pulumi.kubernetes.auditregistration.v1alpha1.kotlin.inputs.ServiceReferenceArgs.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.auditregistration.v1alpha1.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kubernetes.auditregistration.v1alpha1.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. 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 ServiceReferenceArgs(
public val name: Output,
public val namespace: Output,
public val path: Output? = null,
public val port: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.kubernetes.auditregistration.v1alpha1.inputs.ServiceReferenceArgs =
com.pulumi.kubernetes.auditregistration.v1alpha1.inputs.ServiceReferenceArgs.builder()
.name(name.applyValue({ args0 -> args0 }))
.namespace(namespace.applyValue({ args0 -> args0 }))
.path(path?.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 path: Output? = null
private var port: Output? = null
/**
* @param value `name` is the name of the service. Required
*/
@JvmName("eukvshttwodgmaov")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value `namespace` is the namespace of the service. Required
*/
@JvmName("oskeondlsnaosmse")
public suspend fun namespace(`value`: Output) {
this.namespace = value
}
/**
* @param value `path` is an optional URL path which will be sent in any request to this service.
*/
@JvmName("stvxltdlgvojhkip")
public suspend fun path(`value`: Output) {
this.path = 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("bcupaxmukdiwyphe")
public suspend fun port(`value`: Output) {
this.port = value
}
/**
* @param value `name` is the name of the service. Required
*/
@JvmName("mxjcmcdxokxevbuu")
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. Required
*/
@JvmName("rbagqifvhptshpgc")
public suspend fun namespace(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.namespace = mapped
}
/**
* @param value `path` is an optional URL path which will be sent in any request to this service.
*/
@JvmName("oewysqcfioodgwhu")
public suspend fun path(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.path = 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("fhafvgkfonpousbd")
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 ?: throw PulumiNullFieldException("name"),
namespace = namespace ?: throw PulumiNullFieldException("namespace"),
path = path,
port = port,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy