com.pulumi.azure.datadog.kotlin.outputs.MonitorIdentity.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.datadog.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property principalId The Principal ID for the Service Principal associated with the Identity of this Datadog Monitor.
* @property tenantId The Tenant ID for the Service Principal associated with the Identity of this Datadog Monitor.
* @property type Specifies the identity type of the Datadog Monitor. At this time the only allowed value is `SystemAssigned`.
* > **NOTE:** The assigned `principal_id` and `tenant_id` can be retrieved after the identity `type` has been set to `SystemAssigned` and the Datadog Monitor has been created. More details are available below.
*/
public data class MonitorIdentity(
public val principalId: String? = null,
public val tenantId: String? = null,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.datadog.outputs.MonitorIdentity): MonitorIdentity = MonitorIdentity(
principalId = javaType.principalId().map({ args0 -> args0 }).orElse(null),
tenantId = javaType.tenantId().map({ args0 -> args0 }).orElse(null),
type = javaType.type(),
)
}
}