
com.pulumi.azurenative.cloudngfw.kotlin.outputs.AdvSecurityObjectModelResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.cloudngfw.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* List of custom and predefined url category
* @property entry URL entry
* @property type type of object
*/
public data class AdvSecurityObjectModelResponse(
public val entry: List,
public val type: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.cloudngfw.outputs.AdvSecurityObjectModelResponse): AdvSecurityObjectModelResponse = AdvSecurityObjectModelResponse(
entry = javaType.entry().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.cloudngfw.kotlin.outputs.NameDescriptionObjectResponse.Companion.toKotlin(args0)
})
}),
type = javaType.type().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy