com.pulumi.azure.newrelic.kotlin.outputs.MonitorUser.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.newrelic.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property email Specifies the user Email. Changing this forces a new Azure Native New Relic Monitor to be created.
* @property firstName Specifies the first name. Changing this forces a new Azure Native New Relic Monitor to be created.
* @property lastName Specifies the last name. Changing this forces a new Azure Native New Relic Monitor to be created.
* @property phoneNumber Specifies the contact phone number. Changing this forces a new Azure Native New Relic Monitor to be created.
*/
public data class MonitorUser(
public val email: String,
public val firstName: String,
public val lastName: String,
public val phoneNumber: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.newrelic.outputs.MonitorUser): MonitorUser =
MonitorUser(
email = javaType.email(),
firstName = javaType.firstName(),
lastName = javaType.lastName(),
phoneNumber = javaType.phoneNumber(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy