com.pulumi.gcp.monitoring.kotlin.outputs.NotificationChannelSensitiveLabels.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.monitoring.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property authToken An authorization token for a notification channel. Channel types that support this field include: slack
* **Note**: This property is sensitive and will not be displayed in the plan.
* @property password An password for a notification channel. Channel types that support this field include: webhook_basicauth
* **Note**: This property is sensitive and will not be displayed in the plan.
* @property serviceKey An servicekey token for a notification channel. Channel types that support this field include: pagerduty
* **Note**: This property is sensitive and will not be displayed in the plan.
*/
public data class NotificationChannelSensitiveLabels(
public val authToken: String? = null,
public val password: String? = null,
public val serviceKey: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.monitoring.outputs.NotificationChannelSensitiveLabels): NotificationChannelSensitiveLabels = NotificationChannelSensitiveLabels(
authToken = javaType.authToken().map({ args0 -> args0 }).orElse(null),
password = javaType.password().map({ args0 -> args0 }).orElse(null),
serviceKey = javaType.serviceKey().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy