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

com.pulumi.azure.sentinel.kotlin.outputs.ThreatIntelligenceIndicatorExternalReference.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.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