com.pulumi.azurenative.web.kotlin.inputs.WsdlServiceArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.web.kotlin.inputs
import com.pulumi.azurenative.web.inputs.WsdlServiceArgs.builder
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 kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* The service with name and endpoint names
* @property endpointQualifiedNames List of the endpoints' qualified names
* @property qualifiedName The service's qualified name
*/
public data class WsdlServiceArgs(
public val endpointQualifiedNames: Output>? = null,
public val qualifiedName: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.web.inputs.WsdlServiceArgs =
com.pulumi.azurenative.web.inputs.WsdlServiceArgs.builder()
.endpointQualifiedNames(
endpointQualifiedNames?.applyValue({ args0 ->
args0.map({ args0 ->
args0
})
}),
)
.qualifiedName(qualifiedName.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [WsdlServiceArgs].
*/
@PulumiTagMarker
public class WsdlServiceArgsBuilder internal constructor() {
private var endpointQualifiedNames: Output>? = null
private var qualifiedName: Output? = null
/**
* @param value List of the endpoints' qualified names
*/
@JvmName("rdekolytoysqscwy")
public suspend fun endpointQualifiedNames(`value`: Output>) {
this.endpointQualifiedNames = value
}
@JvmName("dvduhojsoldjlgxk")
public suspend fun endpointQualifiedNames(vararg values: Output) {
this.endpointQualifiedNames = Output.all(values.asList())
}
/**
* @param values List of the endpoints' qualified names
*/
@JvmName("ywgtnuhgmvnqiifs")
public suspend fun endpointQualifiedNames(values: List