![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.sentinel.kotlin.outputs.ThreatIntelligenceIndicatorExternalReference.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.sentinel.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
*
* @property description The description of the external reference of the Threat Intelligence Indicator.
* @property hashes The list of hashes of the external reference of the Threat Intelligence Indicator.
* @property id The ID of the Sentinel Threat Intelligence Indicator.
* @property sourceName The source name of the external reference of the Threat Intelligence Indicator.
* @property url The url of the external reference of the Threat Intelligence Indicator.
*/
public data class ThreatIntelligenceIndicatorExternalReference(
public val description: String? = null,
public val hashes: Map? = null,
public val id: String? = null,
public val sourceName: String? = null,
public val url: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.sentinel.outputs.ThreatIntelligenceIndicatorExternalReference): ThreatIntelligenceIndicatorExternalReference = ThreatIntelligenceIndicatorExternalReference(
description = javaType.description().map({ args0 -> args0 }).orElse(null),
hashes = javaType.hashes().map({ args0 -> args0.key.to(args0.value) }).toMap(),
id = javaType.id().map({ args0 -> args0 }).orElse(null),
sourceName = javaType.sourceName().map({ args0 -> args0 }).orElse(null),
url = javaType.url().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy