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

com.pulumi.azure.monitoring.kotlin.outputs.ActionGroupSmsReceiver.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.monitoring.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property countryCode The country code of the SMS receiver.
 * @property name The name of the SMS receiver. Names must be unique (case-insensitive) across all receivers within an action group.
 * @property phoneNumber The phone number of the SMS receiver.
 */
public data class ActionGroupSmsReceiver(
    public val countryCode: String,
    public val name: String,
    public val phoneNumber: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.monitoring.outputs.ActionGroupSmsReceiver): ActionGroupSmsReceiver = ActionGroupSmsReceiver(
            countryCode = javaType.countryCode(),
            name = javaType.name(),
            phoneNumber = javaType.phoneNumber(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy