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

com.pulumi.azure.voice.kotlin.outputs.ServicesCommunicationsGatewayServiceLocation.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: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.voice.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @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 ServicesCommunicationsGatewayServiceLocation(
    public val allowedMediaSourceAddressPrefixes: List? = null,
    public val allowedSignalingSourceAddressPrefixes: List? = null,
    public val esrpAddresses: List? = null,
    public val location: String,
    public val operatorAddresses: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.voice.outputs.ServicesCommunicationsGatewayServiceLocation): ServicesCommunicationsGatewayServiceLocation = ServicesCommunicationsGatewayServiceLocation(
            allowedMediaSourceAddressPrefixes = javaType.allowedMediaSourceAddressPrefixes().map({ args0 ->
                args0
            }),
            allowedSignalingSourceAddressPrefixes = javaType.allowedSignalingSourceAddressPrefixes().map({ args0 ->
                args0
            }),
            esrpAddresses = javaType.esrpAddresses().map({ args0 -> args0 }),
            location = javaType.location(),
            operatorAddresses = javaType.operatorAddresses().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy