com.pulumi.cloudflare.kotlin.outputs.GetDevicePostureRulesResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.cloudflare.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getDevicePostureRules.
* @property accountId The account identifier to target for the resource.
* @property id The provider-assigned unique ID for this managed resource.
* @property name Name of the Device Posture Rule.
* @property rules A list of matching Device Posture Rules.
* @property type The device posture rule type. Available values: `serial_number`, `file`, `application`, `gateway`, `warp`, `domain_joined`, `os_version`, `disk_encryption`, `firewall`, `client_certificate`, `client_certificate_v2`, `workspace_one`, `unique_client_id`, `crowdstrike_s2s`, `sentinelone`, `kolide`, `tanium_s2s`, `intune`, `sentinelone_s2s`, `custom_s2s`.
*/
public data class GetDevicePostureRulesResult(
public val accountId: String,
public val id: String,
public val name: String? = null,
public val rules: List,
public val type: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.GetDevicePostureRulesResult): GetDevicePostureRulesResult = GetDevicePostureRulesResult(
accountId = javaType.accountId(),
id = javaType.id(),
name = javaType.name().map({ args0 -> args0 }).orElse(null),
rules = javaType.rules().map({ args0 ->
args0.let({ args0 ->
com.pulumi.cloudflare.kotlin.outputs.GetDevicePostureRulesRule.Companion.toKotlin(args0)
})
}),
type = javaType.type().map({ args0 -> args0 }).orElse(null),
)
}
}