com.pulumi.gcp.logging.kotlin.outputs.GetSinkExclusion.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.logging.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property description A description of this exclusion.
* @property disabled Whether this exclusion is disabled and it does not exclude any log entries.
* @property filter An advanced logs filter that matches the log entries to be excluded.
* @property name A client-assigned identifier, such as `load-balancer-exclusion`.
*/
public data class GetSinkExclusion(
public val description: String,
public val disabled: Boolean,
public val filter: String,
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.logging.outputs.GetSinkExclusion): GetSinkExclusion = GetSinkExclusion(
description = javaType.description(),
disabled = javaType.disabled(),
filter = javaType.filter(),
name = javaType.name(),
)
}
}