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

com.pulumi.azure.mobile.kotlin.outputs.GetNetworkServicePccRuleServiceDataFlowTemplate.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.mobile.kotlin.outputs

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

/**
 *
 * @property direction The direction of this flow. Possible values are `Uplink`, `Downlink` and `Bidirectional`.
 * @property name Specifies the name which should be used for this Mobile Network Service.
 * @property ports The port(s) to which UEs will connect for this flow. You can specify zero or more ports or port ranges.
 * @property protocols A list of the allowed protocol(s) for this flow.
 * @property remoteIpLists The remote IP address(es) to which UEs will connect for this flow.
 */
public data class GetNetworkServicePccRuleServiceDataFlowTemplate(
    public val direction: String,
    public val name: String,
    public val ports: List,
    public val protocols: List,
    public val remoteIpLists: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.mobile.outputs.GetNetworkServicePccRuleServiceDataFlowTemplate): GetNetworkServicePccRuleServiceDataFlowTemplate =
            GetNetworkServicePccRuleServiceDataFlowTemplate(
                direction = javaType.direction(),
                name = javaType.name(),
                ports = javaType.ports().map({ args0 -> args0 }),
                protocols = javaType.protocols().map({ args0 -> args0 }),
                remoteIpLists = javaType.remoteIpLists().map({ args0 -> args0 }),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy