![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.voice.kotlin.inputs.ServicesCommunicationsGatewayServiceLocationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.voice.kotlin.inputs
import com.pulumi.azure.voice.inputs.ServicesCommunicationsGatewayServiceLocationArgs.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
/**
*
* @property allowedMediaSourceAddressPrefixes Specifies the allowed source IP address or CIDR ranges for media.
* @property allowedSignalingSourceAddressPrefixes Specifies the allowed source IP address or CIDR ranges for signaling.
* @property esrpAddresses IP address to use to contact the ESRP from this region.
* !> **NOTE:** The `esrp_addresses` must be specified for each `service_location` when the`e911_type` is set to `DirectToEsrp`. The `esrp_addresses` must not be specified for each `service_location` when the`e911_type` is set to `Standard`.
* @property location Specifies the region in which the resources needed for Teams Calling will be deployed.
* @property operatorAddresses IP address to use to contact the operator network from this region.
*/
public data class ServicesCommunicationsGatewayServiceLocationArgs(
public val allowedMediaSourceAddressPrefixes: Output>? = null,
public val allowedSignalingSourceAddressPrefixes: Output>? = null,
public val esrpAddresses: Output>? = null,
public val location: Output,
public val operatorAddresses: Output>,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azure.voice.inputs.ServicesCommunicationsGatewayServiceLocationArgs =
com.pulumi.azure.voice.inputs.ServicesCommunicationsGatewayServiceLocationArgs.builder()
.allowedMediaSourceAddressPrefixes(
allowedMediaSourceAddressPrefixes?.applyValue({ args0 ->
args0.map({ args0 -> args0 })
}),
)
.allowedSignalingSourceAddressPrefixes(
allowedSignalingSourceAddressPrefixes?.applyValue({ args0 ->
args0.map({ args0 -> args0 })
}),
)
.esrpAddresses(esrpAddresses?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.location(location.applyValue({ args0 -> args0 }))
.operatorAddresses(operatorAddresses.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [ServicesCommunicationsGatewayServiceLocationArgs].
*/
@PulumiTagMarker
public class ServicesCommunicationsGatewayServiceLocationArgsBuilder internal constructor() {
private var allowedMediaSourceAddressPrefixes: Output>? = null
private var allowedSignalingSourceAddressPrefixes: Output>? = null
private var esrpAddresses: Output>? = null
private var location: Output? = null
private var operatorAddresses: Output>? = null
/**
* @param value Specifies the allowed source IP address or CIDR ranges for media.
*/
@JvmName("ltitwvicamgmvisl")
public suspend fun allowedMediaSourceAddressPrefixes(`value`: Output>) {
this.allowedMediaSourceAddressPrefixes = value
}
@JvmName("hwjhlydsqasevfkv")
public suspend fun allowedMediaSourceAddressPrefixes(vararg values: Output) {
this.allowedMediaSourceAddressPrefixes = Output.all(values.asList())
}
/**
* @param values Specifies the allowed source IP address or CIDR ranges for media.
*/
@JvmName("aoqohgkjayrvvlob")
public suspend fun allowedMediaSourceAddressPrefixes(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy