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

com.pulumi.azurenative.cloudngfw.kotlin.outputs.SourceAddrResponse.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: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.cloudngfw.kotlin.outputs

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

/**
 * Address properties
 * @property cidrs special value 'any'
 * @property countries list of countries
 * @property feeds list of feeds
 * @property prefixLists prefix list
 */
public data class SourceAddrResponse(
    public val cidrs: List? = null,
    public val countries: List? = null,
    public val feeds: List? = null,
    public val prefixLists: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.cloudngfw.outputs.SourceAddrResponse): SourceAddrResponse = SourceAddrResponse(
            cidrs = javaType.cidrs().map({ args0 -> args0 }),
            countries = javaType.countries().map({ args0 -> args0 }),
            feeds = javaType.feeds().map({ args0 -> args0 }),
            prefixLists = javaType.prefixLists().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy